Most distros (distributions) of Linux include Mandrake 10.1, SuSE 9.x and Fedora Core 3 can now support plug-and-plug detection, discovery and driver installation for portable USB drive or USB disk (and any type of USB-based data storage devices devices such as hard drives, pen drives, USB keys, flash disk, thumb drive, memory key, USB zip drive and memory stick). Some Linux operating system even can auto-mount the USB drives, especially if you’re using Gnome and KDE. When you plug-in the USB disk, Linux will pop-up a window showing the content of USB disk just like Microsoft Windows.

However, if you’re using older version of Linux, or using UNIX operating system, or your Linux distro installation unable to detect and mount the USB storage device automatically, then you will have to manually install and mount the USB drive.

To manually mount a USB disk or USB drive or USB device in Linux or UNIX:

  1. Login as root. You can use the su command to switch to root user.
  2. Create a folder /mnt/USB with the command: mkdir /mnt/USB
  3. Add the following line in the file /etc/fstab (fstab is the file that tells Linux where to mount the various devices, and thus simplifying the mount command):
    /dev/sda1          /mnt/USB         auto          noauto,owner,kuzu         0 0

    Note: The “auto” on the above line means auto detection of filesystem. If your system unable to determine the filesystem type, change it accordingly to the USB drive’s filesystem (e.g. vfat or ntfs or ext2 or ext3).

  4. Mount the USB storage device with the following command: mount /dev/sda1

Without the need modifying fstab (step 3), you can also straight away issue the mount command (step 4) with the following syntax:

mount /dev/sda1 /mnt/USB

If you know the filesystem of the USB drive or the system unable to determine the correct filesystem, the -t option can be used to the filesystem type of the USB device:

mount -t vfat /dev/sda1 /mnt/usb (for vFAT filesystem)
mount -t ntfs /dev/sda1 /mnt/usb (for NTFS filesystem)

Sometimes, the USB drive or USB storage device is detected by the system but been assigned a different device name from sda1. If so, the correct device name need to be determined by viewing and OS log file. Usually the Linux and UNIX boot and log message is stored in /var/log/messages, and you can view the log messages with the following commands:

tail -f /var/log/messages

or

dmesg

Check for the name of the device that appears after operating system detects the USB devices.

After using the USB disk, remember to unmount the USB drive with the following command to avoid any possible loss to the data or changes and risk messing up your partition.

umount /mnt/USB

Configure Gnome to automatically detect, install and mount USB drive

If you’re using Gnome yet unable to automatically detect and mount USB drive for usage, a few packages needed to be install. The packages to install are dbus, hald and Gnome-Volume-Manager. After installing these packages, configure dbus and hald setup to run via init scripts. Then in Gnome, some configuration has to be done. Click on the ‘Desktop’ menu, then go to ‘Preferences’, and then to ‘Removable Drives and Media’. Configure the settings to your liking. Once you plug-in a usb drive, an icon for the drive will appear on the desktop. Other possible setting is to have Gnome opens a window showing the contents of the USB drive.