定制CentOS系统时我想让定制好的ISO文件安装时只有配置网络接口这一个交互界面在ks.cfg文件该怎么配置?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了定制CentOS系统时我想让定制好的ISO文件安装时只有配置网络接口这一个交互界面在ks.cfg文件该怎么配置?相关的知识,希望对你有一定的参考价值。
定制CentOS系统时,我想让定制好的ISO文件安装过程中只有配置网络接口这一个交互界面其他的交互界面预先配置好,那么在ks.cfg文件中应该怎么配置,求大虾不吝赐教,非常感激!!!
参考技术A 比较复杂,建议用虚拟机方式测试比较方便,自己慢慢研究吧,呵呵#platform=x86, AMD64, or Intel EM64T
#version=DEVEL
# Firewall configuration
firewall --disabled
# Install OS instead of upgrade
install
# Use network installation
cdrom
# Root password
rootpw --iscrypted xxx
# System authorization information
auth --useshadow --passalgo=md5
# Use graphical install
graphical
firstboot --disable
# System keyboard
keyboard us
# System language
lang en_US
# SELinux configuration
selinux --disabled
# Installation logging level
logging --level=info
# Reboot after installation
reboot
# System timezone
timezone Asia/Shanghai
# Network information
# network --bootproto=dhcp --device=eth0 --onboot=on
# System bootloader configuration
bootloader --location=mbr
# Clear the Master Boot Record
zerombr
# Partition clearing information
clearpart --all --drives=sda
# Disk partitioning information
part /boot --fstype="ext4" --size=300
part swap --fstype="swap" --size=4096
part / --fstype="ext4" --grow --size=1
%packages
@base
%end追问
这问题搞定了,另外就是用定制好的ISO安装系统时我想拷贝光盘上的文件到已安装的系统上,但是不知道真实安装的系统的文件系统挂载在哪个节点上。在ks.cfg文件上的%post段添加cp ./123.zip /tmp/貌似没起作用。能否指点一二,不胜感谢。
追答看下这个帖子
http://bbs.chinaunix.net/thread-2204037-1-1.html
看过了,帖子中楼主自己没搞定,也联系过了他,没响应
追答我今天用虚拟机测试了下,发现了这个估计对你有用,挂载的地址应该是/mnt/source,我用的是centos 5.5,其实你也可以测试。安装的时候到分区那个时候停下,然后按ctrl + alt + F2,就出现这个命令行了,按ctrl + alt + F6就又回到图形界面了。
之后的问题,估计你就能搞定了。
以上是关于定制CentOS系统时我想让定制好的ISO文件安装时只有配置网络接口这一个交互界面在ks.cfg文件该怎么配置?的主要内容,如果未能解决你的问题,请参考以下文章