Skip to content

Commit 6b55f54

Browse files
XECDesignJamesH65
authored andcommitted
Update Raspbian file names and NOOBS version (raspberrypi#994)
1 parent e85fb68 commit 6b55f54

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

installation/installing-images/linux.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
- In a terminal window, write the image to the card with the command below, making sure you replace the input file `if=` argument with the path to your `.img` file, and the `/dev/sdX` in the output file `of=` argument with the correct device name. **This is very important, as you will lose all the data on the hard drive if you provide the wrong device name.** Make sure the device name is the name of the whole SD card as described above, not just a partition. For example: `sdd`, not `sdds1` or `sddp1`; `mmcblk0`, not `mmcblk0p1`.
2121

2222
```bash
23-
dd bs=4M if=2018-04-18-raspbian-stretch.img of=/dev/sdX conv=fsync
23+
dd bs=4M if=2018-10-09-raspbian-stretch.img of=/dev/sdX conv=fsync
2424
```
2525

2626
- Please note that block size set to `4M` will work most of the time. If not, try `1M`, although this will take considerably longer.
@@ -31,9 +31,9 @@
3131

3232
In Linux it is possible to combine the unzip and SD copying process into one command, which avoids any issues that might occur when the unzipped image is larger than 4GB. This can happen on certain filesystems that do not support files larger than 4GB (e.g. FAT), although it should be noted that most Linux installations do not use FAT and therefore do not have this limitation.
3333

34-
The following command unzips the zip file (replace 2018-04-18-raspbian-stretch.zip with the appropriate zip filename), and pipes the output directly to the dd command. This in turn copies it to the SD card, as described in the previous section.
34+
The following command unzips the zip file (replace 2018-10-09-raspbian-stretch.zip with the appropriate zip filename), and pipes the output directly to the dd command. This in turn copies it to the SD card, as described in the previous section.
3535
```
36-
unzip -p 2018-04-18-raspbian-stretch.zip | sudo dd of=/dev/sdX bs=4M conv=fsync
36+
unzip -p 2018-10-09-raspbian-stretch.zip | sudo dd of=/dev/sdX bs=4M conv=fsync
3737
```
3838

3939
### Checking the image copy progress
@@ -42,7 +42,7 @@ unzip -p 2018-04-18-raspbian-stretch.zip | sudo dd of=/dev/sdX bs=4M conv=fsync
4242

4343
- To see the progress of the copy operation, you can run the dd command with the status option.
4444
```
45-
dd bs=4M if=2018-04-18-raspbian-stretch.img of=/dev/sdX status=progress conv=fsync
45+
dd bs=4M if=2018-10-09-raspbian-stretch.img of=/dev/sdX status=progress conv=fsync
4646
```
4747
- If you are using an older version of `dd`, the status option may not be available. You may be able to use the `dcfldd` command instead, which will give a progress report showing how much has been written. Another method is to send a USR1 signal to `dd`, which will let it print status information. Find out the PID of `dd` by using `pgrep -l dd` or `ps a | grep dd`. Then use `kill -USR1 PID` to send the USR1 signal to `dd`.
4848

@@ -66,11 +66,11 @@ We need the number `xxx`, which is the block count. We can ignore the `yyy` numb
6666
6767
- In case the SD card image is still larger than the original image, truncate the new image to the size of the original image using the following command (replace the input file `reference` argument with the original image name):
6868
```bash
69-
truncate --reference 2018-04-18-raspbian-stretch.img from-sd-card.img
69+
truncate --reference 2018-10-09-raspbian-stretch.img from-sd-card.img
7070
```
7171
- Compare the two images: `diff` should report that the files are identical.
7272
```bash
73-
diff -s from-sd-card.img 2018-04-18-raspbian-stretch.img
73+
diff -s from-sd-card.img 2018-10-09-raspbian-stretch.img
7474
```
7575
- Run `sync`. This will ensure that the write cache is flushed and that it is safe to unmount your SD card.
7676

installation/installing-images/mac.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ This will take a few minutes, depending on the size of the image file. To check
4646
4747
`sudo dd bs=1m if=image.img of=/dev/rdisk<disk# from diskutil> conv=sync`
4848
49-
where `disk` is your BSD name e.g. `sudo dd bs=1m if=2018-04-18-raspbian-stretch.img of=/dev/rdisk4 conv=sync`
49+
where `disk` is your BSD name e.g. `sudo dd bs=1m if=2018-10-09-raspbian-stretch.img of=/dev/rdisk4 conv=sync`
5050
5151
- This may result in a ``dd: invalid number '1m'`` error if you have GNU
5252
coreutils installed. In that case, you need to use a block size of `1M` in the `bs=` section, as follows:
@@ -58,11 +58,11 @@ This will take a few minutes, depending on the size of the image file. To check
5858
- If this command still fails, try using `disk` instead of `rdisk`, for example:
5959
6060
```
61-
sudo dd bs=1m if=2018-04-18-raspbian-stretch.img of=/dev/disk4 conv=sync
61+
sudo dd bs=1m if=2018-10-09-raspbian-stretch.img of=/dev/disk4 conv=sync
6262
```
6363
or
6464
```
65-
sudo dd bs=1M if=2018-04-18-raspbian-stretch.img of=/dev/disk4 conv=sync
65+
sudo dd bs=1M if=2018-10-09-raspbian-stretch.img of=/dev/disk4 conv=sync
6666
```
6767
After the `dd` command finishes, eject the card:
6868
```
@@ -109,7 +109,7 @@ map auto_home 0Bi 0Bi 0Bi 100% 0 0 100% /home
109109
- In the terminal, write the image to the card with this command, using the raw device name from above. Read the above step carefully to make sure that you use the correct `rdisk` number here:
110110
111111
```
112-
sudo dd bs=1m if=2018-04-18-raspbian-stretch.img of=/dev/rdisk3 conv=sync
112+
sudo dd bs=1m if=2018-10-09-raspbian-stretch.img of=/dev/rdisk3 conv=sync
113113
```
114114
115115
If the above command reports the error `dd: bs: illegal numeric value`, change the block size `bs=1m` to `bs=1M`.

installation/noobs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ Note that the operating system image on the full version can be outdated if a ne
6969

7070
### Latest NOOBS release
7171

72-
The latest NOOBS release is **v2.8.1**, released on **24th April 2018**.
72+
The latest NOOBS release is **v2.9.0**, released on **11th October 2018**.
7373

7474
(From NOOBS v1.4.0 onwards, NOOBS Lite only shares the first two digits of the version number, i.e. v1.4)
7575

0 commit comments

Comments
 (0)