Difference between revisions of "Chroot into the New Environment"
Jump to navigation
Jump to search
| Line 7: | Line 7: | ||
'''#''' chroot /mnt/gentoo /bin/bash | '''#''' chroot /mnt/gentoo /bin/bash | ||
'''#''' env-update && source /etc/profile | '''#''' env-update && source /etc/profile | ||
| − | Before we begin | + | Before we begin emerging programs we should [[Configure System Settings]]. |
Revision as of 17:25, 17 November 2010
Installing Gentoo - chroot into the New Environment
We've already mounted our boot and root drives, but we'll need to mount the processes and devices there before we can chroot into the new Linux environment.
# mount -t proc none /mnt/gentoo/proc # mount -o bind /dev /mnt/gentoo/dev
The new environment is ready, so we can enter it.
# chroot /mnt/gentoo /bin/bash # env-update && source /etc/profile
Before we begin emerging programs we should Configure System Settings.