在 Ubuntu 14.04 上添加 NFS 挂载文件系统

在 Ubuntu 14.04 上添加 NFS 挂载文件系统

是否需要做一些特殊的事情来确保 NFS 文件系统在 14.04 启动时安装?

我在运行 Ubuntu 14.04 的虚拟服务器的 /etc/fstab 中添加了一些 NFS 挂载,但当我重新启动虚拟机时,它没有挂载文件系统。我添加了以下行:

mount -vat nfs

到 rc.local,但这是一种 hack。我是否需要做其他事情来让系统知道它需要挂载一些 NFS 文件系统?在 CentOS 机器上,只需在 /etc/fstab 中添加几行即可,但我是 Ubuntu 新手,也许我需要做一些额外的事情。

/etc/fstab 文件如下所示:

# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
# / was on /dev/vda1 during installation
UUID=ef6d9c40-9035-4452-b091-8b68d7a2cbee /               ext4    errors=remount-ro 0       1
# swap was on /dev/vda5 during installation
UUID=0da4579e-f3a9-4ab3-8818-0cc1cd559a8d none            swap    sw              0       0
192.168.1.251:/home            /home       nfs    rw,hard,intr,nfsvers=3,tcp,,defaults        0 0
192.168.1.251:/distros            /distros       nfs    ro,hard,intr,nfsvers=3,tcp,,defaults        0 0
192.168.1.251:/var/spool/mail /var/spool/mail       nfs     rw,hard,intr,nfsvers=3,tcp,,defaults        0 0
newserver:/UbuntuMirror /UbuntuMirror nfs rw,hard,intr,nfsvers=3,tcp,,defaults        0 0

主机服务器正在运行 CentOS 6.5,并且所有 NFS 文件系统都已正确导出。

相关内容