#在安装Linux操作系统的时候,为了安装方便以及安装出来的系统是你需要的功能,你可以利用回答文件,来进行最小化安装,下面就是一个在Centos7下的最小化安装。
#在VMware中安装Centos7的时候,按下Tab键进入,自定义安装就可以进行最小化安装了。
#按下Tab键,输入你的回答文件的路径,之前你可以在真机上搭建一个IIS服务器,也可以将回答文件刻入光盘中,#在这里选择IIS,mini.txt为我的回答文件,IP地址为你IIS服务器的IP地址。
#ks=http://172.16.1.12/mini.txt
#下面为一个简单地回答文件:
#version=RHEL7
# System authorization information
auth --enableshadow --passalgo=sha512
# Reboot after installation
reboot
# Use CDROM installation media
cdrom
# Use text mode install
text
#不启动防火墙
# Firewall configuration
firewall --disabled
# 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=eno16777728 --noipv6
network --bootproto=dhcp --hostname=localhost.localdomain
# Root password Root用户的密码,在这里我设置为明文的了,你可以将其设置为密文的。
rootpw --plaintext 123456
# SELinux configuration
selinux --disabled
# Do not configure the X Window System
skipx
# System timezone
timezone Asia/Shanghai --isUtc
# System bootloader configuration
bootloader --location=mbr --boot-drive=sda
autopart --type=lvm
# Partition clearing information
clearpart --none --initlabel
#显示安装的内核及base
%packages
@base
@core
#由于Centos7中base里面本身就没有net-tools,所以可以在回答文件中将net-tools写入
net-tools
%end
#回答文件写完