From a045c75e7f79a6eaa2723683878019c0f1be0a5b Mon Sep 17 00:00:00 2001 From: msiism Date: Thu, 23 May 2019 17:19:11 +0200 Subject: Add instructions for creating bootable flash drive on Linux/BSD --- src/install/1_begin.xml | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src') diff --git a/src/install/1_begin.xml b/src/install/1_begin.xml index e901a51..2a023fc 100644 --- a/src/install/1_begin.xml +++ b/src/install/1_begin.xml @@ -46,6 +46,12 @@ On Linux or BSD systems, you can use either cdrecord or cdrskin to write the installation image to a CD via the command line. Both commands basically share the same syntax. For example, to burn the image onto a CD at a speed of 4 and with verbose command output, run cdrecord -v speed=4 [image] or cdrskin -v speed=4 [image], replacing [image] with the file name of the image you want to burn to the CD. If there's only one optical disc drive on your system, it should be auto-detected. If not, find the device name using 'dmesg' or 'lsblk' and specify it using the 'dev' option. For example, if your optical device is /dev/sr0, run cdrecord -v dev=/dev/sr0 speed=4 [image]. + To write an installation image to a USB flash drive, you can use the dd command. + First, you'll need to get the name of the target device. This can be done by looking at the output of dmesg or any program that lists available storage devices (such as lsblk on Linux) before and after connecting the drive to the computer. + It's a good idea to double-check if you've got that device name right. Make sure you're using the name of the whole drive (such as, e.g., /dev/sde) and not merely that of a partition residing on it (e.g., /dev/sde1). + Next, make sure the device is not mounted. Then run the dd command and after that the sync command as shown below, replacing /dev/sdX with the actual name of the target device and adelie.iso with the file name of the image you want to put onto the flash drive. Running these commands may require superuser privileges. + Beware that this operation will destroy all data still residing on the target device! + dd if=adelie.iso of=/dev/sdX bs=4M && sync -- cgit v1.2.3-70-g09d2