Hi,
I'm trying to follow the instructions at
www.extremetech.com/article2/0,1697,1256766,00.asp for mounting a USB stick but am having problems.
Firstly, here's the output of lsmod, just so you can see if I've got every module I need:
Module Size Used by Tainted: P
usb-storage 62432 0 (unused)
nvidia 1964768 6 (autoclean)
snd-pcm-oss 36736 0 (unused)
snd-mixer-oss 12376 0 [snd-pcm-oss]
keybdev 1892 0 (unused)
mousedev 4020 1
hid 20868 0 (unused)
usbmouse 1880 0 (unused)
input 3200 0 [keybdev mousedev hid usbmouse]
uhci 24284 0 (unused)
ehci-hcd 17516 0 (unused)
usbcore 59148 1 [usb-storage hid usbmouse uhci ehci-hcd]
snd-via82xx 13376 1
gameport 1420 0 [snd-via82xx]
snd-ac97-codec 58556 0 [snd-via82xx]
snd-pcm 54344 0 [snd-pcm-oss snd-via82xx snd-ac97-codec]
snd-timer 13764 0 [snd-pcm]
snd-mpu401-uart 3136 0 [snd-via82xx]
snd-rawmidi 12480 0 [snd-mpu401-uart]
snd-seq-device 3812 0 [snd-rawmidi]
snd 32772 1 [snd-pcm-oss snd-mixer-oss snd-via82xx snd-ac97-codec snd-pcm snd-timer snd-mpu401-uart snd-rawmidi snd-seq-device]
snd-page-alloc 4712 0 [snd-mixer-oss snd-via82xx snd-pcm snd-timer snd-rawmidi snd-seq-device snd]
soundcore 3396 4 [snd]
pcmcia_core 39172 0
ide-scsi 9392 0
via-rhine 12336 1
mii 2272 0 [via-rhine]
crc32 2880 0 [via-rhine]
apm 9452 2
And here's my fstab, edited as per the instructions on the site mentioned above:
fstab:
/dev/hda2 swap swap defaults 0 0
/dev/hda1 / reiserfs defaults 1 1
/dev/cdrom /mnt/cdrom auto noauto,owner,ro 0 0
/dev/fd0 /mnt/floppy auto noauto,owner 0 0
devpts /dev/pts devpts gid=5,mode=620 0 0
proc /proc proc defaults 0 0
/dev/sda1 /mnt/usbstick vfat user,noauto,umask=0 0 0
I followed the guide's instructions up to the point where I enter:
tail -s 3 -f /var/log/messages
I get:
Jan 10 12:53:05 slackware -- MARK --
Jan 10 13:12:16 slackware kernel: hub.c: new USB device 00:10.3-6, assi gned address 3
Jan 10 13:17:12 slackware kernel: Linux agpgart interface v0.99 (c) Jef f Hartmann
Jan 10 13:17:12 slackware kernel: agpgart: Maximum main memory to use f or agp memory: 439M
Jan 10 13:17:12 slackware kernel: agpgart: Detected Via Apollo Pro KT40 0 chipset
Jan 10 13:17:24 slackware kernel: usb.c: USB disconnect on device 00:10 .3-6 address 3
Jan 10 13:22:06 slackware kernel: hub.c: new USB device 00:10.3-6, assi gned address 4
Jan 10 13:28:08 slackware kernel: usb.c: USB disconnect on device 00:10 .3-6 address 4
Jan 10 13:29:53 slackware kernel: hub.c: new USB device 00:10.3-6, assi gned address 5
ie: there is no 'sda1' label being assigned by my kernel, as per the following example on the site:
Aug 26 17:06:09 localhost kernel: hub.c: new USB device 00:1f.2-1, assigned address 4
Aug 26 17:06:13 localhost /etc/hotplug/usb.agent: Setup usb-storage for USB product d7d/100/100
Aug 26 17:06:13 localhost /etc/hotplug/usb.agent: Setup nomadjukebox for USB product d7d/100/100
Aug 26 17:06:13 localhost /etc/hotplug/usb.agent: Module setup nomadjukebox for USB product d7d/100/100
Aug 26 17:06:13 localhost kernel: SCSI device sda: 121856 512-byte hdwr sectors (62 MB) Aug 26 17:06:13 localhost kernel: sda: Write Protect is off
Aug 26 17:06:13 localhost kernel: sda: sda1 Aug 26 17:06:13 localhost devlabel: devlabel service started/restarted
and then when I try to 'mount usbstick' from '/mnt', I get the following error message:
mount: can't find usbstick in /etc/fstab or /etc/mtab
As you can see from my fstab - it does seem to be there. Can anyone suggest what I might be doing wrong/missing?
Thanks.