centos 6.2a operating system and unable to mount my pen drive

Transfered from Linux Config Disqus comments:

I am using centos 6.2a operating system and unable to mount my pen drive. Kindly give me instruction to mount my pen drive

Hi Vivek,

First you need to found out what USB partitions are available with:

# fdisk -l

Look at the output and search fro block device of size of your USB pen drive. If your USB partition is for example /dev/sde1 than you simply create new mount point in /media/

# mkdir /media/MY_USB

and mount your USB partition to above mount point:

# mount /dev/sde1 mkdir /media/MY_USB

If you require further assistance please paste here output of your

# fdisk -l

command.

Hope this helps…

Lubos