Difference between revisions of "Install/Download LiveCD/es"

From Funtoo
Jump to navigation Jump to search
(Created page with "==== Instalación Remota ====")
(Created page with "Alternativamente, puede iniciar sesión dentro de System Rescue CD por red con SSH para realizar la instalación desde otro ordenador, y esta puede ser una forma más convenie...")
Line 31: Line 31:
==== Instalación Remota ====  
==== Instalación Remota ====  


Alternatively, you can log into System Rescue CD over the network via SSH to perform the install from another computer, and this may be more convenient way to install Funtoo Linux.
Alternativamente, puede iniciar sesión dentro de System Rescue CD por red con SSH para realizar la instalación desde otro ordenador, y esta puede ser una forma más conveniente de instalar Funtoo Linux.


If you'd like to complete the install remotely, here's how. First, you will need to ensure that System Rescue CD has a functioning network connection. Then, you will need to set a root password for System Rescue CD:
If you'd like to complete the install remotely, here's how. First, you will need to ensure that System Rescue CD has a functioning network connection. Then, you will need to set a root password for System Rescue CD:

Revision as of 16:07, November 27, 2018

Other languages:
English • ‎español • ‎français • ‎italiano • ‎polski • ‎português do Brasil • ‎русский • ‎中文(中国大陆)‎ • ‎中文(台灣)‎

Guia de Instalación: Descargando el Live CD

Install Guide, Chapter 1 < Prev Next >

Para instalar Funtoo Linux, primero deberá iniciar su computadora utilizando un Live CD o dispositivo USB basado en Linux. Recomendamos el basado en Gentoo System Rescue CD ya que contiene muchas herramientas y utilidades y es compatible con sistemas de 32 y 64 bits. Puede grabarse en un CD / DVD o instalarse en una memoria USB. Descarguelo de aqui:

   Important

NO VIDEO:Hemos parcheado nuestra descarga del System Rescue CD para que se inicie correctamente el video al arrancar desde UEFI (consulte FL-2030 FL-2030). Si está utilizando el CD oficial de rescate del sistema que no es Funtoo, en el GRUB Es posible que deba presionar e para editar la entrada del menú y agregar una línea de inicio de GRUB que lea insmod all_video y luego iniciar. Este error se ha informado en sentido ascendente a los desarrolladores de CD de rescate del sistema.

   Note

Si está usando una versión antigua de System Rescue CD, asegúrese de seleccionar el kernel rescue64 en el menú de arranque, si está instalando un sistema de 64-bits. Por defecto, System Rescue CD usa para arrancar el modo de 32-bits, aunque la última versión intenta detectar automáticamente procesadores de 64-bits.

Acceso a la Red

Una vez que haya arrancado System Rescue CD, vea si tiene acceso a Internet. Se requiere acceso a Internet para la instalación de Funtoo Linux:

root # ping www.google.com
PING www.google.com (216.58.217.36) 56(84) bytes of data.
64 bytes from den03s10-in-f4.1e100.net (216.58.217.36): icmp_seq=1 ttl=57 time=30.1 ms

Si el ping es satisfactorio (verá mensajes 64 bytes como el anterior), entonces su Red estará configurada. Presione Control-C para detener el ping.

Si necesita configurar una conexión WiFi para el acceso a Internet, entonces esto puede lograrse utilizando la herramienta de línea de comandos nmtui:

root # nmtui

Instalación Remota

Alternativamente, puede iniciar sesión dentro de System Rescue CD por red con SSH para realizar la instalación desde otro ordenador, y esta puede ser una forma más conveniente de instalar Funtoo Linux.

If you'd like to complete the install remotely, here's how. First, you will need to ensure that System Rescue CD has a functioning network connection. Then, you will need to set a root password for System Rescue CD:

root # passwd
New password: ********
Retype new password: ********
passwd: password updated successfully

Once you have typed in a password, you will now need to determine the IP address of System Rescue CD, and then you can use ssh to connect to it. To determine the IP address currently being used by System Rescue CD, type ifconfig:

root # ifconfig

Alternatively, determining of an IP address is possible with iproute2 ip tool:

root # ip addr show

One of the interfaces should have an IP address (listed as inet addr:) from your LAN. You can then connect remotely, from another system on your LAN, to System Rescue CD, and perform steps from the comfort of an existing OS. On your remote system, type the following, replacing 1.2.3.4 with the IP address of System Rescue CD. Connecting from an existing Linux or MacOS system would look something like this:

(remote system) $ ssh root@1.2.3.4
Password: **********
   Note

If you'd like to connect remotely from an existing Microsoft Windows system, you'll need to download an SSH client for Windows, such as PuTTY.

After you've logged in via SSH, you're now connected remotely to System Rescue CD and can perform the installation steps.