Skip to content

Commit

Permalink
docs: 4.5 -> 4.6 (#568)
Browse files Browse the repository at this point in the history
Signed-off-by: Evan Maddock <[email protected]>
  • Loading branch information
EbonJaeger authored Oct 14, 2024
1 parent 1a51276 commit 290f71f
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions docs/user/quick-start/installation/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,15 @@ gpg --import solus-releng-pub.gpg
Verify the signed checksum file:

```bash
gpg --verify Solus-4.5-Budgie.iso.sha256sum.sign Solus-4.5-Budgie.iso.sha256sum
gpg --verify Solus-Budgie-Release-2024-10-14.iso.sha256sum.sign Solus-Budgie-Release-2024-10-14.iso.sha256sum
```

#### Verifying the ISO checksum

Check that the computed hash of the downloaded ISO file matches the hash supplied by Solus:

```bash
sha256sum -c Solus-4.5-Budgie.iso.sha256sum | grep OK
sha256sum -c Solus-Budgie-Release-2024-10-14.iso.sha256sum | grep OK
```

### Windows
Expand All @@ -57,8 +57,8 @@ Now you can run the same `gpg` commands from the the [_Verifyng the SHA256SUMS f
Launch powershell and compute the hash of the ISO file you just downloaded. You will have to manually compare the result to the hash in the SHA256SUMS file.

```powershell
Get-FileHash C:\path\to\Solus-4.5-Budgie.iso
cat C:\path\to\Solus-4.5-Budgie.iso.sha256sum
Get-FileHash C:\path\to\Solus-Budgie-Release-2024-10-14.iso
cat C:\path\to\Solus-Budgie-Release-2024-10-14.iso.sha256sum
```

Alternatively, you can use a graphical program that can calculate SHA256 hashes like _Rufus_ or _7-Zip_.
Expand Down Expand Up @@ -167,7 +167,7 @@ This is where we overwrite the contents of your USB drive so please ensure you i
:::

```bash
sudo dd if=Solus-4.5-Budgie.iso of=/dev/sdb bs=4M status=progress oflag=sync && sudo eject /dev/sdb
sudo dd if=Solus-Budgie-Release-2024-10-14.iso of=/dev/sdb bs=4M status=progress oflag=sync && sudo eject /dev/sdb
```

This will write the contents of the ISO to the thumb drive so you can boot it and also make sure the data is synchronized so you can eject the USB safely.
Expand Down Expand Up @@ -203,7 +203,7 @@ Since OS X El Capitan (10.11), the easiest way to burn a DVD is:

1. Insert your DVD and open Finder.
2. Right click on the ISO image.
3. Click on “Burn Disk Image ‘Solus-4.5-Budgie.iso’ to Disc…”
3. Click on “Burn Disk Image ‘Solus-Budgie-Release-2024-10-14.iso’ to Disc…”
4. Then click “Burn”.

![macOS Burn DVD](mac-burn-dvd.jpg)
Expand Down Expand Up @@ -277,7 +277,7 @@ cd ~/Downloads
We will use the `dd` command to write the contents of the ISO to the thumb drive. Replace `IDENTIFIER` in the command below with your drive identifier. Note the extra `r` before the identifier (i.e `rdisk1`). This is for raw mode, which along with bs=1m, makes the transfer faster.

```bash
sudo dd if=Solus-4.5-Budgie.iso of=/dev/rIDENTIFIER bs=1m
sudo dd if=Solus-Budgie-Release-2024-10-14.iso of=/dev/rIDENTIFIER bs=1m
```

Be patient! After a few minutes you’ll receive a message saying how much data was transferred. You can now safely eject the usb drive.
Expand Down

0 comments on commit 290f71f

Please sign in to comment.