The Funtoo Linux project has transitioned to "Hobby Mode" and this wiki is now read-only.
Difference between revisions of "Install/Chroot"
Line 5: | Line 5: | ||
Before chrooting into your new system, there's a few things that need to be done first. You will need to mount /proc and /dev inside your new system. Use the following commands: | Before chrooting into your new system, there's a few things that need to be done first. You will need to mount /proc and /dev inside your new system. Use the following commands: | ||
<console> | <console> | ||
# ##i##mount -t proc none proc | # ##i##mount -t proc none proc | ||
# ##i##mount --rbind /sys sys | # ##i##mount --rbind /sys sys |
Revision as of 20:27, May 14, 2015
This is a template that is used as part of the Installation instructions which covers: the chroot process. Templates are being used to allow multiple variant install guides that use most of the same re-usable parts.
Chroot into Funtoo
Before chrooting into your new system, there's a few things that need to be done first. You will need to mount /proc and /dev inside your new system. Use the following commands:
root # mount -t proc none proc root # mount --rbind /sys sys root # mount --rbind /dev dev
This is a template that is used as part of the Installation instructions, to describe the process of chrooting into the stage3. Templates are being used to allow multiple variant install guides that use most of the same re-usable parts.
You'll also want to copy over resolv.conf
in order to have proper DNS name resolution from inside the chroot:
root # cp /etc/resolv.conf etc
Now you can chroot into your new system. Use env
before chroot
to ensure that no environment variables from the installation media are used by your new system:
root # env -i HOME=/root TERM=$TERM chroot . bash -l
Users of live CDs with 64-bit kernels installing 32-bit systems: Some software may use uname -r
to check whether the system is 32 or 64-bit. You may want append linux32 to the chroot command as a workaround, but it's generally not needed.
If you receive the error "chroot: failed to run command `/bin/bash': Exec format error
", it is probably because you are running a 32-bit kernel and trying to execute 64-bit code. SystemRescueCd boots with a 32-bit kernel by default.
It's also a good idea to change the default command prompt while inside the chroot. This will avoid confusion if you have to change terminals. Use this command:
root # export PS1="(chroot) $PS1"
Congratulations! You are now chrooted inside a Funtoo Linux system. Now it's time to get Funtoo Linux properly configured so that Funtoo Linux will boot successfully when your system is restarted.