美文网首页
df : no file systems processed 报

df : no file systems processed 报

作者: _奇变偶不变_ | 来源:发表于2021-02-12 22:38 被阅读0次

问题现象:

执行df -h 以及 df -i 检查磁盘信息无法返回结果,报错

df : no file systems processed

问题原因:

执行 df 命令时,会读取 /etc/mtab 文件中的挂载信息,才能获取到当前系统中的分区的挂载情况。而 /etc/mtab 文件是在 mount 挂载分区、umount 卸载分区等操作时动态更新的,同时它也与 /proc/mount 中的挂载信息相同。

当 /etc/mtab 中的内容存在异常导致与 /proc/mount 不同步时,就会导致执行 df 时出现前述报错。

解决方法:

同步/proc/mounts信息到/etc/mtab

cat /proc/mounts > /etc/mtab

相关文章

网友评论

      本文标题:df : no file systems processed 报

      本文链接:https://www.haomeiwen.com/subject/ozvjxltx.html