pxe给虚拟机自动安装centos7系统的kicstart文件
时间: 2024-04-07 17:31:14 浏览: 179
PXE自动安装系统笔记
以下是一个可以用于自动安装CentOS7系统的kickstart文件示例:
```
#version=DEVEL
# System language
lang en_US
# Language modules to install
langsupport --default=en_US
# System keyboard
keyboard us
# System timezone
timezone Asia/Shanghai --isUtc
# Root password
rootpw --iscrypted $6$y8Ls6SxYJLgU2X9$4XsLjF0HJ8aG5L8XmKZAK5LJmZi/DW3.7q3qXw3m9WdWvTTXw7JhHE8rD1BtOyJdSb9yQ7oRwkZxkLcFh1vP1
# Network information
network --bootproto=dhcp --device=eth0 --onboot=yes --noipv6 --hostname=localhost.localdomain
# Firewall configuration
firewall --disabled
# Run the Setup Agent on first boot
firstboot --disable
# SELinux configuration
selinux --disabled
# Install OS instead of upgrade
install
# Use network installation
url --url=http://mirrors.aliyun.com/centos/7/os/x86_64/
# Root filesystem partitioning
ignoredisk --only-use=sda
autopart --type=lvm
# System bootloader configuration
bootloader --location=mbr --boot-drive=sda
# Clear the Master Boot Record
zerombr
# Do not configure the X Window System
skipx
# Enable installation of all languages
skiplocales
# Reboot after installation
reboot
# Package installation
%packages --nobase
@core
kexec-tools
```
这个kickstart文件做的事情:
1. 设置系统语言为英文。
2. 安装英文语言支持。
3. 设置键盘为美式英语。
4. 设置时区为亚洲上海,并将其设置为UTC时间。
5. 设置root密码。
6. 配置网络,使用dhcp自动获取IP地址。
7. 禁用防火墙。
8. 禁用SELinux。
9. 安装操作系统。
10. 使用阿里云的CentOS7源进行安装。
11. 使用LVM分区方案。
12. 配置引导程序的安装位置。
13. 清除主引导记录。
14. 不需要安装X Window System。
15. 安装所有语言支持。
16. 安装core和kexec-tools两个包。
17. 安装完成后自动重启系统。
阅读全文