通过网络安装Linux(CentOS)系统的方法
2010-09-21 21:03:54 来源:WEB开发网核心提示:一、原理无光驱、软驱的一台服务器,想要安装Linux系统,通过网络安装Linux(CentOS)系统的方法,我们需要通过网卡的PXE协议,引导之后安装Linux,我选择使用 tftp-hpa ,编辑文件 /etc/xinetd.d/tftp (若没有,流程:机器启动-网卡引导-通过DHCP获得IP地址-通过tftp获得
一、原理
无光驱、软驱的一台服务器,想要安装Linux系统。我们需要通过网卡的PXE协议,引导之后安装Linux。流程:机器启动-网卡引导-通过DHCP获得IP地址-通过tftp获得最基础的内核文件,使用该内核文件启动机器-启动之后可以对安装程序配置,选择使用http、ftp、nfs方式远程获得安装所需要的软件包。
显然,网络安装是必须配置服务器端的。我们的服务端需要提供以下服务:
DHCP
TFTP
HTTP(FTP,NFS)
二、服务配置
1、DHCP
配置文件:
- option domain-name "mydomain";
- ddns-update-style none;
- default-lease-time 600;
- max-lease-time 7200;
- server-name "bootserver";
- subnet 192.168.123.0 netmask 255.255.255.0 {
- range 192.168.123.200 192.168.123.201;
- deny unknown-clients;
- }
- host MyP5 {
- filename "pxelinux.0";
- server-name "bootserver";
- hardware ethernet ae:32:20:00:b0:02;
- fixed-address 192.168.123.90;
- }
这是复制来的配置文件,稍微解释一下:
filename 后面是tftp目录下的文件,pxelinux.0 则是 syslinux 包内的文件。默认 pxelinux.0 可能在 /usr/lib/syslinux 目录下,必须将其复制到 tftp 目录下。
host MyP5 下出现的:
hardware ethernet ae:32:20:00:b0:02;
fixed-address 192.168.123.90;
为客户机(需要安装系统的机器)的 MAC 地址和所分配的IP地址。
2、TFTP
由于必须支持TSIZE协议,所以不能安装最原始的TFTP包。我选择使用 tftp-hpa 。
编辑文件 /etc/xinetd.d/tftp (若没有,则添加tftp文件)(若不存在xinetd.d,请安装 xinetd 包)
- # default: off
- # description: The tftp server serves files using the trivial file transfer \
- # protocol. The tftp protocol is often used to boot diskless \
- # workstations, download configuration files to network-aware printers, \
- # and to start the installation process for some operating systems.
- service tftp
- {
- disable = no
- socket_type = dgram
- protocol = udp
- wait = yes
- user = root
- server = /usr/sbin/in.tftpd
- server_args = -s /tftpboot
- per_source = 11
- cps = 100 2
- flags = IPv4
- }
更多精彩
赞助商链接