我对 Ubuntu 比较了解,想了解一下命令chown
,所以试着阅读了一下man chown
,但觉得很难理解。有没有比较简单易懂的文档?
答案1
实际上有这样的文档。打开命令行终端 -CtrlAltT 然后输入:
info chown
您会发现本文档使用的技术术语和措辞较少,并以更“对话”的方式解释命令。因此,对于初学者来说,它更容易阅读和理解。
阅读完该页面后,info
我建议您熟悉一下man
的页面chown
,因为这些man
页面往往更加简洁和完整。
答案2
我建议安装末日审判项目:
$ 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
答案3
不应该只发布链接答案(对此我深表歉意),但我认为这 链接可能就是您正在寻找的,因为它通过示例以简单详细的方式解释了事物。
答案4
我喜欢 linux today 教程。只需在 Google 上搜索 linux today 并找到您要查找的命令即可。大多数常用命令都有冠词。