LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   re: filesystem for mounting fd0 (https://www.linuxquestions.org/questions/linux-newbie-8/re-filesystem-for-mounting-fd0-113737/)

ergo_sum 11-08-2003 08:42 AM

re: filesystem for mounting fd0
 
Hello All:

I'm trying to format a floppy, and cannot mount it.

I wrote:

mount /dev/fd0 /mount/floppy

and got:

mount: you must specify the filesystem type


So, how do I format a used floppy so I can put something on it?

Thanks,

ergo_sum

andguent 11-08-2003 09:41 AM

try mount -t vfat /dev/fd0 /mount/floppy for a windows formatted floppy. The -t stands for type of filesystem it is formatted as. vfat is a generic windows file system that many floppies are formatted as.

Quick generic tip: try mount --help or mount -h
The --help or -h switch may tell you other options or give you ideas on where to go. This often works with just about any program, not just mount.

ergo_sum 11-08-2003 10:24 AM

And how do I format it?

ergo_sum

aaa 11-08-2003 11:14 AM

You format with the dos fs tools. Not sure which, you can try 'mkdosfs -F 32 /dev/fd0' , or search the man pages.

michaelk 11-08-2003 04:08 PM

You really do not need to format a floppy. linux can read DOS formated floppies just fine.

For standard DOS format the command is
fdformat /dev/fd0

linux ext2 formated floppies

mke2fs /dev/fd0


All times are GMT -5. The time now is 05:02 AM.