Note
The Funtoo Linux project has transitioned to "Hobby Mode" and this wiki is now read-only.
Difference between revisions of "Install/Mounting Filesystems/pt-br"
< Install
Jump to navigation
Jump to search
(Updating to match new version of source page) |
|||
Line 8: | Line 8: | ||
Monte os sistemas de arquivos recém criados como a seguir, crie o diretório {{c|/mnt/funtoo}} como um ponto de montagem para a instalação: | Monte os sistemas de arquivos recém criados como a seguir, crie o diretório {{c|/mnt/funtoo}} como um ponto de montagem para a instalação: | ||
{{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:51, November 12, 2019
Guia de Instalação: Montando Sistemas de Arquivos
Install Guide, Chapter 6 | < Prev | Next > |
Monte os sistemas de arquivos recém criados como a seguir, crie o diretório /mnt/funtoo
como um ponto de montagem para a instalação:
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
Se você tiver os diretórios /tmp
ou /var/tmp
em uma partição separada, certifique-se de alterar as permissões do ponto de montagem para serem globalmente graváveis após a montagem, da seguinte forma:
root # chmod 1777 /mnt/funtoo/tmp
Install Guide, Chapter 6 | < Prev | Next > |