quote:
that's a nice little tutorial, i was assuming that the filesystem type would be autodetected by mount, but it may not be on some versions and with some filetypes (i know from experience! )
Filesystem autodetection usually does work, but you have to have the filesystem set to auto, and the mount point defined in /etc/fstab.
The only problem in doing this lies with the kernel itself. Since he is using a pretty bare-bones version of Linux, his kernel might not have been compiled with support for a great number of filesystems. If he is getting an error stating that vfat is a bad filesystem option, he is going to have to:
$ /sbin/insmod vfat (or whatever the name of the module is for FAT Filesystems)
and see if he has a module that he can load. If he doesn't have a loadable module to support the type of FS he is mounting, then it is time to read up on Kernel Recompiling