No Juju for you! Ubuntu’s Not Invented Here syndrome | TurnKey GNU/Linux Blog.
This is a really interesting article.
No Juju for you! Ubuntu’s Not Invented Here syndrome | TurnKey GNU/Linux Blog.
This is a really interesting article.
If your Ubuntu 11.10 server, has a DHCP assigned IP address and you want to allocate a static IP address you will need to do the following:
edit the file /etc/network/interfaces
sudo vi /etc/network/interfaces
You will notice the following lines:
auto eth0
iface eth0 inet dhcp
This needs to be changed to:
auto eth0
iface eth0 inet static
address xxx.xxx.xxx.xxx
netmask yyy.yyy.yyy.yyy
network zzz.zzz.zzz.zzz
broadcast aaa.aaa.aaa.aaa
gateway bbb.bbb.bbb.bbb
Where:
After the change has been made you will need to restart the network service, this is best done on the console, if the following is completed over a remote session (ssh for example) your session will terminate and if a mistake has been introduced you may not be able to get access again.
sudo service network restart
By Jay Fearn Google
You must be logged in to post a comment.