Skip to main content

Fujitsu

Japan

ファイルの権限/属性/種類:ファイル・ディレクトリのアクセス権の変更

コマンド

/usr/bin/chmod 

形式

chmod [オプション] モード ファイル名 ディレクトリ・ファイルのアクセス権を変更します。

オプション

-R 再帰的にモードを変更します。

使用例

chmod 744 file1
chmod -R 744 /dir1
chmod 1744 file1

file1のアクセス権を744に変更します。
ユーザに読取、書込、実行権を付加します。グループとその他のユーザに読取権を付加します。

# ls -l file1
-rw-r--r--   1 root     root           0  4月 20日  10:54 file1
#
# chmod 744 file1
#
# ls -l file1
-rwxr--r--   1 root     root           0  4月 20日  10:54 file1

ディレクトリ/dir1のアクセス権を再帰的に744に変更します。
ユーザに読取、書込、実行権を付加します。グループとその他のユーザに読取権を付加します。

# ls -ld /dir1
drwxr-xr-x   2 root     root         512  4月 20日  10:58 dir1/
#
# ls -l /dir1
合計 8
drwxr-xr-x   2 root     root         512  5月 12日  15:51 dir1/
drwxr-xr-x   2 root     root         512  5月 12日  15:51 dir2/
drwxr-xr-x   2 root     root         512  5月 12日  15:51 dir3/
drwxr-xr-x   2 root     root         512  5月 12日  15:51 dir4/
#
# chmod -R 744 /dir1
#
# ls -ld /dir1
drwxr--r--   2 root     root         512  4月 20日  10:57 dir1
#
# ls -l /dir1
合計 8
drwxr--r--   2 root     root         512  5月 12日  15:51 dir1/
drwxr--r--   2 root     root         512  5月 12日  15:51 dir2/
drwxr--r--   2 root     root         512  5月 12日  15:51 dir3/
drwxr--r--   2 root     root         512  5月 12日  15:51 dir4/

file1にスティッキービットを設定します。

# chmod 1744 file1
#
# ls -l file1
-rwxr--r-T     1 root     root           0  4月 20日  10:54 file1

関連情報

  • ディレクトリ内のファイルの一覧表示(ls
  • ファイル・ディレクトリの所有権の変更(chown