This is my first time posting a question, so please excuse any problems.
I am trying to mount a usb storage device onto RedHat enterprise server 3.0. It had been previously mounted, so I know the Kernel supports usb. This is what I did :
Physically attached the USB device.
Mount -t usbdevfs usbdevfs /proc/bus/usb
...succeeds
mkdir /mnt/backup
...succeeds
Mount -t usbdevfs /dev/sda1 /mnt/backup
...succeeds
ls -al /mnt/backup
All I see is directories 001,002,003,004,devices and drivers.
cat /proc/scsi/scsi
shows only one attached device - a WD disk.
ls /proc/scsi/usb-storage-0/
shows one file called 2 ( I tried /dev/sda2 - same result )
The last line of this file shows attached=No
Then unmounted /dev/sda1 and tried
mount -t ext2 /dev/sda1 /mnt/backup
got message "wrong fs type or too many mounted filesystems"
Then tried
mount /dev/sda1 /mnt/backup
got message "must specify file type"
Then tried
Mount -t usbdevfs /dev/sda1 /mnt/backup
...succeeds
but
ls -al /mnt/backup
All I see is directories 001,002,003,004,devices and drivers.
Any advice appreciated
Thanks