Posts

Showing posts from August, 2008

Howto Set Ubuntu Server IP

Image
Configuring Ubuntu Server IP have never been any easier. Just edit the /etc/network/interfaces file using any text editor on the server. By default, you should have nano and vi in your Ubuntu Server. The simplest and straight forward text editor is nano. So, use this command: $ sudo nano /etc/network/interfaces you should see the default file content like this: # This file describes the network interfaces available on your system # and how to activate them. For more information, see interfaces(5). # The loopback network interface auto lo iface lo inet loopback # The primary network interface auto eth0 iface eth0 inet dhcp This is the default network settings on your Ubuntu Server where it use DHCP. So, to set it as static IP. Let say, we wanna setting like this: => Host IP address: 10.1.1.100 => Netmask: 255.255.255.0 => Network ID: 10.1.1.0 => Broadcast IP: 10.1.1.255 => Gateway/Router IP: 10.1.1.254 => DNS Server: 10.1.1.254 You should change the file like th

Having Fun Programming in Linux with Geany

Image
Sorry for not having any post last month. It's just because I'm getting busy with my workloads and some stuff to do with Ubuntu Malaysia Community . Now I'm back, and I would like to share with you this cool IDE for programming in Linux called Geany. Geany is a light-weight cross-platform GTK+ text editor based on Scintilla with basic Integrated Development Environment (IDE) features. It is designed to have limited dependency on separate packages and short load times. It is available for a wide range of operating systems, such as Windows, Linux, BSD and Solaris. Among the supported programming languages are (according to the documentation) C, Java, JavaScript, PHP, HTML, CSS, Python, Perl and Pascal. Geany is one of the more fully-featured editors on the Linux platform, as most Linux editors adopt a more minimalist philosophy. It is similar to Windows editors such as NoteTab or ConTEXT. It is Free Software licensed under the terms of the GNU GPL. ~ Cited From Wikipedia ~ P