Install/Download LiveCD/ru

From Funtoo
< Install
Revision as of 06:33, September 12, 2018 by Hwline (talk | contribs) (Created page with "{{Important|'''NO VIDEO''': Мы загрузили загрузочный компакт-диск System Rescue, чтобы он правильно инициализиров...")
Jump to navigation Jump to search
Other languages:
English • ‎español • ‎français • ‎italiano • ‎polski • ‎português do Brasil • ‎русский • ‎中文(中国大陆)‎ • ‎中文(台灣)‎

Инструкция по установке: Скачиваем LiveCD

Install Guide, Chapter 1 < Prev Next >

Чтобы установить Funtoo Linux, вам сначала нужно будет загрузить ваш компьютер с помощью Linux-Live Live CD или USB-накопителя. Мы рекомендуем использовать Gentoo System Rescue CD, поскольку он содержит множество инструментов и утилит и поддерживает как 32-разрядные, так и 64-разрядные системы. Его можно записать на CD / DVD или установить на USB-накопитель. Загрузите его здесь:

   Important

NO VIDEO: Мы загрузили загрузочный компакт-диск System Rescue, чтобы он правильно инициализировал видео при загрузке из UEFI (см. FL-2030 FL-2030.) Если вы используете официальный, -Funtoo System Rescue CD, в меню GRUB вам может потребоваться нажать e, чтобы отредактировать запись в меню и добавить загрузочную строку GRUB, которая читает insmod all_video, а затем загрузится. Об этой ошибке сообщалось выше по сравнению с разработчиками компакт-дисков System Rescue.

   Note

If using an older version of System Rescue CD, be sure to select the rescue64 kernel at the boot menu if you are installing a 64-bit system. By default, System Rescue CD used to boot in 32-bit mode though the latest version attempts to automatically detect 64-bit processors.

Network Access

Once you have booted System Rescue CD, see if you have Internet access. Internet access is required for installing 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

If the ping is successful (you see 64 bytes messages as above,) then your Network is set up. Hit Control-C to stop the ping.

If you need to set up a WiFi connection for Internet access, then this can be accomplished using the nmtui command-line tool:

root # nmtui

Remote Install

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.

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.