Linux 中的許可權 0666 和 0777

2021-10-07 05:29:56 字數 692 閱讀 1434

linux 系統中採用三位十進位制數表示許可權,如0755, 0644.

abcd

a- 0, 表示十進位制

b-使用者

c-組使用者

d-其他使用者

---  -> 0   (no excute , no write ,no read)

--x  -> 1   excute, (no write, no read)

-w-  -> 2   write 

-wx  -> 3   write, excute

r--  -> 4   read

r-x  -> 5   read, excute

rw-  -> 6   read, write , 

rwx  -> 7   read, write , excute

0755->即使用者具有讀/寫/執行許可權,組使用者和其它使用者具有讀寫許可權;

0644->即使用者具有讀寫許可權,組使用者和其它使用者具有唯讀許可權;

一般賦予目錄0755許可權,檔案0644許可權。

如:use cwd;

$path = getcwd;

mkdir($path/path, 0755);

# make a new folder in current working diectory.

reference:

1. perldoc

2. csdn:

Linux中許可權和命令的關係

我們知道許可權對與使用者賬號來說是非常重要的,因為它可以限制使用者能不能讀取 新建 刪除 修改檔案或目錄。下面說明一下什麼樣的許可權在什麼樣的命令下能夠執行 讓使用者能進入某個目錄成為可工作目錄的基本許可權是什麼 可使用的命令 例如cd等切換工作的目錄命令。目錄所需要的許可權 使用者對這個目錄至少具...

Linux 中的許可權 0755 和 0644

linux 系統中採用三位十進位制數表示許可權,如0755,0644.abcd a 0,表示十進位制 b 使用者 c 組使用者 d 其他使用者 0 no excute no write no read x 1 excute,no write,no read w 2 write wx 3 write,...

Linux中drwxr xr x 的意思和許可權

讀 read 寫 write 執行r recute 簡寫即為 r,w,x 亦可用數字來 4,2,1 表示 舉例 如果某檔案許可權為7則代表可讀 可寫 可執行 4 2 1 若許可權為6 4 2 則代表可讀 可寫。許可權為5代表可讀 4 和可執行 1 許可權為3代表可寫 2 和可執行 1 下圖中檔案所有...