Operating System - Linux
1819682 Members
3645 Online
109605 Solutions
New Discussion юеВ

how to mount USB drive on RedHat Linux AS 3.0

 
SOLVED
Go to solution
shaobinxu
Occasional Advisor

how to mount USB drive on RedHat Linux AS 3.0

a small USB flash drive 256MB, want to mount to linux, is it possible? anyone can help?
7 REPLIES 7
Ajay Agarwal
Frequent Advisor
Solution

Re: how to mount USB drive on RedHat Linux AS 3.0

1) Plug in the flash drive into one of the USB ports on your computer.
2) Enter the following command:
# lsusb
This will list all usb devices on your system.

3) Go into your /dev directory and look for sdXX where XX is a leter and number ex: sda1.
Some distros will only make a dev for the devices you have and some will not. If there are a lot of sdXX's in there than just start with sda1 and try others if you have no luck.
4) Make a directory to mount your drive, eg. /mnt/usb.
5) Then mount the device:
mount -t vfat /dev/sda1 /mnt/usb


Chakravarthi
Trusted Contributor

Re: how to mount USB drive on RedHat Linux AS 3.0

hello,

check the below link,this will explain how to enable support for usb drives and reconfigure the kernel.

-chakri
Alexander Chuzhoy
Honored Contributor

Re: how to mount USB drive on RedHat Linux AS 3.0

create a temporary directory like /mnt/usb
plug your USB drive.
see the output of `dmesg`
if you see sda
then mkdir /dev/sda1 /mnt/usb
if you see sdb
then mkdir /dev/sdb1 /mnt/usb
and so on...
Vipulinux
Respected Contributor

Re: how to mount USB drive on RedHat Linux AS 3.0

Hi

ON RHAS 3.0, plug in the usb and do
cd /mnt/usb

Cheers
Vipul

Chakravarthi
Trusted Contributor

Re: how to mount USB drive on RedHat Linux AS 3.0

sorry forgot to paste the link

here it is
http://forums.dreamincode.net/showtopic9989.htm
shaobinxu
Occasional Advisor

Re: how to mount USB drive on RedHat Linux AS 3.0

Thank you for your all, the drive mounted, thanks for your reply.
shaobinxu
Occasional Advisor

Re: how to mount USB drive on RedHat Linux AS 3.0

thanks all