Αν και δεν το ξέρω καν και δεν το έχω προσπαθήσει βρήκα τα παρακάτω (αναφέρονται στο 8.10)...
Howto: Use Floppy in Ubuntu 8.10
By default, the use of floppy drives is disabled in Ubuntu 8.10.
The reason for a not responding floppy under /dev/fd0 (standard device) is the deactivated kernel module for floppies. To permanently activate the module loading of the floppy, simply run in xterm:
- Κώδικας: Επιλογή όλων
gksudo gedit /etc/modules
and add this simple line to /etc/modules
- Κώδικας: Επιλογή όλων
floppy
The Floppy will be now available after reboot – to use it instantly, simply type into xterm:
- Κώδικας: Επιλογή όλων
sudo modprobe floppy
To mount the floppy, add a mountpoint in /media like
- Κώδικας: Επιλογή όλων
sudo mkdir /media/floppy
and mount it with:
- Κώδικας: Επιλογή όλων
sudo mount /dev/fd0 /media/floppy
To permanently have the device linked to the mountpoint, edit /etc/fstab:
- Κώδικας: Επιλογή όλων
gksudo gedit /etc/fstab
and add this line:
- Κώδικας: Επιλογή όλων
/dev/fd0 /media/floppy auto rw,user,noauto,exec,utf8 0 0
Δεν εγγυώμαι οτι θα δουλέψει. Μπορείς όμως να το δοκιμάσεις. Πάρε backup απο τα αρχεία που τροποποιείς ώστε να επαναφέρεις κάτι που ίσως έκανες λάθος.