Linux怎么进行网络安装?

Linux怎么进行网络安装?,第1张

Linux网络安装全过程(安装fedora)

先来大概说一下网络安装linux的基本原理。我们是通过PXE(Pre-boot Execution Environment)(其实是intel设计的一个协议)来进行安装的,它可以使计算机通过网络启动。PXE协议分为server和client端,client就是我们即将要装linux的裸机。 linux下网络安装需具备3个条件:

1.dhcp服务器:用于客户端引导时分配IP地址

2.ftp、nfs、httpd服务器:用于保存操作系统的rpm包 3.tftp服务器:用于客户端的tftp引导。 我的方案是DHCP+NFS+TFTP 方案介绍:

这种方案需要首先设置一个启动服务器和一个安装服务器,可以配置在同一台机器上,然后通过网络启动存放在启动服务器上的安装程序。安装程序会自动访问存放在安装服务器上的安装配置文件和安装介质来完成安装。 软硬件需求: · 一台机器作为启动和安装服务器(虚拟机A) · 待安装的机器,它的网卡必须带有PXE支持(虚拟机B) · 一个完好的局域网,机器已经连入同一网。 · 系统镜像文件

配置步骤:

一、DHCP服务器

1、 安装DHCP

[root@localhost ~]# rpm -qa|grep dhcp ;查看是否安装了 dhcp libdhcp6client-1.0.22-1.fc10.i386 libdhcp-1.99.8-1.fc10.i386

dhcp-4.0.0-37.fc10.i386;若没有此包,则需用yum install dhcp来安装 libdhcp4client-4.0.0-30.fc10.i386 dhcpv6-client-1.0.22-1.fc10.i386 2、 配置DHCP

DHCP服务的配置文件是/etc/dhcpd.conf,通过修改配置文件进行配置,分两步:一是加入黑体部分,二是修改配置地址。

注:初始安装时/etc/dhcpd.conf配置文件为空,此时可以新建一个直接进行编辑。有个DHCP的配置例子为/usr/share/doc/dhcp-4.0.0/dhcpd.conf.sample。

[root@localhost /]# cd /etc

[root@localhost etc]# vim dhcpd.conf # DHCP Server Configuration file.

# see /usr/share/doc/dhcp*/dhcpd.conf.sample ddns-update-style interimignore client-updatesallow bootingallow bootp

【必须与本机是同一网段】

subnet 192.168.186.0 netmask 255.255.255.0 {

option routers

192.168.186.135【本机地址】

#路由器地址

option subnet-mask

255.255.255.0

#子网掩码

option domain-name-servers

192.168.186.135

#DNS地址

option time-offset

-18000# Eastern Standard Time

range dynamic-bootp 192.168.186.2 192.168.186.100

filename "/linux-install/pxelinux.0"#

filename 后面是tftp目录下的文件,用来指定tftp根目录的启动文件。【也可以直接写成

/pxelinux.0,具体由自己设定】

default-lease-time 21600

#缺省租约时间

max-lease-time 43200

#最大租约时间

}

[root@localhost ~]# ifconfig eth0 192. 168. 186.135/24

配置地址

[root@localhost etc]# ifconfig ;查本机IP地址。

eth0

Link encap:Ethernet

HWaddr 00:0C:29:26:AC:57

inet addr:192.168.186.135

Bcast:192.168.186.255

Mask:255.255.255.0

注意若要指定给某一特定主机分配地址,需再加入些东西,以下是一个例子

host MyP5 {

filename "pxelinux.0"

server-name "bootserver"

hardware ethernet ae:32:20:00:b0:02

fixed-address 192.168.187.90

为客户机(需要安装系统的机器)的 MAC 地址和所分配的IP地址。}

3、开启服务(开启成功则表示配置成功了)

[root@localhost etc]# service dhcpd start

(或者重启restart)

启动dhcpd:[确定]

使用

/etc/init.d/dhcpd start

也可以(在/etc/init.d下即可找到相应的服务service)

二、

NFS服务器

1、安装

NFS

[root@localhost /]# rpm -qa |grep nfs

nfs-utils-lib-1.1.4-1.fc10.i386

nfs-utils-1.1.4-1.fc10.i386

system-config-nfs-1.3.41-1.fc10.noarch

查询是否已安装,否则使用

yum install nfs

进行安装。

2

、配置NFS

[root@localhost /]# mkdir /linuxos

(建立各个版本ISO文件的存放目录,并且将ISO文件拷贝到此目录下,NFS支持iso格式安装。)

[root@localhost /]# mkdir tftpboot

[root@localhost /]# cd tftpboot/

[root@localhost tftpboot]# mkdir linux-install

[root@localhost /]# vim /etc/exports ;配置文件

/mnt *(ro,sync) ;(mnt为NFS的目录,用来存放操作系统。此处选/mnt是因为

其是挂载光盘的挂载点)

/tftpboot/linux-install *(ro,sync) 3、启动NFS

[root@localhost tftpboot]# exportfs –a ;使用此命令使配置生效 [root@localhost /]# service nfs start(或restart)

启动 NFS 服务:[确定] 关掉 NFS 配额:[确定] 启动 NFS 守护进程:[确定] 启动 NFS mountd: [确定]

三、TFTP服务器

1、安装TFTP

[root@localhost /]# rpm -qa |grep tftp

tftp-0.49-1.fc10.i386 ;这个只是tftp客户端软件

tftp-server-0.49-1.fc10.i386 ;这个才是tftp服务器软件(必不可少) 若没有则需使用yum下载。 [root@localhost /]# yum install tftp

[root@localhost /]# yum install tftp-server 2、配置TFTP

[root@localhost init.d]# vim /etc/xinetd.d/tftp;配置文件 service tftp {

disable = no

socket_type = dgram protocol = udp wait = yes user = root

server = /usr/sbin/in.tftpd

server_args = -s /tftpboot;将 /tftpboot 定义为 tftp 服务的默认目录,您可以自行修改。 per_source = 11 cps = 100 2 flags = IPv4 }

3、保存之后重启 /etc/init.d/xinetd 服务,即可开启 tftp 服务。(注意此服务service不识别)

[root@localhost /]# /etc/init.d/xinetd restart

停止 xinetd:[确定] 启动 xinetd:

[确定] 4、 测试tftp (1)下载文件

导语:教你如何安装网络打印服务器步骤攻略。当然,有时遇见打印机无法打印,先检测“状态”是否“准备就绪”,然根据情况调试,有可能是“暂停了打印”或“脱机”了。以下是我跟大家介绍的内容,希望能够帮助到大家!

教你如何安装网络打印服务器

选择“开始”程序,打开“打印机和传真”。

添加打印机。

选择“连接到此计算机的本地打印机”, 不要选择“自动检测”。

选择“创建新端口类型:Standard TCP/IP Port”,继续“下一步”。

添加打印机的IP地址。

选择“浏览”并找到安装的'打印机的驱动路径,并连续打开找到驱动程序。

选择设置默认打印机,是否打印测试页面,完成打印机的安装。

检查打印机是否安装好,安装正常的打印机的状态为:准备就绪。


欢迎分享,转载请注明来源:夏雨云

原文地址:https://www.xiayuyun.com/zonghe/177104.html

(0)
打赏 微信扫一扫微信扫一扫 支付宝扫一扫支付宝扫一扫
上一篇 2023-03-27
下一篇2023-03-27

发表评论

登录后才能评论

评论列表(0条)

    保存