1,110 pts.
 Mounting USB drive in Ubuntu
How can I mount a USB drive in Ubuntu or RedHat for read and write access? We need to copy log files to the thumb drive.

Software/Hardware used:
ASKED: June 6, 2011  2:27 PM
UPDATED: June 7, 2011  3:26 PM

Answer Wiki:
Plug it in! I can speak for Ubuntu that (by default) it will show up automatically on your desktop and even open a window to show you what's on the USB drive. You'll have (again, by default) read and write access to the device. It pretty much "Just Works(tm)".
Last Wiki Answer Submitted:  June 6, 2011  3:17 pm  by  Koohiisan   4,990 pts.
All Answer Wiki Contributors:  Koohiisan   4,990 pts.
To see all answers submitted to the Answer Wiki: View Answer History.


Discuss This Question:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _


 

I think you are asking because the system is not recognizing the usb drive.

Login as root and execute fdisk command to see your devices and look at the usb drive.

fdisk -l

Assuming your usb drive is the /dev/sdb1 device create a mount point like this

mkdir  /mnt/sdb1

Then you can mount the drive executing the following command:

mount  -t vfat /dev/sdb1  /mnt/sdb1

vfat is the filesystem of the usb drive.
Tell us if you have troubles.

Regards.

 2,790 pts.