<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://cblfs.nicewhileitlasted.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=161.184.43.148</id>
	<title>CBLFS - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://cblfs.nicewhileitlasted.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=161.184.43.148"/>
	<link rel="alternate" type="text/html" href="https://cblfs.nicewhileitlasted.com/Special:Contributions/161.184.43.148"/>
	<updated>2026-05-21T04:36:18Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.44.0</generator>
	<entry>
		<id>?title=KDE4/KDE_Pre-Installation_Configuration&amp;diff=13082</id>
		<title>KDE4/KDE Pre-Installation Configuration</title>
		<link rel="alternate" type="text/html" href="?title=KDE4/KDE_Pre-Installation_Configuration&amp;diff=13082"/>
		<updated>2008-02-06T04:59:30Z</updated>

		<summary type="html">&lt;p&gt;161.184.43.148: /* Multilib */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;To prevent KDE4 from killing KDE3 we only talk about installing into /opt. This will be changed once KDE4 has been tested and more accepted.&lt;br /&gt;
We use a hard link to /opt/kde4 to prevent /opt/KDE from being removed and causeing KDE3 to fail.&lt;br /&gt;
&lt;br /&gt;
If you&#039;re using the [[Bash Startup Files]] then run the commands below. Otherwise make sure that the values you want are properly set.&lt;br /&gt;
&lt;br /&gt;
== Installing KDE into /opt ==&lt;br /&gt;
&lt;br /&gt;
Create the &#039;&#039;&#039;/opt/kde4&#039;&#039;&#039; directory:&lt;br /&gt;
&lt;br /&gt;
 install -dv -m755 /opt/kde4&lt;br /&gt;
&lt;br /&gt;
Create the KDE4 tmp dir. This will prolly need to be run once for each user that want access to KDE4.&lt;br /&gt;
&lt;br /&gt;
 install -dv -m1777 /tmp/{$USER}-kde4&lt;br /&gt;
&lt;br /&gt;
=== Non-Multilib ===&lt;br /&gt;
&lt;br /&gt;
Create an addition to the [[Bash Startup Files]]:&lt;br /&gt;
&lt;br /&gt;
 cat &amp;gt; /etc/profile.d/30-kde4.sh &amp;lt;&amp;lt; &amp;quot;EOF&amp;quot;&lt;br /&gt;
 # Begin /etc/profile.d/30-kde4.sh&lt;br /&gt;
 &lt;br /&gt;
 export KDEDIR=/opt/kde4&lt;br /&gt;
 export KDEDIRS=$KDEDIR&lt;br /&gt;
 export KDETMP=/tmp/$USER-kde4&lt;br /&gt;
 export STRIGI_HOME=${KDEDIR}&lt;br /&gt;
 export QT_PLUGINS_DIR=$KDEDIR/lib/kde4/plugins:$QTDIR/lib${QT_PLUGINS_DIR+:}$QT_PLUGINS_DIR&lt;br /&gt;
 export PATH=&amp;quot;${PATH}:${KDEDIR}/bin&amp;quot;&lt;br /&gt;
 export PKG_CONFIG_PATH=&amp;quot;${PKG_CONFIG_PATH}${PKG_CONFIG_PATH+:}${KDEDIR}/lib/pkgconfig&amp;quot;&lt;br /&gt;
 export XDG_CONFIG_DIRS=&#039;${XDG_CONFIG_DIRS}:${KDEDIR}/share&lt;br /&gt;
&lt;br /&gt;
 # End /etc/profile.d/30-kde4.sh&lt;br /&gt;
 EOF&lt;br /&gt;
 source /etc/profile&lt;br /&gt;
&lt;br /&gt;
Add a new entry to /etc/ld.so.conf for the libraries that KDE is going to install:&lt;br /&gt;
&lt;br /&gt;
 cat &amp;gt;&amp;gt; /etc/ld.so.conf &amp;lt;&amp;lt; &amp;quot;EOF&amp;quot;&lt;br /&gt;
 # Begin KDE4 addition to /etc/ld.so.conf&lt;br /&gt;
 &lt;br /&gt;
 /opt/kde4/lib&lt;br /&gt;
 &lt;br /&gt;
 # End KDE addition&lt;br /&gt;
 EOF&lt;br /&gt;
