对于 NFS 安装来说,没有必要挂载 iso 映像。使 iso 映像通过 NFS 可用就足够了。你可以把 iso 映像移到 NFS 的输出目录来使它可用。
Ensure that the /publicly/available/directory
directory is exported via NFS via an entry in /etc/exports
.
要输出到指定的系统:
/publicly/available/directory
client.ip.address
(ro,no_root_squash)
要输出到所有系统里,使用如下的设置:
/publicly/available/directory
*(ro,no_root_squash)
Start the NFS daemon (on a Fedora system, use /sbin/service nfs start
). If NFS is already running, reload the configuration file (on a Fedora system use /sbin/service nfs reload
).