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