&lt;br /&gt;
=== Multilib ===&lt;br /&gt;
&lt;br /&gt;
Create an addition to the [[Bash Startup Files]]:&lt;br /&gt;
&lt;br /&gt;
 cat &amp;gt; /etc/profile.d/30-kde4.sh &amp;lt;&amp;lt; &amp;quot;EOF&amp;quot;&lt;br /&gt;
 # Begin /etc/profile.d/30-kde4.sh&lt;br /&gt;
 &lt;br /&gt;
 export KDEDIR=/opt/kde4&lt;br /&gt;
 export KDEDIRS=$KDEDIR&lt;br /&gt;
 export KDETMP=/tmp/$USER-kde4&lt;br /&gt;
 export PATH=&amp;quot;${PATH}:${KDEDIR}/bin&amp;quot;&lt;br /&gt;
 export STRIGI_HOME=${KDEDIR}&lt;br /&gt;
 export QT_PLUGINS_DIR32=$KDEDIR/lib/kde4/plugins:$QTDIR/lib${QT_PLUGINS_DIR+:}$QT_PLUGINS_DIR&lt;br /&gt;
 export QT_PLUGINS_DIRN32=$KDEDIR/lib32/kde4/plugins:$QTDIR/lib32${QT_PLUGINS_DIR+:}$QT_PLUGINS_DIR&lt;br /&gt;
 export QT_PLUGINS_DIR64=$KDEDIR/lib64/kde4/plugins:$QTDIR/lib64${QT_PLUGINS_DIR+:}$QT_PLUGINS_DIR&lt;br /&gt;
 export PKG_CONFIG_PATH32=&amp;quot;${PKG_CONFIG_PATH32}${PKG_CONFIG_PATH32+:}${KDEDIR}/lib/pkgconfig&amp;quot;&lt;br /&gt;
 export PKG_CONFIG_PATHN32=&amp;quot;${PKG_CONFIG_PATHN32}${PKG_CONFIG_PATHN32+:}${KDEDIR}/lib32/pkgconfig&amp;quot;&lt;br /&gt;
 export PKG_CONFIG_PATH64=&amp;quot;${PKG_CONFIG_PATH64}${PKG_CONFIG_PATH64+:}${KDEDIR}/lib64/pkgconfig&amp;quot; &lt;br /&gt;
 export XDG_CONFIG_DIRS=&#039;${XDG_CONFIG_DIRS}:${KDEDIR}/share&lt;br /&gt;
&lt;br /&gt;
 # End /etc/profile.d/30-kde4.sh&lt;br /&gt;
 EOF&lt;br /&gt;
 source /etc/profile&lt;br /&gt;
&lt;br /&gt;
Add a new entry to /etc/ld.so.conf for the libraries that KDE is going to install:&lt;br /&gt;
&lt;br /&gt;
 cat &amp;gt;&amp;gt; /etc/ld.so.conf &amp;lt;&amp;lt; &amp;quot;EOF&amp;quot;&lt;br /&gt;
 # Begin KDE4 addition to /etc/ld.so.conf&lt;br /&gt;
 &lt;br /&gt;
 /opt/kde4/lib&lt;br /&gt;
 /opt/kde4/lib32&lt;br /&gt;
 /opt/kde4/lib64&lt;br /&gt;
 &lt;br /&gt;
 # End KDE addition&lt;br /&gt;
 EOF&lt;br /&gt;
&lt;br /&gt;
* [[KDE4]]&lt;/div&gt;</summary>
		<author><name>161.184.43.148</name></author>
	</entry>
	<entry>
		<id>?title=KDE4/KDE_Pre-Installation_Configuration&amp;diff=13081</id>
		<title>KDE4/KDE Pre-Installation Configuration</title>
		<link rel="alternate" type="text/html" href="?title=KDE4/KDE_Pre-Installation_Configuration&amp;diff=13081"/>
		<updated>2008-02-06T04:58:49Z</updated>

		<summary type="html">&lt;p&gt;161.184.43.148: /* Non-Multilib */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;To prevent KDE4 from killing KDE3 we only talk about installing into /opt. This will be changed once KDE4 has been tested and more accepted.&lt;br /&gt;
We use a hard link to /opt/kde4 to prevent /opt/KDE from being removed and causeing KDE3 to fail.&lt;br /&gt;
&lt;br /&gt;
If you&#039;re using the [[Bash Startup Files]] then run the commands below. Otherwise make sure that the values you want are properly set.&lt;br /&gt;
&lt;br /&gt;
== Installing KDE into /opt ==&lt;br /&gt;
&lt;br /&gt;
Create the &#039;&#039;&#039;/opt/kde4&#039;&#039;&#039; directory:&lt;br /&gt;
&lt;br /&gt;
 install -dv -m755 /opt/kde4&lt;br /&gt;
&lt;br /&gt;
Create the KDE4 tmp dir. This will prolly need to be run once for each user that want access to KDE4.&lt;br /&gt;
&lt;br /&gt;
 install -dv -m1777 /tmp/{$USER}-kde4&lt;br /&gt;
