The Funtoo Linux project has transitioned to "Hobby Mode" and this wiki is now read-only.
Difference between revisions of "Gentoo Minimal Installation CD/es"
(Created page with "== Cómo estar en línea ==") |
(Created page with "Si estás utilizando una conexión cableada, simplemente conecta los cables y ejecuta {{c|dhcpcd <iface_name>}} para obtener una dirección IP. Entonces deberías estar listo...") |
||
Line 27: | Line 27: | ||
== Cómo estar en línea == | == Cómo estar en línea == | ||
Si estás utilizando una conexión cableada, simplemente conecta los cables y ejecuta {{c|dhcpcd <iface_name>}} para obtener una dirección IP. Entonces deberías estar listo para continuar. | |||
Using WiFi is a bit trickier and is covered next. | Using WiFi is a bit trickier and is covered next. |
Revision as of 05:08, December 28, 2021
El CD de instalación mínima de Gentoo es una imagen arrancable para CD/USB que puede ser utilizada para instalar Funtoo Linux. Puede ser descargada desde https://www.gentoo.org/downloads/
Ventajas y Desventajas
Las ventajas del CD de instalación mínima de Gentoo son:
- Es pequeña, por lo que puede ser descargado rápidamente.
- Usa GRUB 2.04 para arrancar en sistemas UEFI (y usa isolinux para sitemas BIOS) que también soporta los sistemas UEFImas modernos.
- Está basado en Gentoo -- lo que siempre es bueno :)
- Usa un núcleo Linux moderno, así que debería soportar el hardware más reciente.
Algunas desventajas posibles para esta imagen son:
- Como es pequeña, no incluye muchas herramientas.
- Solamente tienes
wpa-supplicant
para configurar el WiFi (Lo que no es diífil si sabes como y veremos los pasos para hacerlo, pero es más complicado que usar NetworkManager.)
Descargando el stage Funtoo
Use the the following command to start a text-based browser once you are online: Usa el siguiente comando para iniciar un navegador web basado en texto, después de haber logrado arrancar tu imagen mínima y te encuentres en línea:
root # cd /mnt/funtoo root # links https://build.funtoo.org
Cómo estar en línea
Si estás utilizando una conexión cableada, simplemente conecta los cables y ejecuta dhcpcd <iface_name>
para obtener una dirección IP. Entonces deberías estar listo para continuar.
Using WiFi is a bit trickier and is covered next.
Once you have booted the LiveCD, you should be able to use WiFI as follows. First, type
ifconfig -a
and ensure that your wireless interface is visible. Your wireless
interface should begin with a "w".
Next, you will want to configure wpa_supplicant
configuration so it has the
credentials to log in to your local WiFi access point. To do this, use the following command:
root # wpa_passphrase my_wifi_network my_wifi_passphrase > /etc/wpa_supplicant/example.conf
If you are connecting to an unsecured wireless access point, then please follow the wpa_cli
instructions on Arch Wiki: https://wiki.archlinux.org/index.php/wpa_supplicant#Connecting_with_wpa_cli
Replace my_wifi_network
with the actual name of your WiFi network, using double-quotes if the network name includes spaces, and replace my_wifi_passphrase
with your literal passphrase (again using necessary quoting for spaces or special characters.)
Next, you will want to start wpa_supplicant
:
root # /etc/init.d/wpa_supplicant start
Once this completes, wpa_supplicant
should begin connecting to your WiFi network
automatically. You will be able to then see this by typing ifconfig
.
Finally, you will want to run the following command, specifying the name of your wireless interface. This will start a DHCP client which will grab an IP address and configure your network so that you can use it:
root # dhcpcd wasdflk
Replace wasdflk
with the name of your wireless interface as it appears in ifconfig
. You should now be able to ping
, etc.