|
发表于 2005-12-28 16:17:57
|
显示全部楼层
手动安装 grub
前提 你已经安装了 grub
跳过 install bootloader 安装步骤
退出arch安装程序 保证编辑menu.list正确
如下
- # cp -a /mnt/usr/share/grub/i386-pc/* /mnt/boot/grub
- # sync
- # mount -t devfs none /mnt/dev
- # mount -t proc none /mnt/proc
- # chroot /mnt
- # grub
- grub> root (hd*,*) // *,*为grub所在硬盘及分区 scsi为sd
- grub> setup (hd*,*) // *,*为grub安装分区 (hd*)为安装在MBR上
- grub> quit
- # exit
复制代码
最后别忘了 unmount filesystems |
|