Installing the Debian Packages: Difference between revisions

From IHRIS Wiki
No edit summary
m (gave cli alternatives)
Line 3: Line 3:
== Before Installation ==
== Before Installation ==


If you don't have the <tt>mysql-server</tt> package installed, you'll want to install it.    This package uses the <tt>[http://people.debian.org/~seanius/policy/examples/dbconfig-common/doc/dbconfig-common-design.html dbconfig-common]</tt> package to take care of database setup.
If you don't have the <tt>mysql-server</tt> package installed, you'll want to install it.    This package uses a MySQL server to store the data but does not install one by default — allowing you to set up your infrastructure as you see fit.


== After Installation ==
== After Installation ==
Line 14: Line 14:
===Ubuntu Interpid===
===Ubuntu Interpid===
First we need to add the repository information to our apt sources.  To do this, run
First we need to add the repository information to our apt sources.  To do this, run
  sudo gedit /etc/apt/sources.list.d/ihris.list
  sudo gedit /etc/apt/sources.list.d/ihris.list
and add the following:
and add the following:
  deb http://www.intrahealth.org/debian . main
  deb http://www.intrahealth.org/debian . main
  deb http://ppa.launchpad.net/intrahealth+informatics/ppa/ubuntu intrepid main  
  deb http://ppa.launchpad.net/intrahealth+informatics/ppa/ubuntu intrepid main  
If you prefer, you can add these with two command lines that you can cut-and-paste from here:
echo "deb http://www.intrahealth.org/debian . main" | sudo tee /etc/apt/sources.list.d/ihris.list
echo "deb http://ppa.launchpad.net/intrahealth+informatics/ppa/ubuntu intrepid main" | sudo tee -a /etc/apt/sources.list.d/ihris.list
Now we can run:
Now we can run:
  sudo apt-get update
  sudo apt-get update
  sudo apt-get install i2ce-ihris-manage-all
  sudo apt-get install i2ce-ihris-manage-all
Line 24: Line 34:
===Ubunutu Jaunty===
===Ubunutu Jaunty===
First we need to add the repository information to our apt sources.  To do this, run
First we need to add the repository information to our apt sources.  To do this, run
  sudo gedit /etc/apt/sources.list.d/ihris.list
  sudo gedit /etc/apt/sources.list.d/ihris.list
and add the following:
and add the following:
  deb http://www.intrahealth.org/debian . main
  deb http://www.intrahealth.org/debian . main
If you prefer, you can add these with the following command line that you can cut-and-paste from here:
echo "deb http://www.intrahealth.org/debian . main" | sudo tee /etc/apt/sources.list.d/ihris.list
Now we can run:
Now we can run:
  sudo apt-get update
  sudo apt-get update
  sudo apt-get install i2ce-ihris-manage-all
  sudo apt-get install i2ce-ihris-manage-all


[[Category:HowTo]]
[[Category:HowTo]]

Revision as of 14:42, 21 July 2009

This is experimental. These directions are for the experimental debian packages.

Before Installation

If you don't have the mysql-server package installed, you'll want to install it. This package uses a MySQL server to store the data but does not install one by default — allowing you to set up your infrastructure as you see fit.

After Installation

  • Visit http://localhost/iHRIS/Manage
  • You should have the bare-bones installation running. If you want to modify the apache setup, change /etc/apache2/conf.d/ihris-mananage.conf.

Super Simple

Ubuntu Interpid

First we need to add the repository information to our apt sources. To do this, run

sudo gedit /etc/apt/sources.list.d/ihris.list

and add the following:

deb http://www.intrahealth.org/debian . main
deb http://ppa.launchpad.net/intrahealth+informatics/ppa/ubuntu intrepid main 

If you prefer, you can add these with two command lines that you can cut-and-paste from here:

echo "deb http://www.intrahealth.org/debian . main" | sudo tee /etc/apt/sources.list.d/ihris.list
echo "deb http://ppa.launchpad.net/intrahealth+informatics/ppa/ubuntu intrepid main" | sudo tee -a /etc/apt/sources.list.d/ihris.list

Now we can run:

sudo apt-get update
sudo apt-get install i2ce-ihris-manage-all

Ubunutu Jaunty

First we need to add the repository information to our apt sources. To do this, run

sudo gedit /etc/apt/sources.list.d/ihris.list

and add the following:

deb http://www.intrahealth.org/debian . main

If you prefer, you can add these with the following command line that you can cut-and-paste from here:

echo "deb http://www.intrahealth.org/debian . main" | sudo tee /etc/apt/sources.list.d/ihris.list

Now we can run:

sudo apt-get update
sudo apt-get install i2ce-ihris-manage-all