美文网首页
利用kickstart图形界面生成相应的kickstart.cf

利用kickstart图形界面生成相应的kickstart.cf

作者: 素白流殇 | 来源:发表于2017-06-07 11:08 被阅读588次

安装 Kickstart 软件

进入系统桌面,使用 command 安装kickstart软件

yum install system-config-kickstart

进入软件配置相应文件

image.png image.png image.png image.png image.png image.png image.png image.png

采用硬盘安装的kickstart.cfg文件

#platform=x86, AMD64, 或 Intel EM64T
#version=DEVEL
# Install OS instead of upgrade
install
# Keyboard layouts
keyboard 'us'
# Root password
rootpw --iscrypted $1$x7WnizHL$lyQtOkow/sh2fYFk3LGNG/
# System timezone
timezone Asia/Shanghai
# System language
lang en_US
# Firewall configuration
firewall --disabled
# System authorization information
auth  --useshadow  --passalgo=sha512
# Use graphical install
graphical
# Use hard drive installation media
harddrive --dir=/mnt --partition=sda
# SELinux configuration
selinux --disabled
# Do not configure the X Window System
skipx

# Network information
network  --bootproto=dhcp --device=eth0
# Reboot after installation
reboot
# System bootloader configuration
bootloader --location=mbr
# Clear the Master Boot Record
zerombr
# Partition clearing information
clearpart --all --initlabel
# Disk partitioning information
part /boot --asprimary --fstype="xfs" --size=500
part / --asprimary --fstype="xfs" --grow --size=1

采用http方式安装的配置文件

#platform=x86, AMD64, 或 Intel EM64T
#version=DEVEL
# Install OS instead of upgrade
install
# Keyboard layouts
keyboard 'us'
# Root password
rootpw --iscrypted $1$TjakpGzz$Kfx8GocFqs9sQgfrnBjxu1
# System timezone
timezone Asia/Shanghai
# Use network installation
url --url="http://9.110.187.140/cdrom"
# System language
lang en_US
# Firewall configuration
firewall --disabled
# System authorization information
auth  --useshadow  --passalgo=sha512
# Use graphical install
graphical
# SELinux configuration
selinux --disabled
# Do not configure the X Window System
skipx

# Network information
network  --bootproto=dhcp --device=eth0
# Reboot after installation
reboot
# System bootloader configuration
bootloader --location=mbr
# Clear the Master Boot Record
zerombr
# Partition clearing information
clearpart --all --initlabel
# Disk partitioning information
part /boot --asprimary --fstype="xfs" --size=500
part / --asprimary --fstype="xfs" --grow --size=1

相关文章

  • 利用kickstart图形界面生成相应的kickstart.cf

    安装 Kickstart 软件 进入系统桌面,使用 command 安装kickstart软件 进入软件配置相应文...

  • Linux Kickstart配置、使用备忘

    Linux Kickstart 备忘 简介 kickstart是一个利用Anconda工具实现服务器自动化安装的方...

  • 007Kickstart无人值守安装

    Kickstart无人值守安装 系统安装步骤:设置生成-->ks.cfg文件-->anaconda运行--->in...

  • CocoaPod简单配置

    基本设置 未装的电脑 安装完了后验证: 利用vim创建Podfile 保存退出: 安装 然后会自动生成相应的pod...

  • 代码原理

    下面来分析一下Qt Designer生成的源码。 Qt Designer制作的图形界面为 生成的代码如下: 运行代码:

  • SCI-Hub和EndNote 联用

    简介 利用EndNote中存储的DOI信息,添加可用的SCI-hub官方网页前缀生成相应网页链接,之后则可以进行下...

  • linux常用命令2

    1 可以利用快捷键进行文本终端与图形界面的终端的切换 ctrl+alt+f1 切换至图形界面 ctr...

  • protobuf编译

    上述命令只会生成message,不会生成service相应的stub,生成stub需要指定plugins

  • 协奕详图制作与调用构想

    详图的调用思路 利用自动截图的方式生成建筑、结构、暖通的基本平面详图; 同时调取相应的协奕平面详图AP、SP、VP...

  • PXE+Kickstart自动化部署Linux 8

    一、PXE+Kickstart自动化部署原理 1、什么是PXE? 2、要件功能 Kickstart : KickS...

网友评论

      本文标题:利用kickstart图形界面生成相应的kickstart.cf

      本文链接:https://www.haomeiwen.com/subject/sduofxtx.html