Pages

Install Linux ISO file in a USB stick

Its easy to write ISO file to USB pen drive. This process erase all data in your USB drive.

Find out the name of the USB drive using the lsblk tool. Apply the following command:

lsblk

The output will look like this:

Here the USB device is /dev/sda, but this may vary on your system. The best way to identify the name is by checking the device's size.

Copy the Linux iso file in the home folder.

Open a terminal and become a root user.
  
sudo su
If your USB drive name is sdb, apply the following command.

cat debian.iso > /dev/sdb; sync

No comments:

Post a Comment