Difference between revisions of "Gentoo Minimal Installation CD/pt-br"

From Funtoo
Jump to navigation Jump to search
(Created page with "Usar o WiFi é um pouco mais complicado e é abordado a seguir. Nota de Tradução: Preferencialmente, se possível utilize a conexão a cabo para instalação, além de mais...")
(Created page with "Depois de inicializar o LiveCD, você poderá usar o WiFI da seguinte maneira. Primeiro, digite {{c | ifconfig -a}} e certifique-se de que sua interface sem fio esteja visíve...")
Line 32: Line 32:
Nota de Tradução: Preferencialmente, se possível utilize a conexão a cabo para instalação, além de mais fácil a configuração é normal também que seja mais rápido, pois há muitas coisas para serem descarregadas.
Nota de Tradução: Preferencialmente, se possível utilize a conexão a cabo para instalação, além de mais fácil a configuração é normal também que seja mais rápido, pois há muitas coisas para serem descarregadas.


Once you have booted the LiveCD, you should be able to use WiFI as follows. First, type
Depois de inicializar o LiveCD, você poderá usar o WiFI da seguinte maneira.
{{c|ifconfig -a}} and ensure that your wireless interface is visible. Your wireless
Primeiro, digite {{c | ifconfig -a}} e certifique-se de que sua interface sem fio esteja visível. O nome de sua placa de rede sem fio deve começar com um "w".
interface should begin with a "w".


Next, you will want to configure {{c|wpa_supplicant}} configuration so it has the
Next, you will want to configure {{c|wpa_supplicant}} configuration so it has the

Revision as of 17:58, January 7, 2021

O Gentoo LiveCD de instalação é uma imagem de CD / USB inicializável que pode ser usada para instalar o Funtoo Linux. Ele pode ser baixado em https://www.gentoo.org/downloads/

Vantagens e Desvantagens

As vantagens do Gentoo LiveCD de instalação são:

  1. A imagem é pequena, e pode ser rapidamente descarregada.
  2. Utiliza o GRUB 2.04 para inicializar em sistemas UEFI (e isolinux para sistemas legados em BIOS/MBR) apresentando suporte para os mais modernos sistemas.
  3. É baseado em Gentoo -- e isso é ótimo. :)
  4. Utiliza um kernel atualizado com suporte para hardware recente.

Algumas desvantagens possíveis para esta imagem são:

  1. é pequeno, logo não inclui muitas coisas e algo pode faltar.
  2. Você fica com wpa-supplicant para configurar o WiFi (isso não é difícil se você souber como e cobriremos essas etapas, mas é mais complicado do que usar o NetworkManager.)

Descarregando o estágio do Funtoo

Use o seguinte comando para iniciar um navegador baseado em texto quando estiver online:

root # cd /mnt/funtoo
root # links https://build.funtoo.org

Ficar Online

Se você estiver usando uma conexão com fio, simplesmente conecte o cabo e execute dhcpcd <iface_name> para obter um endereço IP. Você deve estar pronto para seguir.

Usar o WiFi é um pouco mais complicado e é abordado a seguir.

Nota de Tradução: Preferencialmente, se possível utilize a conexão a cabo para instalação, além de mais fácil a configuração é normal também que seja mais rápido, pois há muitas coisas para serem descarregadas.

Depois de inicializar o LiveCD, você poderá usar o WiFI da seguinte maneira. Primeiro, digite ifconfig -a e certifique-se de que sua interface sem fio esteja visível. O nome de sua placa de rede sem fio deve começar com um "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
   Note

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.