root
l'utente può scrivere su un file anche se le sue write
autorizzazioni non sono impostate.
root
l'utente può leggere un file anche se le sue read
autorizzazioni non sono impostate.
root
l'utente può cd
accedere a una directory anche se le sue execute
autorizzazioni non sono impostate.
root
l'utente non può eseguire un file quando le sue execute
autorizzazioni non sono impostate.
Perché?
user$ echo '#!'$(which bash) > file
user$ chmod 000 file
user$ ls -l file
---------- 1 user user 12 Jul 17 11:11 file
user$ cat file # Normal user cannot read
cat: file: Permission denied
user$ su
root$ echo 'echo hello' >> file # root can write
root$ cat file # root can read
#!/bin/bash
echo hello
root$ ./file # root cannot execute
bash: ./file: Permission denied