Friday, September 10, 2010

Lab 1: Building NLED and GAMMU on Fedora 12

Compiling and Installing NLed.
NLed is a lightweight text editor developed at Seneca. The compile and install process is very straight forward.

To install NLED on your Fedora box follow the following steps:
1. Download nled tarball
$ wget http://cdot.senecac.on.ca/software/nled/nled_2_52_src.tgz

2. Untar
$ tar -xvz nled_2_52_src.tgz

3. Install Development Libraries
$ su -
# yum groupinstall "Development Tools" "Development Libraries"
# exit


4. Compile and Install NLED
$ make
$ make install


That's it for NLED. Very straight forward!

Compiling Gammu and Wammu GTK from source.
Gammu is a command line GSM phone management tool. Wammu is a front end to gammu and will assist newer users to automatically configure gammu to work with their phone.

$ cd ~/Downloads
$ wget https://sourceforge.net/projects/gammu/files/gammu/1.28.90/gammu-1.28.90.tar.bz2/download
$ wget https://sourceforge.net/projects/gammu/files/wammu/0.34/wammu-0.34.tar.bz2/download

$ tar jxvf gammu-1.28.90.tar.bz2
$ tar jxvf wammu-0.34.tar.bz2
$ yum install libdbi python-gammu wxBase wxGTK wxGTK-gl wxGTK cmake


$ cd gammu-1.28.90
$ cmake
$ make
$ make install

$ cd ../wammu-0.34
$ python setup.py build
$ su - 
# python setup.py install
# exit

Run Wammu
$ wammu

No comments:

Post a Comment