You are not logged in.
Pages: 1
Whenever I try and mount either my floppy drive or my memory stick in my clie I am told that there is either a bad block or wrong file type.
I have fat (vfat) compiled into the kernel, but it still doesn't work. I'm confident there isn't a problem with the drives.
Can anyobne suggest anything? This is quite frustrating...
Offline
Does the memory stick work on an other OS?
Did you partition and format it yet?
Did you specify the file system type when trying to mount the stick?
A bus station is where a bus stops.
A train station is where a train stops.
On my desk I have a workstation.
Offline
It worked on Arch before a recent hard drive failure caused me to have to re-install on a new drive.
It was working perfectly when mounted as vfat so I don't think it needs formatting. I try and mount it with:
mount -t vfat /dev/sda1 /mnt/clie
Offline
Check dmesg to see if the stick is recognized as /dev/sda. If it is, run fdisk /dev/sda to see what partitions are on it.
If there are several partitions, mount the stick with
mount -t vfat /dev/sda /mnt/usbstick
I used to mount my stick with /dev/sda (even though it held 4 different partitions! Found that out afterwards), but today I had to repartition and format the thing, so I made one big (256MB) FAT16 partition which I now have to mount with /dev/sda1.
A bus station is where a bus stops.
A train station is where a train stops.
On my desk I have a workstation.
Offline
Pages: 1