|
发表于 2005-6-23 16:53:11
|
显示全部楼层
这段话就是出自置顶或是精华里面的帖。
[quote:dd9cfd3c7a="atang520"][quote:dd9cfd3c7a="yanzi_731"]回楼上的,置顶的帖子早都看过了,没有关于硬盘安装的!![/quote]
10. 硬盘安装方法
准备工作:下载 iso 文件并放在任何 fat 或者 fat32 分区的 \ 目录下,也可放在 linux 分区的 /tmp 下。
(1)基于原有 magic linux 全新安装
如果您的硬盘安装有先前版本的 magiclinux,可以用这种方法全新安装,请注意备份您的数据,原有的 magic linux 数据将全部丢失。
首先用文本编辑器复制下面一段到 /boot/grub/grub.conf 里:
代码:
title MagicLinux (install)
kernel (hdx,y)/boot/mbvmlinuz root=/dev/ram0 initrd=/boot/mbinitrd-hd.gz ramdisk_size=32768 vga=788
initrd (hdx,y)/boot/mbinitrd-hd.gz
这里的 (hdx,y) 是您自己的 boot 目录所在的分区,例如:
代码:
# grub.conf generated by MagicInstaller.
# Note that you do not have to rerun grub after making changes to this file.
default=0
timeout=12
splashimage=(hd0,5)/boot/grub/splash.xpm.gz
title windows
rootnoverify (hd0,0)
chainloader +1
title MagicLinux
root (hd0,5)
kernel /boot/vmlinuz-2.6.9 ro root=/dev/hda6 vga=791 splash=silent
initrd /boot/initrd-2.6.9.img
title MagicLinux (Graphics Mode)
root (hd0,5)
kernel /boot/vmlinuz-2.6.9 init 5 ro root=/dev/hda6 vga=791 splash=silent
initrd /boot/initrd-2.6.9.img
title MagicLinux (Console Mode)
root (hd0,5)
kernel /boot/vmlinuz-2.6.9 init 3 ro root=/dev/hda6 vga=791 splash=silent
initrd /boot/initrd-2.6.9.img
title MagicLinux (Single Mode)
root (hd0,5)
kernel /boot/vmlinuz-2.6.9 init 1 ro root=/dev/hda6 vga=791 splash=silent
initrd /boot/initrd-2.6.9.img
title MagicLinux (install)
kernel (hd0,5)/boot/mbvmlinuz root=/dev/ram0 initrd=/boot/mbinitrd-hd.gz ramdisk_size=32000 vga=788
initrd (hd0,5)/boot/mbinitrd-hd.gz
重启后选择 MagicLinux (install) 进入就行了。注意:这里的 kernel 一行没有折行,是一直连续写下来的,只是这里显示不了。
(2)基于原有 magic linux 升级安装
直接在原有版本上安装,方法同上,只是分区时仅仅挂载原有分区,但是不要格式化即可,这样安装会比全新安装慢,而且会引入原有版本的错误,我们不推荐这么安装!
(3)基于 DOS 全新安装
下载这里的文件:
http://www.magiclinux.org/dev/final/hd-install/magic.zip
将 magic.zip 解压缩到 win 的任何 fat 或者 fat32 分区,目录位置不限。注意不能是 ntfs 分区,因为 DOS 不能进入这样的分区。用 win98 软启动盘或者 win98 直接启动进入 DOS(启动时按住 ctrl 键,在菜单里选择“仅仅命令行提示”即可),建议选择安全(最小) DOS 模式。然后进入 magic 目录,执行:setup 即可。[/quote] |
|