服务器之家:专注于服务器技术及软件下载分享
分类导航

Linux|Centos|Ubuntu|系统进程|Fedora|注册表|Bios|Solaris|Windows7|Windows10|Windows11|windows server|

服务器之家 - 服务器系统 - Centos - CentOS下如何查看一个文件的硬链接数?

CentOS下如何查看一个文件的硬链接数?

2019-06-26 14:21CentOS之家 Centos

一些朋友不知道CentOS下如何查看一个文件的硬链接数?今天小编就为大家带来CentOS下查看一个文件的硬链接数的方法;希望对大家会有帮助;有需要的朋友一起去看看吧

用ls -l 可以看到有一个文档的硬链接数:

[root@localhost tmp]# ls -li

total 104

229415 drwxr-xr-x  2 root root 4096 Dec 11 21:15 etc

 39757 -rw-r--r--  2 root root 1602 Oct 30 14:56 hl_passwd

用一下语句可以查看一个文件有哪些硬链接

[root@localhost tmp]# find / -inum 39757

find: /proc/6266/task/6266/fd/4: No such file or directory

/etc/passwd

/tmp/hl_passwd

但是注意由于硬链接是不能跨文件系统的,所以

 Add the `-xdev' option if you are starting the

search at a directory that has other filesystems mounted on it,

延伸 · 阅读

精彩推荐