Difference between revisions of "Install/Download LiveCD/pl"

From Funtoo
Jump to navigation Jump to search
(Created page with "Jeśli chcesz skonfigurować połączenie Wi-Fi w celu uzyskania dostępu do Internetu, możesz to zrobić za pomocą narzędzia {{c|nmtui}}, wpisując w wierszu poleceń:")
Line 28: Line 28:
64 bytes from den03s10-in-f4.1e100.net (216.58.217.36): icmp_seq=1 ttl=57 time=30.1 ms}}
64 bytes from den03s10-in-f4.1e100.net (216.58.217.36): icmp_seq=1 ttl=57 time=30.1 ms}}


Jeżeli polecenie ping zakończy się powodzeniem (zobaczysz <code>64 bytes</code> jak powyżej,) to oznacza, że Twoja sieć jest poprawnie skonfigurowana. Naciśnij Control-C aby zatrzymać program ping.  
Jeżeli polecenie ping zakończy się powodzeniem (zobaczysz <code>64 bytes</code> jak powyżej) to oznacza, że Twoja sieć jest poprawnie skonfigurowana. Naciśnij Control-C aby zatrzymać program ping.  


Jeśli chcesz skonfigurować połączenie Wi-Fi w celu uzyskania dostępu do Internetu, możesz to zrobić za pomocą narzędzia {{c|nmtui}}, wpisując w wierszu poleceń:
Jeśli chcesz skonfigurować połączenie Wi-Fi w celu uzyskania dostępu do Internetu, możesz to zrobić za pomocą narzędzia {{c|nmtui}}, wpisując w wierszu poleceń:

Revision as of 16:12, May 6, 2020

Other languages:
English • ‎español • ‎français • ‎italiano • ‎polski • ‎português do Brasil • ‎русский • ‎中文(中国大陆)‎ • ‎中文(台灣)‎

Przewodnik Instalacji: Pobieranie LiveCD

Install Guide, Chapter 1 < Prev Next >

Aby zainstalować Funtoo Linux, najpierw musisz uruchomić komputer przy użyciu 'Live CD' lub pamięci USB z systemem Linux. Zalecamy użycie dystrybucji opartej na Funtoo Funtoo:New Install Experience/LiveCD ponieważ zawiera nowoczesne jądro, a także pełne środowisko graficzne. Można ją nagrać na CD / DVD lub zainstalować na pamięci USB. Obraz pobierzesz tutaj:

Aby skopiować obraz na pamięć USB użyj następującego polecenia:

root # dd if=funtoo-livecd-area31-5.1-beta.iso of=/dev/sdx bs=4k status=progress

Musisz wstawić zamiast 'x' /dev/sdx literę wskazującą na podłączoną pamięć USB (pendrive).

Dostęp do Sieci

Po uruchomieniu komputera z LiveCD/DVD/USB (Area31 Funtoo) sprawdź, czy masz dostęp do Internetu. Jest on wymagany do instalacji Funtoo Linux:

root # ping www.google.com
PING www.google.com (216.58.217.36) 56(84) bytes of data.
64 bytes from den03s10-in-f4.1e100.net (216.58.217.36): icmp_seq=1 ttl=57 time=30.1 ms

Jeżeli polecenie ping zakończy się powodzeniem (zobaczysz 64 bytes jak powyżej) to oznacza, że Twoja sieć jest poprawnie skonfigurowana. Naciśnij Control-C aby zatrzymać program ping.

Jeśli chcesz skonfigurować połączenie Wi-Fi w celu uzyskania dostępu do Internetu, możesz to zrobić za pomocą narzędzia nmtui, wpisując w wierszu poleceń:

root # nmtui

Remote Install

Alternatively, you can log into Area31 Funtoo LiveCD over the network via SSH to perform the install from another computer, and this may be more convenient way to install Funtoo Linux.

If you'd like to complete the install remotely, here's how. First, you will need to ensure that the Area31 LiveCD has a functioning network connection. Then, you will need to set a root password for the Area31 Funtoo LiveCD:

root # passwd
New password: ********
Retype new password: ********
passwd: password updated successfully

Once you have typed in a password, you will now need to determine the IP address of the LiveCD, and then you can use ssh to connect to it. To determine the IP address currently being used by the LiveCD, type ifconfig:

root # ifconfig

Alternatively, determining of an IP address is possible with iproute2 ip tool:

root # ip addr show

One of the interfaces should have an IP address (listed as inet addr:) from your LAN. You can then connect remotely, from another system on your LAN, to System Rescue CD, and perform steps from the comfort of an existing OS. On your remote system, type the following, replacing 1.2.3.4 with the IP address of the LiveCD. Connecting from an existing Linux or MacOS system would look something like this:

remote system $ ssh root@1.2.3.4
Password: **********
   Note

If you'd like to connect remotely from an existing Microsoft Windows system, you'll need to download an SSH client for Windows, such as OpenSSH.

After you've logged in via SSH, you're now connected remotely to the LiveCD and can perform the installation steps.

Install Guide, Chapter 1 < Prev Next >