文件共享之NFS配置
当前测试系统环境Centos7.6 服务端配置 当前服务端IP192.168.1.100,内网网段192.168.1.0/24 1、安装nfs
1 |
yum install nfs-utils |
2、创建一个要共享的目录 [crayon-673f … 阅读全文
当前测试系统环境Centos7.6 服务端配置 当前服务端IP192.168.1.100,内网网段192.168.1.0/24 1、安装nfs
1 |
yum install nfs-utils |
2、创建一个要共享的目录 [crayon-673f … 阅读全文
当前使用Centos系统,通过NFS客户端使用mount挂载时报错以下内容
1 2 3 4 5 6 7 |
mount: wrong fs type, bad option, bad superblock on 192.168.1.135:/data, missing codepage or helper program, or other error (for several filesystems (e.g. nfs, cifs) you might need a /sbin/mount. helper program) In some cases useful info is found in syslog - try dmesg | tail or so. |
原因是当前客户端缺少/sbin/mount/mount.nfs 解决办法:安装nfs-utils包后重新挂载即可 [c … 阅读全文