Difference between revisions of "Linux usb"

From John Freier
Jump to: navigation, search
(Created page with " == USB Mount and Unmount == To mount a USB drive in linux sudo mkdir /mnt/usbdrive -- Create folder if does not exsit all ready. sudo mount /dev/sda1 /mnt/usbdrive To...")
 
(No difference)

Latest revision as of 15:05, 31 March 2016

USB Mount and Unmount

To mount a USB drive in linux

 sudo mkdir /mnt/usbdrive -- Create folder if does not exsit all ready.
 sudo mount /dev/sda1 /mnt/usbdrive


To Unmount a USB drive in linux saftly

 sudo umount /mnt/usbdrive