...
download Ubuntu server .iso file
Connect a USB thumb drive to your pc
Run command:
lsblk
Identify your drive (usually /dev/sdX, X can be different for each system)
NOTE: SATA HDDs & SSDs also identify as sdX so be careful.
Run command:
sudo dd if=${path/to/iso/file.iso} of=/dev/sdX status=progress
Wait until dd finishes and safely eject the USB drive.
On Bedrock
Connecting serial console
tio:
Install the tio package on your linux pc
Run the command
Code Block |
---|
tio /dev/ttyUSBX |
Where X is the number assigned to your serial adapter, you can view it by running
Code Block |
---|
sudo dmesg | grep ttyUSB* |
putty:
Download putty to your linux or windows pc
Open putty gui
Choose Serial from the 3 bullet choices
In the serial line type /dev/ttyUSBX
Where X is the number assigned to your serial adapter, you can view it by running
Code Block |
---|
sudo dmesg | grep ttyUSB* |
Speed should be 115200
You can click on save to save the current configuration for faster connection in the future
Click on open
A terminal will appear
BIOS settings
You need to enable some configurations in BIOS before starting the installation.
...