CDE desktop running on Ubuntu 14.04.

I have got the CDE desktop to compile on Ubuntu 14.04. I found this website: https://www.ics.com/blog/retrocomputing-motif-and-cde#.U-840NaKhqg, which in turn lead me here: http://sourceforge.net/p/cdesktopenv/wiki/LinuxBuild/, a WIKI which contains the build instructions for Ubuntu 14.04. I followed this guide and the build worked perfectly. This is very cool indeed. The performance of the CDE desktop is very … Read more

I managed to compile the 14.4 ATI drivers on Linux Mint 16 against the 3.15 kernel.

I have managed to get the 14.4 ATI drivers to compile against the new 3.15 kernel on Linux Mint 16. I followed this guide: http://bluehatrecord.wordpress.com/2014/05/04/amd-catalyst-14-4-for-linux-loses-support-for-linux-kernel-versions-above-3-11/ and I used the commands on this page as well as this linked patch. This is how I managed to do it. I am now running a 3.15 kernel with … Read more

How to install the gcj Java compiler on Debian 7.0 and compile a simple program.

This is how to compile a Java source file on Linux with gcj. homer@neo:~/Documents$ gcj –main=HelloWorld HelloWorld.javahomer@neo:~/Documents$ gcj –main=HelloWorld HelloWorld.java This is the source file that I am working with. /* * My first Java program. * */   import java.util.Date;   public class HelloWorld {   public static void main(String[] args) {   System.out.printf("\"Hello, … Read more