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 "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/...") |
Johnnygarb (talk | contribs) (Created page with "{{Note|Para los usuarios de live CDs con núcleo kernel de 64 bits instalando sistemas de 32 bits: pueden usar {{c|uname -r}} para verificar si su sistema es de 32 o 64 bits....") |
||
Line 25: | Line 25: | ||
{{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}} | ||
{{Note| | {{Note|Para los usuarios de live CDs con núcleo kernel de 64 bits instalando sistemas de 32 bits: pueden usar {{c|uname -r}} para verificar si su sistema es de 32 o 64 bits. Es posible que desee agregar linux32 al comando del chroot como una solución alternativa, pero generalmente no es necesario.}} | ||
{{Important| | {{Important|Si recibe el error "{{c|chroot:failed to run command /bin/bash': Exec format error}}", lo más probable es que esté ejecutando un núcleo kernel de 32 bits y estar tratando de ejecutar código de 64 bits. Asegúrese de haber seleccionado el tipo apropiado de kernel cuando arranques 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: | 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: |
Revision as of 21:30, 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
Para los usuarios de live CDs con núcleo kernel de 64 bits instalando sistemas de 32 bits: pueden usar uname -r
para verificar si su sistema es de 32 o 64 bits. Es posible que desee agregar linux32 al comando del chroot como una solución alternativa, pero generalmente no es necesario.
Si recibe el error "chroot:failed to run command /bin/bash': Exec format error
", lo más probable es que esté ejecutando un núcleo kernel de 32 bits y estar tratando de ejecutar código de 64 bits. Asegúrese de haber seleccionado el tipo apropiado de kernel cuando arranques 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.