PXE 自动化安装系统相关实验

11课时
196学过
8分

2. 实验:模拟搭建 DHCP 服务器

3. 实验:模拟搭建 tftp 服务器

4. 实验:实现 CentOS7 的 PXE 安装

5. 实验:在 CentOS7 实现 PXE 安装 CentOS6,7 双系统

课程评价 (0)

请对课程作出评价:
0/300

学员评价

暂无精选评价
1分钟

tftp 服务器端操作

1.安装tftp服务

yum install tftp

yum install tftp-server

2.开启服务

CentOS6:

chkconfig tfcp on

service xinted restart

chkconfig tfcp enable

CentOS7:

systemctl start tftp.socket

systemctl enable tftp.socket

3测试tftp服务

拷贝mbr7.bak文件到tftp目录下

cp mbr7.bak /var/lib/tftpboot/

客户端:

tftp 192.168.30.10

get menu.c23

文件通过tftp传输成功

[![1%Y5PKHF[}VCZB9PHN74UB](http://www.178linux.com/wp-content/uploads/2018/05/1Y5PKHFVCZB9PHN74UB.png)

至此,dhcp及tfcp已在CentOS7上搭建完成,下面来实验用PEX安装CentOS系统