客户端挂载nfs报错mount: wrong fs type, bad option, bad superblock on...

解决客户端挂载nfs是出现如下报错问题:

     mount: wrong fs type, bad option, bad superblock on 172.16.1.9:/home/addam,
       missing codepage or helper program, or other error
       (for several filesystems (e.g. nfs, cifs) you might
       need a /sbin/mount.<type> helper program)
       In some cases useful info is found in syslog - try
       dmesg | tail  or so

首先到nfs服务器端查看NFS服务是否正常:

[email protected]:~# /etc/init.d/nfs-kernel-server status
nfsd running

nfs服务是正常的,接下来查看一下是否有共享目录

[email protected]:~# showmount -e

Export list for jacob.accad.sjs.year100.com:
/home/addam   172.16.1.14  172.16.1.8

ok,服务端看来没什么问题,接下来的问题可能就是客户端了,但是我只是挂载一个nfs共享怎么会报错?经过一番Google,最后找到一个解决方法,特此记录,以供参考:

yum install showmount
时间: 2024-10-09 22:11:21

客户端挂载nfs报错mount: wrong fs type, bad option, bad superblock on...的相关文章

KVM http网络加载镜像报错(mount: wrong fs type, bad option, bad superblock on /dev/loop0)

curl: (23) Failed writing body (7818 != 16384)loop: module loadeddracut-initqueue[579]: mount: wrong fs type, bad option, bad superblock on /dev/loop0dracut-initqueue[579]: missing codepage or helper program, or other errordracut-initqueue[579]: In s

azure云中 mount: wrong fs type, bad option, bad superblock on /dev/sdc1

2016-01-30 mount失败问题解决 [[email protected] ~]# mount /dev/sdc /dta mount: you must specify the filesystem type [[email protected] ~]# [[email protected] ~]# mount -t ext4 /dev/sdc1 /data mount: wrong fs type, bad option, bad superblock on /dev/sdc1, m

Error mounting: mount: wrong fs type, bad option, bad superblock on /dev/sdb1简单解决方法

使用CentOS连接U盘时,刚连接时,可能会报一下错误: Error mounting: mount: wrong fs type, bad option, bad superblock on /dev/sdb1, missing codepage or helper program, or other error In some cases useful info is found in syslog - try dmesg | tail  or so 初步的解决方法是将U盘里的资料备份后,重

mount: wrong fs type, bad option, bad superblock

mount: wrong fs type, bad option, bad superblock on 125.64.41.244:/data/img,       missing codepage or helper program, or other error       (for several filesystems (e.g. nfs, cifs) you might       need a /sbin/mount.<type> helper program)       In

解决nfs挂载错误wrong fs type, bad option, bad superblock

错误: [[email protected]]# mount -t nfs 192.168.0.106:/home/nfs1 mount: wrong fs type, bad option, bad superblock on 192.168.0.106:/home/nfs1,        missing codepage or helper program, or other error        (for several filesystems (e.g. nfs, cifs) yo

linux文件系统问题:wrong fs type, bad option, bad superblock

http://blog.itpub.net/26006637/viewspace-1059946/ 报错内容: mount: wrong fs type, bad option, bad superblock on /dev/mapper/oraclevg-oraclelv, missing codepage or helper program, or other error In some cases useful info is found in syslog - try dmesg | t

linux 挂载NFS报错解决

客户端linux开启了防火墙: 挂载NAS 硬盘报错: [[email protected] ~]# mount 172.16.0.11:/share/MD0_DATA/MAIL_NAS/ /mnt/mailnas/mount.nfs: rpc.statd is not running but is required for remote locking.mount.nfs: Either use '-o nolock' to keep locks local, or start statd.m

linux下挂载samba时报错,wrong fs type,bad option,bad superblock

环境:172.24.21.22是samba服务端 使用mount命令直接挂载,如下 居然报错,那我们使用-t 参数,加上cifs 居然还是报错 仔细查看上面的报错,小括号里面的,need a /sbin/mount.<tpye> helper program) 貌似在/sbin/有很多与mount相关的命令,查看如下,使用双tab列出所有/sbin/mount.开头的命令: 貌似少了一个mount.cifs,因为samba使用的文件系统是cifs:那就安装嘛,如下 上面安装mount.cifs

linux挂载文件报错mount error(13): Permission denied

本人是通过xshell5连接远程虚拟机linux后,在xshell5端进行挂载windows下的文件夹出现以下错误:mount error(13): Permission deniedRefer to the mount.cifs(8) manual page (e.g. man mount.cifs) 挂载命令mount -t cifs -o username=用户名,password=密码 //172.x.x.x/project /mnt/project (根据不同ip修改自己的) 方法:一