Hallo,
ich möchte per Automounter (autofs) auf das floppy zugreifen. Als root ist allles io, nur wenn ich als normaler user auf das floppy zugreife, habe ich nur Leserechte. Habe aber in der conf des autofs die Options so eingestellt, wie ich es auch beim mounten mit Hand machen würde. System ist ein debian 3.0 - Kernel 2.4.18.
Hier meine autofs-conf:
auto.master:
# Format of this file: # mountpoint map options # For details of the format look at autofs(5). /var/autofs/misc /etc/auto.misc --timeout=5
auto.misc:
# $Id: auto.misc,v 1.2 1997/10/06 21:52:04 hpa Exp $ # 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
cd -fstype=iso9660,ro,sync,nodev,nosuid :/dev/scd0 floppy -fstype=auto,sync,nodev,nosuid,user :/dev/fd0
Hier das Ergebnis von ls -l /var/autofs/misc/floppy:
-rw--r--r-- 1 root root 11 2003-05-22 08:25 test.dat
Dateisystem auf der floppy ist vfat. Wo muss ich drehen, dass ich auch als normaler user auf floppy schreiben kann.
Bernd Ledig bernd@ledig.info wrote:
Hallo,
ich möchte per Automounter (autofs) auf das floppy zugreifen. Als root ist allles io, nur wenn ich als normaler user auf das floppy zugreife, habe ich nur Leserechte. Habe aber in der conf des autofs die Options so eingestellt, wie ich es auch beim mounten mit Hand machen würde. System ist ein debian 3.0 - Kernel 2.4.18.
Hier meine autofs-conf:
auto.master:
[...]
# $Id: auto.misc,v 1.2 1997/10/06 21:52:04 hpa Exp $ # 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
cd -fstype=iso9660,ro,sync,nodev,nosuid :/dev/scd0 floppy -fstype=auto,sync,nodev,nosuid,user :/dev/fd0
Der Automounter läuft mit UID root, produziert also das selbe Ergebnis, als wenn du es als root von Hand machen würdest. Und dann hätte der normale User auch nur Schreibrechte.
Dateisystem auf der floppy ist vfat. Wo muss ich drehen, dass ich auch als normaler user auf floppy schreiben kann.
Gib den mount-Parameter umask=000 mit. Dadurch kann dann jeder voll zugreifen. Wenn du das nicht willst, dann nimm umask=007 und gid=users , oder in welcher Gruppe die normalen lokalen Benutzer bei dir eben sind.
mfg, Fabian
On Thu, 22 May 2003 13:06:46 +0200 Fabian Hänsel fabtagon@gmx.de wrote:
Gib den mount-Parameter umask=000 mit. Dadurch kann dann jeder voll zugreifen. Wenn du das nicht willst, dann nimm umask=007 und gid=users , oder in welcher Gruppe die normalen lokalen Benutzer bei dir eben sind.
mfg, Fabian
Funktioniert. Danke.
lug-dd@mailman.schlittermann.de