web-dev-qa-db-ja.com

理解しやすいchownのドキュメントはありますか?

私はUbuntuに比較的精通しており、chownコマンドについて学びたいので、man chownを読み込もうとしましたが、理解するのは非常に困難です。これについて、よりシンプルで理解しやすい文書はありますか?

26

実際、そのようなドキュメントがあります。コマンドラインターミナルを開きます- CtrlAltT そして入力:

info chown

このドキュメントでは、専門用語とフレージングの使用が少なく、コマンドをより「会話的」に説明しています。したがって、初心者ユーザーにとって読みやすく、理解しやすいです。

infoページはより簡潔で完全な傾向があるため、manページを読んだ後、chownmanページをよく理解することをお勧めします。

29
jordy

tldr プロジェクトをインストールすることをお勧めします。

$ tldr chown
# chown                                                                                                                                                                                                                                       

  Change user and group ownership of files and folders.                                                                                                                                                                                       

- Change the owner user of a file/folder:                                                                                                                                                                                                     

  chown user path/to/file                                                                                                                                                                                                                     

- Change the owner user and group of a file/folder:                                                                                                                                                                                           

  chown user:group path/to/file                                                                                                                                                                                                               

- Recursively change the owner of a folder and its contents:                                                                                                                                                                                  

  chown -R user path/to/folder                                                                                                                                                                                                                

- Change the owner of a symbolic link:                                                                                                                                                                                                        

  chown -h user path/to/symlink                                                                                                                                                                                                               

- Change the owner of a file/folder to match a reference file:                                                                                                                                                                                

  chown --reference=path/to/reference_file path/to/file      
29
Nykakin

リンクだけの回答を掲載することは想定していません(謝罪します)が、 this リンクはあなたが探しているものだと思います。

7
Graham

今日のLinuxチュートリアルが大好きです。今すぐgoogle linuxを実行して、探しているコマンドを実行してください。最も一般的なコマンドには記事があります。

https://www.howtoforge.com/linux-chown-command/

1
Carol McAnulty