How to Create Bootable CentOS 7 USB Stick (to Command Line) on Linux
Downloading CentOS ISO file Download the CentOS ISO file from the CentOS downloads page where you can choose between “DVD ISO” and “Minimal ISO”. Creating Bootable CentOS 7 USB Stick on Linux Insert the USB flash drive into the USB port. Find out the name of your USB drive with the lsblk command: $ lsblk The output will look like this: Output Sample of lsblk command In our case the name of the USB device is /dev/sdx but this may vary on your system. 3. On most Linux distributions the USB flash drive will be automatically mounted when inserted. Before flashing the image make sure the USB device is not mounted. To do so use the umount command followed by either the directory where it has been mounted (mount point) or the device name: unmount the device 4. The last step is to flash the CentOS ISO image to the USB drive. Make sure you replace /dev/sdx with your drive and do not append the partition number. Also, rep...