Install/Chroot/es

From Funtoo
< Install
Revision as of 21:28, October 11, 2018 by 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/...")
Jump to navigation Jump to search
Other languages:
English • ‎Türkçe • ‎español • ‎polski • ‎português do Brasil • ‎русский • ‎中文(中国大陆)‎

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
   Note

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.

   Important

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.