如何在 Ubuntu 中找出目录的所有者和组?
答案1
您可以这样做:第一种方法:
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 -c "%U %G" /path/to/file
答案2
跑步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
答案3
要获取目录的所有者和组,您需要
ls -ld /path/to/folder
否则,您将获得目录内容的属性。
答案4
我的微妙方式
ls -alF /path/to/folder | grep -Ei ' ./'
示例输出
drwxr-xr-x 2 some-user some-group 4096 Feb 28 02:29 ./