2010/9/21 fwoncn <[email protected]>:
> 我现在按照石康志的流程这么做的
> Gentoo LiveUSB引导后
>
> $ mkdir /mnt/ubuntu
> $ mount /dev/sda8 /mnt/ubuntu
> $ chroot /mnt/ubuntu (我这个不确定,是该这个路径还是/mnt/ubuntu/root)
> 下面的事情我就不知道该怎么办了,
> # emerge grub
> /bin/sh emerge: not found
> # apt
> apt: error while loading shared libraries: libjii.so: .............

# mkdir /mnt/ubuntu
# mount /dev/sda8 /mnt/ubuntu
# mount -t proc proc /mnt/ubuntu/proc
# mount -o bind /sys /mnt/ubuntu/sys
# mount -o bind /dev/ /mnt/ubuntu/dev
# LANG=C chroot /mnt/ubuntu /bin/bash

这样应该就成功 chroot 到里面了,然后要清理以前 grub 和 brug 的残余文件,并且强行删除系统中已经安装的 grub
相关软件包的信息,再用 apt 装一遍。



-- 
Regards,
Aron Xu
-- 
ubuntu-zh mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/ubuntu-zh

回复