Difference between revisions of "Translations:Install/Chroot/8/pt-br"

From Funtoo
Jump to navigation Jump to search
(Created page with "Antes do {{c|chroot}}, existem algumas coisas que precisam ser feitas para ajustar o ambiente chroot. Você precisa montar os sistemas virtuais {{f |/proc}}, {{f|/sys}} e {{f|...")
(No difference)

Revision as of 12:32, September 24, 2018

Information about message (contribute)
This message has no documentation. If you know where or how this message is used, you can help other translators by adding documentation to this message.
Message definition (Install/Chroot)
{{console|body=
# ##i##cd /mnt/funtoo
# ##i##mount --rbind /proc proc
# ##i##mount --rbind /sys sys
# ##i##mount --rbind /dev dev
# ##i##cp /etc/resolv.conf /mnt/funtoo/etc/
# ##i##chroot . /bin/su --login
%chroot% }}

Antes do chroot, existem algumas coisas que precisam ser feitas para ajustar o ambiente chroot. Você precisa montar os sistemas virtuais /proc, /sys e /dev dentro do seu novo ambiente. Use os seguintes comandos para fazer isso:

root # cd /mnt/funtoo
root # mount -t proc none proc
root # mount --rbind /sys sys
root # mount --rbind /dev dev