如何查找目录的所有者和组?


Answers:


171

您可以这样做:第一种方式:

ls -l /path/to/file

* ls -l输出中的第三个字段是用户,第四个字段是组

第二种方式:

stat /路径/到/文件

$ stat py
  File: `py'
  Size: 32              Blocks: 8          IO Block: 4096   regular file
Device: 801h/2049d      Inode: 429064      Links: 1
Access: (0777/-rwxrwxrwx)  Uid: ( 1000/  razvan)   Gid: ( 1000/  razvan)
Access: 2012-07-27 17:49:05.682143441 +0300
Modify: 2012-07-01 03:58:02.848540175 +0300
Change: 2012-08-01 21:12:57.129819212 +0300

Uid字段中的razvan是所有者/用户,Gid字段中的razvan是组。8 |

第三种方式:仅使用stat获取用户和组:

stat -c "%U %G" /path/to/file

3
ubuntu中的默认bashrc别名llls -l
Nemo 2012年

请注意,这是针对GNU stat的,特定于ubuntu的,这是可行的,但是寻找可移植的(受BSD支持的解决方案),这并不是您的答案。
卢克·埃克斯顿

1
FWIW,在BSD(mac)上将是stat -f "%u %g" /path/to/file
KarlKFI'4

19

运行ls-l标志,以显示文件和目录的当前目录的所有者和组所有者(或特定命名的目录)。

~$ ls -l
drwxr-xr-x  2 owner group 4096 Aug 12 19:12 Desktop
...
~$ ls -l /home/username
drwxr-xr-x  2 owner group 4096 Aug 12 19:12 Desktop
...

ls使用-l-d标志运行以显示有关当前目录本身(或有关特定命名目录)的信息:

~$ ls -ld
drwxr-xr-x  2 owner group 4096 Aug 12 19:12 .
~$ ls -ld ~/Desktop
drwxr-xr-x  2 owner group 4096 Aug 12 19:12 Desktop

13

要获取目录的所有者和组,您需要

ls -ld /path/to/folder

否则,您将获得目录内容的属性。


4

在Nautilus(GUI文件管理器)中

  • 查找目录对应的文件夹

  • 右键单击它。

  • 选择属性

  • 选择权限选项卡

如果您具有更改权限的权限,则也可以从该窗口更改权限。


0

我的微妙方式

ls -alF /path/to/folder | grep -Ei ' ./'

样本输出

drwxr-xr-x 2 some-user some-group 4096 Feb 28 02:29 ./

当然,更短的方法仍然是stat /path/to/folder命令
Nam G VU
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.