Skip to content

Instantly share code, notes, and snippets.

@btedev
Created August 6, 2010 16:07
Show Gist options
  • Save btedev/511536 to your computer and use it in GitHub Desktop.
Save btedev/511536 to your computer and use it in GitHub Desktop.
Find and mount usb drive in Ubuntu
#verify drive is seen by system
cat /proc/scsi/scsi
#determine which device it is
dmesg | grep sd
#mount
mount /dev/sdc1 /mnt/usb
#or to be extra safe
mount -o ro /dev/sdc1 /mnt/usb
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment