Debian installation on Magnia SG20
What this server will be used for
The primary function is to implement an asterisk phone system. Beyond that I'd like to set up a web-based system for tracking volunteer hours. I have an idea that volunteers will be able to log in and out either via Web page or phone, and when they are logged in they can receive phone calls on the phone they logged in on. When they are logged out they can receive voice mail messages. A web page will show who is logged in and where.
- Phone system - Asterisk
- Intranet Web server - cherokee with php
- Database? - I will avoid needing one. A DBMS will generate too much uncontrolled disk i/o.
- File and print services - Samba
- System management - Webmin, openvpn, ddclient
Webmin will be used locally by staff to perform simple administrative operations. Openvpn will be set up so that I can get secure remote access to the server from my home. Using Openvpn means I will have to set up dynamic dns updates so I will install ddclient.
Initial installation
The first step is to build a VMware machine.
By using a VMware machine I greatly reduce the amount of work on the Magnia; I build up the image and test it, refine it, finally then I copy it to the compact flash and try booting the Magnia.
If the Magnia does not boot ("Working..." on LCD) then I configure it to PXEboot and boot it from my network server, and check the log files on the hard drive to see what went wrong.
I downloaded the 180 MB ISO image for Debian 5 from http://us.debian.org/ and I created a VMware machine with:
- "Other Linux with 2.6 kernel"
- 512 MB of RAM
- 1 GB IDE drive - this is the image that will be transferred to Compact Flash.
- 8 GB IDE drive - this image will be transferred to a hard drive
- 2 network interfaces
I booted from the ISO image and installed a basic Debian image. I accepted most defaults.
- Time zone - Pacific
- Partitioning - I created a single 1GB partition (no swap space)
- Filesystem changed from 'EXT3 journalled' to EXT2
- Use archive at osuosl.org
- "Standard" installation (I want to decide what packages to install later.)
The CF will be mounted read-only most of the time to increase its longevity. Therefore I don't want a swap space on the CF drive and I don't want journalling on the CF drive.
I am assuming there will be a CF adapter in IDE slot 0 and a 2.5" drive in IDE slot 1 The system will spin down the hard drive when it is not in use. I will do everything I can to minimize hits on this drive to prolong its lifespan.
Debian Packages
After the initial install, 504 MB of disk space were in use. The space usage as configure below is about 550 MB. With a little bit of work you could shave it down to fit on a 512MB flash card. I'd rather just spend $5 extra on the flash card and not have to skimp.
I added packages, cleaned things up, and rebooted.
apt-get install asterisk festival samba ntpdate apt-get install cherokee php5-cgi apt-get --purge remove bind9-host apt-get install openssh-server rsync apt-get install openvpn ddclient dnsmasq shorewall apt-get install hdparm smartmontools lm-sensors # (I can't live without emacs but you probably can.) apt-get install emacs22-nox apt-get autoremove apt-get clean reboot
On reboot I noticed NFS file sharing was enabled. I removed the packages. I don't like exim4 email so I removed that and replaced it with postfix.
apt-get --purge remove exim4 portmap nfs-common apt-get install postfix
I chose "no configuration" for postfix, I will set it up myself later.
Hard disk set up
I wanted the second hard drive to be a physical drive, not a CF card, so that it can be used to store data files, voice mail, etc.
So I added an 8GB hard drive to the virtual machine and moved the /var partition over there. I created two partitions on the hard drive. The first is swap space. The second will be /var. I moved the home directory tree and made a symlink for convenience; you could create a separate partition for home. I don't plan to have any normal user accounts on this system so I don't feel it needs to be a separate space.
telinit 1 fdisk /dev/hdb mkswap /dev/hdb1 mke2fs -j /dev/hdb2 mount /dev/hdb1 /mnt cd /var tar cf - * | (cd /mnt; tar xpf -)
Add a line to /etc/fstab to mount the new /var partition
echo "/dev/hdb1 swap swap defaults 0 0" >> /etc/fstab echo "/dev/hdb2 /var ext3 defaults 0 0" >> /etc/fstab
Make sure things are still working
reboot
Moving home directory and creating a symlink
cd /var mkdir home mv /home/* home cd / rmdir home ln -s /var/home
Moving tmp to /var/tmp
cd / tar cf - tmp | (cd /var; tar xpvf -) rm -rf tmp ln -s /var/tmp
Reducing disk access
Swap space is in the hard disk but hopefully seldom is ever used. We should have enough RAM to run everything without any paging.
Setting disk spin down
You can set this in either /etc/default or /etc/hdparm.conf. Review the options in 'man hdparm'.
I do something different, I use crontab settings that spin down sooner at night and not at often during daytime hours when we are more likely to have users and phone calls. In /etc/crontab I add this
# During the day spin down hard drive after 90 minutes inactivity 0 7 * * * root hdparm -S 243 /dev/hdb # At night spin down hard drive after 20 minutes idle time 0 20 * * * root hdparm -S 240 /dev/hdb
Note that this does not take effect until the time has been reached so every reboot the drive will stay on continuously until 7am or 8pm -- probably not a bad thing. You can also set up /etc/default/hdparm to get around this.
Logging
Turn down logging. Normally I like servers to log lots of information but on this machine I want minimal logging because every write causes the disk to spin up.
Debian 5 no longer uses tried and true syslog daemon. It is now called rsyslog. You edit the /etc/rsyslog.conf file to adjust logging.
I change references to /dev/xconsole to /dev/tty so that messages pop up on the screen when I am logged in via ssh.
Using a RAM disk
need to do more work here Should /var/run be on a RAM disk? /var/lock?
Other software
Webmin
LCD program
I added the SG20 lcd program; see Magnia LCD for details.
Configuration
I don't want to cover all the configuration details here except to say that you should set up the configuration on the VMWare machine for some of the software packages so that you don't need to deal with it on the CF card.
The most important thing to deal with is the network settings. You have to get the network set up correctly before moving everything to the Magnia, else you won't be able to connect to it at all.
Network settings
You should set an appropriate name and domain in /etc/hosts and /etc/hostname and /etc/resolv.conf
You probably want static IP addresses if this is a server. You should change /etc/network/interfaces.
Controlling ordering of ethernet interfaces
As with Ubuntu you want to force the system to use the interfaces the way you specify them in /etc/network/interfaces: eth0 is the switch and eth1 is the WAN/Internet port.
/etc/udev/rules.d/70-persistent-net.rules has lines like this in it
# This is the inside ethernet switch interface SUBSYSTEM=="net", DRIVERS="", NAME="eth0" # This is the WAN/Internet interface SUBSYSTEM=="net", DRIVERS="e100", NAME="eth1" This file describes the network interfaces available on your system
- and how to activate them. For more information, see interfaces(5).
The /etc/network/interfaces file looks like this
# The loopback network interface auto lo iface lo inet loopback # The primary network interface #allow-hotplug eth0 #iface eth0 inet dhcp # The 7 port Ethernet switch auto eth0 iface eth0 inet static address 192.168.123.123 netmark 255.255.255.0 # If not in use as a firewall gateway 192.168.123.1 # The WAN interface (if used as a firewall) # On DHCP so it can get an address from the ISP auto eth1 iface eth1 inet dhcp
Other configuration settings
You should deal with these as well, they won't kill you but having them working now will make things simpler later on.
- asterisk - which will be very different for every installation
- hdparm (we already did this above)
- Openvpn
- SSH
- Samba - I don't even know if I want this running so I am leaving it off for now. (to disable it I did: "update-rc.d -f samba remove")
- Cherokee
- Webmin
- Postfix
- System time: I use ntpdate to set the system time once a day from a script in /etc/cron.daily called setclock which has just this line in it: "ntpdate -b -s time-nw.nist.gov"
Hardware additions
USB card
The SG20 does not have any serial port or USB ports so I have added a PCMCIA USB 2.0 card to get 4 USB ports. I got the card on Ebay.
External sound system
My Chintimini application calls for being able to hear incoming phone calls on a speaker. I am not sure how to do that yet. USB speaker? USB audio interface? I can get a USB to audio adapter for about $20.
FXO phone line
The Asterisk system should be connected to a standard PSTN analog phone line so that CWC can continue to use its PSTN phone number for incoming calls. That means I need an "FXO" interface. Normally I would use a Digium X100P card (about $20 on Ebay) but the SG20 does not have a PCI slot.
I will probably use an external box, Either a ZOOM or a Grandstream Handy Tone 503. These devices have an FXO interface, one or two FXS interfaces (where you can connect an analog phone or FAX machine) and an ethernet interface.
More on this aspect later... probably will move it to a separate page since it's not really a Debian thing.