Kickstart +ftp+dhcp+tftp实现Linux系统的无人值守安装

简介:

基本原理及概念:

image

image

一、配服务器的IP地址:

image

二、yum 的配置如下:

1.[root@localhost ~]# mount /dev/cdrom /mnt/cdrom

2.[root@localhost ~]# vim /etc/yum.repos.d/rhel-debuginfo.repo

[rhel-server] //描述目录

name=Red Hat Enterprise Linux server //名称(不受影响)

baseurl=file:///mnt/cdrom/Server //准确目录

enabled=1 // 启用该功能

gpgcheck=1 //签名检测

gpgkey=file:///mnt/cdrom/RPM-GPG-KEY-redhat-release //钥匙文件

[rhel-vt]

name=Red Hat Enterprise Linux vt

baseurl=file:///mnt/cdrom/VT

enabled=1

gpgcheck=1

gpgkey=file:///mnt/cdrom/RPM-GPG-KEY-redhat-release

[rhel-cluster]

name=Red Hat Enterprise Linux cluster

baseurl=file:///mnt/cdrom/Cluster

enabled=1

gpgcheck=1

gpgkey=file:///mnt/cdrom/RPM-GPG-KEY-redhat-release

[rhel-clusterstorage]

name=Red Hat Enterprise Linux clusterstorage

baseurl=file:///mnt/cdrom/ClusterStorage

enabled=1

gpgcheck=1

gpgkey=file:///mnt/cdrom/RPM-GPG-KEY-redhat-release

3.[root@localhost ~]# yum repolist // 查看Yum的配置信息

三、kickstart的图形界面配置如下:

1.[root@localhost ~]# yum list all |grep kickstart

This system is not registered with RHN.

RHN support will be disabled.

pykickstart.noarch 0.43.5-1.el5 rhel-server

system-config-kickstart.noarch 2.6.19.8-2.el5 rhel-server

2.[root@localhost ~]# yum install -y system-config-kickstart

3.[root@localhost ~]#system-config-kickstart

image

       配时区   ROOT Password   Reboot  install text

image 

             FTP服务器    IP  文件存放的默认目录pub

image

内核参数: rhgb(以图形的方式引导) quiet (与用户无关的信息不显示)

image 内核参数参考的配置文件

 image

           分区时注意 swap是文件系统类型

image

        清楚MBR  移除所有已存在的分区    初始化磁盘及具体分区

image

   IP 地址通过eth0动态获取

image

   防火墙 SELinux 都关闭

image

开发包 GNOME

image

应用程序按需选择(为了启动快,尽量不要选声音与视频)

image

开发库及开发工具

image

管理工具及系统工具

image

         安装时携带执行的shell脚本(按需编写,可不写)

脚本命令如下:

A=`ifconfig |grep -i bcast | awk '{ print $2 }'`// 获取addr:ip地址

sed -i "s/HOSTNAME.*/HOSTNAME=gjp${A##*.}.baidu.com / " /etc/sysconfig/network  //红色字体(IP 地址的最后一段作为主机的标识)

sed -i "s/127.0.0.1.*/127.0.0.1 localhost.localdomain localhost / " /etc/hosts        //把红色的一行用蓝色的内容代替

