Chmod計算ツール
Unix/Linuxファイルパーミッションを計算します。8進数表記(例:755)とシンボリック表記(例:rwxr-xr-x)間を変換。
Owner6
Group4
Others4
Owner: 110Group: 100Others: 100
Chmod Calculator - 技術的な詳細
Unix file permissions control who can read, write, and execute files. Each permission set (owner, group, others) uses 3 bits: read (4), write (2), execute (1). Common values: 644 for files, 755 for executables, 700 for private directories.
コマンドラインでの代替方法
# Common chmod examples\nchmod 755 script.sh # rwxr-xr-x (executable)\nchmod 644 file.txt # rw-r--r-- (regular file)\nchmod 600 secrets.env # rw------- (private)\nchmod -R 755 directory/ # Recursive