NOTA: questo articolo è stato pubblicato 5 anni 3 mesi 14 giorni fà, quindi alcuni contenuti o informazioni presenti in esso potrebbero non essere aggiornate. La versione 6.10 è ora ufficialmente stabile.
Puoi leggere le note di rilascio qui per scoprire le caratteristiche della nuova release di Ubuntu.
Per ottenere il cd (o dvd) d’installazione, visita la sezione “Ottenere Ubuntu“.
Per aggiornare da una versione precedente ad edgy segui il procedimento indicato in questa pagina.
Vuoi ricevere i nuovi articoli comodamente nella tua casella e-mail?
————————————————







Con Dot TK puoi rinominare qualunque indirizzo web in un nome a dominio gratuito corto e facile da ricordare.
Il portale di aste online made in Italy.
Suguimi su Twitter 


Breve guida per impostare l’account root, il server SSH e lavorare con windows sulla Linux Ubuntu.
Comandi eseguiti da Terminale (Applicazioni->Strumenti di Sistema->Terminale)
1- Abilitare l’ account root
Digitare:
sudo passwd root
alla richiesta della password inserire quella scelta in fase di installazione assegnata all’ utente.
Alla successiva richiesta:
Enter new UNIX password:
digitare la nuova password di root.
Digitare:
su
questo comando serve per entrare in modalità root, digitare la password di root appena scelta.
Notare come il prompt cambia da user@dominio$ a root@dominio#
2- Configurare la rete
Poiche l’ installer Ubuntu configura l’ interfaccia di rete eth0 tramite DHCP, per assegnare un indirizzo statico dobbiamo editare /etc/network/interfaces, nell’ esempio all computer viene assegnato ip 192.168.0.100:
edit /etc/network/interfaces
1. The loopback network interface
auto lo
iface lo inet loopback
1. This is a list of hotpluggable network interfaces.
2. They will be activated automatically by the hotplug subsystem.
mapping hotplug
script grep
map eth0
1. The primary network interface
auto eth0
iface eth0 inet static
address 192.168.0.100
netmask 255.255.255.0
network 192.168.0.0
broadcast 192.168.0.255
gateway 192.168.0.1
Dopo le necessarie modifiche, salvare il file e riavviare il demone di rete in questo modo:
/etc/init.d/networking restart
3- Aggiornare il sistema Ubuntu
Di default alcuni repository sono commentati, quindi per installare nuovo software e aggiornare il sistema editiamo /etc/apt/sources.list :
edit /etc/apt/sources.listdecommentiamo come riportato:
#
# deb cdrom:[Ubuntu-Server 6.10 _Edgy Eft_ - Release i386 (20061025.1)]/ edgy main restricted
#deb cdrom:[Ubuntu-Server 6.10 _Edgy Eft_ - Release i386 (20061025.1)]/ edgy main restricted
deb http://de.archive.ubuntu.com/ubuntu/ edgy main restricted
deb-src http://de.archive.ubuntu.com/ubuntu/ edgy main restricted
## Major bug fix updates produced after the final release of the
## distribution.
deb http://de.archive.ubuntu.com/ubuntu/ edgy-updates main restricted
deb-src http://de.archive.ubuntu.com/ubuntu/ edgy-updates main restricted
## Uncomment the following two lines to add software from the 'universe'
## repository.
## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team, and may not be under a free licence. Please satisfy yourself as to
## your rights to use the software. Also, please note that software in
## universe WILL NOT receive any review or updates from the Ubuntu security
## team.
deb http://de.archive.ubuntu.com/ubuntu/ edgy universe
deb-src http://de.archive.ubuntu.com/ubuntu/ edgy universe
## Uncomment the following two lines to add software from the 'backports'
## repository.
## N.B. software from this repository may not have been tested as
## extensively as that contained in the main release, although it includes
## newer versions of some applications which may provide useful features.
## Also, please note that software in backports WILL NOT receive any review
## or updates from the Ubuntu security team.
# deb http://de.archive.ubuntu.com/ubuntu/ edgy-backports main restricted universe multiverse
# deb-src http://de.archive.ubuntu.com/ubuntu/ edgy-backports main restricted universe multiverse
deb http://security.ubuntu.com/ubuntu edgy-security main restricted
deb-src http://security.ubuntu.com/ubuntu edgy-security main restricted
deb http://security.ubuntu.com/ubuntu edgy-security universe
deb-src http://security.ubuntu.com/ubuntu edgy-security universe
Salva il file ed esci.
Digitare:
apt-get updateSuccessivamente digitare:
apt-get upgrade4- Installare il demone SSH
Poiche Ubuntu di default non installa Open SSH, digitare:
apt-get install ssh openssh-serverCon SSH è possibile controllare in remoto il nostro sistema Ubuntu.
Per controllare da Windows la potentissima shell linux potete utilizzare Putty, programma emulatore di terminale o WinSPC.