it looks like the fox has not finished enumerating some usb pendrives at the point where devices are mounted
during runtime you can mount all devices that are not yet mounted by doing mount -a vfat this will mount all devices of type vfat now you wanna make a script in init.d. look at the existing ones to ensure that it can handle start|stop|restart etc parameters this new script in init.d will call a second script in the background using the "&" operator the second script should sleep for a while and then call "mount -a vfat". instead of sleeping you could also do some grepping on /proc to see when the device is enumerated finally you need to link the script in init.d against the runlevel default runlevel is 2 so... cd /etc/rc2.d ln -s ../init.d/usbplug S99usbplug John --- In [email protected], [EMAIL PROTECTED] wrote: > > Moin Klaus, > > please post the complete fstab that you modified > > John > > On 29.11.2006 at , you wrote: > > Hi all, > > > > after looking through almost all messages I don't know what goes > > wrong with my USB pen stick. > > I can mount it from shell using: > > > > mount -t vfat /dev/sda1 /mnt/1 > > > > But if i enter the following in /etc/fstab > > > > /dev/sda1 /mnt/1 vfat defaults 0 0 > > > > the device is not mounted after the boot completed. I also cannot > > see any errors in dmesg and messages. > > > > > > What's going wrong? > > > > Klaus > > > > > > > > >
