Install/Download LiveCD/it

From Funtoo
< Install
Revision as of 06:27, June 8, 2020 by Pelisset (talk | contribs) (Created page with "In alternativa, è possibile accedere al System Rescue CD dalla rete via SSH per eseguire l'installazione da un altro computer, questo può essere un modo più conveniente pe...")
Jump to navigation Jump to search
Other languages:
English • ‎español • ‎français • ‎italiano • ‎polski • ‎português do Brasil • ‎русский • ‎中文(中国大陆)‎ • ‎中文(台灣)‎

Guida di installazione: Scarica il LiveCD

Install Guide, Chapter 1 < Prev Next >

Per installare Funtoo Linux, devi avviare il computer utilizzando un Live CD o una chiavetta USB basate su una qualche distribuxione Linux. Raccomandiamo un Funtoo:New Install Experience/LiveCD basato su Funtoo poichè contiene un kernel aggiornato e un complete ambiente grafico. Può essere masterizzato su un DVD o un CD oppure messo su una chiavetta USB. Clicca quì per scaricare

Per copiarlo su una chiavetta chiavetta usb, utilizzare il seguente comando:

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

Certamente avrai bisogno di cambiare /dev/sdx con il nome della tua chiavetta USB sul tuo sistema

Accesso alla rete

Dopo aver avviato il System Rescue CD, controllare se si dispone di accesso a Internet. L'accesso a Internet è necessario per installare 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

Se il ping ha esito positivo (vedi i messaggi 64 byte come sopra), allora la tua rete è configurata. Premi Control-C per fermare il ping.

Se hai bisogno di configurare la connessione ad Internet, allora questo può essere fatto utilizzando il programma nmtui:

root # nmtui

Installazione da remoto

In alternativa, è possibile accedere al System Rescue CD dalla rete via SSH per eseguire l'installazione da un altro computer, questo può essere un modo più conveniente per installare 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 >