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

パーミッションのr, w, -についてまとめてみる

Posted at

パーミッション

ファイル権限の確認を忘れがちなので、自分なりにまとめてみる。

ファイルの権限を確認する。

ls -l

例えば、以下のような結果が出力されたとしよう。

-rw-rw-r-- 1 taro taro 0 Jun 15 12:32 permission.rb

最初の10文字をさらに4つに分解する。

-

これは、permission.rbがファイルであることを表す。
ちなみにディレクトリの場合、ここがdとなる。

rw-

この3文字はファイル所有者に対する権限を表している。つまり、permission.rbの所有者taroは読み取り、書き込みができる。

rw-

この3文字は、ファイル所有グループに対する権限を表している。つまり、permission.rbの所有グループであるtaroは、読み取り、書き込みができる。

r--

この3文字は、ファイル所有者でも所有グループでもない人に対する権限を表している。つまり、その他の人は、読み取りだけができる。

アルファベットと意味の対応はこちら。

アルファベット 意味
r 読み取り可
w 書き込み可
x 実行可
- 権限なし

参考

0
0
1

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?