美文网首页
mount挂载文件,有坏超级块

mount挂载文件,有坏超级块

作者: PC_Repair | 来源:发表于2020-03-07 18:47 被阅读0次

    在客户端挂载nfs目录报错

    [root@k8s-node1 ~]# mount -t nfs 123.56.239.73:/data /data
    mount: 文件系统类型错误、选项错误、123.56.239.73:/data 上有坏超级块、
           缺少代码页或助手程序,或其他错误
           (对某些文件系统(如 nfs、cifs) 您可能需要
           一款 /sbin/mount.<类型> 助手程序)
    
           有些情况下在 syslog 中可以找到一些有用信息- 请尝试
           dmesg | tail  这样的命令看看
    

    解决办法:

    在客户端运行如下命令增加系统对nfs文件系统的支持:

    rpcinfo -p
    rpm -qa |grep nfs-utils
    yum -y install nfs-utils
    systemctl start nfs-utils
    systemctl enable nfs-utils
    rpcinfo -p
    mount -t nfs 123.56.239.73:/data /data
    

    相关文章

      网友评论

          本文标题:mount挂载文件,有坏超级块

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