I am attempting to configure a FAT32 partition which is on my S-ATA drive along with my Linux ext3 and other partitions. I am running AMD64 as this is a 64 bit machine.
A sudo fdisk -l produces:
Disk /dev/sda: 500.1 GB, 500107862016 bytes
240 heads, 63 sectors/track, 64601 cylinders
Units = cylinders of 15120 * 512 = 7741440 bytes
Device Boot Start End Blocks Id System
/dev/sda1 * 1 9481 71676328+ 7 HPFS/NTFS
/dev/sda2 9482 16254 51203880 83 Linux
/dev/sda3 16255 64601 365503289 f W95 Ext'd (LBA)
/dev/sda5 16255 16532 2101648+ 82 Linux swap / Solaris
/dev/sda6 16533 26272 73625863+ b W95 FAT32
/dev/sda7 43163 64601 162078808+ 7 HPFS/NTFS
/dev/sda8 * 26272 42815 125065993+ 83 Linux
/dev/sda9 42815 43162 2626596 82 Linux swap / Solaris
I have set up a mount point /media/FatDrive and set the permissions to "Can view and Modify" for owner, group, others.
I have added a line to the fstab file as follows:
/dev/sda6 /media/FatDrive vfat iocharset=utf,unmask=000 0 0
When I do a ~$ sudo mount -a I get the following:
mount: wrong fs type, bad option, bad superblock on /dev/sda6,
missing codepage or other error
In some cases useful info is found in syslog - try
dmesg | tail or so
I am able to write files to this partition from Kubuntu AND also from WinXP however non of the files written in Kubuntu are visible in WinXP and those written in WinXP are not visible in Linux.
Any ideas would be appreciated.
Ray
A sudo fdisk -l produces:
Disk /dev/sda: 500.1 GB, 500107862016 bytes
240 heads, 63 sectors/track, 64601 cylinders
Units = cylinders of 15120 * 512 = 7741440 bytes
Device Boot Start End Blocks Id System
/dev/sda1 * 1 9481 71676328+ 7 HPFS/NTFS
/dev/sda2 9482 16254 51203880 83 Linux
/dev/sda3 16255 64601 365503289 f W95 Ext'd (LBA)
/dev/sda5 16255 16532 2101648+ 82 Linux swap / Solaris
/dev/sda6 16533 26272 73625863+ b W95 FAT32
/dev/sda7 43163 64601 162078808+ 7 HPFS/NTFS
/dev/sda8 * 26272 42815 125065993+ 83 Linux
/dev/sda9 42815 43162 2626596 82 Linux swap / Solaris
I have set up a mount point /media/FatDrive and set the permissions to "Can view and Modify" for owner, group, others.
I have added a line to the fstab file as follows:
/dev/sda6 /media/FatDrive vfat iocharset=utf,unmask=000 0 0
When I do a ~$ sudo mount -a I get the following:
mount: wrong fs type, bad option, bad superblock on /dev/sda6,
missing codepage or other error
In some cases useful info is found in syslog - try
dmesg | tail or so
I am able to write files to this partition from Kubuntu AND also from WinXP however non of the files written in Kubuntu are visible in WinXP and those written in WinXP are not visible in Linux.
Any ideas would be appreciated.
Ray
Comment