分类: LINUX
2010-07-23 20:59:38
在linux环境下,RedHat 8.0硬盘安装方法 在LINUX环境下直接安装 1、创建指定临时挂节点: cd /mnt; mkdir temp img; 2、拷出安装文件到指定目录如:/boot/install/ mount -o loop psyche-i386-disc1.iso /mnt/temp; cd /mnt/temp/images; mount -o loop boot.img /mnt/img; cd /boot; mkdir install; cd /boot/install; cp /mnt/img/* . ; 3、编辑GRUB配置文件:menu.lst 在最后加入如下内容: title Redhat-Linux-Install kernel (hd0,5)/boot/install/vmlinuz lang= devfs=nomount ramdisk_size=9216 initrd (hd0,5)/boot/install/initrd.img #其中(hd0,5)应改为/boot/install/目录所在分区 4、重新启动后,选择Redhat-Linux-Install,按提示进行安装。 #对于以LINUX为主要工作环境,并且经常测试新系统的人,这个方法更简洁。今后,对于每一个新版本一般只要重复第二步就可以了 1、用这方法的前提是,已经安装了Linux,并且启动管理器用的是Grub。对于喜欢测试新系统的兄弟来说,我建议在硬盘上留出一个两三百兆的空间,装一个专门用来维护用的小系统,并把Grub放在这里。以后每次安装新系统的时候,都不要装启动器,只需手动在小系统的menu.lst上加一行就行了。对于一个没有Windows或主要工作环境是Linux的人,这是最方便的,就像我这样。 2、按我上次写的步骤作完,要不要umount是没有关系的,只需重新启动后,选择系统菜单里刚增加的安装项就可以进入安装程序了,中间有一步问iso文件所在的分区,指定以后,剩下的就是安装程序的事了。 3、下面是我的menu.lst文件,供参考,注意最后一行: timeout 2 color black/cyan yellow/cyan i18n (hd0,8)/boot/grub/messages keytable (hd0,8)/boot/us.klt altconfigfile (hd0,8)/boot/grub/menu.once default 2 title MDK-Linux-8.2 kernel (hd0,2)/boot/vmlinuz root=/dev/hda3 devfs=mount hdd=ide-scsi vga=3840 title ManDrake-linux-9.0 kernel (hd0,6)/boot/vmlinuz root=/dev/hda7 devfs=mount hdd=ide-scsi vga=3840 title Red Hat-linux-8.0 kernel (hd0,7)/boot/vmlinuz root=/dev/hda8 devfs=mount hdd=ide-scsi vga=3840 title windows root (hd0,0) makeactive chainloader +1 title Rescue-Linux kernel (hd0,8)/boot/vmlinuz root=/dev/hda9 devfs=mount hdd=ide-scsi initrd (hd0,8)/boot/initrd.img title Redhat-Linux-Install kernel (hd0,8)/boot/redhat-install/vmlinuz lang= devfs=nomount nofb ramdisk_size=9216 initrd (hd0,8)/boot/redhat-install/initrd.img |