Friday 25 May 2012

Install Quasar 2.2.0 on Ubuntu 12.04 (Precise)

This post explains how to install Quasar 2.2.0 on Ubuntu 12.04. Quasar is the best linux medium to large size business accounting program in my opinion. You can visit there website ate http://www.linuxcanada.com

download quasar single form
ftp://linuxcanada.com/pub/Quasar/2.2.0/binaries/

And you'll need libicu44
http://packages.ubuntu.com/oneiric/libicu44

I'd also suggest that you install postgresql before you install quasar-single so that you get the Postgresql-9.1 instead of 8.4 which it will want to install.

sudo apt-get install postgresql postgresql-contrib polymer qt3-qtconfig


Then install the rest of the packages. What I do more times is just download all of the above into one directory and install everything in that directory. Lets say for instance you'd download everything to ~/Downloads/Quasar/ You would then do the fallowing.

cd ~/Downloads/Quasar/
dpkg -i *
apt-get install -f


To make Quasar and other Qt3 apps look good open qtconfig and make the fallowing changes

Appearance > GUI Style > Polymer
Fonts > Family > Sans Serif
Fonts > Point Size > 9
you might also what to alter the color skeme a bit
Appearance > Tune Palette



I may post later on how to set up Postgresql further so that you can access it via pgadmin and remote computers. But just to run Quasar that is not needed.

Many times you'll notice you can't print from Quasar. To fix it run
sudo ln -s /var/run/cups/printcap /etc/printcap

3 comments:

  1. Install failed on 12.04 LTS w/latest updates. Attempts to launch quasar or quasar_admin returned error: libtcl8.6.so not found.

    Not sure why it's looking for 8.6 when only 8.4/8.5 are installed, and there's no clear dependency on 8.6! Any thoughts?

    ReplyDelete
    Replies
    1. I installed initially w/quasar deb first, which installed postgresql 8.4. i uninstalled everything and installed 9.1, no dice. went back to 8.4 (required apt-get install -f), still no dice.

      Delete
    2. here's the packages I use to install Quasar. This works for 2.2.1 on 12.04 and on 14.04.

      sudo apt-get -y install tcl8.5 libtcl8.5 libtk8.5 libtk-img openssh-server libicu-dev libpng3 tkpng libmng2 vim cups-pdf liblcms1
      wget http://launchpadlibrarian.net/86479683/libqt3-mt_3.3.8-b-8ubuntu3_amd64.deb
      wget http://launchpadlibrarian.net/5095987/polymer_0.3.2-4_amd64.deb
      wget http://launchpadlibrarian.net/86479699/qt3-qtconfig_3.3.8-b-8ubuntu3_amd64.deb
      wget http://mirrors.xmission.com/ubuntu/pool/main/libm/libmng/libmng1_1.0.10-3_amd64.deb
      wget http://security.ubuntu.com/ubuntu/pool/main/i/icu/libicu48_4.8.1.1-3ubuntu0.1_amd64.deb

      Delete