使用kickstart应答文件实现少量主机的系统自动化安装

让电脑自动完成安装,我们要把分区、root口令等告诉电脑,我们用一个(应答文件的文本文件)将设置写入其中,让安装向导找到该应答文件即可自动安装。
准备素材:centos7、centos7mini(最小化安装版本)
此实验以centos7为例,centos6类似

##### A、[root@localhost ~]# ls
anaconda-ks.cfg
此文件anaconda-ks.cfg为记录了我们是如何安装系统的。
##### B、将网卡配置文件的  onboot  改为  yes
[root@localhost ~]# vi /etc/sysconfig/network-scripts/ifcfg-ens33
TYPE=Ethernet
PROXY_METHOD=none
BROWSER_ONLY=no
BOOTPROTO=dhcp
DEFROUTE=yes
IPV4_FAILURE_FATAL=no
IPV6INIT=yes
IPV6_AUTOCONF=yes
IPV6_DEFROUTE=yes
IPV6_FAILURE_FATAL=no
IPV6_ADDR_GEN_MODE=stable-privacy
NAME=ens33
UUID=bd070b36-c892-43b7-a8c8-d179b44c1d3c
DEVICE=ens33
ONBOOT=yes
~            
[root@localhost ~]# systemctl restart network

##### C、主机 centos7 ssh上远程的 centos7mini
[root@centos7 ~]# ssh 192.168.58.133
root@192.168.58.133's password: 
Last login: Wed Jan 30 12:49:40 2019 from 192.168.58.1
[root@localhost ~]# scp anaconda-ks.cfg  192.168.58.254:/data
root@192.168.58.254's password: 
anaconda-ks.cfg                100% 1421   120.3KB/s   00:00    
[root@localhost ~]# exit
logout
Connection to 192.168.58.133 closed.
此处是将 anaconda-ks.cfg 文件拷贝到主机上

##### D、我们可以把 anaconda-ks.cf 文件当做最小化安装的模板。如下:
[root@centos7 ~]# cd /data
[root@centos7 data]# ls
anaconda-ks.cfg  hallo.sh  magedu.pubkey
[root@centos7 data]# vim anaconda-ks.cfg 
#version=DEVEL                                                   
# System authorization information
auth --enableshadow --passalgo=sha512
# Use CDROM installation media
cdrom
# Use graphical install
graphical
# Run the Setup Agent on first boot
firstboot --enable
ignoredisk --only-use=sda
# Keyboard layouts
keyboard --vckeymap=us --xlayouts='us'
# System language
lang en_US.UTF-8

# Network information
network  --bootproto=dhcp --device=ens33 --onboot=off --ipv6=auto --no-activate
network  --hostname=localhost.localdomain

# Root password
rootpw --iscrypted $6$V2eP8pESlfKIToP8$NVcSm0geeSV4X1cd1lccrs9FAdK1rbj6EczSviVmoz75Znj5GaI.qY7jA0H1dmbh.hsI2ZIHtaR3Ko0/Xku9B1
# System services
services --disabled="chronyd"
# System timezone
timezone Asia/Shanghai --isUtc --nontp
"anaconda-ks.cfg" 48L, 1421C                   1,1           Top

##### E、此时我们要先安装图像界面的文件,如下:
[root@centos7 data]# yum install system-config-kickstart
Loaded plugins: fastestmirror, langpacks
Loading mirror speeds from cached hostfile
base                                      | 3.6 kB     00:00     
epel                                      | 4.7 kB     00:00     
(1/2): epel/updateinfo                      | 954 kB   00:00     
(2/2): epel/primary_db                      | 6.6 MB   00:01     
Dependency Installed:
  gnome-python2.x86_64 0:2.28.1-14.el7                           
  gnome-python2-canvas.x86_64 0:2.28.1-14.el7                    
  libart_lgpl.x86_64 0:2.3.21-10.el7                             
  libgnomecanvas.x86_64 0:2.30.3-8.el7                           
  rarian.x86_64 0:0.8.1-11.el7                                   
  rarian-compat.x86_64 0:0.8.1-11.el7                            
  system-config-date.noarch 0:1.10.6-3.el7.centos                
  system-config-date-docs.noarch 0:1.0.11-4.el7                  
  system-config-keyboard.noarch 0:1.4.0-5.el7                    
  system-config-keyboard-base.noarch 0:1.4.0-5.el7               
  system-config-language.noarch 0:1.4.0-9.el7                    
  usermode-gtk.x86_64 0:1.111-5.el7                              

