./prontouso.com
ALAT DEVELOPER

Kalkulator Izin File Chmod Linux

Pilih izin baca (read), tulis (write), dan eksekusi (execute) untuk Pemilik (Owner), Grup (Group), dan Publik (Others) untuk menghasilkan perintah chmod Linux yang tepat.

Status alatBerjalan di browser Anda
Pratinjau

Input

Izin visualBacaTulisEksekusi
Pemilik
Grup
Lainnya

Bit khusus

Bit khusus memengaruhi file yang dapat dieksekusi dan direktori bersama; alat ini hanya menjelaskan mode tersebut.

Hasil

Mode numerik
755
Mode simbolik
rwxr-xr-x

Penjelasan

  • PemilikBaca, Tulis, Eksekusi
  • GrupBaca, Eksekusi
  • LainnyaBaca, Eksekusi

Catatan: Pada direktori, bit eksekusi (x) memungkinkan pengguna masuk ke dalam folder.

Contoh

Cara kerja

  1. Masukkan data Anda

    Isi nilai yang diperlukan, tempel teks Anda, atau unggah file yang ingin diproses.

  2. Lihat hasil seketika

    Sebagian besar alat diperbarui secara langsung saat Anda mengetik; beberapa menggunakan satu tombol tindakan.

  3. Gunakan hasil Anda

    Salin, unduh, atau bagikan hasil yang dihasilkan — Anda selalu memiliki kendali penuh atas data Anda.

Privasi dan pemrosesan dataBerjalan secara lokal di browser Anda. Alat ini tidak mengunggah data Anda.

Apa itu Kalkulator Izin File Chmod Linux?

Convert between numeric chmod modes, symbolic rwx notation, and visual checkboxes for owner, group, and others.

PAHAMI CARA KERJA ALAT

How Unix chmod permissions work

Permission digits

Each chmod digit is a sum: read is 4, write is 2, and execute is 1. A digit of 7 means read, write, and execute; 5 means read and execute.

Common mode

755 means owner can read/write/execute, group and others can read/execute.

Special bits

setuid, setgid, and sticky are represented by an optional leading octal digit and affect executable files or shared directories in specific Unix contexts.

No commands are run

The tool only converts and explains permissions. It never executes chmod or accesses your files.

Numeric and symbolic example

Digit value
read(4) + write(2) + execute(1)

644

644 becomes rw-r--r--: owner can read/write, group and others can read only.

6 = 4 + 2; 4 = read; 4 = read

Permission conversion notes

The tool converts octal, symbolic, and checkbox states only. It never reads your filesystem or runs chmod on any local or server file.

Pertanyaan yang Sering Diajukan (FAQ)

What does chmod 644 mean?

The owner can read and write, while group and others can only read.

What does chmod 755 mean?

The owner can read, write, and execute, while group and others can read and execute.

Does this change file permissions?

No. It only generates and explains permission modes.

What do capital S and T mean in symbolic permissions?

They mean a special bit is set but the matching execute bit is not. For example S can appear where setuid or setgid exists without execute permission.