The Funtoo Linux project has transitioned to "Hobby Mode" and this wiki is now read-only.
Difference between revisions of "Gentoo Minimal Installation CD/ru"
(Created page with "== Загрузка образа Funtoo Stage ==") |
(Created page with "Используйте следующие команды для запуска текстового браузера {{c|links}}, когда вы будете онлайн:") |
||
Line 17: | Line 17: | ||
== Загрузка образа Funtoo Stage == | == Загрузка образа Funtoo Stage == | ||
Используйте следующие команды для запуска текстового браузера {{c|links}}, когда вы будете онлайн: | |||
{{console|body= | {{console|body= |
Revision as of 17:12, February 23, 2021
Минимальный установочный компакт-диск Gentoo - это загрузочный образ для компакт-диска или USB-флешки, который можно использовать для установки Funtoo Linux. Образ доступен для скачивания по адресу https://www.gentoo.org/downloads/
Преимущества и недостатки
Преимущества минимального установочного диска Gentoo:
- Маленький, так что его можно быстро скачать
- Использует GRUB 2.04 для загрузки в UEFI-режиме (и isolinux для загрузки в BIOS-режиме), так что современные системы с UEFI поддерживаются.
- Основан на Gentoo -- это всегда неплохо :)
- Использует современное ядро, так что будет поддерживать последнее железо.
Есть немного недостатков у этого образа:
- Раз он маленький, не так много туда вместилось полезного.
- Вам оставили
wpa-supplicant
для настройки WiFi (Это не проблема, если вы знаете как пройти нужные шаги, но это потруднее, чем использовать NetworkManager)
Загрузка образа Funtoo Stage
Используйте следующие команды для запуска текстового браузера links
, когда вы будете онлайн:
root # cd /mnt/funtoo root # links https://build.funtoo.org
Getting Online
If you are using a wired connection, simply plug in and run dhcpcd <iface_name>
to grab an IP address. You should then be ready to go.
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.