2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

LINUX コマンド パーミッション管理コマンド

Posted at

#パーミッション管理

##chgrp
change group の 略。
###指定したファイルの所有グループの変更(要root権限)

$ chgrp グループ ファイル名


###指定したディレクトリ以下全てのファイルの所有グループの変更(要root権限)
>```
$ chgrp -R グループ名 ディレクトリ名 

##chmod
change mode の 略。
###指定したファイルのアクセス権を変更

$ chmod アクセス権 ファイル名


###指定したディレクトリ以下全てのファイルのアクセス権の変更
>```
$ chmod -R アクセス権

##chown
change owner の 略。
###指定したファイルの所有者の変更(要root権限)

$ chown 所有者 ファイル名


###指定したディレクトリ以下全てのファイルの所有者の変更(要root権限)
>```
$ chown -R 所有者 ディレクトリ

こちらの書籍を参考にさせていただきました↓
LPICの基礎が学べる本

2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?