![](https://seccdn.libravatar.org/avatar/ed1e767a3a9a781c4da29446c2675ffd.jpg?s=120&d=mm&r=g)
Message-ID: <3A279A7D.87169420@yy-mm-dd.com> Date: Fri, 01 Dec 2000 13:33:01 +0100 From: Florian Kleedorfer <klee@yy-mm-dd.com> Subject: automount floppies Hi! For quite some time now I have been trying to make it possible for the users of my suse linux 7.0 (Kernel 2.2.16) systems to use floppy disks under linux as they do under win/dos. I have tried the fdutils package which I am not too overwhelmed by. Autofs is not really what I need, as it has certain drawbacks (mount point not visible before mounting, umounting a floppy not possible if it is still busy, inconsistencies when changing floppies, etc.) I have found some info on supermount (a kernel patch) which seems to do exactly what I want, but I haven't found any patches for kernel 2.2.16 yet. And there may be some other methods I havent heard of yet. Maybe there's some special suse-package that does what I want? Any hints are appreciated! Thanx Florian Kleedorfer
![](https://seccdn.libravatar.org/avatar/92170482e3d0f3a6efc2411804885575.jpg?s=120&d=mm&r=g)
From: muzh <muzh@ihug.co.nz> Date: Sat, 2 Dec 2000 14:33:57 +1300 Message-Id: <00120214335700.00989@cll> Subject: Re: [SLE] automount floppies I'm not quite sure what you mean. In my setup I have a line in /etc/fstab which says something like /dev/fd0 /floppy auto noauto,user 0 0 This enables any user to mount and umount /floppy In KDE or Gnome the user has merely to click on the icon to access the disk. On Saturday 02 December 2000 01:33, Florian Kleedorfer wrote:
Hi!
For quite some time now I have been trying to make it possible for the users of my suse linux 7.0 (Kernel 2.2.16) systems to use floppy disks under linux as they do under win/dos.
I have tried the fdutils package which I am not too overwhelmed by.
Autofs is not really what I need, as it has certain drawbacks (mount point not visible before mounting, umounting a floppy not possible if it is still busy, inconsistencies when changing floppies, etc.)
I have found some info on supermount (a kernel patch) which seems to do exactly what I want, but I haven't found any patches for kernel 2.2.16 yet.
And there may be some other methods I havent heard of yet. Maybe there's some special suse-package that does what I want?
Any hints are appreciated!
Thanx
Florian Kleedorfer
---------------------------------------- Content-Type: text/x-vcard; charset="us-ascii"; name="klee.vcf" Content-Transfer-Encoding: 7bit Content-Description: Visitenkarte für Florian Kleedorfer ---------------------------------------- ---------------------------------------- Content-Type: text/plain; charset="us-ascii"; name="Attachment: 2" Content-Transfer-Encoding: 7bit Content-Description: ---------------------------------------- -- Never trust a man in a suit cll
![](https://seccdn.libravatar.org/avatar/ed1e767a3a9a781c4da29446c2675ffd.jpg?s=120&d=mm&r=g)
Message-ID: <3A2D2FE1.8564267A@yy-mm-dd.com> Date: Tue, 05 Dec 2000 19:11:45 +0100 From: Florian Kleedorfer <klee@yy-mm-dd.com> Subject: Re: [SLE] automount floppies <p>muzh schrieb:
I'm not quite sure what you mean. In my setup I have a line in /etc/fstab which says something like /dev/fd0 /floppy auto noauto,user 0 0
This enables any user to mount and umount /floppy In KDE or Gnome the user has merely to click on the icon to access the disk.
I'll try to describe my needs more clearly: I'm looking for a way to use floppies without having to mount/umount them. GUIs don't really do anything else, they just save you some typing The thing is, handling floppies under linux is hard for unexperienced users. Inconsistencies or data losses are almost ineviteable at first use. there are packages/programs/patches that make using floppies easier such as the mtools(which don't do exactly what I need) or supermount, which is exactly what I need but which I haven't got to run nicely on my system (2.2.16) unfortunately. So, again: I'll be glad to hear about your experiences with any tools as described above or any related hints whatsoever! Thanx Flo
![](https://seccdn.libravatar.org/avatar/23e88181c36f77a181ecd6cdbc6f7bcb.jpg?s=120&d=mm&r=g)
Date: Tue, 5 Dec 2000 22:24:50 -0500 (EST) From: rjwohlfar@bigfoot.com Message-ID: <0562f07250606c0APP01@galaxyinternet.net> Subject: Re: [SLE] automount floppies On 5 Dec, Florian Kleedorfer wrote:
muzh schrieb:
I'm not quite sure what you mean. In my setup I have a line in /etc/fstab which says something like /dev/fd0 /floppy auto noauto,user 0 0
This enables any user to mount and umount /floppy In KDE or Gnome the user has merely to click on the icon to access the disk.
I'll try to describe my needs more clearly:
I'm looking for a way to use floppies without having to mount/umount them. GUIs don't really do anything else, they just save you some typing
The thing is, handling floppies under linux is hard for unexperienced users. Inconsistencies or data losses are almost ineviteable at first use.
there are packages/programs/patches that make using floppies easier such as the mtools(which don't do exactly what I need) or supermount, which is exactly what I need but which I haven't got to run nicely on my system (2.2.16) unfortunately.
So, again: I'll be glad to hear about your experiences with any tools as described above or any related hints whatsoever!
Thanx
Flo
I've used the 'autofs' package. It's available on the SuSE CD's (at least as far as 6.4). In addition to installing the package, you'll need to create two files: /etc/auto.mnt and /etc/auto.master. These are what the files look like on my system: /etc/auto.mnt # This is an automounter map and it has the following format # key [ -mount-options-separated-by-comma ] location # Details may be found in the autofs(5) manpage cdrom -fstype=iso9660,ro :/dev/cdrom floppy -fstype=auto,umask=0 :/dev/fd0 /etc/auto.master # Format of this file: # mountpoint map options # For details of the format look at autofs(8). /mnt /etc/auto.mnt I indented the text for readability. Dn't indent when typing in the real file. If you do not have a CDROM drive, take out the "cdrom" line from 'auto.mnt'. 'autofs' will automatically mount the drive when you try to access it. The drive unmounts when you eject the disk. The floppy is mounted under "/mnt/floppy". That's what the "/mnt" in 'auto.master' is for. -- Robert Wohlfarth rjwohlfar@bigfoot.com "My theory's right. Reality needs to be fixed."
participants (3)
-
klee@yy-mm-dd.com
-
muzh@ihug.co.nz
-
rjwohlfar@bigfoot.com