Ich benutze ein FUSE-Dateisystem ohne Probleme als mein eigener Benutzer, aber root kann nicht auf meine FUSE-Mounts zugreifen. Stattdessen gibt jeder Befehl Permission denied
. Wie kann ich root die Erlaubnis geben, diese Reittiere zu lesen?
~/top$ sudo ls -l
total 12
drwxr-xr-x 2 yonran yonran 4096 2011-07-25 18:50 bar
drwxr-xr-x 2 yonran yonran 4096 2011-07-25 18:50 foo
drwxr-xr-x 2 yonran yonran 4096 2011-07-25 18:50 normal-directory
~/top$ fuse-zip foo.zip foo
~/top$ unionfs-fuse ~/Pictures bar
Mein Benutzer, yonran , kann es gut lesen:
~/top$ ls -l
total 8
drwxr-xr-x 1 yonran yonran 4096 2011-07-25 18:12 bar
drwxr-xr-x 2 yonran yonran 0 2011-07-25 18:51 foo
drwxr-xr-x 2 yonran yonran 4096 2011-07-25 18:50 normal-directory
~/top$ ls bar/
Photos
Aber root kann keines der FUSE-Verzeichnisse lesen:
~/top$ sudo ls -l
ls: cannot access foo: Permission denied
ls: cannot access bar: Permission denied
total 4
d????????? ? ? ? ? ? bar
d????????? ? ? ? ? ? foo
drwxr-xr-x 2 yonran yonran 4096 2011-07-25 18:50 normal-directory
~/top$ sudo ls bar/
ls: cannot access bar/: Permission denied
Ich verwende Ubuntu 10.04: Ich installiere immer ein Update von Canonical.
$ uname -a
Linux mochi 2.6.32-33-generic #70-Ubuntu SMP Thu Jul 7 21:13:52 UTC 2011 x86_64 GNU/Linux
$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 10.04.3 LTS
Release: 10.04
Codename: lucid
Bearbeiten : Die Implikation, dass root auf die Mounts zugreifen konnte, wurde entfernt. Denken Sie mal darüber nach, vielleicht haben meine Skripte nie versucht, als root auf das Verzeichnis zuzugreifen.
quelle