0
0

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 3 years have passed since last update.

パーミッション、所有権の変更コマンド【Linux】

Posted at

ファイル、ディレクトリのパーミッション変更

chmod パーミッション変更コマンド

test.phpのパーミッションを変更する。
例:パーミッションを775に変更

$ chmod 775 test.php

下記のパーミッションに変更される。

-rwxrwxr-x
- rwx rwx r-x
-(ファイル)、d(ディレクトリ) 所有者権限 グループ権限 その他のユーザー権限
r w x
読み込み可能 書き込み可能 実行可能
4 2 1

ファイル、ディレクトリの所有権変更

chown 所有権変更コマンド

test.phpの所有権を変更する。
例:所有権をnginxに変更

$ chown nginx:nginx test.php
0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?