The Funtoo Linux project has transitioned to "Hobby Mode" and this wiki is now read-only.
Difference between revisions of "Install/Chroot/pl"
(Created page with "<includeonly> == 'Chroot' do nowego systemu == </includeonly><noinclude><languages/> = Przewodnik Instalacji: 'Chroot' do nowego systemu =") |
(Updating to match new version of source page) |
||
(15 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
<includeonly> | <includeonly> | ||
== ' | == 'chroot' do nowego systemu == | ||
</includeonly><noinclude><languages/> | </includeonly><noinclude><languages/> | ||
= Przewodnik Instalacji: ' | = Przewodnik Instalacji: 'chroot' do nowego systemu = | ||
<div lang="en" dir="ltr" class="mw-content-ltr"> | |||
{{InstallNavigation|num=9|prev=Download and Extract Stage3|next=Download Portage Tree}}</noinclude> | {{InstallNavigation|num=9|prev=Download and Extract Stage3|next=Download Portage Tree}}</noinclude> | ||
</div> | |||
<div class="mw-translate-fuzzy"> | |||
Żeby zainstalować Funtoo, najpierw używamy {{c|chroot}}. Polecenie "przełącza" na nowy system Funtoo Linux. Wpisywane odtąd komendy będą uruchomiać się na nowo rozpakowanym systemie. | |||
</div> | |||
<div lang="en" dir="ltr" class="mw-content-ltr"> | |||
{{console|body= | |||
# ##i##fchroot /mnt/funtoo | |||
%fchroot% | |||
}} | |||
</div> | |||
<div lang="en" dir="ltr" class="mw-content-ltr"> | |||
The {{c|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 | |||
{{c|exit}} or {{c|ctrl-D}}. | |||
</div> | |||
<div lang="en" dir="ltr" class="mw-content-ltr"> | |||
If you are using another LiveCD or USB media to install Funtoo, you can manually chroot by using the following set of commands: | |||
</div> | |||
<div class="mw-translate-fuzzy"> | |||
Przed 'chroot'owaniem, należy wykonać kilka czynności aby skonfigurować środowisko 'chroot'. Trzeba będzie zamontować {{f|/proc}}, {{f|/sys}} oraz {{f|/dev}} wewnątrz nowego systemu. Aby to zrobić, użyj następujących poleceń: | |||
{{console|body= | {{console|body= | ||
# ##i##cd /mnt/funtoo | # ##i##cd /mnt/funtoo | ||
Line 15: | Line 36: | ||
# ##i##mount --rbind /dev dev | # ##i##mount --rbind /dev dev | ||
}} | }} | ||
</div> | |||
<div lang="en" dir="ltr" class="mw-content-ltr"> | |||
{{Note|For users of live CDs with 64-bit kernels installing 32-bit systems: Some software may use {{c|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.}} | {{Note|For users of live CDs with 64-bit kernels installing 32-bit systems: Some software may use {{c|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 "{{c|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 | {{Important|If you receive the error "{{c|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.}} | ||
</div> | |||
<div lang="en" dir="ltr" class="mw-content-ltr"> | |||
Test internet name resolution from within the chroot: | Test internet name resolution from within the chroot: | ||
{{console|body=%chroot% ##i##ping -c 5 google.com}} | {{console|body=%chroot% ##i##ping -c 5 google.com}} | ||
</div> | |||
<div lang="en" dir="ltr" class="mw-content-ltr"> | |||
If you can't ping, make sure that {{f|/etc/resolv.conf}} specifies a valid IP address for a reachable nameserver in its {{c|nameserver}} setting. | If you can't ping, make sure that {{f|/etc/resolv.conf}} specifies a valid IP address for a reachable nameserver in its {{c|nameserver}} setting. | ||
</div> | |||
<div lang="en" dir="ltr" class="mw-content-ltr"> | |||
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. | 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. | ||
</div> | |||
<noinclude>{{InstallNavigation|num=9|prev=Download and Extract Stage3|next=Download Portage Tree|align=right}}</noinclude> | <noinclude>{{InstallNavigation|num=9|prev=Download and Extract Stage3|next=Download Portage Tree|align=right}}</noinclude> |
Latest revision as of 00:59, May 26, 2023
Przewodnik Instalacji: 'chroot' do nowego systemu
Żeby zainstalować Funtoo, najpierw używamy chroot
. Polecenie "przełącza" na nowy system Funtoo Linux. Wpisywane odtąd komendy będą uruchomiać się na nowo rozpakowanym systemie.
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:
Przed 'chroot'owaniem, należy wykonać kilka czynności aby skonfigurować środowisko 'chroot'. Trzeba będzie zamontować /proc
, /sys
oraz /dev
wewnątrz nowego systemu. Aby to zrobić, użyj następujących poleceń:
root # cd /mnt/funtoo root # mount -t proc none proc root # mount --rbind /sys sys root # mount --rbind /dev dev
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.
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 > |