Richard Price wrote:

>New to the list, but here goes -
>
>try:
>
>mount /dev/hda4 /mnt/gentoo
>mkdir /mnt/gentoo/boot
>mount /dev/hda2 /mnt/gentoo/boot
>
>  
>

Welcome to the list.  You are correct...the problem is that hda2 should
be mounted at /mnt/gentoo/boot before chroot'ing into it.  I would add
one more step, which is to move the files from /boot on the root
filesystem to the /boot filesystem....

mount /dev/hda4 /mnt/gentoo
mount /dev/hda2 /boot
mv /mnt/gentoo/boot/* /boot
umount /boot
mount /dev/hda2 /mnt/gentoo/boot
cd /mnt/gentoo
chroot ./ ./bin/bash
# do some stuff, run gub, etc

-- 
gentoo-user@gentoo.org mailing list

Reply via email to