在办公室的Ubuntu机器上不能mount成功我们在实验室中的NFS服务器,一直也没有太在意,因为平时还是用实验室的Redhat系列操作系统比较多一些,所以还以为是由于公司网络安全的原因,NFS在外网的挂载被禁止了。直到,,,直到前两天,偶然的机会,搜索到了Ubuntu上不能mount NFS服务器的原因可能是缺少 nfs-common 这个软件包。简单安装一下之后,就行了~
这两年来,我都还以为是IT策略管制的原因不能让办公室的Ubuntu系统挂载NFS呢,这回糗大了,都不敢告诉别人了。。。O(∩_∩)O哈哈~
Ubuntu中挂载NFS,需要安装 nfs-common 软件包啊!~
安装nfs-common之前,挂载NFS的错误信息,以及安装后正常挂载NFS,命令行操作示例如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
master@jay-ubuntu:~$ sudo mount vt-nfs:/share /mnt mount: wrong fs type, bad option, bad superblock on vt-nfs:/share, 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 master@jay-ubuntu:~$ sudo apt-get install nfs-common Reading package lists... Done Building dependency tree Reading state information... Done …… Processing triggers for libc-bin ... ldconfig deferred processing now taking place master@jay-ubuntu:~$ mount our-nfs:/share /mnt master@jay-ubuntu:~$ df -h Filesystem Size Used Avail Use% Mounted on /dev/sda1 28G 3.5G 23G 14% / udev 2.9G 4.0K 2.9G 1% /dev tmpfs 1.2G 1.2M 1.2G 1% /run none 5.0M 0 5.0M 0% /run/lock none 3.0G 1.4M 3.0G 1% /run/shm /dev/sda2 197G 56G 131G 30% /home /dev/sda3 99G 6.1G 88G 7% /usr our-nfs:/share 5.4T 2.6T 2.6T 50% /mnt |