B=${A#*:}  //获取IP地址

M=`ifconfig |grep -i Mask |awk '{print $4}'` //获取Mask:255.255.255.0

L=${M#*:} //获取子网掩码

sed -i "s/dhcp$/none/" /etc/sysconfig/network-scripts/ifcfg-eth0

  //把以dhcp结尾的改为none

echo "NETMASK=$L">> /etc/sysconfig/network-scripts/ifcfg-eth0

//把子网掩码追加到ifcfg-eth0文件里

echo "IPADDR=$B">> /etc/sysconfig/network-scripts/ifcfg-eth0

//把IP地址追加到ifcfg-eth0文件里

image

单击“文件”--“保存文件” 可重命名,在这里命名为k.cfg

image

       显示文件基本信息

4.[root@localhost ~]# vim /root/k.cfg

增加

4 key –skip        //遇到key的跳过

5 services --disable sendmail    //禁止sengmail服务

四、FTP服务器的配置如下:

1.clip_image002

2.image

3.[root@localhost ~]# ftp 192.168.10.100

Connected to 192.168.10.100.

220 (vsFTPd 2.0.5)

530 Please login with USER and PASS.

530 Please login with USER and PASS.

KERBEROS_V4 rejected as an authentication type

Name (192.168.10.100:root): anonymous   //用匿名登录

331 Please specify the password.

Password:                                      //密码为空,直接回车即可

230 Login successful.

Remote system type is UNIX.

Using binary mode to transfer files.

ftp> ls                    //显示存在的文件

227 Entering Passive Mode (192,168,10,100,32,213)

150 Here comes the directory listing.

drwxr-xr-x 2 0 0 4096 Aug 02 05:40 pub

ftp> cd pub

250 Directory successfully changed.

ftp> ls

227 Entering Passive Mode (192,168,10,100,252,253)

150 Here comes the directory listing.

-rw-r--r-- 1 0 0 5 Aug 02 05:40 index.html

4.[root@localhost ~]# cd /var/ftp/pub

[root@localhost pub]# ls

[root@localhost pub]# touch index.html   //创建一个文件

[root@localhost pub]# echo "123 ">index.html  // 写入内容

5.测试:

image

6.挂载光盘cd /dev/cdrom /mnt/cdrom   //把RED HAT 5.4的iso加载过来

[root@localhost cdrom]# cp -r . /var/ftp/pub //把镜像文件拷进去,用于安装时查找并安装

[root@localhost ftp]# du -sh // 显示ISO的大小,与实际对比,证明已经拷贝完成

2.9G

[root@localhost ~]# cp /root/k.cfg /var/ftp/pub

[root@localhost ~]# cd /var/ftp/pub //确保拷贝成功

[root@localhost pub]# ll -d k.cfg

-rw-r--r-- 1 root root 1914 Aug 2 20:17 k.cfg

 五.DHCP 服务器的配置如下:

1.[root@localhost Server]# yum install -y dhcp  (-y 表示安装时无需交互,)

2.[root@localhost ~]# vim /etc/dhcpd.conf

底行模式输入

:-r /usr/share/doc/dhcp-3.0.5/dhcpd.conf.sample 回车

subnet 192.168.10.0 netmask 255.255.255.0 {

7 # --- default gateway

8 option routers 192.168.10.254; //网关

9 option subnet-mask 255.255.255.0;   //Mask

option domain-name-servers 222.88.88.88; //DNS

22 range dynamic-bootp 192.168.10.11 192.168.10.99;  //可分配IP范围

3.[root@localhost ~]# service dhcpd restart //服务重启

Shutting down dhcpd: [ OK ]

Starting dhcpd: [ OK ]

六.TFTP服务器的配置:

1.[root@localhost ~]# rpm -qa |grep tftp-server //查询该服务是否已安装

tftp-server-0.49-2

2.[root@localhost ~]# rpm -ql tftp-server  // 定位tftp-server所在的路径

/etc/xinetd.d/tftp //依赖于超级守护进程

/tftpboot

/usr/sbin/in.tftpd

/usr/share/man/man8/in.tftpd.8.gz

/usr/share/man/man8/tftpd.8.gz

3.[root@localhost ~]# vim /etc/xinetd.d/tftp //编写超级守护进程

6 service tftp (注意:第一列为行号

7 {

8 socket_type = dgram

9 protocol = udp //69号端口

10 wait = yes //单线程

11 user = root

12 server = /usr/sbin/in.tftpd //真正的进程

13 server_args = -s /tftpboot

14 disable = no //必须开启

15 per_source = 11

16 cps = 100 2

17 flags = IPv4

18 }

4.[root@localhost ~]# grep tftp /etc/services 可查看服务类型、服务号

tftp 69/tcp

tftp 69/udp

tftp-mcast 1758/tcp

tftp-mcast 1758/udp

mtftp 1759/udp

subntbcst_tftp 247/tcp # SUBNTBCST_TFTP

subntbcst_tftp 247/udp # SUBNTBCST_TFTP

etftp 1818/tcp # Enhanced Trivial File Transfer Protocol

etftp 1818/udp # Enhanced Trivial File Transfer Protocol

tftps 3713/tcp # TFTP over TLS

tftps 3713/udp # TFTP over TLS

5.[root@localhost ~]# service xinetd restart //必须启用真正的进程

Stopping xinetd: [ OK ]

Starting xinetd: [ OK ]

6.[root@localhost ~]# cd /tftpboot/

[root@localhost tftpboot]# cp /usr/lib/syslinux/pxelinux.0 ./

[root@localhost tftpboot]# cp /mnt/cdrom/images/pxeboot/vmlinuz ./

[root@localhost tftpboot]# cp /mnt/cdrom/images/pxeboot/initrd.img ./

[root@localhost tftpboot]# mkdir -pv pxelinux.cfg  //创建目录

mkdir: created directory `pxelinux.cfg'

[root@localhost tftpboot]# cp /mnt/cdrom/isolinux/isolinux.cfg pxelinux.cfg/default  //拷贝文件到pxelinux.cfg目录下,并重命名default文件

7.[root@localhost tftpboot]# vim ./pxelinux.cfg/default //编辑default文件

3 timeout 6

12 append ks=ftp://192.168.10.100/pub/k.cfg ksdevice=eth0 initrd=initrd.img

8.[root@localhost ~]# vim /etc/dhcpd.conf

12 option domain-name "domain.org";

13 option domain-name-servers 222.88.88.88;

14 next-server 192.168.10.100 // tftp服务器地址

15 filename "pxelinux.0" //文件名

 七.安装成功后的界面与测试:

1.image

登录显示

2.关于SHELL的测试:

  2.1 查看sendmail的状态

image

2.2 查看HOSTNAME

image

image

2.3 查看动态获取ip 和追加的子网掩码及IP 地址

image

image

3.用startx

image



本文转自 gjp0731 51CTO博客,原文链接:http://blog.51cto.com/guojiping/951797


相关文章
|
11天前
|
Linux 应用服务中间件 Shell
linux系统服务二!
本文详细介绍了Linux系统的启动流程,包括CentOS 7的具体启动步骤,从BIOS自检到加载内核、启动systemd程序等。同时,文章还对比了CentOS 6和CentOS 7的启动流程,分析了启动过程中的耗时情况。接着,文章讲解了Linux的运行级别及其管理命令,systemd的基本概念、优势及常用命令,并提供了自定义systemd启动文件的示例。最后,文章介绍了单用户模式和救援模式的使用方法,包括如何找回忘记的密码和修复启动故障。
32 5
linux系统服务二!
|
2天前
|
Linux
在 Linux 系统中,“cd”命令用于切换当前工作目录
在 Linux 系统中,“cd”命令用于切换当前工作目录。本文详细介绍了“cd”命令的基本用法和常见技巧,包括使用“.”、“..”、“~”、绝对路径和相对路径,以及快速切换到上一次工作目录等。此外,还探讨了高级技巧,如使用通配符、结合其他命令、在脚本中使用,以及实际应用案例,帮助读者提高工作效率。
11 3
|
2天前
|
安全 网络协议 Linux
本文详细介绍了 Linux 系统中 ping 命令的使用方法和技巧,涵盖基本用法、高级用法、实际应用案例及注意事项。
本文详细介绍了 Linux 系统中 ping 命令的使用方法和技巧,涵盖基本用法、高级用法、实际应用案例及注意事项。通过掌握 ping 命令,读者可以轻松测试网络连通性、诊断网络问题并提升网络管理能力。
10 3
|
5天前
|
安全 Linux 数据安全/隐私保护
在 Linux 系统中,查找文件所有者是系统管理和安全审计的重要技能。
在 Linux 系统中,查找文件所有者是系统管理和安全审计的重要技能。本文介绍了使用 `ls -l` 和 `stat` 命令查找文件所有者的基本方法,以及通过文件路径、通配符和结合其他命令的高级技巧。还提供了实际案例分析和注意事项,帮助读者更好地掌握这一操作。
15 6
|
2天前
|
监控 安全 Linux
在 Linux 系统中,网络管理是重要任务。本文介绍了常用的网络命令及其适用场景
在 Linux 系统中,网络管理是重要任务。本文介绍了常用的网络命令及其适用场景,包括 ping(测试连通性)、traceroute(跟踪路由路径)、netstat(显示网络连接信息)、nmap(网络扫描)、ifconfig 和 ip(网络接口配置)。掌握这些命令有助于高效诊断和解决网络问题,保障网络稳定运行。
11 2
|
5天前
|
Linux
在 Linux 系统中,`find` 命令是一个强大的文件查找工具
在 Linux 系统中,`find` 命令是一个强大的文件查找工具。本文详细介绍了 `find` 命令的基本语法、常用选项和具体应用示例,帮助用户快速掌握如何根据文件名、类型、大小、修改时间等条件查找文件,并展示了如何结合逻辑运算符、正则表达式和排除特定目录等高级用法。
22 5
|
6天前
|
机器学习/深度学习 自然语言处理 Linux
Linux 中的机器学习:Whisper——自动语音识别系统
本文介绍了先进的自动语音识别系统 Whisper 在 Linux 环境中的应用。Whisper 基于深度学习和神经网络技术,支持多语言识别,具有高准确性和实时处理能力。文章详细讲解了在 Linux 中安装、配置和使用 Whisper 的步骤,以及其在语音助手、语音识别软件等领域的应用场景。
24 5
|
6天前
|
存储 安全 数据管理
如何在 Rocky Linux 8 上安装和配置 Elasticsearch
本文详细介绍了在 Rocky Linux 8 上安装和配置 Elasticsearch 的步骤,包括添加仓库、安装 Elasticsearch、配置文件修改、设置内存和文件描述符、启动和验证 Elasticsearch,以及常见问题的解决方法。通过这些步骤,你可以快速搭建起这个强大的分布式搜索和分析引擎。
13 5
|
6天前
|
缓存 运维 监控
【运维必备知识】Linux系统平均负载与top、uptime命令详解
系统平均负载是衡量Linux服务器性能的关键指标之一。通过使用 `top`和 `uptime`命令,可以实时监控系统的负载情况,帮助运维人员及时发现并解决潜在问题。理解这些工具的输出和意义是确保系统稳定运行的基础。希望本文对Linux系统平均负载及相关命令的详细解析能帮助您更好地进行系统运维和性能优化。
21 3
|
6天前
|
监控 网络协议 算法
Linux内核优化:提升系统性能与稳定性的策略####
本文深入探讨了Linux操作系统内核的优化策略,旨在通过一系列技术手段和最佳实践,显著提升系统的性能、响应速度及稳定性。文章首先概述了Linux内核的核心组件及其在系统中的作用,随后详细阐述了内存管理、进程调度、文件系统优化、网络栈调整及并发控制等关键领域的优化方法。通过实际案例分析,展示了这些优化措施如何有效减少延迟、提高吞吐量,并增强系统的整体健壮性。最终,文章强调了持续监控、定期更新及合理配置对于维持Linux系统长期高效运行的重要性。 ####