7. 创建自动与手动ks配置文件
说明: kickstart文件可以直接采用自己安装成功/root/anaconda-ks.cfg的文件进行修改,
也可以用别人直接修改使用。
(1) OEL5.8手动ks文件
# vi /mnt/usb1/oel58h.cfg
install
harddrive --partition=sdb2 --dir=/
说明:
1). 通过ks文件可以直接定位iso文件位置,无需要手动选择local disk,然后选择iso磁盘。
2). 如果ks文件指定目录错误,也可以通过手动选择local disk,然后选择iso磁盘的方式进行安装。
(2) CentOS 5.8手动ks文件
# vi /mnt/usb1/cent58h.cfg
install
harddrive --partition=sdb4 --dir=/
(3) OEL5.8手动ks文件
# vi /mnt/usb1/oel63h.cfg
install
harddrive --partition=sdb3 --dir=/
(4) OEL5.8自动ks文件
# vi /mnt/usb1/oel58auto.cfg
install
harddrive --partition=sdb2 -dir=/
lang zh_CN.UTF-8
keyboard us
xconfig --startxonboot
network --device eth0 --bootproto static --ip 192.168.14.100 --netmask 255.255.255.0 --gateway 192.168.14.2 --nameserver 202.100.192.68 --hostname oa
rootpw --iscrypted $1$H0bnNoWM$HE1R/mWv6LqbhUGI8Xw/t.
firewall --disabled
authconfig --enableshadow --enablemd5
selinux --disabled
timezone Asia/Shanghai
bootloader --location=mbr --driveorder=sda --append="rhgb quiet"
# The following is the partition information you requested
# Note that any partitions you deleted are not expressed
# here so unless you clear all partitions first, this is
# not guaranteed to work
clearpart --linux
part /boot --fstype ext3 --size=100
part pv.3 --size=100 --grow
volgroup vg --pesize=32768 pv.3
logvol swap --fstype swap --name=swap --vgname=vg --size=6112
logvol / --fstype ext3 --name=root --vgname=vg --size=14240
%packages
@admin-tools
@base
@chinese-support
@core
@development-libs
@development-tools
@dialup
@editors
@gnome-desktop
@games
@graphical-internet
@graphics
@Java
@legacy-software-development
@legacy-software-support
@office
@printing
@sound-and-video
@text-internet
@base-x
system-config-kickstart
kexec-tools
iscsi-initiator-utils
fipscheck
squashfs-tools
device-mapper-multipath
sgpio
imake
emacs
libsane-hpaio
xorg-x11-utils
xorg-x11-server-Xnest
xorg-x11-server-Xvfb
%post
service sendmail stop
8. 将U盘退出虚拟机
(1) 从虚拟机中退出U盘
1) 点击VMware workstation菜单"虚拟机","可移动设备","Kingston U盘->与主机断开连接"。
2) windows中"我的电脑"就出现U盘图示,认出了1.7GB的磁盘空间,或也可以将U盘插入其它window电脑上。
(2) 写入引导信息
需要下载syslinux工具写入mbr引导信息与ldlinux.sys引导文件(系统隐藏)在msdos分区上。
win7必须管理员权限下执行cmd操作才能成功,64位系统选择win64目录的工具。
syslinux下载地址:
cmd中
d:
cd \syslinux-4.04\win32
syslinux.exe -a -m i:
四、 安装测试
1. 重启BIOS中设置USB-HDD启动
输入oel即可进行OEL5.8手动安装测试
2. 修改启动菜单进行个性化提示界面
# vi /mnt/usb1/syslinux/boot.msg
略
3. 其它维护
如果要安装其它版本的linux系统,可以直接替换ISO文件以及启动内容文件即可。