Install/Chroot/tr

From Funtoo
Jump to navigation Jump to search
This page is a translated version of the page Install/Chroot and the translation is 18% complete.
Outdated translations are marked like this.
Other languages:
English • ‎Türkçe • ‎español • ‎polski • ‎português do Brasil • ‎русский • ‎中文(中国大陆)‎

Kurulum Kılavuzu: Funtoo'da Chroot

Install Guide, Chapter 9 < Prev Next >

Funtoo GNU/Linux'u kurmak için, önce chroot komutu kullanılır. Chroot komutu yeni Funtoo GNU/Linux sistemine "geçecektir", böylece "chroot"u çalıştırdıktan sonra yürüttüğünüz komutlar yeni çıkarılan Funtoo GNU/Linux sisteminizde çalışacaktır.

root # fchroot /mnt/funtoo
fchroot #

The fchroot command will take care of all necessary steps to enter into your new Funtoo Linux system, as well as clean up things when you exit the fchroot by typing exit or ctrl-D.

If you are using another LiveCD or USB media to install Funtoo, you can manually chroot by using the following set of commands:

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
   Note

For users of live CDs with 64-bit kernels installing 32-bit systems: Some software may use uname -r to check whether the system is 32 or 64-bit. You may want to append linux32 to the chroot command as a workaround, but it's generally not needed.

   Important

If you receive the error "chroot: failed to run command `/bin/bash': Exec format error", it is most likely because you are running a 32-bit kernel and trying to execute 64-bit code. Make sure that you have selected the proper type of kernel when booting your live CD.

Test internet name resolution from within the chroot:

chroot # ping -c 5 google.com

If you can't ping, make sure that /etc/resolv.conf specifies a valid IP address for a reachable nameserver in its nameserver setting.

Congratulations! You are now chrooted inside a Funtoo Linux system. Now it's time to get Funtoo Linux properly configured so that Funtoo Linux will start successfully, without any manual assistance, when your system is restarted.

Install Guide, Chapter 9 < Prev Next >