Complete!

##### F、我们可以利用网络,搭建一个网络服务器,按照httpd的做法,

[root@centos7 ~]# rpm -ql httpd
/etc/httpd
/etc/httpd/conf
/etc/httpd/conf.d
/etc/httpd/conf.d/README
/etc/httpd/conf.d/autoindex.conf
/etc/httpd/conf.d/userdir.conf
/etc/httpd/conf.d/welcome.conf
/etc/httpd/conf.modules.d
/etc/httpd/conf.modules.d/00-base.conf
/etc/httpd/conf.modules.d/00-dav.conf
/etc/httpd/conf.modules.d/00-lua.conf
/etc/httpd/conf.modules.d/00-mpm.conf
/etc/httpd/conf.modules.d/00-proxy.conf
/etc/httpd/conf.modules.d/00-systemd.conf
/etc/httpd/conf.modules.d/01-cgi.conf
/etc/httpd/conf/httpd.conf
/etc/httpd/conf/magic
/var/www
/var/www/cgi-bin
/var/www/html
将httpd服务启动起来:
[root@centos7 ~]# systemctl start httpd
[root@centos7 ~]# cd /var/www/html
[root@centos7 html]# mkdir centos/{6,7}/os/x86_64/ -pv
[root@centos7 html]# tree
.
├── app
│   ├── 6
│   │   └── x86_64
│   └── 7
│   └── x86_64
└── centos
├── 6
│   └── os
│   └── x86_64
└── 7
└── os
└── x86_64

12 directories, 0 files
[root@centos7 html]# mount /dev/sr0 centos/7/os/x86_64/
mount: /dev/sr0 is write-protected, mounting read-only

##### G、此时,我们可以去互联网访问主机了,如下:

http://192.168.58.254/centos/7/

Index of /centos/7

[ICO]   Name    Last modified   Size    Description
[PARENTDIR] Parent Directory        -    
[DIR]   os/ 2019-01-05 14:39    -    
我们输入如下命令:
[root@centos7 ~]# system-config-kickstart
这是图形界面,我们可以在弹出的页面中设置文件

##### H、我们把centos7mini里的文件拷贝到centos7 上
[root@centos7 ~]# cd /data
[root@centos7 data]# ls
anaconda-ks.cfg  hallo.sh  magedu.pubkey
[root@centos7 data]# mkdir /var/www/html/ks/; cp anaconda-ks.cfg /var/www/html/ks/centos7-mini.cfg

##### L、我们进入ks文件中查看
[root@centos7 data]# cd /var/www/html/ks
[root@centos7 ks]# ls
centos7-mini.cfg
[root@centos7 ks]# ll
total 4
-rw------- 1 root root 1421 Jan 30 22:10 centos7-mini.cfg
[root@centos7 ks]# chmod a+r centos7-mini.cfg 
[root@centos7 ks]# ll
total 4
-rw-r--r-- 1 root root 1421 Jan 30 22:10 centos7-mini.cfg
效果如下:

http://192.168.58.254/ks/centos7-mini.cfg

#version=DEVEL

System authorization information

auth --enableshadow --passalgo=sha512

Use CDROM installation media

cdrom

Use graphical install

graphical

Run the Setup Agent on first boot

firstboot --enable
ignoredisk --only-use=sda

Keyboard layouts

keyboard --vckeymap=us --xlayouts='us'

System language

lang en_US.UTF-8

Network information

network --bootproto=dhcp --device=ens33 --onboot=off --ipv6=auto --no-activate
network --hostname=localhost.localdomain

Root password

rootpw --iscrypted $6$V2eP8pESlfKIToP8$NVcSm0geeSV4X1cd1lccrs9FAdK1rbj6EczSviVmoz75Znj5GaI.qY7jA0H1dmbh.hsI2ZIHtaR3Ko0/Xku9B1

System services

services --disabled="chronyd"

System timezone

timezone Asia/Shanghai --isUtc --nontp
user --name=wang --password=$6$5MKCrWhZLuuC30QZ$X7fRD6I.5TrvmUNm4tDS6TmTZua/uer6Sn2EzXBv/Bk307pkanOOn9pyilJxT/cs9jxpXMBnAzHChvgPbb8Qe. --iscrypted --gecos="wang"

