Linux - HardwareThis forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux?
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
I've tried everything I could find to replace and write in my fstab, and this is what I get when I mount one of the fat32
mount: wrong fs type, bad option, bad superblock on /dev/hdb1,
missing codepage or other error
In some cases useful info is found in syslog - try
dmesg | tail or so
Also, when I go to see what's in the other fat32, when I do an ls, I see nothing.
I've tried everything I could find to replace and write in my fstab, and this is what I get when I mount one of the fat32
mount: wrong fs type, bad option, bad superblock on /dev/hdb1,
missing codepage or other error
In some cases useful info is found in syslog - try
dmesg | tail or so
Also, when I go to see what's in the other fat32, when I do an ls, I see nothing.
Any ideas?
It might be easier to first mount the fat32 drive manually using the mount command. If this works then you can worry about the fstab entry.
Code:
sudo mount -t vfat /dev/hdb1 /mnt
I've used /mnt as the mount point but you can change that if you prefer to mount it somewhere else. If that works then it should be a piece of cake to put the correct entry in your fstab file.
Cheers,
jdk
/proc/config.gz is just a handy thing to build into the kernel, thereby it's easy to get the config of the running kernel.
It just stores your .config file in the kernel image.
It can be configured under General / Kernel .config support in the kernel configuration menus.
Nevertheless, that is not necessary for the FAT support.
If your fat support is built as a kernel module, then you might find some clues on it by typing modinfo vfat.
If it's built into the kernel monolithically, then this is no way to go.
As a last resort, you can build a kernel on your own, then configure the .config support (as above) and the VFAT support under Filesystems / DOS/FAT/NT Filesystems.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.