Views

Jajuk KDE4

This screenshot has been made with Kubuntu. These following extra packages have been installed:

apt-get install sun-java6-bin mplayer

Also a quick java patch was needed:

#!/bin/sh
# S. Correia
# 2007 11 21
# A simple script to patch the java library in order
# to solve the problem with "Assertion 'c->xlib.lock' failed."
# see bug http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6532373
LIB_TO_PATCH=libmawt.so
for f in `find /usr/lib/jvm -name "$LIB_TO_PATCH"`
do
echo "Patching library $f"
fb="_backup"
cp -v $f $f$fb
sed -i 's/XINERAMA/FAKEEXTN/g' "$f"
done