Difference between revisions of "Translations:Install/Chroot/8/tr"

From Funtoo
Jump to navigation Jump to search
(Created page with "chroot işleminden önce chroot ortamını ayarlamak için yapılması gereken birkaç şey var. Yeni sisteminizin içine {{f|/proc}}, {{f|/sys}} ve {{f|/dev}}'i bağlamanız...")
 
(No difference)

Latest revision as of 00:57, September 15, 2019

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% }}

chroot işleminden önce chroot ortamını ayarlamak için yapılması gereken birkaç şey var. Yeni sisteminizin içine /proc, /sys ve /dev'i bağlamanız gerekecek. Bunu yapmak için aşağıdaki komutları kullanın:

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