Archive for September, 2008

Ubuntu Media Server: DHCP To Static IP

In my last post, I wrote about a mini PC I bought. After the PC arrived, I installed Ubuntu Server 8.04 LTS but I can’t get the LAN to work. After few hours trying to fix it, I simply gave up. Then, I downloaded daily build of Ubuntu Server from http://cdimages.ubuntu.com, burn the image to CD and installed it. LAN worked like a charm this time. During the installation, don’t forget to tick OpenSSH Server when prompted. We’ll need this to administer the server from outside LAN network. OK, next is to give it a fixed IP. This is how I (and everybody else) did it. Type the command below

sudo nano /etc/network/interfaces

It will open a file and it will show something like this

1
2
3
4
5
6
7
8
# 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

Replace the last line to

8
iface eth0 inet static

and include these underneath it

9
10
11
12
13
        address 192.168.1.5
        netmask 255.255.255.0
        network 192.168.1.0
        broadcast 192.168.1.255
        gateway 192.168.1.1

Save and quit nano and then restart networking.

/etc/init.d/networking restart

Lastly, verify the IP by using

ifconfig

In the next post, I’ll show how to set up an FTP server.

 If you like this post, please buy me a coffee.

Intel Atom 230 Super Mini ITX PC

I’ve been planning to get a PC intended for home server usage. Usually I would built a PC myself but considering that I don’t have the time and Intel Atom processor is not available to consumer market yet, the only way is buy one. So I was browsing Lowyat.net forum, I found out that one of the forum member, Mika offered an Intel Atom 230 Super Mini ITX PC package for only MYR 750 and it doesn’t took long for me to place an order. What’s really interest me about this processor is that it consume small amount of power. You can read the processor review here.

The specs:

  • CPU: Intel Atom 230 1.6GHz
  • Mainboard: Intel D945GCLF
  • RAM: 1.0GB DDR2-667
  • HDD: Western Digital 320GB 7200RPM 16MB SATA
  • DVD: LG 20X SATA DVD±RW/RAM Multi-Format Dual Layer
  • Casing: MI-100 ITX Super Mini Casing with Front Panel USB, Audio & 300W 24-Pin SATA PSU
Intel Atom 230 Super Mini ITX PC

Intel Atom 230 Super Mini ITX PC

 

While the specs are just average, it is good enough to work as a home server. I can’t show the pictures as the PC is not here yet. It might take at least two days to arrived at my home. Here’s a review from one of the buyer, in case you’re wondering how it performs.

 If you like this post, please buy me a coffee.