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