Ubuntu – changing DHCP to Static

Before jumping in and making the changes, do ifconfig -a and note down any particular settings which you may need (if you don’t already know them) Then edit /etc/network/interfaces change: iface eth0 inet dhcp to: iface eth0 inet static address 10.0.0.101 netmask 255.255.255.0 network 10.0.0.0 broadcast 10.0.0.255 gateway 10.0.0.100 May also need to add nameservers …

Synergy in OpenSolaris and Ubuntu

I have been tinkering with linux distros for a while now, my favourite (generally) would have to be Ubuntu. It is one of the few that installs quickly and simply on most of my systems here. A package I also use is Synergy. This is one of the best pieces of software ever developed for …

Adding Ubuntu Repositories

In a nutshell edit the file /etc/apt/sources.list You can edit it from the command line ( http://help.ubuntu.com/community/Repositories/CommandLine ) or use the GUI from the Ubuntu desktop: System –> Administration –> Software Properties and add to the repositories by adding a channel (the add button). You can also add new repositories there as well. For a …

SSH Server in Ubuntu

To securely administer your Ubuntu Server remotely, you need to install SSH server. SSH provides you with a secure connection to your server and allows you to run commands all as if you were logged in at the terminal itself. To install SSH server in Ubuntu $ sudo apt-get install openssh-server All going well, your …