Install/Mounting Filesystems/ru

From Funtoo
< Install
Revision as of 08:03, September 27, 2018 by Hwline (talk | contribs) (Created page with "Подключите свежесозданные фаловые системы следующим образом, создав {{c|/mnt/funtoo}} в качестве точк...")
Jump to navigation Jump to search
Other languages:
English • ‎español • ‎polski • ‎português do Brasil • ‎русский • ‎中文(中国大陆)‎

Руководство по установке: Подключение Файловых систем

Install Guide, Chapter 6 < Prev Next >

Подключите свежесозданные фаловые системы следующим образом, создав /mnt/funtoo в качестве точки монтирования для установки:

root # mkdir /mnt/funtoo
root # mount /dev/sda3 /mnt/funtoo
root # mkdir /mnt/funtoo/boot
root # mount /dev/sda1 /mnt/funtoo/boot

Optionally, if you have a separate filesystem for /home or anything else, you can choose to create these filesystems now. Note that if you are wanting to use ZFS or BTRFS to create general storage for files that do not hold operating system files, then this is best to do later after Funtoo Linux is installed.

root # mkdir /mnt/funtoo/home
root # mount /dev/sda4 /mnt/funtoo/home

If you have /tmp or /var/tmp on a separate filesystem, be sure to change the permissions of the mount point to be globally-writeable after mounting, as follows:

root # chmod 1777 /mnt/funtoo/tmp