Installing on Mini-Box: Difference between revisions

From IHRIS Wiki
No edit summary
 
(39 intermediate revisions by 3 users not shown)
Line 1: Line 1:
These are installation notes for getting the [http://www.mini-box.com/M200-LCD-Enclosure?sc=8&category=87  mini-box] LCD appliance up and running with Ubuntu Server 32-bit 8.10 (Intrepid) wth an Atom processor and making use of the [https://launchpad.net/lcdmenu menuing] system.
These are installation notes for getting the [http://www.mini-box.com/M200-LCD-Enclosure?sc=8&category=87  mini-box] LCD appliance up and running with Ubuntu Server 32-bit 9.04 (Jaunty) wth an processor and making use of the [https://launchpad.net/lcdmenu menuing] system.
 
This document covers installation of Ubuntu and the bits of software to control the LCD Panel on the iHRIS Appliance.  For information on installing the iHRIS Suite itself (including a full LAMP stack) see [[Installing the Debian Packages]]


[[Image:Mini-box-ihris-suite.jpg|center]]
[[Image:Mini-box-ihris-suite.jpg|center]]


==Ubuntu==
<center><videoflash>6h79JeTiSQg</videoflash></center>
Although we will intend to run this box without a monitor for the moment we will plug in the monitor to install Ubuntu from
a USB-CDROM.  Make sure the BIOS is configured to boot from the CD-ROM.  Also, under Peripheral Devices you will need to enable all legacy support (or it will hang on installation).


For a flash drive, apparently [http://suereth.blogspot.com/2008/03/my-new-toy-installing-ubuntu.html Josh] has had some success following [http://edoceo.com/liber/ubuntu-live-usb these directions].


We will do a [http://advosys.ca/viewpoints/2007/04/setting-up-software-raid-in-ubuntu-server/ Software Raid].  Once it has been setup, we need to [http://ubuntuforums.org/showthread.php?t=237582 monitor] it using mdadm:
==LCD Keypad==
To do this:
===USBLCD Reader===
sudo dpkg-reconfigure mdadm
First create a user 'lcdmenu' that can't login:
Please enter the following:
  sudo adduser --disabled-login --gecos "" lcdmenu
  Yes: periodic, monthly checks of the array
  Yes: MD monitoring daemon
  someone@somwhere.org:  Email address for monitoring
  Yes: Start with degraded array


==Mail Server==
Download and build the [http://resources.mini-box.com/online/picoLCD%2020x2%20(OEM)/Software/Linux/SDKSource/picoLCD20x2-SDK-0.1.7.tgz SDK] or at least just what it includes [http://www.mini-itx.com/store/information/usblcd/usblcd-src-0.1.4.tgz usblcd-src]. Install 'usbread' into the /home/lcdmenu/bin. To build it you will need to do this:
We don't want our box to be the general mail server for the network. There is a mail server, postfix, installed by default on Ubuntu  We will want to set the mail server to relay email to some other place.   First we need to do:
sudo apt-get install postfix
Then select
  Satellite System    //the type of system
  somewhere.org        //the name of your organization
  smtp.somewhere.org  //your smtp server to relay mail to
The above assumes that smtp.somewhere.org is an '''open''' relay which is probably not the case.


You will probably need to set Postfix up for [http://postfix.state-of-mind.de/patrick.koetter/smtpauth/smtp_auth_mailservers.html SMTP Auth]
  sudo apt-get install autoconf gcc-4.1-base gcc-4.1 gcc make \
 
      automake binutils binutils-dev libtool libusb-dev \
As an ''alternative'' here are some  instructions for forwarding to a [http://ubuntu-tutorials.com/tag/relayhost/ gmail accout].
      libhid-dev bzr
 
 
 
==LAMP Server==
 
In case you forgot to install the LAMP server on Unbuntu installation, make sure you do a
sudo apt-get install openssh-server^
sudo apt-get install lamp-server^
sudo apt-get install php5-cli
and generally follow the instructions:
http://wiki.ihris.org/wiki/Linux_(Ubuntu)_Installation
If you don't want to install phpmyadmin just to create the needed database you can do:
mysql -u root -p
mysql> CREATE DATABASE ihris_manage;
mysql> GRANT ALL PRIVILEGES ON ihris_manage.* TO ihris_manage@localhost identified by 'PASSS';
 
==USBLCD Reader==
Download and build the [http://resources.mini-box.com/online/picoLCD%2020x2%20(OEM)/Software/Linux/SDKSource/picoLCD20x2-SDK-0.1.7.tgz SDK] or at least just what it includes [http://www.mini-itx.com/store/information/usblcd/usblcd-src-0.1.4.tgz usblcd-src].  Install 'usbread' into the /home/lcdmenu/bin.  To build it you will need to do this:
  sudo apt-get install autoconf gcc-4.1-base gcc-4.1 gcc make automake binutils binutils-dev libtool libusb-dev libhid-dev bzr
  cd ~lcdmenu
  cd ~lcdmenu
  sudo -u lcdmenu bzr branch http://bazaar.launchpad.net/%7Eintrahealth%2Binformatics/lcdmenu/dev-1.0/ bin
  sudo -u lcdmenu bzr branch lp:lcdmenu bin
  cd ~/
  cd ~/
  wget http://www.mini-itx.com/store/information/usblcd/usblcd-src-0.1.4.tgz
  wget http://www.mini-itx.com/store/information/usblcd/usblcd-src-0.1.4.tgz
Line 56: Line 25:
  cd usblcd-0.1.4
  cd usblcd-0.1.4
  rm src/Makefile.am lib/usblcd.c
  rm src/Makefile.am lib/usblcd.c
  ln -s ~lcdmenu/bin/usblcd lib/usblcd.c
  ln -s ~lcdmenu/bin/usblcd.c lib/usblcd.c
  ln -s ~lcdmenu/bin/Makefile.am src/Makefile.am
  ln -s ~lcdmenu/bin/Makefile.am src/Makefile.am
  ln -s ~lcdmenu/bin/main2.c src/main2.c
  ln -s ~lcdmenu/bin/lcdmenu.c src/lcdmenu.c
  ./autogen.sh
  ./autogen.sh
  ./configure
  ./configure
  sudo make install
  sudo make install
sudo ldconfig
Now we want to change the splash the screen at boot-up
Now we want to change the splash the screen at boot-up
  sudo usblcd splash ~lcdmenu/bin/splash.txt
  sudo usblcd splash ~lcdmenu/bin/splash.txt


==LCD Menu==
===LCD Menu===
First create a user 'lcdmenu' that can't login:
  sudo adduser --disabled-login --gecos \'\' lcdmenu
(those quotes should not be slashed)
 
This applies to [https://code.launchpad.net/~intrahealth+informatics/lcdmenu/dev-1.0 LCD Menu 1.0] which is not packaged yet. You have already downloaded it via bzr in the step above
This applies to [https://code.launchpad.net/~intrahealth+informatics/lcdmenu/dev-1.0 LCD Menu 1.0] which is not packaged yet. You have already downloaded it via bzr in the step above


Now edit the "sudoers" file by running:
Now edit the "sudoers" file by running:
  sudo visudo  
  sudo visudo  
and add this line to grant the lcdmenu user limited access to system functions
and add this line to grant the lcdmenu user limited access to system functions
  %lcdmenu ALL=NOPASSWD: /sbin/shutdown, /etc/init.d/networking, /etc/init.d/apache2, /etc/init.d/mysql, /usr/bin/mysqldump, /usr/bin/apt-get, /usr/local/bin/usblcd2, /usr/bin/killall
 
  %lcdmenu ALL=NOPASSWD: /sbin/shutdown, /usr/sbin/service, /usr/bin/mysqldump, /usr/bin/apt-get, /usr/local/bin/usblcd, /usr/local/bin/lcdmenu, /usr/bin/killall


Create a "backup" user in mysql with localhost only access and no password which can lock and select all tables
Create a "backup" user in mysql with localhost only access and no password which can lock and select all tables
   mysql -u root -p
   mysql -u root -p
   mysql> GRANT SELECT,LOCK TABLES on *.* TO backup@localhost IDENTIFIED BY PASSWORD \'\';
   mysql> GRANT SELECT,LOCK TABLES on *.* TO backup@localhost IDENTIFIED BY PASSWORD \'\';
   mysql> quit;
   mysql> quit;
(again no slashes)
(again no slashes)


Now we want it to setup to run periodically:
Now we want it to setup to run periodically:
sudo crontab -u lcdmenu -e
* * * * * /home/lcdmenu/bin/lcdmenu_check.sh >/dev/null 2>&1


Optionally, we can get it up and running as fast as possible by putting it in the [https://help.ubuntu.com/community/RcLocalHowto startup]:
echo '* * * * * /home/lcdmenu/bin/lcdmenu_check.sh >/dev/null 2>&1'|\
      sudo crontab -u lcdmenu -
 
We can get it up and running as fast as possible and put it a shutdown mesages by putting it in the [https://help.ubuntu.com/community/RcLocalHowto local startup]:
 
  sudo vi /etc/init.d/local
  sudo vi /etc/init.d/local
Add these contents:
Add these contents:
  #!/bin/sh  
  #!/bin/sh  
  case "$1" in
  case "$1" in
Line 102: Line 79:
     run=`ps a -Ulcdmenu | grep /home/lcdmenu/bin/lcdmenu.php | grep -v grep | cut -c1-5 | paste -s -`
     run=`ps a -Ulcdmenu | grep /home/lcdmenu/bin/lcdmenu.php | grep -v grep | cut -c1-5 | paste -s -`
     if [  "$run" ]; then
     if [  "$run" ]; then
         sleep 1
         sleep 0.3
         kill -9 $run
         kill -9 $run
     fi;
     fi;
     /usr/local/bin/usblcd clear backlight 1
    killall lcdmenu
     /usr/local/bin/usblcd clear backlight 1 text 0 0  "  Shutting Down  " text 1 0 "    Please Wait  "
     ;;
     ;;
  esac
  esac


Now do:
Now do:
  sudo chmod +x /etc/init.d/local
  sudo chmod +x /etc/init.d/local
  sudo update-rc.d local defaults 80
  sudo update-rc.d local defaults 99


==Automount==
===Automount===
The LCD Menuing system has a "backup MySQL database to a flash drive" feature.  Since we will not be using GNOME, we will need a USB automounter:
The LCD Menuing system has a "backup MySQL database to a flash drive" feature.  Since we will not be using GNOME, we will need a USB automounter:
   sudo apt-get install usbmount
   sudo apt-get install usbmount
Then edit the file /etc/usbmount/usbmount.conf and add "vfat" to the FILESYSTEMS e.g:
Then edit the file /etc/usbmount/usbmount.conf and add "vfat" to the FILESYSTEMS e.g:
     FILESYSTEMS="ext2 ext3 vfat"
     FILESYSTEMS="ext2 ext3 vfat"
then make sure the FS_MOUNTOPTIONS line has at least:
then make sure the FS_MOUNTOPTIONS line has at least:
    FS_MOUNTOPTIONS="gid=lcdmenu,dmask=0007,fmask=0117"


==Power Button==
    FS_MOUNTOPTIONS="-fstype=vfat,gid=lcdmenu,dmask=0007,fmask=0117"
Make sure acpid is installed and running and change /etc/acpi/powerbtn.sh to suit your needs.
 
I suggest you just make it the following:
===Power Button===
Make sure acpid is installed and running and change /etc/acpi/powerbtn.sh to suit your needs. I suggest you just make it the following:
 
  test -f /var/lock/acpisleep && exit 0
  test -f /var/lock/acpisleep && exit 0
run=`ps a -Ulcdmenu | grep /home/lcdmenu/bin/lcdmenu.php | grep -v grep | cut -c1-5 | paste -s -`
if [  "$run" ]; then
    kill -15 $run
fi;
run=`ps a -Ulcdmenu | grep /home/lcdmenu/bin/lcdmenu.php | grep -v grep | cut -c1-5 | paste -s -`
if [  "$run" ]; then
    sleep 1
    kill -9 $run
fi;
/usr/local/bin/usblcd clear backlight 1 text 0 0  "  Shutting Down  " text 1 0 "    Please Wait  "
  /sbin/shutdown -h now "Power button pressed"
  /sbin/shutdown -h now "Power button pressed"


==UPS==


Install nut and [http://www.crn.com/white-box/199000818 follow these directions]
===Checking Network Status===
as well as whatever is available on the
The MAC Address, to configure your router, can be obtained from the LCD Menu:
[http://www.networkupstools.org/ home page] of the nut package.  nut
is built for network access to a UPS but seems to be the most
up-to-date package available.


==Network Status==
The MAC Address, to configure your router, can be obtained from the LCD Menu:
  >F1:Server Status
  >F1:Server Status
  >F2:Network Status
  >F2:Network Status
  >F3:MAC Address
  >F3:MAC Address
Similarly, if you have plugged the server into a network with DHCP, you can get the IP Address:
Similarly, if you have plugged the server into a network with DHCP, you can get the IP Address:
  >F1:Server Status
  >F1:Server Status
  >F2:Network Status
  >F2:Network Status
  >F3:MAC Address
  >F3:MAC Address


==Webmin==
==Other Configuration==
===GDM===
In case you have GDM installed, let us have it not boot on startup.  Note, you can now turn gdm on/off via the LCD Menu.
sudo update-rc.d -f gdm remove
 
===UPS===
 
Install nut and [http://www.crn.com/white-box/199000818 follow these directions] as well as whatever is available on the [http://www.networkupstools.org/ home page] of the nut package.  nut is built for network access to a UPS but seems to be the most up-to-date package available.
 
===Webmin===
 
See [http://www.ubuntugeek.com/ubuntu-serverinstall-gui-and-webmin-in-ubuntu-810-intrepid-ibex-guide.html this webmin installation guide] or just cut and paste:
 
sudo aptitude install perl libnet-ssleay-perl openssl \
      libauthen-pam-perl libpam-runtime libio-pty-perl libmd5-perl
wget http://garr.dl.sourceforge.net/sourceforge/webadmin/webmin_1.530_all.deb
sudo dpkg -i webmin_1.530_all.deb


See [http://www.ubuntugeek.com/ubuntu-serverinstall-gui-and-webmin-in-ubuntu-810-intrepid-ibex-guide.html me] or just cut and paste:
sudo aptitude install perl libnet-ssleay-perl openssl libauthen-pam-perl libpam-runtime libio-pty-perl libmd5-perl
wget http://garr.dl.sourceforge.net/sourceforge/webadmin/webmin_1.441_all.deb
sudo dpkg -i webmin_1.441_all.deb
Browse to:  
Browse to:  
  https://your-server-ip:10000/
  https://your-server-ip:10000/
and login as the user you created on Ubuntu installation.
and login as the user you created on Ubuntu installation.
===Mail Server===
We don't want our box to be the general mail server for the network. There is a mail server, postfix, installed by default on Ubuntu  We will want to set the mail server to relay email to some other place.
First we need to do:
sudo apt-get install postfix
Then select
  Satellite System    //the type of system
  somewhere.org        //the name of your organization
  smtp.somewhere.org  //your smtp server to relay mail to
The above assumes that smtp.somewhere.org is an '''open''' relay which is probably not the case.
You will probably need to set Postfix up for [http://postfix.state-of-mind.de/patrick.koetter/smtpauth/smtp_auth_mailservers.html SMTP Auth]
As an ''alternative'' here are some  instructions for forwarding to a [http://ubuntu-tutorials.com/tag/relayhost/ gmail accout].
==RAID==
Although we will intend to run this box without a monitor for the moment we will plug in the monitor to install Ubuntu from a USB-CDROM. Make sure the BIOS is configured to boot from the CD-ROM.  Also, under Peripheral Devices you will need to enable all legacy support (or it will hang on installation).
For a flash drive, apparently [http://suereth.blogspot.com/2008/03/my-new-toy-installing-ubuntu.html Josh] has had some success following [http://edoceo.com/liber/ubuntu-live-usb these directions].
We will do a [http://advosys.ca/viewpoints/2007/04/setting-up-software-raid-in-ubuntu-server/ Software Raid]. 
'''Warning:''' do not create the filesystem as ext4 as it will hurt mysql [http://ubuntuforums.org/showthread.php?t=1313834 very badly].
Once it has been setup, we need to [http://ubuntuforums.org/showthread.php?t=237582 monitor] it using mdadm:
To do this:
sudo dpkg-reconfigure mdadm
Please enter the following:
  Yes: periodic, monthly checks of the array
  Yes: MD monitoring daemon
  someone@somwhere.org:  Email address for monitoring
  Yes: Start with degraded array
[[Category:Installation]][[Category:iHRIS Appliance]][[Category:Review2013]]

Latest revision as of 17:32, 16 July 2013

These are installation notes for getting the mini-box LCD appliance up and running with Ubuntu Server 32-bit 9.04 (Jaunty) wth an processor and making use of the menuing system.

This document covers installation of Ubuntu and the bits of software to control the LCD Panel on the iHRIS Appliance. For information on installing the iHRIS Suite itself (including a full LAMP stack) see Installing the Debian Packages

<videoflash>6h79JeTiSQg</videoflash>


LCD Keypad

USBLCD Reader

First create a user 'lcdmenu' that can't login:

 sudo adduser --disabled-login --gecos "" lcdmenu 

Download and build the SDK or at least just what it includes usblcd-src. Install 'usbread' into the /home/lcdmenu/bin. To build it you will need to do this:

sudo apt-get install autoconf gcc-4.1-base gcc-4.1 gcc make \
     automake binutils binutils-dev libtool libusb-dev \
     libhid-dev bzr
cd ~lcdmenu
sudo -u lcdmenu bzr branch lp:lcdmenu bin
cd ~/
wget http://www.mini-itx.com/store/information/usblcd/usblcd-src-0.1.4.tgz
tar -xzvf usblcd-src-0.1.4.tgz
cd usblcd-0.1.4
rm src/Makefile.am lib/usblcd.c
ln -s ~lcdmenu/bin/usblcd.c lib/usblcd.c
ln -s ~lcdmenu/bin/Makefile.am src/Makefile.am
ln -s ~lcdmenu/bin/lcdmenu.c src/lcdmenu.c
./autogen.sh
./configure
sudo make install
sudo ldconfig

Now we want to change the splash the screen at boot-up

sudo usblcd splash ~lcdmenu/bin/splash.txt

LCD Menu

This applies to LCD Menu 1.0 which is not packaged yet. You have already downloaded it via bzr in the step above

Now edit the "sudoers" file by running:

sudo visudo 

and add this line to grant the lcdmenu user limited access to system functions

%lcdmenu ALL=NOPASSWD: /sbin/shutdown, /usr/sbin/service, /usr/bin/mysqldump, /usr/bin/apt-get, /usr/local/bin/usblcd, /usr/local/bin/lcdmenu, /usr/bin/killall

Create a "backup" user in mysql with localhost only access and no password which can lock and select all tables

  mysql -u root -p
  mysql> GRANT SELECT,LOCK TABLES on *.* TO backup@localhost IDENTIFIED BY PASSWORD \'\';
  mysql> quit;

(again no slashes)

Now we want it to setup to run periodically:

echo '* * * * * /home/lcdmenu/bin/lcdmenu_check.sh >/dev/null 2>&1'|\
     sudo crontab -u lcdmenu -

We can get it up and running as fast as possible and put it a shutdown mesages by putting it in the local startup:

sudo vi /etc/init.d/local

Add these contents:

#!/bin/sh 
case "$1" in
 start)
   sudo -u lcdmenu /home/lcdmenu/bin/lcdmenu_check.sh
   ;;
 stop)
   run=`ps a -Ulcdmenu | grep /home/lcdmenu/bin/lcdmenu.php | grep -v grep | cut -c1-5 | paste -s -`
   if [   "$run" ]; then
        kill -15 $run
   fi;
   run=`ps a -Ulcdmenu | grep /home/lcdmenu/bin/lcdmenu.php | grep -v grep | cut -c1-5 | paste -s -`
   if [   "$run" ]; then
        sleep 0.3
        kill -9 $run
   fi;
   killall lcdmenu
   /usr/local/bin/usblcd clear backlight 1 text 0 0  "   Shutting Down   " text 1	0 "    Please Wait  "
   ;;
esac

Now do:

sudo chmod +x /etc/init.d/local
sudo update-rc.d local defaults 99

Automount

The LCD Menuing system has a "backup MySQL database to a flash drive" feature. Since we will not be using GNOME, we will need a USB automounter:

  sudo apt-get install usbmount

Then edit the file /etc/usbmount/usbmount.conf and add "vfat" to the FILESYSTEMS e.g:

   FILESYSTEMS="ext2 ext3 vfat"

then make sure the FS_MOUNTOPTIONS line has at least:

   FS_MOUNTOPTIONS="-fstype=vfat,gid=lcdmenu,dmask=0007,fmask=0117"

Power Button

Make sure acpid is installed and running and change /etc/acpi/powerbtn.sh to suit your needs. I suggest you just make it the following:

test -f /var/lock/acpisleep && exit 0
/sbin/shutdown -h now "Power button pressed"


Checking Network Status

The MAC Address, to configure your router, can be obtained from the LCD Menu:

>F1:Server Status
>F2:Network Status
>F3:MAC Address

Similarly, if you have plugged the server into a network with DHCP, you can get the IP Address:

>F1:Server Status
>F2:Network Status
>F3:MAC Address

Other Configuration

GDM

In case you have GDM installed, let us have it not boot on startup. Note, you can now turn gdm on/off via the LCD Menu.

sudo update-rc.d -f gdm remove

UPS

Install nut and follow these directions as well as whatever is available on the home page of the nut package. nut is built for network access to a UPS but seems to be the most up-to-date package available.

Webmin

See this webmin installation guide or just cut and paste:

sudo aptitude install perl libnet-ssleay-perl openssl \
     libauthen-pam-perl libpam-runtime libio-pty-perl libmd5-perl
wget http://garr.dl.sourceforge.net/sourceforge/webadmin/webmin_1.530_all.deb
sudo dpkg -i webmin_1.530_all.deb

Browse to:

https://your-server-ip:10000/

and login as the user you created on Ubuntu installation.

Mail Server

We don't want our box to be the general mail server for the network. There is a mail server, postfix, installed by default on Ubuntu We will want to set the mail server to relay email to some other place.

First we need to do:

sudo apt-get install postfix

Then select

 Satellite System     //the type of system
 somewhere.org        //the name of your organization
 smtp.somewhere.org   //your smtp server to relay mail to

The above assumes that smtp.somewhere.org is an open relay which is probably not the case.

You will probably need to set Postfix up for SMTP Auth

As an alternative here are some instructions for forwarding to a gmail accout.


RAID

Although we will intend to run this box without a monitor for the moment we will plug in the monitor to install Ubuntu from a USB-CDROM. Make sure the BIOS is configured to boot from the CD-ROM. Also, under Peripheral Devices you will need to enable all legacy support (or it will hang on installation).

For a flash drive, apparently Josh has had some success following these directions.

We will do a Software Raid. Warning: do not create the filesystem as ext4 as it will hurt mysql very badly. Once it has been setup, we need to monitor it using mdadm:

To do this:

sudo dpkg-reconfigure mdadm

Please enter the following:

 Yes: periodic, monthly checks of the array
 Yes: MD monitoring daemon
 someone@somwhere.org:  Email address for monitoring
 Yes: Start with degraded array