Results 1 to 3 of 3
Hi all.
I'm new to this. I need some help. I hope you could give it to me.
I've been installing RH 7.2 in a Compaq laptop, PMMX, 4Mb RAM, ...
- 02-07-2005 #1Just Joined!
- Join Date
- Feb 2005
- Posts
- 1
USB memory stick setup
Hi all.
I'm new to this. I need some help. I hope you could give it to me.
I've been installing RH 7.2 in a Compaq laptop, PMMX, 4Mb RAM, CD, FD, USB. It works fine, but I need to interchange information through USB memory stick, but I don't get it works.
What should I do?
What modules do I need to install? Where do I find them? What do I need for getting USB memoty stick working properly?
Thank you for your help.
SoftFARR
- 02-07-2005 #2
well if your setup correctly then all you have to do is plug it in and type
then yau can use it then typeCode:mount /mnt/usb
before removing the thumb driveCode:umount /mnt/usb
but that is in the perfact install
1. first you will have to add a line to /etc/fstab which will look like thisif that is the device (/dev/sda1)that it is reconized as in "dmesg" (kernel log) then make the directory /mnt/usbCode:/dev/sda1 /mnt/usb auto noauto,umask=0077,user,rw 0 0
2. then you will also need support in the kernel for 'usb mass storage' devices!Code:mkdir /mnt/usb
3. start at the top one at a time till it works.
~Mike ~~~ Forum Rules
Testing? What's that? If it compiles, it is good, if it boots up, it is perfect. ~ Linus Torvalds
http://loft306.org
- 02-07-2005 #3Just Joined!
- Join Date
- Feb 2005
- Posts
- 1
By default, Red Hat loads usb-uhci and usbcore on startup. But you'll need to load an additional module called usb-storage in order to get a flash drive working. just type:
#modprobe usb-storage
Next, create a mount point for the USB flash drive, which includes a directory for the mount point. So go to the /mnt sub-directory and create this sub-directory.
#mkdir /mnt/flashdrive
Edit the /etc/fstab file and add the following line:
#/dev/sda1 /mnt/flashdrive auto user,noauto,umask=0 0 0
Then type the dmesg command
#dmesg
Try to mount the /mnt/flashdrive directory
#mount /mnt/flashdrive


Reply With Quote