1.创建文件:
touch 1.txt2.Loop
for i in {0..1000}; do fuser 1.txt;done3.查看约50个故障:
...
Cannot stat file /proc/16927/fd/0: No such file or directory
Cannot stat file /proc/17821/fd/0: No such file or directory
Cannot stat file /proc/17823/fd/0: No such file or directory
...5.附加信息:本地FS、ext3、stat始终返回有效响应,'selinux‘off
发布于 2015-09-11 19:09:47
我假设fuser遍历正在运行的进程,并查找指向相关文件的打开的fd,在此过程中,一些进程在fuser检查它们的过程中会死亡。-- Etan Reisner
https://stackoverflow.com/questions/29134268
复制相似问题