Install/Finishing/ru

From Funtoo
< Install
Revision as of 17:51, November 5, 2019 by FuzzyBot (talk | contribs) (Updating to match new version of source page)
Jump to navigation Jump to search
Other languages:
English • ‎español • ‎português do Brasil • ‎русский • ‎中文(中国大陆)‎

Руководство по установке: Заключительные шаги

Install Guide, Chapter 16 < Prev Next >

Установите пароль для пользоователя root

Крайне важно, чтобы вы установили свой пароль root-а перед перезагрузкой, чтобы после нее вы смогли войти в систему.

(chroot) # passwd

Create a Regular User

It's also a good idea to create a regular user for daily use. If you're using GNOME, this is a requirement as you cannot log in to GDM (The GNOME Display Manager) as root. This can be accomplished as follows:

chroot # useradd -m drobbins

You will also likely want to add your primary user to one or more supplemental groups. Here is a list of important groups and their effect:

GroupDescription
wheelAllows your user account to 'su' to root. Recommended on your primary user account for easy maintenance. Also used with sudo.
audioAllows your user account to directly access audio devices. Required if using ALSA; otherwise optional.
plugdevAllows your user account work with various removable devices. Allows adding of a WiFi network in GNOME without providing root password. Recommended for desktop users.
portageAllows extended use of Portage as regular user. Recommended.

To add your user to multiple groups, use the usermod command, specifying a complete group list:

chroot # usermod -g wheel,audio,plugdev,portage drobbins

As with your root account, don't forget to set a password:

chroot # passwd drobbins
New password: **********
Retype new password: **********
passwd: password updated successfully

Перезагрузка системы

Теперь пришло время выйти из chroot, отмонировать разделы и файлы Funtoo Linux и перезагрузить компьютер. Кагды Вы перезагрузитесь, запустится загрузчик GRUB, который загрузит ядро Linux и initramfs, после чего начнется загрузка вашей системы.

Выйдите из chroot-окружения, перейдите в каталог /mnt, отмонтируйте ваши разделы Funtoo и перезагрузите систему.
 (chroot) # exit # ##i##cd /mnt # ##i##umount -lR funtoo # ##i##reboot 
   Note

System Rescue CD любезно отмонтирует все новые файловые системы Funtoo в процессе завершения своей работы.

Теперь Вы должны увидеть как система перезагружается, на пару секунд на экране появится экран загрузчика GRUB, после чего Вы увидете загрузку ядра Linux и initramfs. После этого Вы должны увидеть загрузку собственно Funtoo Linux и в конце Вас поприветствует login: - приглашение войти в систему. Ваша Funtoo Linux система установилась успешно!

Install Guide, Chapter 16 < Prev Next >