测试开发技术网站
博客
设计
设计
开发
Python
测试
unittest
运维
Linux基础应用
CI/CD
CI/CD
数据库
数据库
云计算
云计算
云原生
云原生
爬虫
爬虫
数据分析
数据分析
人工智能
人工智能
登录
注册
CentOS系统利用kickstart自动生成工具通过图形化配置的方式生成ks.cfg文件
收藏本文
作者:redrose2100 类别: 日期:2022-11-09 05:35:39 阅读:1009 次 消耗积分:0 分
[【原文链接】利用kickstart自动生成工具通过图形化配置的方式生成ks.cfg文件](http://devops-dev.com/article/432) [TOC] # 一、CentOS 需要安装图形化桌面 如已经安装过图形化桌面,直接跳过,若centos未安装图形化桌面,则参照如下步骤安装 (1)设置默认从图形化启动 ```bash systemctl set-default graphical.target ``` (1)安装图形化桌面 ```bash yum groupinstall "GNOME Desktop" "Graphical Administration Tools" -y ``` (3)然后重启 ```bash reboot ``` # 二、安装kickstart自动生成工具 (1)安装system-config-kickstart工具 ```bash yum install system-config-kickstart -y ``` (2)执行如下命令开始图形化引导 ```bash system-config-kickstart ``` (3)设置基本配置 如下图根据具体情况选择,这里文本模式执行安装是指安装的时候不采用图形化交互的方式 ![](https://redrose2100.oss-cn-hangzhou.aliyuncs.com/img/afec61d0-5fdd-11ed-b1f3-0242ac110002.png) (4)设置安装方法 ![](https://redrose2100.oss-cn-hangzhou.aliyuncs.com/img/07daea88-5fde-11ed-b1f3-0242ac110002.png) (5)设置引导装载程序选项,如下为正确配置 ![](https://redrose2100.oss-cn-hangzhou.aliyuncs.com/img/39568fae-5ff7-11ed-b1f3-0242ac110002.png) (6)设置分区 ![](https://redrose2100.oss-cn-hangzhou.aliyuncs.com/img/63b21a98-5ff7-11ed-b1f3-0242ac110002.png) (7)点击【添加】,新增磁盘挂载点 ![](https://redrose2100.oss-cn-hangzhou.aliyuncs.com/img/fea442ec-5fed-11ed-b1f3-0242ac110002.png) (8)比如给 /boot 挂载1G空间 ![](https://redrose2100.oss-cn-hangzhou.aliyuncs.com/img/5216b978-5fee-11ed-b1f3-0242ac110002.png) (9)然后将剩下的分配给根目录 ![](https://redrose2100.oss-cn-hangzhou.aliyuncs.com/img/b9dbfc0e-5ff7-11ed-b1f3-0242ac110002.png) (10)配置网络,这里配置为dhcp即可 ![](https://redrose2100.oss-cn-hangzhou.aliyuncs.com/img/150f8884-5ff8-11ed-b1f3-0242ac110002.png) (11)设置不安装图形化 ![](https://redrose2100.oss-cn-hangzhou.aliyuncs.com/img/1c721f1e-5fef-11ed-b1f3-0242ac110002.png) (12)防火墙配置,这里直接禁用即可 ![](https://redrose2100.oss-cn-hangzhou.aliyuncs.com/img/3fd6548a-5ff8-11ed-b1f3-0242ac110002.png) (13)如需要提前安装一些脚本,可以在此处设置 ![](https://redrose2100.oss-cn-hangzhou.aliyuncs.com/img/3c75876a-5fef-11ed-b1f3-0242ac110002.png) (14)配置完成后点击【文件】-【保存】 ![](https://redrose2100.oss-cn-hangzhou.aliyuncs.com/img/b1490850-5fef-11ed-b1f3-0242ac110002.png) (15)选择保存的位置,保存 ![](https://redrose2100.oss-cn-hangzhou.aliyuncs.com/img/d901e18c-5fef-11ed-b1f3-0242ac110002.png) (16)然后打开 /opt/test/ks.cfg,文件内容如下 ```bash #platform=x86, AMD64, 或 Intel EM64T #version=DEVEL # Install OS instead of upgrade install # Keyboard layouts keyboard 'us' # Root password rootpw --iscrypted $1$x7isxN9d$2uzzR6TWc.UyXds2hYxlr0 # System language lang zh_CN # System authorization information auth --useshadow --passalgo=sha512 # Use CDROM installation media cdrom # Use text mode install text # SELinux configuration selinux --disabled # Do not configure the X Window System skipx # Firewall configuration firewall --disabled # Network information network --bootproto=dhcp --device=ens3 # Reboot after installation reboot # System timezone timezone Asia/Shanghai # System bootloader configuration bootloader --location=mbr # Clear the Master Boot Record zerombr # Partition clearing information clearpart --all --initlabel # Disk partitioning information part /boot --fstype="xfs" --size=1024 part / --fstype="xfs" --grow --size=1 ``` (17)这里没有设置安装哪些包,因此需要手动在最后增加如下几行,表示要安装的基础包 ```bash %packages @base %end ``` 即完整内容如下: ```bash #platform=x86, AMD64, 或 Intel EM64T #version=DEVEL # Install OS instead of upgrade install # Keyboard layouts keyboard 'us' # Root password rootpw --iscrypted $1$x7isxN9d$2uzzR6TWc.UyXds2hYxlr0 # System language lang zh_CN # System authorization information auth --useshadow --passalgo=sha512 # Use CDROM installation media cdrom # Use text mode install text # SELinux configuration selinux --disabled # Do not configure the X Window System skipx # Firewall configuration firewall --disabled # Network information network --bootproto=dhcp --device=ens3 # Reboot after installation reboot # System timezone timezone Asia/Shanghai # System bootloader configuration bootloader --location=mbr # Clear the Master Boot Record zerombr # Partition clearing information clearpart --all --initlabel # Disk partitioning information part /boot --fstype="xfs" --size=1024 part / --fstype="xfs" --grow --size=1 %packages @base %end ```
始终坚持开源开放共享精神,同时感谢您的充电鼓励和支持!
版权所有,转载本站文章请注明出处:redrose2100, http://blog.redrose2100.com/article/432
上一篇:
Linux----扩展磁盘空间到根目录
下一篇:
CentOS7系统通过virt-install自动启动虚拟机(全程无交互)
搜索
个人成就
出版书籍
《Pytest企业级应用实战》
测试开发技术全栈公众号
测试开发技术全栈公众号
DevOps技术交流微信群
加微信邀请进群
常用网站链接
开源软件洞察
云原生技术栈全景图
Python语言官方文档
Golang官方文档
Docker官方文档
Jenkins中文用户手册
Scrapy官方文档
VUE官方文档
Harbor官方文档
openQA官方文档
云原生开源社区
开源中国
Kubernetes中文文档
Markdown语法官方教程
Kubernetes中文社区
Kubersphere官方文档
BootStrap中文网站
JavaScript中文网
NumPy官方文档
Pandas官方文档
GitLink确实开源网站
数据库排名网站
编程语言排名网站
SEO综合查询网站
数学加减法练习自动生成网站
Kickstart Generator
文章分类
最新文章
最多阅读
特别推荐
×
Close
登录
注册
找回密码
登录邮箱:
登录密码:
图片验证码:
注册邮箱:
注册密码:
邮箱验证码:
发送邮件
注册邮箱:
新的密码:
邮箱验证码:
发送邮件