这里如何将 root 更改为 vagrant 以获取 linux 文件权限?
Here how to change root to vagrant for linux file permission?
-rw-r--r-- 1 root vagrant 0 2015-07-27 11:56 file1
-rw-rw-r-- 1 vagrant vagrant 194 2015-05-28 10:24 file2
也许这不是一个好问题。关于file1,不知道怎么改成vagrant as file2。
您可以使用 chown
命令更改文件所有者:
$ chown vagrant file1
来自man chown
:
chown changes the user and/or group ownership of each given file. If
only an owner (a user name or numeric user ID) is given, that
user is made the owner of each given file, and the files' group
is not changed.
您需要 运行 chown
作为 root
或使用 sudo
因为 file1
已被 root
所有。
-rw-r--r-- 1 root vagrant 0 2015-07-27 11:56 file1
-rw-rw-r-- 1 vagrant vagrant 194 2015-05-28 10:24 file2
也许这不是一个好问题。关于file1,不知道怎么改成vagrant as file2。
您可以使用 chown
命令更改文件所有者:
$ chown vagrant file1
来自man chown
:
chown changes the user and/or group ownership of each given file. If only an owner (a user name or numeric user ID) is given, that user is made the owner of each given file, and the files' group is not changed.
您需要 运行 chown
作为 root
或使用 sudo
因为 file1
已被 root
所有。