xCHM is a cross-platform GUI front-end to chmlib, with borrowed bits from Pabs’ chmdeco project. Originally written for UNIX systems (Linux, *BSD, Solaris), xCHM has been since ported to Mac OS X and Windows.
1. Open the terminal
2. Run command sudo apt-get install xchm
You are done now you can open any .chm file in your linux machine…
Categories: Linux
Comments Off
You can create graphs and charts in PHP using GDChart extension. GDChart comes with the extension. This ext/gdchart extension, in turn, requires you to have GD support compiled into your PHP build. On UNIX systems, this is accomplished by downloading and installing the GD libraries from http://www.boutell.com/gd
After downloading you can install using pecl command
~$ pecl install gdchart
Also you can manually download the source code archive from http://pecl.php.net/package/GDChart and compile it as shown below
~$ cd gdchart-1.2
~$ phpsize
~$ ./configure
~$ make
~$ make install
Note: [...]
Categories: PHP

