Ok, so I just compiled a new kernel, but I can't mount my vfat partition. In my kernel I enabled MSDOS fs support, and VFAT(WINDOWS-95) fs support. In my fstab I have this :
Code:
/dev/hdb6 /share vfat uid=500,umask=000 0 2
Here's is what I get if I try to mount the partition:
Code:
mike:/home/mike# mount /dev/hdb6
mount: wrong fs type, bad option, bad superblock on /dev/hdb6,
missing codepage or other error
In some cases useful info is found in syslog - try
dmesg | tail or so
or the same if I try
Code:
mike:/home/mike# mount /share
mount: wrong fs type, bad option, bad superblock on /dev/hdb6,
missing codepage or other error
In some cases useful info is found in syslog - try
dmesg | tail or so
Is there something I left out of the kernel or am I doing something wrong? Any help is appreciated.