View previous topic :: View next topic |
Author |
Message |
blommethomas Apprentice
Joined: 16 Nov 2005 Posts: 285 Location: roeselare, belgium
|
Posted: Wed Nov 01, 2006 1:20 pm Post subject: can't mount floppy |
|
|
when I try to mount my floppy, I get:
Code: |
# mount -t vfat /dev/fd0 /mnt/floppy
mount: special device /dev/fd0 does not exist
|
I could not find any /dev/fd0 file so I opened the map /dev/fd and looked what was in there, I assumed my floppy was /dev/fd/0 and tried that:
Code: |
# mount -t vfat /dev/fd/0 /mnt/floppy
mount: /dev/fd/0 is not a block device
|
any idea what my floppy drive can be? _________________ IK BEN GEK |
|
Back to top |
|
|
NeddySeagoon Administrator
Joined: 05 Jul 2003 Posts: 54809 Location: 56N 3W
|
Posted: Wed Nov 01, 2006 1:34 pm Post subject: |
|
|
blommethomas,
Your kernel is missing floppy support, or its made as a module but not loaded.
Do if theres no error, your /dev/fd0 should have been created and mounting will work.
Code: | $ grep FD /usr/src/linux/.config
CONFIG_ARCH_MAY_HAVE_PC_FDC=y
CONFIG_BLK_DEV_FD=m
# CONFIG_FDDI is not set | shows my CONFIG_BLK_DEV_FD=m as a kernel module _________________ Regards,
NeddySeagoon
Computer users fall into two groups:-
those that do backups
those that have never had a hard drive fail. |
|
Back to top |
|
|
blommethomas Apprentice
Joined: 16 Nov 2005 Posts: 285 Location: roeselare, belgium
|
Posted: Thu Nov 02, 2006 12:20 pm Post subject: |
|
|
thx very much _________________ IK BEN GEK |
|
Back to top |
|
|
|