root
Користувач може записати у файл, навіть якщо його write
дозволи не встановлені.
root
Користувач може прочитати файл, навіть якщо його read
права не встановлені.
root
Користувач може cd
потрапити в каталог, навіть якщо його execute
дозволи не встановлені.
root
Користувач не може виконати файл, якщо його execute
права не встановлені.
Чому?
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