Ok, to run FahMon on Linux you have to compile it yourself. This would be less of a drag if the wxWidgets toolkit it uses were in greater availability. Sadly it's not. Mind you I'm writing this from my head as I don't have a 64-bit machine on which I can test.
Since you're using Ubuntu which is based on Debian you can use apt-get for some things. wxWidgets is available in an experimental synaptic repository but this binary doesn't include support for Unicode which FahMon needs; it just supports ANSI encoding. this means you have to compile your own.
Start off by going to
FahMon's site and downloading the source tar. Then go to the
wxWidgets site and grab the source package for wxGTK.
Extract both, open up FahMon then the doc folder and read the install notes. you'll see that it states it needd:
- g++ (either 3.x or 4.x)
- wxGTK >= 2.6.3 (runtime and headers)
- scons
Scons and g++ are easily available in Synaptic. Open up System > Administration > Synaptic Package Manager. Type in g++ and select that then do the same for scons. If they're already checked, you're good to go.
To determine if, on the off chance that you already have a usable version of wxGTK open up your buddy the terminal and type in
If it prints anything like
Default config is gtk2-unicode-release-2.6
Default config will be used for output
Alternate matches:
gtk2-unicode-debug-2.6
you're good to go. If not, you're going to have to compile and install wxGTK.
To compile xwGTK go to its directory and open up install-gtk.txt. In there you'll see the instructions for building wxGTK.
You'll need to make a directory then change to it. Run
Code:
mkdir buildgtk
cd buildgtk
You'll now prepare and compile it. We need to be sure to enable unicode support so you'll add the --enable-unicode flag. Run
Code:
../configure --with-gtk --enable-unicode
It will prepare it and in the end print a summary of your configuration. Be sure that it says "yes" by Unicode support.
Now it's ready for compilation. Run[/code]make[/code]Text will fly by and you can go get yourself a cup of coffee because this may take a few minutes.
When it finally returns you to a command prompt enter
This will install wxGTK on your computer.
Finally run
Once this is all done you are ready to use the toolkit you just built. Test that it worked by running the same test we did before
It should print out something like
Default config is gtk2-unicode-release-2.8
Default config will be used for output
W00t, It worked. Go cd to your FahMon folder and enter the src directory. Initiate the build with
It'll compile for a bit then return you to the command line. If all went well type
to execute the program.
