修改目录中“ ls -l”输出的第二列

时间:2019-11-15 21:16:40

标签: shell unix

我正在尝试修改权限后的数字,该数字显示在ls -l的第二栏中:

drwxrwxrwx 1 ddel-rio ddel-rio 512 nov 15 20:27 test0

我希望1成为2,我已经研究了硬链接,但仍然无法解决。

1 个答案:

答案 0 :(得分:0)

常规用户无法创建目录的硬链接。只有超级用户可以。尝试使用一个文件。假设您的文件系统是Unix,应该可以正常工作

touch filex
ln filex filey

在“ link(2)”手册页中,显示“ EPERM”的原因之一:

 EPERM (since Linux 3.6)
     The caller does not have permission to create a hard link to this 
     file (see the description of
     /proc/sys/fs/protected_hardlinks in proc(5)).

 EPERM
     The filesystem containing oldpath and newpath does not support
     the creation of hard links.