* Paulo Gravito <[EMAIL PROTECTED]> [2005-01-21 11:09] : > J'ai un probl�me avec l'utilisation de mount > ---------------------------------------------------------- > 10:41 [EMAIL PROTECTED] ~% mount /floppy > mount: must be superuser to use mount > zsh: exit 32 mount /floppy <-------idem pour /cdrom /cle_usb > ----------------------------------------------------------
[...] > 10:52 [EMAIL PROTECTED] ~% ls -la /bin/mount > -rwxr-xr-x 1 root root 67K 2004-12-25 16:17 /bin/mount* Tu as un probl�me avec les droits de /bin/mount, normalement, il est setuid root : $ ls -l /bin/mount -rwsr-xr-x 1 root root 68440 2004-12-25 16:17 /bin/mount Donc, "chmod u+s /bin/mount" pour corriger le probl�me. Fred -- Comment poser les questions de mani�re intelligente�? http://www.gnurou.org/documents/smart-questions-fr.html Comment signaler efficacement un bug�? http://www.chiark.greenend.org.uk/~sgtatham/bugs-fr.html

