Skip to content

Instantly share code, notes, and snippets.

@GabrielCzar
Last active June 4, 2018 00:29
Show Gist options
  • Save GabrielCzar/464969597c2ff79f73a41ce45e2e4762 to your computer and use it in GitHub Desktop.
Save GabrielCzar/464969597c2ff79f73a41ce45e2e4762 to your computer and use it in GitHub Desktop.
#List all devices
dmesg
# ou
sudo fdisk -l
#OS is the name do Operation System
#sd* is the final device - Usb or other
sudo dd if=SO.iso of=/dev/sd* bs=4M status=progress
#dd is a command-line utility for Unix and Unix-like operating systems whose primary purpose is to convert and copy files.
#bs is a unit measuring the number of bytes that are read, written, or converted at one time.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment