-
-
Save vyk2rr/356f5f7dba01ba3bfda84be74476d64e to your computer and use it in GitHub Desktop.
Revisions
-
David Cuadra revised this gist
Jul 12, 2017 . 1 changed file with 4 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -2,7 +2,10 @@ When attenpting to install a Linux Distro, its common to download the ISO then u (e.g. UNetbootin, Linux Live USB Creator, Universal USB Installer, Live USB Creator) to make a USB bootable with the installer of the distro. This is no the recommended way. ### Source https://wiki.archlinux.org/index.php/USB_flash_installation_media # Prefered method ## On OS X To list USB devices ```bash -
David Cuadra renamed this gist
Jul 12, 2017 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
David Cuadra created this gist
Jul 12, 2017 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,29 @@ When attenpting to install a Linux Distro, its common to download the ISO then use a tool (e.g. UNetbootin, Linux Live USB Creator, Universal USB Installer, Live USB Creator) to make a USB bootable with the installer of the distro. This is no the recommended way. #Prefered method ## On OS X To list USB devices ```bash diskutil list ``` USB devices will appear as something like /dev/disk2 (external, physical), confirm the desired device by the SIZE if more than one. Unmount device (replace X with disk number) ``` diskutil unmountDisk /dev/diskX ``` Then, to copy the content ``` sudo dd if=path/to/image.iso of=/dev/rdiskX bs=1m ``` ## On GNU Linux To list USB devices ```bash sudo fdisk -l ``` Identify device, then run next command, replacing `sdX` with devices identifier. ```bash sudo dd bs=4M if=/path/to/image.iso of=/dev/sdX && sync ```