The Funtoo Linux project has transitioned to "Hobby Mode" and this wiki is now read-only.
Install/Finishing/ru
Руководство по установке: Заключительные шаги
Install Guide, Chapter 16 | < Prev | Next > |
Установите пароль для пользоователя root
Крайне важно, установить свой пароль администратора root
перед перезагрузкой, чтобы после неё вы смогли войти в систему.
chroot # passwd
Создание обычного пользователя
Будет полезно создать обычного пользователя без прав администраторв для ежедневного использования. Если вы используете GNOME, это сделать обязательно, потому что вы просто не сможете пройти через экран логина GDM под учетной записью администратора root
. Как это сделать:
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:
Group | Description |
---|---|
wheel | Allows your user account to 'su ' to root. Recommended on your primary user account for easy maintenance. Also used with sudo . |
audio | Allows your user account to directly access audio devices. Required if using ALSA; otherwise optional. |
plugdev | Allows your user account work with various removable devices. Allows adding of a WiFi network in GNOME without providing root password. Recommended for desktop users. |
portage | Allows 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
Install an Entropy Generator
The Linux kernel uses various sources such as user input to generate entropy, which is in turn used for generating random numbers. Encrypted communications can use a lot of entropy, and often the amount of entropy generated by your system will not be sufficient. This is commonly an issue on headless server systems, which can also include ARM systems such as Raspberry Pi, and can result in slower than normal ssh connections among other issues.
To compensate for this, a user-space entropy generator can be emerged and enabled at boot time. We will use haveged
in this example, although others are available, such as rng-tools
.
chroot # emerge haveged chroot # rc-update add haveged default
Haveged will now start at boot and will augment the Linux kernel's entropy pool.
Перезагрузка системы
Теперь пришло время выйти из chroot, отмонировать разделы и файлы Funtoo Linux и перезагрузить компьютер. Кагды Вы перезагрузитесь, запустится загрузчик GRUB, который загрузит ядро Linux и initramfs, после чего начнется загрузка вашей системы.
(chroot) # exit # ##i##cd /mnt # ##i##umount -lR funtoo # ##i##reboot
System Rescue CD любезно отмонтирует все новые файловые системы Funtoo в процессе завершения своей работы.
Теперь Вы должны увидеть как система перезагружается, на пару секунд на экране появится экран загрузчика GRUB, после чего Вы увидете загрузку ядра Linux и initramfs. После этого Вы должны увидеть загрузку собственно Funtoo Linux и в конце Вас поприветствует login:
- приглашение войти в систему. Ваша Funtoo Linux система установилась успешно!
Install Guide, Chapter 16 | < Prev | Next > |