I have gnome running on the plug--pretty decent performance on my wireless LAN at least.
The basic steps:
- replace the root file system with an large SD card per the FAQ
- apt-get install xorg gdm
- apt-get install gnome-core
- apt-get install vnc4server
There's a problem with running xterm, etc though. See:
http://ubuntuforums.org/showthread.php?p=7050991Basically libxt needs to be rebuilt to include latest (unoffical) fixes. Following the instructions at the above URL:
-----------------------
modify /etc/apt/sources.list to include the source repositories: add the line
deb-src
http://ports.ubuntu.com jaunty main restricted universe multiverse
update apt so it knows about the source stuff:
apt-get update
get basic build tools and headers:
apt-get install build-essential
get headers for other X library stuff that libXt references:
apt-get install xorg-dev
get source for libXt; this will be downloaded to the current directory:
apt-get source libxt
untar the libXt source:
tar xvfz libxt_1.0.5.orig.tar.gz
cd into the libxt_1.0.5 directory, configure, and build
cd libxt_1.0.5
./configure
make
copy the newly build library to the system location - but first save the old one in case something goes wrong
mv /usr/lib/libXt.so.6.0.0 /usr/lib/libXt.so.6.0.0.bak
cp src/.libs/libXt.so.6.0.0 /usr/lib/libXt.so.6.0.0
--------------------------
After doing all that I was able to open a gnome session remotely with vnc.
Joe