我正在运行 32 位 Ubuntu 14.04,并且尝试了解如何查看文件的权限和所有权。
答案1
在终端运行
ls -l
祝你好运。
答案2
右键单击文件Properties → Permissions
。
答案3
通过stat
stat file_name
或通过getfacl
getfacl file_name
来自男人getfacl
For each file, getfacl displays the file name, owner, the group, and the Access
Control List (ACL). If a directory has a default ACL, getfacl also displays the
default ACL. Non-directories cannot have default ACLs.
从man stat
Display file or file system status.
答案4
为了仅获取所需的输出,即文件的权限和所有权信息,您可以使用适当的选项stat
:
stat -c '%A %U:%G %n' file.txt
例如:
$ stat -c '%A %U:%G %n' file.txt
-rw-rw-r-- foobar:spamegg file.txt
使用-c
或--format
选项stat
:
%A
将获得我们的权限%U
会帮我们找到主人%G
将给我们所有者组%n
将为我们提供文件名。