Mount USB in Ubuntu Server
May 22, 2012By default, USB drive does not automount in Ubuntu Server Edition.
You can either install “usb-mount”, or mount it manually (see below).
Get the information (what is the device, e.g. /dev/sdb1):
sudo fdisk -l
Create mount point:
sudo mkdir /media/external
Mount the drive:
sudo mount -t vfat /dev/sdb1 /media/external
Here -t is the filesystem type. Most flash drives are FAT16 or FAT32.
Unmount the drive:
Either:
sudo umount /dev/sdb1
Or:
sudo umount /media/external
References:
https://help.ubuntu.com/community/Mount/USB
http://askubuntu.com/questions/90976/usb-drive-not-mounting