Mount a USB Drive in Linux
mount /dev/sdb1 /media/usb
/dev/sdb1 = the location of my USB drive when I plugged it in
/media/usb = the file I created to access the files (mount point)
umount is the command to unmount (drive must not be in use to work)
/dev/sdb1 = the location of my USB drive when I plugged it in
/media/usb = the file I created to access the files (mount point)
umount is the command to unmount (drive must not be in use to work)
Comments
Post a Comment