Note
The Funtoo Linux project has transitioned to "Hobby Mode" and this wiki is now read-only.
Difference between revisions of "Install/Mounting Filesystems/ru"
< Install
Jump to navigation
Jump to search
(Updating to match new version of source page) |
Sersnipers88 (talk | contribs) |
||
Line 8: | Line 8: | ||
Подключите свежесозданные фаловые системы следующим образом, создав {{c|/mnt/funtoo}} в качестве точки монтирования для установки: | Подключите свежесозданные фаловые системы следующим образом, создав {{c|/mnt/funtoo}} в качестве точки монтирования для установки: | ||
{{console|body= | {{console|body= | ||
###i## mkdir /mnt/funtoo | ###i## mkdir /mnt/funtoo | ||
Line 15: | Line 14: | ||
###i## mount /dev/sda1 /mnt/funtoo/boot | ###i## mount /dev/sda1 /mnt/funtoo/boot | ||
}} | }} | ||
If you have any additional filesystems you created earlier (such as {{c|/home}} or {{c|/var}}, you should mount them now, so that when the stage3 is extracted (which we will do in a later step) these filesystems will get populated with the necessary files. This can be done as follows: | If you have any additional filesystems you created earlier (such as {{c|/home}} or {{c|/var}}, you should mount them now, so that when the stage3 is extracted (which we will do in a later step) these filesystems will get populated with the necessary files. This can be done as follows: |
Revision as of 21:38, May 1, 2020
Руководство по установке: Подключение Файловых систем
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
If you have any additional filesystems you created earlier (such as /home
or /var
, you should mount them now, so that when the stage3 is extracted (which we will do in a later step) these filesystems will get populated with the necessary files. This can be done as follows:
root # mkdir /mnt/funtoo/home root # mount /dev/sda4 /mnt/funtoo/home
Если у вас есть /tmp
или /var/tmp
в отдельной файловой системе, обязательно измените разрешения точки монтирования на глобальную запись после монтажа, как показано ниже:
root # chmod 1777 /mnt/funtoo/tmp
Install Guide, Chapter 6 | < Prev | Next > |