Skip to main content
DevTools24

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