<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://cblfs.nicewhileitlasted.com/LXDE_Pre-Installation_Configuration?action=history&amp;feed=atom&amp;title=LXDE_Pre-Installation_Configuration</id>
	<title>LXDE Pre-Installation Configuration - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://cblfs.nicewhileitlasted.com/LXDE_Pre-Installation_Configuration?action=history&amp;feed=atom&amp;title=LXDE_Pre-Installation_Configuration"/>
	<link rel="alternate" type="text/html" href="?title=LXDE_Pre-Installation_Configuration&amp;action=history"/>
	<updated>2026-05-21T16:53:58Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.44.0</generator>
	<entry>
		<id>?title=LXDE_Pre-Installation_Configuration&amp;diff=18657&amp;oldid=prev</id>
		<title>Weibullguy: Created page with &#039;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.  ==Installation Strategies==  If you&#039;re com…&#039;</title>
		<link rel="alternate" type="text/html" href="?title=LXDE_Pre-Installation_Configuration&amp;diff=18657&amp;oldid=prev"/>
		<updated>2009-07-13T22:36:08Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;#039;If you&amp;#039;re using the &lt;a href=&quot;/Bash_Startup_Files&quot; title=&quot;Bash Startup Files&quot;&gt;Bash Startup Files&lt;/a&gt; then run the commands below. Otherwise make sure that the values you want are properly set.  ==Installation Strategies==  If you&amp;#039;re com…&amp;#039;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;If you&amp;#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;
==Installation Strategies==&lt;br /&gt;
&lt;br /&gt;
If you&amp;#039;re committed to LXDE as your desktop, you will likely install it in the /usr hierarchy.  If less committed, or you prefer to install LXDE in an easy to remove location, the /opt hierarchy may be more suitable.&lt;br /&gt;
&lt;br /&gt;
== Installing LXDE into /usr ==&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-lxde.sh &amp;lt;&amp;lt; &amp;quot;EOF&amp;quot;&lt;br /&gt;
 # Begin /etc/profile.d/30-lxde.sh&lt;br /&gt;
 &lt;br /&gt;
 export LXDE_PREFIX=/usr&lt;br /&gt;
 &lt;br /&gt;
 export XDG_CONFIG_DIRS=&amp;quot;${XDG_CONFIG_DIRS}${XDG_CONFIG_DIRS+:}/etc/lxde/xdg&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
 # End /etc/profile.d/30-lxde.sh&lt;br /&gt;
 EOF&lt;br /&gt;
 &lt;br /&gt;
 source /etc/profile&lt;br /&gt;
&lt;br /&gt;
== Installing LXDE into /opt ==&lt;br /&gt;
&lt;br /&gt;
Create the /opt/lxde directory:&lt;br /&gt;
&lt;br /&gt;
 install -v -m755 -d /opt/lxde&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-lxde.sh &amp;lt;&amp;lt; &amp;quot;EOF&amp;quot;&lt;br /&gt;
 # Begin /etc/profile.d/30-lxde.sh&lt;br /&gt;
 &lt;br /&gt;
 export LXDE_PREFIX=/opt/lxde&lt;br /&gt;
 &lt;br /&gt;
 if [ $EUID -eq 0 ]; then&lt;br /&gt;
   export PATH=&amp;quot;${PATH}:${LXDE_PREFIX}/sbin&amp;quot;&lt;br /&gt;
 fi&lt;br /&gt;
 export PATH=&amp;quot;${PATH}:${LXDE_PREFIX}/bin&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
 export PKG_CONFIG_PATH=&amp;quot;${PKG_CONFIG_PATH}${PKG_CONFIG_PATH+:}${LXDE_PREFIX}/lib/pkgconfig&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
 export XDG_DATA_DIRS=&amp;quot;${XDG_DATA_DIRS}${XDG_DATA_DIRS+:}${LXDE_PREFIX}/share&amp;quot;&lt;br /&gt;
 export XDG_CONFIG_DIRS=&amp;quot;${XDG_CONFIG_DIRS}${XDG_CONFIG_DIRS+:}/etc/lxde/xdg&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
 # End /etc/profile.d/30-lxde.sh&lt;br /&gt;
 EOF&lt;br /&gt;
 &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 LXDE 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 LXDE addition to /etc/ld.so.conf&lt;br /&gt;
 &lt;br /&gt;
 /opt/lxde/lib&lt;br /&gt;
 &lt;br /&gt;
 # End LXDE 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-lxde.sh &amp;lt;&amp;lt; &amp;quot;EOF&amp;quot;&lt;br /&gt;
 # Begin /etc/profile.d/30-lxde.sh&lt;br /&gt;
 &lt;br /&gt;
 export LXDE_PREFIX=/opt/lxde&lt;br /&gt;
 &lt;br /&gt;
 if [ $EUID -eq 0 ]; then&lt;br /&gt;
   export PATH=&amp;quot;${PATH}:${LXDE_PREFIX}/sbin&amp;quot;&lt;br /&gt;
 fi&lt;br /&gt;
 export PATH=&amp;quot;${PATH}:${LXDE_PREFIX}/bin&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
 export PKG_CONFIG_PATH32=&amp;quot;${PKG_CONFIG_PATH32}${PKG_CONFIG_PATH32+:}${LXDE_PREFIX}/lib/pkgconfig&amp;quot;&lt;br /&gt;
 export PKG_CONFIG_PATHN32=&amp;quot;${PKG_CONFIG_PATHN32}${PKG_CONFIG_PATHN32+:}${LXDE_PREFIX}/lib32/pkgconfig&amp;quot;&lt;br /&gt;
 export PKG_CONFIG_PATH64=&amp;quot;${PKG_CONFIG_PATH64}${PKG_CONFIG_PATH64+:}${LXDE_PREFIX}/lib64/pkgconfig&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
 export XDG_DATA_DIRS=&amp;quot;${XDG_DATA_DIRS}${XDG_DATA_DIRS+:}${LXDE_PREFIX}/share&amp;quot;&lt;br /&gt;
 export XDG_CONFIG_DIRS=&amp;quot;${XDG_CONFIG_DIRS}${XDG_CONFIG_DIRS+:}/etc/lxde/xdg&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
 # End /etc/profile.d/30-lxde.sh&lt;br /&gt;
 EOF&lt;br /&gt;
 &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 LXDE 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 LXDE addition to /etc/ld.so.conf&lt;br /&gt;
 &lt;br /&gt;
 /opt/lxde/lib&lt;br /&gt;
 /opt/lxde/lib32&lt;br /&gt;
 /opt/lxde/lib64&lt;br /&gt;
 &lt;br /&gt;
 # End LXDE addition&lt;br /&gt;
 EOF&lt;/div&gt;</summary>
		<author><name>Weibullguy</name></author>
	</entry>
</feed>