【回答】
(1)ファイルの所有者を変更するには chown コマンドを使用します。
chown [オプション] 所有ユーザ ファイル名
[root@testlinux test]# chown user1 test.txt
[root@testlinux test]# ls -l test.txt
-rw-r--r-- 1 user1 root 0 11月 15 15:15 test.txt
オプションに -R を指定するとサブフォルダ以下にも再帰的に適用します。
(2)ファイルの所有グループを変更するには chgrp コマンドを使用します。
chgrp [オプション] 所有グループ ファイル名
[root@testlinux test]# chgrp user1 test.txt
[root@testlinux test]# ls -l
合計 4
-rw-r--r-- 1 user1 user1 0 11月 15 15:15 test.txt
オプションに -R を指定するとサブフォルダ以下にも再帰的に適用します。
(*)本ページは Redhat Enterprise Linux 4以後を想定しています。
最終更新日:2009/12/30
[Redhat Enterprise linux 6(EL) FAQ トップへ]
[FAQ CENTER トップ]