• Willkommen im Linux Club - dem deutschsprachigen Supportforum für GNU/Linux. Registriere dich kostenlos, um alle Inhalte zu sehen und Fragen zu stellen.

ext2 mit exec statt noexec mounten

pospiech

Hacker
/etc/fstab enthält den Eintrag

/dev/hdb2 /mnt/hdb2 ext3 noauto,exec,user,acl 1 2

gemountet ist jedoch mit

/dev/hdb2 on /mnt/hdb2 type ext3 (rw,noexec,nosuid,nodev,acl,user=matthias)

also mit noexec statt dem angegebenen exec.

Was muss ich ändern um das richtig zu bekommen? System ist 10.2
Matthias
 
man mount
Code:
 user   Allow an ordinary user to mount the file system.  The name of the mounting user is written to mtab so that he can unmount  the  file
                     system  again.  This option implies the options noexec, nosuid, and nodev (unless overridden by subsequent options, as in the option
                     line user,exec,dev,suid).

Die Option user beinhaltet noexec - die Option exec muss also in der /etc/fstab hinter user.
 
Oben