在LINUX环境下直接安装
1、创建指定临时挂节点:
cd /mnt;
mkdir temp img;
2、拷出安装文件到指定目录如:/boot/install/
mount -o loop CentOS-5.4-i386-bin-DVD.iso /mnt/temp;
cd /mnt/temp/images;
mount -o loop diskboot.img /mnt/img/
cd /boot;
mkdir install
cd /boot/install
cp /mnt/img/* .
3、编辑GRUB配置文件:menu.lst
在最后加入如下内容:
title centos-Linux-Install
root (hd0,5)
kernel (hd0,5)/boot/install/vmlinuz lang= devfs=nomount ramdisk_size=9216
initrd (hd0,5)/boot/install/initrd.img
#其中(hd0,5)应改为/boot/install/目录所在分区
4、重新启动后,选择centos-Linux-Install,按提示进行安装。
阅读(1018) | 评论(0) | 转发(0) |