RHEL 5 PXE+DHCP+NFS+SFTP无人职守网络安装配置(4)

步骤四:配置nfs服务器

根据上面配置

nfs --server 192.168.13.130 --dir=/linuxos/install

那么我们需要手动创建目录/linuxos/install

[root@localhost /]# mkdir /linuxos/install

接下来,将安装光盘挂载在install上

[root@localhost install]# mount /dev/cdrom /linuxos/install
mount: block device /dev/cdrom is write-protected, mounting read-only

根据上面的提示,可以看到挂载已经成功。下面我们就需要配置nfs配置文件,来设置权限

[root@localhost install]# vi /etc/exports
/linuxos/install * (ro) 设置/linuxos/install 所有人具有可读可执行

编辑之后保存退出。

现在我们回忆上面的所有步骤,是不是已经成功?

接下来,就验证奇迹吧!

不过还是需要做一项工作,那么就是重新启动各项服务:

[root@localhost install]# service dhcpd restart
[root@localhost install]# service vsftpd restart

[root@localhost install]# service nfs restart

[root@localhost install]# service xientd restart

 

OK,已经配置结束,接下来我们就开始见证奇迹吧!

将客户机开机启动,配置为从网络启动

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/c3778bc4e94060122ffefd72aa98d192.html