System bootloader configuration

bootloader --append=" crashkernel=auto" --location=mbr --boot-drive=sda
autopart --type=lvm

Partition clearing information

clearpart --none --initlabel

%packagesbr/>@^minimal
@core
kexec-tools

%end

%addon com_redhat_kdump --enable --reserve-mb='auto'

%end
%anaconda
pwpolicy root --minlen=6 --minquality=1 --notstrict --nochanges --notempty
pwpolicy user --minlen=6 --minquality=1 --notstrict --nochanges --emptyok
pwpolicy luks --minlen=6 --minquality=1 --notstrict --nochanges --notempty
%end

##### H、接下来,我们在字符界面中配置文件
[root@centos7 ~]# system-config-kickstart 
Xlib:  extension "RANDR" missing on display "localhost:11.0".
/usr/share/system-config-kickstart/kickstartGui.py:104: GtkWarning: GtkSpinButton: setting an adjustment with non-zero page size is deprecated
  xml = gtk.glade.XML ("/usr/share/system-config-kickstart/system-config-kickstart.glade", domain="system-config-kickstart")
Loaded plugins: fastestmirror, langpacks
Loading mirror speeds from cached hostfile
此时会出现字符界面,我们进行配置,
1、输入2次口令,reboot,perform,两项打钩,
2、perform打钩,选择http输入路径,
3、install,install(mbr)打钩,
4、clear,remove all,initialize 打钩,Add增加 / /boot
5、加ens33
6、8、默认
7、selinux 关闭
9、system  base 打钩,
会保存一个备份文件,设为 ks7.cfg 然后在命令行中配置ks7.cfg ,如下:
但是我使用得是老师上课共享文件中的应答文件

#version=DEVEL

System authorization information

auth --enableshadow --passalgo=sha512

Use CDROM installation media

url --url=http://192.168.58.254/centos/7/os/x86_64/

Use graphical install

text

Run the Setup Agent on first boot

firstboot --enable
ignoredisk --only-use=sda

Keyboard layouts

keyboard --vckeymap=us --xlayouts='us'

System language

lang en_US.UTF-8

Network information

network --bootproto=dhcp --device=ens33 --onboot=on --ipv6=auto --activate
network --hostname=centos7.localdomain

Root password

rootpw --iscrypted $6$VYubI8zpV4R/R1M7$.vVqobGDm7t9YAHH924tWzNjqrKGAt4JiBMBu2iWwpIuW2RuupH5OgA1JbEgmZgh8oOSFlY6FeQMVBhN4yM8E0

System services

firewall --disabled
selinux --disabled
services --disabled="chronyd"

System timezone

timezone Asia/Shanghai --isUtc --nontp
user --name=wang --password=$6$ARdL74KE4qW3tizz$wEQAlGOURNTQlbVBJ45LnQoZOelIHoUsfR/S9hJ0EEWzm1Gjs2tVEhBC0bOX0CF3ufsnWwgDXdE6D7pKZwc/p. --iscrypted --gecos="wang"

X Window System configuration information

#xconfig --startxonboot

System bootloader configuration

bootloader --append=" crashkernel=auto" --location=mbr --boot-drive=sda

Partition clearing information

clearpart --all --initlabel
zerombr
reboot

Disk partitioning information

part /boot --fstype="xfs" --ondisk=sda --size=1024
part swap --fstype="swap" --ondisk=sda --size=4096
part / --fstype="xfs" --ondisk=sda --size=51200
part /data --fstype="xfs" --ondisk=sda --size=30720

%packagesbr/>@core
%end`


我们手动配置了zerombr 用来清空分区,part分区,yum源,ssh/authorized_keys,/etc/ssh/sshd_config等内容。
##### L、我们将新安装好的centos7mini开机,在install 7 选项处按 esc 键,会弹出:boot:输入:Linux ks=http://192.168.58.254/ks/ks7.cfg ip=192.168.58.123 netmask=255.255.255.0
此时我们去ping192.168.58.123,若能ping通,就说明可以了,按回车键,即可进行自动安装,到此,此实验完满结束!!!

转载于:https://blog.51cto.com/14128387/2348024

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值