Skip to content

Commit

Permalink
Update server setup instructions in prerequisites documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
daGscheid committed Apr 15, 2024
1 parent baa9b47 commit dc0e108
Showing 1 changed file with 3 additions and 15 deletions.
18 changes: 3 additions & 15 deletions docs/02-guides/00-prerequisites/01-prerequisites-server-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,22 +39,10 @@ import TabItem from '@theme/TabItem';
5. Name your USB stick something memorable, select 'Mac OS Extended (Journaled)' as the format, and then click 'Erase' to start the process.
6. Once the erasure is complete, close 'Disk Utility'.
7. Open the 'Terminal' application, also found in the 'Utilities' folder.
8. Convert your downloaded ISO file to an IMG format by typing the following command in Terminal:
```
hdiutil convert -format UDRW -o /path/to/your_new.img /path/to/downloaded.iso
```
Replace '/path/to/your_new.img' and '/path/to/downloaded.iso' with the actual paths to where you want the new IMG file saved and where your downloaded ISO file is located.
8. Convert your downloaded ISO file to an IMG format by typing the following command in Terminal: `hdiutil convert -format UDRW -o /path/to/your_new.img /path/to/downloaded.iso`. Replace '/path/to/your_new.img' and '/path/to/downloaded.iso' with the actual paths to where you want the new IMG file saved and where your downloaded ISO file is located.
9. Find the device identifier for your USB stick by typing `diskutil list` in Terminal.
10. Unmount your USB device with:
```
diskutil unmountDisk /dev/diskN
```
Replace 'diskN' with the identifier from step 9.
11. Write the IMG file to your USB stick with the following command:
```
sudo dd if=/path/to/your_new.img of=/dev/rdiskN bs=1m
```
Again, replace '/path/to/your_new.img' and '/dev/rdiskN' with the appropriate paths and identifiers.
10. Unmount your USB device with: `diskutil unmountDisk /dev/diskN`. Replace 'diskN' with the identifier from step 9.
11. Write the IMG file to your USB stick with the following command: `sudo dd if=/path/to/your_new.img of=/dev/rdiskN bs=1m`. Again, replace '/path/to/your_new.img' and '/dev/rdiskN' with the appropriate paths and identifiers.
12. When the process is complete, you can remove your USB stick.
13. Your bootable USB stick with Ubuntu Server is ready. Proceed to the next setup phase in Part 2 below.

Expand Down

0 comments on commit dc0e108

Please sign in to comment.