The Funtoo Linux project has transitioned to "Hobby Mode" and this wiki is now read-only.
Difference between revisions of "Install/Chroot/es"
Johnnygarb (talk | contribs) (Created page with "Antes de hacer chroot, hay algunas cosas que se deben hacer para configurar el entorno chroot. Deberá montar {{f |/proc}}, {{f |/sys}} y {{f |/dev}} dentro de su nuevo sistem...") |
Johnnygarb (talk | contribs) (Created page with "También querrá copiar el archivo {{f|resolv.conf}} para tener una correcta resolución de los nombres de dominio de Internet desde el chroot: {{console|body= # ##i##cp /etc/...") |
||
Line 17: | Line 17: | ||
}} | }} | ||
También querrá copiar el archivo {{f|resolv.conf}} para tener una correcta resolución de los nombres de dominio de Internet desde el chroot: | |||
{{console|body= | {{console|body= | ||
# ##i##cp /etc/resolv.conf /mnt/funtoo/etc/ | # ##i##cp /etc/resolv.conf /mnt/funtoo/etc/ | ||
}} | }} | ||
Ahora puedes cambiar el directorio root a tu nuevo sistema. Use <code>env</code> antes de <code>chroot</code> para asegurarse de que no haya ajustes de entorno del medio de instalación en su nuevo sistema: | |||
{{console|body=###i## env -i HOME=/root TERM=$TERM /bin/chroot . bash -l}} | {{console|body=###i## env -i HOME=/root TERM=$TERM /bin/chroot . bash -l}} |
Revision as of 21:28, October 11, 2018
Guia de instalación: Cambiando el directorio de root hacia Funtoo
Install Guide, Chapter 9 | < Prev | Next > |
Cambiando el directorio de root hacia Funtoo
Para instalar Funtoo Linux, primero se usa el comando chroot
. El comando chroot "se cambiará al" nuevo sistema Funtoo Linux, así que los comandos que ejecute después de ejecutar "chroot" se ejecutarán dentro del recién extraído sistema Funtoo Linux.
Antes de hacer chroot, hay algunas cosas que se deben hacer para configurar el entorno chroot. Deberá montar /proc
, /sys
y /dev
dentro de su nuevo sistema. Use los siguientes comandos para hacerlo:
root # cd /mnt/funtoo root # mount -t proc none proc root # mount --rbind /sys sys root # mount --rbind /dev dev
También querrá copiar el archivo resolv.conf
para tener una correcta resolución de los nombres de dominio de Internet desde el chroot:
root # cp /etc/resolv.conf /mnt/funtoo/etc/
Ahora puedes cambiar el directorio root a tu nuevo sistema. Use env
antes de chroot
para asegurarse de que no haya ajustes de entorno del medio de instalación en su nuevo sistema:
root # env -i HOME=/root TERM=$TERM /bin/chroot . bash -l
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 SystemRescueCD.
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"
Test internet name resolution from within the chroot:
root # ping -c 5 google.com
If you can't ping, make sure /etc/resolv.conf
doesn't contain things like 127.0.x.x
addresses, if it does, change the 127.0.x.x
entry to 8.8.8.8
-- Google's public dns address. Make sure to replace this with your dns of choice once the system is installed.
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.