The Funtoo Linux project has transitioned to "Hobby Mode" and this wiki is now read-only.
Difference between revisions of "Install/Chroot"
(35 intermediate revisions by 5 users not shown) | |||
Line 2: | Line 2: | ||
<includeonly> | <includeonly> | ||
== Chroot into Funtoo == <!--T:1--> | == Chroot into Funtoo == <!--T:1--> | ||
</includeonly><noinclude> | </includeonly><noinclude><languages/> | ||
= Install Guide: Chroot into Funtoo = | = Install Guide: Chroot into Funtoo = | ||
<!--T:2--> | <!--T:2--> | ||
Line 9: | Line 9: | ||
<!--T:14--> | <!--T:14--> | ||
To | To set up your Funtoo Linux system, we need to "enter into" it before we boot. If you are using the Funtoo Linux LiveCD, this can be easily done with the {{c|fchroot}} command: | ||
<!--T:17--> | |||
{{console|body= | |||
# ##i##fchroot /mnt/funtoo | |||
%fchroot% | |||
}} | |||
<!--T:18--> | |||
The {{c|fchroot}} command will take care of all necessary steps to enter into your new Funtoo Linux system, as well as clean up things when you exit the fchroot by typing | |||
{{c|exit}} or {{c|ctrl-D}}. | |||
<!--T:19--> | |||
If you are using another LiveCD or USB media to install Funtoo, you can manually chroot by using the following set of commands: | |||
<!--T:8--> | <!--T:8--> | ||
{{console|body= | {{console|body= | ||
# ##i##cd /mnt/funtoo | # ##i##cd /mnt/funtoo | ||
# ##i##mount - | # ##i##mount --rbind /proc proc | ||
# ##i##mount --rbind /sys sys | # ##i##mount --rbind /sys sys | ||
# ##i##mount --rbind /dev dev | # ##i##mount --rbind /dev dev | ||
# ##i##cp /etc/resolv.conf /mnt/funtoo/etc/ | # ##i##cp /etc/resolv.conf /mnt/funtoo/etc/ | ||
# ##i##chroot . /bin/su --login | |||
%chroot% }} | |||
<!--T:11--> | <!--T:11--> | ||
{{Note|For users of live CDs with 64-bit kernels installing 32-bit systems: Some software may use {{c|uname -r}} to check whether the system is 32 or 64-bit. You may want to append linux32 to the chroot command as a workaround, but it's generally not needed.}} | {{Note|For users of live CDs with 64-bit kernels installing 32-bit systems: Some software may use {{c|uname -r}} to check whether the system is 32 or 64-bit. You may want to append linux32 to the chroot command as a workaround, but it's generally not needed.}} | ||
{{Important|If you receive the error "{{c|chroot: failed to run command `/bin/bash': Exec format error}}", it is most likely because you are running a 32-bit kernel and trying to execute 64-bit code. Make sure that you have selected the proper type of kernel when booting | {{Important|If you receive the error "{{c|chroot: failed to run command `/bin/bash': Exec format error}}", it is most likely because you are running a 32-bit kernel and trying to execute 64-bit code. Make sure that you have selected the proper type of kernel when booting your live CD.}} | ||
<!--T:12--> | <!--T:12--> | ||
Test internet name resolution from within the chroot: | Test internet name resolution from within the chroot: | ||
{{console|body= | {{console|body=%chroot% ##i##ping -c 5 google.com}} | ||
If you can't ping, make sure {{f|/etc/resolv.conf}} | |||
<!--T:15--> | |||
If you can't ping, make sure that {{f|/etc/resolv.conf}} specifies a valid IP address for a reachable nameserver in its {{c|nameserver}} setting. | |||
<!--T:13--> | <!--T:13--> | ||
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 start successfully, without any manual assistance, when your system is restarted. | 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 start successfully, without any manual assistance, when your system is restarted. | ||
</translate> | </translate> | ||
<noinclude>{{InstallNavigation|num=9|prev=Download and Extract Stage3|next=Download Portage Tree|align=right}}</noinclude> |
Latest revision as of 00:59, May 26, 2023
Install Guide: Chroot into Funtoo
Install Guide, Chapter 9 | < Prev | Next > |
To set up your Funtoo Linux system, we need to "enter into" it before we boot. If you are using the Funtoo Linux LiveCD, this can be easily done with the fchroot
command:
root # fchroot /mnt/funtoo fchroot #
The fchroot
command will take care of all necessary steps to enter into your new Funtoo Linux system, as well as clean up things when you exit the fchroot by typing
exit
or ctrl-D
.
If you are using another LiveCD or USB media to install Funtoo, you can manually chroot by using the following set of commands:
root # cd /mnt/funtoo root # mount --rbind /proc proc root # mount --rbind /sys sys root # mount --rbind /dev dev root # cp /etc/resolv.conf /mnt/funtoo/etc/ root # chroot . /bin/su --login chroot #
For 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 to 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 most likely because you are running a 32-bit kernel and trying to execute 64-bit code. Make sure that you have selected the proper type of kernel when booting your live CD.
Test internet name resolution from within the chroot:
chroot # ping -c 5 google.com
If you can't ping, make sure that /etc/resolv.conf
specifies a valid IP address for a reachable nameserver in its nameserver
setting.
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 start successfully, without any manual assistance, when your system is restarted.
Install Guide, Chapter 9 | < Prev | Next > |