Difference between revisions of "Using KDE4 and KDE3 parallel"

From IT Service Wiki
Jump to: navigation, search
m
Line 2: Line 2:
  
 
<pre>
 
<pre>
 +
if [ -f /etc/lsb-release ];  then
 +
    . /etc/lsb-release
 +
fi
 +
 
if [[ "$DISTRIB_RELEASE"  == "8.04" ]]; then
 
if [[ "$DISTRIB_RELEASE"  == "8.04" ]]; then
 
     export KDEHOME=~/.kde3
 
     export KDEHOME=~/.kde3

Revision as of 15:53, 10 July 2009

Starting with Ubuntu 8.10 only KDE4 is delivered. The old installations have KDE3. Switching between the different desktops may be a problem, because both KDE versions use '.kde' as their configuration directory. With a simple version check in the .bachrc (if you are using the bash) it is possible to maintain two different KDE setups. Add the following code snippet to your .bashrc:

if [ -f /etc/lsb-release ];  then
    . /etc/lsb-release
fi

if [[ "$DISTRIB_RELEASE"  == "8.04" ]]; then
    export KDEHOME=~/.kde3
fi

The old tree is held under '.kde3' an may be deleted if no more KDE3 installations a alive. Especially this technique is useful if you are working on an new host and want to use the nxserver for remote logins. Login server is running Ubuntu 8.04 and will do it for a while.