&lt;br /&gt;
=== Non-Multilib ===&lt;br /&gt;
&lt;br /&gt;
Create an addition to the [[Bash Startup Files]]:&lt;br /&gt;
&lt;br /&gt;
 cat &amp;gt; /etc/profile.d/30-kde4.sh &amp;lt;&amp;lt; &amp;quot;EOF&amp;quot;&lt;br /&gt;
 # Begin /etc/profile.d/30-kde4.sh&lt;br /&gt;
 &lt;br /&gt;
 export KDEDIR=/opt/kde4&lt;br /&gt;
 export KDEDIRS=$KDEDIR&lt;br /&gt;
 export KDETMP=/tmp/$USER-kde4&lt;br /&gt;
 export STRIGI_HOME=${KDEDIR}&lt;br /&gt;
 export QT_PLUGINS_DIR=$KDEDIR/lib/kde4/plugins:$QTDIR/lib${QT_PLUGINS_DIR+:}$QT_PLUGINS_DIR&lt;br /&gt;
 export PATH=&amp;quot;${PATH}:${KDEDIR}/bin&amp;quot;&lt;br /&gt;
 export PKG_CONFIG_PATH=&amp;quot;${PKG_CONFIG_PATH}${PKG_CONFIG_PATH+:}${KDEDIR}/lib/pkgconfig&amp;quot;&lt;br /&gt;
 export XDG_CONFIG_DIRS=&#039;${XDG_CONFIG_DIRS}:${KDEDIR}/share&lt;br /&gt;
&lt;br /&gt;
 # End /etc/profile.d/30-kde4.sh&lt;br /&gt;
 EOF&lt;br /&gt;
 source /etc/profile&lt;br /&gt;
&lt;br /&gt;
Add a new entry to /etc/ld.so.conf for the libraries that KDE is going to install:&lt;br /&gt;
&lt;br /&gt;
 cat &amp;gt;&amp;gt; /etc/ld.so.conf &amp;lt;&amp;lt; &amp;quot;EOF&amp;quot;&lt;br /&gt;
 # Begin KDE4 addition to /etc/ld.so.conf&lt;br /&gt;
 &lt;br /&gt;
 /opt/kde4/lib&lt;br /&gt;
 &lt;br /&gt;
 # End KDE addition&lt;br /&gt;
 EOF&lt;br /&gt;
&lt;br /&gt;
=== Multilib ===&lt;br /&gt;
&lt;br /&gt;
Create an addition to the [[Bash Startup Files]]:&lt;br /&gt;
&lt;br /&gt;
 cat &amp;gt; /etc/profile.d/30-kde4.sh &amp;lt;&amp;lt; &amp;quot;EOF&amp;quot;&lt;br /&gt;
 # Begin /etc/profile.d/30-kde4.sh&lt;br /&gt;
 &lt;br /&gt;
 export KDEDIR=/opt/kde4&lt;br /&gt;
 export KDEDIRS=$KDEDIR&lt;br /&gt;
 export KDETMP=/tmp/$USER-kde4&lt;br /&gt;
 export PATH=&amp;quot;${PATH}:${KDEDIR}/bin&amp;quot;&lt;br /&gt;
 export STRIGI_HOME=${KDEDIR}&lt;br /&gt;
 export QT_PLUGINS_DIR32=$KDEDIR/lib/kde4/plugins:$QTDIR/lib${QT_PLUGINS_DIR+:}$QT_PLUGINS_DIR&lt;br /&gt;
 export QT_PLUGINS_DIRN32=$KDEDIR/lib32/kde4/plugins:$QTDIR/lib32${QT_PLUGINS_DIR+:}$QT_PLUGINS_DIR&lt;br /&gt;
 export QT_PLUGINS_DIR64=$KDEDIR/lib64/kde4/plugins:$QTDIR/lib64${QT_PLUGINS_DIR+:}$QT_PLUGINS_DIR&lt;br /&gt;
 export PKG_CONFIG_PATH32=&amp;quot;${PKG_CONFIG_PATH32}${PKG_CONFIG_PATH32+:}${KDEDIR}/lib/pkgconfig&amp;quot;&lt;br /&gt;
 export PKG_CONFIG_PATHN32=&amp;quot;${PKG_CONFIG_PATHN32}${PKG_CONFIG_PATHN32+:}${KDEDIR}/lib32/pkgconfig&amp;quot;&lt;br /&gt;
 export PKG_CONFIG_PATH64=&amp;quot;${PKG_CONFIG_PATH64}${PKG_CONFIG_PATH64+:}${KDEDIR}/lib64/pkgconfig&amp;quot; &lt;br /&gt;
 &lt;br /&gt;
 # End /etc/profile.d/30-kde4.sh&lt;br /&gt;
 EOF&lt;br /&gt;
 source /etc/profile&lt;br /&gt;
&lt;br /&gt;
Add a new entry to /etc/ld.so.conf for the libraries that KDE is going to install:&lt;br /&gt;
&lt;br /&gt;
 cat &amp;gt;&amp;gt; /etc/ld.so.conf &amp;lt;&amp;lt; &amp;quot;EOF&amp;quot;&lt;br /&gt;
 # Begin KDE4 addition to /etc/ld.so.conf&lt;br /&gt;
 &lt;br /&gt;
 /opt/kde4/lib&lt;br /&gt;
 /opt/kde4/lib32&lt;br /&gt;
 /opt/kde4/lib64&lt;br /&gt;
 &lt;br /&gt;
 # End KDE addition&lt;br /&gt;
 EOF&lt;br /&gt;
&lt;br /&gt;
* [[KDE4]]&lt;/div&gt;</summary>
		<author><name>161.184.43.148</name></author>
	</entry>
</feed>