<?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=71.127.215.2</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=71.127.215.2"/>
	<link rel="alternate" type="text/html" href="https://cblfs.nicewhileitlasted.com/Special:Contributions/71.127.215.2"/>
	<updated>2026-05-21T17:42:33Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.44.0</generator>
	<entry>
		<id>?title=Bash_Startup_Files&amp;diff=4152</id>
		<title>Bash Startup Files</title>
		<link rel="alternate" type="text/html" href="?title=Bash_Startup_Files&amp;diff=4152"/>
		<updated>2006-11-18T23:14:58Z</updated>

		<summary type="html">&lt;p&gt;71.127.215.2: /* 50-prompt.sh */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== /etc/bashrc ==&lt;br /&gt;
&lt;br /&gt;
 cat &amp;gt; /etc/bashrc &amp;lt;&amp;lt; &amp;quot;EOF&amp;quot;&lt;br /&gt;
 # Begin /etc/bashrc&lt;br /&gt;
 &lt;br /&gt;
 source /etc/profile&lt;br /&gt;
 &lt;br /&gt;
 # End /etc/bashrc&lt;br /&gt;
 EOF&lt;br /&gt;
&lt;br /&gt;
== /etc/profile ==&lt;br /&gt;
&lt;br /&gt;
 cat &amp;gt; /etc/profile &amp;lt;&amp;lt; &amp;quot;EOF&amp;quot;&lt;br /&gt;
 # Begin /etc/profile&lt;br /&gt;
 # Based on the profile scripts in BLFS http://www.linuxfromscratch.org/blfs/view/svn/postlfs/profile.html&lt;br /&gt;
 &lt;br /&gt;
 for script in /etc/profile.d/*.sh&lt;br /&gt;
 do&lt;br /&gt;
   source $script&lt;br /&gt;
 done&lt;br /&gt;
 unset script&lt;br /&gt;
 &lt;br /&gt;
 # End /etc/profile.d&lt;br /&gt;
 EOF&lt;br /&gt;
&lt;br /&gt;
 install -d -m755 /etc/profile.d&lt;br /&gt;
&lt;br /&gt;
=== 05-i18n.sh ===&lt;br /&gt;
&lt;br /&gt;
 cat &amp;gt; /etc/profile.d/05-i18n.sh &amp;lt;&amp;lt; &amp;quot;EOF&amp;quot;&lt;br /&gt;
 # Begin /etc/profile.d/05-i18n.sh&lt;br /&gt;
 &lt;br /&gt;
 export LANG=[ll]_[CC].[locale]&lt;br /&gt;
 export LC_ALL=[ll]_[CC]&lt;br /&gt;
 export G_FILENAME_ENCODING=@locale&lt;br /&gt;
  &lt;br /&gt;
 # End /etc/profile.d/05-i18n.sh&lt;br /&gt;
 EOF&lt;br /&gt;
&lt;br /&gt;
=== 10-path.sh ===&lt;br /&gt;
&lt;br /&gt;
 cat &amp;gt; /etc/profile.d/10-path.sh &amp;lt;&amp;lt; &amp;quot;EOF&amp;quot;&lt;br /&gt;
 # Begin /etc/profile.d/10-path.sh&lt;br /&gt;
 &lt;br /&gt;
 if [ &amp;quot;$EUID&amp;quot; -eq 0 ]; then&lt;br /&gt;
   export PATH=&amp;quot;/sbin:/bin:/usr/sbin:/usr/bin&amp;quot;&lt;br /&gt;
   if [ -d &amp;quot;/usr/local/sbin&amp;quot; ]; then&lt;br /&gt;
     export PATH=&amp;quot;$PATH:/usr/local/sbin&amp;quot;&lt;br /&gt;
   fi&lt;br /&gt;
 else&lt;br /&gt;
   export PATH=&amp;quot;/bin:/usr/bin&amp;quot;&lt;br /&gt;
 fi&lt;br /&gt;
 &lt;br /&gt;
 if [ -d &amp;quot;/usr/local/bin&amp;quot; ]; then&lt;br /&gt;
   export PATH=&amp;quot;$PATH:/usr/local/bin&amp;quot;&lt;br /&gt;
 fi&lt;br /&gt;
 &lt;br /&gt;
 if [ -d &amp;quot;$HOME/bin&amp;quot; ]; then&lt;br /&gt;
   export PATH=&amp;quot;$HOME/bin:$PATH&amp;quot;&lt;br /&gt;
 fi&lt;br /&gt;
 &lt;br /&gt;
 # End /etc/profile.d/10-path.sh&lt;br /&gt;
 EOF&lt;br /&gt;
&lt;br /&gt;
=== 10-pkg_config_path.sh (Multilib Only) ===&lt;br /&gt;
&lt;br /&gt;
 cat &amp;gt; /etc/profile.d/10-pkg_config_path.sh &amp;lt;&amp;lt; &amp;quot;EOF&amp;quot;&lt;br /&gt;
 # Begin /etc/profile.d/10-pkg_config_path.sh&lt;br /&gt;
 &lt;br /&gt;
 export PKG_CONFIG_PATH32=&amp;quot;/usr/lib/pkgconfig&amp;quot;&lt;br /&gt;
 export PKG_CONFIG_PATHN32=&amp;quot;/usr/lib32/pkgconfig&amp;quot;&lt;br /&gt;
 export PKG_CONFIG_PATH64=&amp;quot;/usr/lib64/pkgconfig&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
 # End /etc/profile.d/10-pkg_config_path.sh&lt;br /&gt;
 EOF&lt;br /&gt;
&lt;br /&gt;
=== 10-xdg.sh ===&lt;br /&gt;
&lt;br /&gt;
 cat &amp;gt; /etc/profile.d/10-xdg.sh &amp;lt;&amp;lt; &amp;quot;EOF&amp;quot;&lt;br /&gt;
 # Begin /etc/profild.d/10-xdg.sh&lt;br /&gt;
 &lt;br /&gt;
 export XDG_DATA_DIRS=&amp;quot;/usr/share&amp;quot;&lt;br /&gt;
 export XDG_CONFIG_DIRS=&amp;quot;/usr/share&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
 # End /etc/profild.d/10-xdg.sh&lt;br /&gt;
 EOF&lt;br /&gt;
&lt;br /&gt;
=== 15-xorg.sh ===&lt;br /&gt;
&lt;br /&gt;
Change &#039;&#039;XORG_PREFIX&#039;&#039; to wherever you are going to install Xorg to. Even if you are going to install Xorg6 or XFree86 make sure that &#039;&#039;XORG_PREFIX&#039;&#039; is still set to the appropriate value.&lt;br /&gt;
&lt;br /&gt;
==== Non-Multilib 15-xorg.sh ====&lt;br /&gt;
&lt;br /&gt;
 cat &amp;gt; /etc/profile.d/15-xorg.sh &amp;lt;&amp;lt; &amp;quot;EOF&amp;quot;&lt;br /&gt;
 # Begin /etc/profile.d/15-xorg.sh&lt;br /&gt;
 &lt;br /&gt;
 export XORG_PREFIX=/usr/X11R7&lt;br /&gt;
 &lt;br /&gt;
 export PATH=&amp;quot;${PATH}:${XORG_PREFIX}/bin&amp;quot;&lt;br /&gt;
 export PKG_CONFIG_PATH=&amp;quot;${PKG_CONFIG_PATH}${PKG_CONFIG_PATH+:}${XORG_PREFIX}/lib/pkgconfig&amp;quot;&lt;br /&gt;
 export ACLOCAL=&amp;quot;aclocal -I $XORG_PREFIX/share/aclocal&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
 # End /etc/profile.d/15-xorg.sh&lt;br /&gt;
 EOF&lt;br /&gt;
&lt;br /&gt;
==== Multilib 15-xorg.sh ====&lt;br /&gt;
&lt;br /&gt;
 cat &amp;gt; /etc/profile.d/15-xorg.sh &amp;lt;&amp;lt; &amp;quot;EOF&amp;quot;&lt;br /&gt;
 # Begin /etc/profile.d/15-xorg.sh&lt;br /&gt;
 &lt;br /&gt;
 export XORG_PREFIX=/usr/X11R7&lt;br /&gt;
 &lt;br /&gt;
 export PATH=&amp;quot;${PATH}:${XORG_PREFIX}/bin&amp;quot;&lt;br /&gt;
 export PKG_CONFIG_PATH32=&amp;quot;${PKG_CONFIG_PATH32}${PKG_CONFIG_PATH32+:}${XORG_PREFIX}/lib/pkgconfig&amp;quot;&lt;br /&gt;
 export PKG_CONFIG_PATHN32=&amp;quot;${PKG_CONFIG_PATHN32}${PKG_CONFIG_PATHN32+:}${XORG_PREFIX}/lib32/pkgconfig&amp;quot;&lt;br /&gt;
 export PKG_CONFIG_PATH64=&amp;quot;${PKG_CONFIG_PATH64}${PKG_CONFIG_PATH64+:}${XORG_PREFIX}/lib64/pkgconfig&amp;quot;&lt;br /&gt;
 export ACLOCAL=&amp;quot;aclocal -I $XORG_PREFIX/share/aclocal&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
 # End /etc/profile.d/15-xorg.sh&lt;br /&gt;
 EOF&lt;br /&gt;
&lt;br /&gt;
=== 50-dircolors.sh ===&lt;br /&gt;
&lt;br /&gt;
 cat &amp;gt; /etc/profile.d/50-dircolors.sh &amp;lt;&amp;lt; &amp;quot;EOF&amp;quot;&lt;br /&gt;
 # Begin /etc/profile.d/50-dircolors.sh&lt;br /&gt;
 &lt;br /&gt;
 alias ls=&#039;ls --color=auto&#039;&lt;br /&gt;
 if [ -f &amp;quot;$HOME/.dircolors&amp;quot; ]; then&lt;br /&gt;
   eval `dircolors -b &amp;quot;$HOME/.dircolors&amp;quot;`&lt;br /&gt;
 else&lt;br /&gt;
   if [ -f &amp;quot;/etc/dircolors&amp;quot; ]; then&lt;br /&gt;
     eval `dircolors -b &amp;quot;/etc/dircolors&amp;quot;`&lt;br /&gt;
   fi&lt;br /&gt;
 fi&lt;br /&gt;
 &lt;br /&gt;
 # End /etc/profile.d/50-dircolors.sh&lt;br /&gt;
 EOF&lt;br /&gt;
&lt;br /&gt;
To create /etc/dircolors run the following command:&lt;br /&gt;
&lt;br /&gt;
 dircolors -p &amp;gt; /etc/dircolors&lt;br /&gt;
&lt;br /&gt;
=== 50-history.sh ===&lt;br /&gt;
&lt;br /&gt;
 cat &amp;gt; /etc/profile.d/50-history.sh &amp;lt;&amp;lt; &amp;quot;EOF&amp;quot;&lt;br /&gt;
 # Begin /etc/profile.d/50-history.sh&lt;br /&gt;
 &lt;br /&gt;
 export HISTSIZE=1000&lt;br /&gt;
 export HISTIGNORE=&amp;quot;&amp;amp;:[bf]g:exit&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
 # End /etc/profile.d/50-history.sh&lt;br /&gt;
 EOF&lt;br /&gt;
&lt;br /&gt;
=== 50-prompt.sh ===&lt;br /&gt;
&lt;br /&gt;
 cat &amp;gt; /etc/profile.d/50-prompt.sh &amp;lt;&amp;lt; &amp;quot;EOF&amp;quot;&lt;br /&gt;
 # Begin /etc/profile.d/50-prompt.sh&lt;br /&gt;
 &lt;br /&gt;
 export PS1=&amp;quot;\u:\w\$ &amp;quot;&lt;br /&gt;
 if [ &amp;quot;${TERM:0:5}&amp;quot; = &amp;quot;xterm&amp;quot; ]; then&lt;br /&gt;
   export PS1=&amp;quot;\[\e]2;\u@\H :: \w\a\]$PS1&amp;quot;&lt;br /&gt;
 fi&lt;br /&gt;
 &lt;br /&gt;
 shopt -s checkwinsize&lt;br /&gt;
 &lt;br /&gt;
 # End /etc/profile.d/50-prompt.sh&lt;br /&gt;
 EOF&lt;br /&gt;
&lt;br /&gt;
If you&#039;re after a colorful PS1 try using &#039;&#039;&#039;&amp;lt;nowiki&amp;gt;\[\e[1;32m\]\u\[\e[1;33m\]@\[\e[1;31m\]\H \[\e[1;34m\]\w \[\e[1;32m\]\$ \[\e[0;0m\]&amp;lt;/nowiki&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;checkwinsize&#039;&#039;&#039; forces bash to check the size of the window at the end of each command. This is useful if you resized your terminal while a command was running.&lt;br /&gt;
&lt;br /&gt;
=== 50-readline.sh ===&lt;br /&gt;
&lt;br /&gt;
 cat &amp;gt; /etc/profile.d/50-readline.sh &amp;lt;&amp;lt; &amp;quot;EOF&amp;quot;&lt;br /&gt;
 # Begin /etc/profile.d/50-readline.sh&lt;br /&gt;
 &lt;br /&gt;
 if [ -z &amp;quot;$INPUTRC&amp;quot; ]; then&lt;br /&gt;
   if [ -f &amp;quot;$HOME/.inputrc&amp;quot; ]; then&lt;br /&gt;
     export INPUTRC=&amp;quot;$HOME/.inputrc&amp;quot;&lt;br /&gt;
   else&lt;br /&gt;
     if [ -f &amp;quot;/etc/inputrc&amp;quot; ]; then&lt;br /&gt;
       export INPUTRC=&amp;quot;/etc/inputrc&amp;quot;&lt;br /&gt;
     fi&lt;br /&gt;
   fi&lt;br /&gt;
 fi&lt;br /&gt;
 &lt;br /&gt;
 # End /etc/profile.d/50-readline.sh&lt;br /&gt;
 EOF&lt;br /&gt;
&lt;br /&gt;
=== 50-umask.sh ===&lt;br /&gt;
&lt;br /&gt;
 cat &amp;gt; /etc/profile.d/50-umask.sh &amp;lt;&amp;lt; &amp;quot;EOF&amp;quot;&lt;br /&gt;
 # Begin /etc/profile.d/50-umask.sh&lt;br /&gt;
 &lt;br /&gt;
 if [ &amp;quot;`id -un`&amp;quot; = &amp;quot;`id -gn`&amp;quot; -a $EUID -gt 99 ]; then&lt;br /&gt;
   umask 002&lt;br /&gt;
 else&lt;br /&gt;
   umask 022&lt;br /&gt;
 fi&lt;br /&gt;
 &lt;br /&gt;
 # End /etc/profile.d/50-umask.sh&lt;br /&gt;
 EOF&lt;br /&gt;
&lt;br /&gt;
=== 50-multilib.sh (For Multilib Only) ===&lt;br /&gt;
&lt;br /&gt;
==== Non-Mips ====&lt;br /&gt;
&lt;br /&gt;
 cat &amp;gt; /etc/profile.d/50-multilib.sh &amp;lt;&amp;lt; &amp;quot;EOF&amp;quot;&lt;br /&gt;
 # Begin /etc/profile.d/50-multilib.sh&lt;br /&gt;
 &lt;br /&gt;
 export BUILD32=&amp;quot;-m32&amp;quot;&lt;br /&gt;
 export BUILD64=&amp;quot;-m64&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
 export LD_BUILD32=&amp;quot;-m elf_i386&amp;quot;&lt;br /&gt;
 export LD_BUILD64=&amp;quot;-m elf_x86_64&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
 # End /etc/profile.d/50-multilib.sh&lt;br /&gt;
 EOF&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Adjust elf_i386 and elf_x86_64 accordingly for your architecture. If you&#039;re unsure what to set the value to see the output of:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 ld --help | grep emulations&lt;br /&gt;
&lt;br /&gt;
==== Mips ====&lt;br /&gt;
&lt;br /&gt;
 cat &amp;gt; /etc/profile.d/50-multilib.sh &amp;lt;&amp;lt; &amp;quot;EOF&amp;quot;&lt;br /&gt;
 # Begin /etc/profile.d/50-multilib.sh&lt;br /&gt;
 &lt;br /&gt;
 export BUILD32=&amp;quot;-mabi=32&amp;quot;&lt;br /&gt;
 export BUILDN32=&amp;quot;-mabi=n32&amp;quot;&lt;br /&gt;
 export BUILD64=&amp;quot;-mabi=64&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
 export LD_BUILD32=&amp;quot;&amp;quot;&lt;br /&gt;
 export LD_BUILDN32=&amp;quot;&amp;quot;&lt;br /&gt;
 export LD_BUILD64=&amp;quot;&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
 # End /etc/profile.d/50-multilib.sh&lt;br /&gt;
 EOF&lt;/div&gt;</summary>
		<author><name>71.127.215.2</name></author>
	</entry>
	<entry>
		<id>?title=Bash_Startup_Files&amp;diff=4151</id>
		<title>Bash Startup Files</title>
		<link rel="alternate" type="text/html" href="?title=Bash_Startup_Files&amp;diff=4151"/>
		<updated>2006-11-18T23:12:48Z</updated>

		<summary type="html">&lt;p&gt;71.127.215.2: /* /etc/bashrc */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== /etc/bashrc ==&lt;br /&gt;
&lt;br /&gt;
 cat &amp;gt; /etc/bashrc &amp;lt;&amp;lt; &amp;quot;EOF&amp;quot;&lt;br /&gt;
 # Begin /etc/bashrc&lt;br /&gt;
 &lt;br /&gt;
 source /etc/profile&lt;br /&gt;
 &lt;br /&gt;
 # End /etc/bashrc&lt;br /&gt;
 EOF&lt;br /&gt;
&lt;br /&gt;
== /etc/profile ==&lt;br /&gt;
&lt;br /&gt;
 cat &amp;gt; /etc/profile &amp;lt;&amp;lt; &amp;quot;EOF&amp;quot;&lt;br /&gt;
 # Begin /etc/profile&lt;br /&gt;
 # Based on the profile scripts in BLFS http://www.linuxfromscratch.org/blfs/view/svn/postlfs/profile.html&lt;br /&gt;
 &lt;br /&gt;
 for script in /etc/profile.d/*.sh&lt;br /&gt;
 do&lt;br /&gt;
   source $script&lt;br /&gt;
 done&lt;br /&gt;
 unset script&lt;br /&gt;
 &lt;br /&gt;
 # End /etc/profile.d&lt;br /&gt;
 EOF&lt;br /&gt;
&lt;br /&gt;
 install -d -m755 /etc/profile.d&lt;br /&gt;
&lt;br /&gt;
=== 05-i18n.sh ===&lt;br /&gt;
&lt;br /&gt;
 cat &amp;gt; /etc/profile.d/05-i18n.sh &amp;lt;&amp;lt; &amp;quot;EOF&amp;quot;&lt;br /&gt;
 # Begin /etc/profile.d/05-i18n.sh&lt;br /&gt;
 &lt;br /&gt;
 export LANG=[ll]_[CC].[locale]&lt;br /&gt;
 export LC_ALL=[ll]_[CC]&lt;br /&gt;
 export G_FILENAME_ENCODING=@locale&lt;br /&gt;
  &lt;br /&gt;
 # End /etc/profile.d/05-i18n.sh&lt;br /&gt;
 EOF&lt;br /&gt;
&lt;br /&gt;
=== 10-path.sh ===&lt;br /&gt;
&lt;br /&gt;
 cat &amp;gt; /etc/profile.d/10-path.sh &amp;lt;&amp;lt; &amp;quot;EOF&amp;quot;&lt;br /&gt;
 # Begin /etc/profile.d/10-path.sh&lt;br /&gt;
 &lt;br /&gt;
 if [ &amp;quot;$EUID&amp;quot; -eq 0 ]; then&lt;br /&gt;
   export PATH=&amp;quot;/sbin:/bin:/usr/sbin:/usr/bin&amp;quot;&lt;br /&gt;
   if [ -d &amp;quot;/usr/local/sbin&amp;quot; ]; then&lt;br /&gt;
     export PATH=&amp;quot;$PATH:/usr/local/sbin&amp;quot;&lt;br /&gt;
   fi&lt;br /&gt;
 else&lt;br /&gt;
   export PATH=&amp;quot;/bin:/usr/bin&amp;quot;&lt;br /&gt;
 fi&lt;br /&gt;
 &lt;br /&gt;
 if [ -d &amp;quot;/usr/local/bin&amp;quot; ]; then&lt;br /&gt;
   export PATH=&amp;quot;$PATH:/usr/local/bin&amp;quot;&lt;br /&gt;
 fi&lt;br /&gt;
 &lt;br /&gt;
 if [ -d &amp;quot;$HOME/bin&amp;quot; ]; then&lt;br /&gt;
   export PATH=&amp;quot;$HOME/bin:$PATH&amp;quot;&lt;br /&gt;
 fi&lt;br /&gt;
 &lt;br /&gt;
 # End /etc/profile.d/10-path.sh&lt;br /&gt;
 EOF&lt;br /&gt;
&lt;br /&gt;
=== 10-pkg_config_path.sh (Multilib Only) ===&lt;br /&gt;
&lt;br /&gt;
 cat &amp;gt; /etc/profile.d/10-pkg_config_path.sh &amp;lt;&amp;lt; &amp;quot;EOF&amp;quot;&lt;br /&gt;
 # Begin /etc/profile.d/10-pkg_config_path.sh&lt;br /&gt;
 &lt;br /&gt;
 export PKG_CONFIG_PATH32=&amp;quot;/usr/lib/pkgconfig&amp;quot;&lt;br /&gt;
 export PKG_CONFIG_PATHN32=&amp;quot;/usr/lib32/pkgconfig&amp;quot;&lt;br /&gt;
 export PKG_CONFIG_PATH64=&amp;quot;/usr/lib64/pkgconfig&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
 # End /etc/profile.d/10-pkg_config_path.sh&lt;br /&gt;
 EOF&lt;br /&gt;
&lt;br /&gt;
=== 10-xdg.sh ===&lt;br /&gt;
&lt;br /&gt;
 cat &amp;gt; /etc/profile.d/10-xdg.sh &amp;lt;&amp;lt; &amp;quot;EOF&amp;quot;&lt;br /&gt;
 # Begin /etc/profild.d/10-xdg.sh&lt;br /&gt;
 &lt;br /&gt;
 export XDG_DATA_DIRS=&amp;quot;/usr/share&amp;quot;&lt;br /&gt;
 export XDG_CONFIG_DIRS=&amp;quot;/usr/share&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
 # End /etc/profild.d/10-xdg.sh&lt;br /&gt;
 EOF&lt;br /&gt;
&lt;br /&gt;
=== 15-xorg.sh ===&lt;br /&gt;
&lt;br /&gt;
Change &#039;&#039;XORG_PREFIX&#039;&#039; to wherever you are going to install Xorg to. Even if you are going to install Xorg6 or XFree86 make sure that &#039;&#039;XORG_PREFIX&#039;&#039; is still set to the appropriate value.&lt;br /&gt;
&lt;br /&gt;
==== Non-Multilib 15-xorg.sh ====&lt;br /&gt;
&lt;br /&gt;
 cat &amp;gt; /etc/profile.d/15-xorg.sh &amp;lt;&amp;lt; &amp;quot;EOF&amp;quot;&lt;br /&gt;
 # Begin /etc/profile.d/15-xorg.sh&lt;br /&gt;
 &lt;br /&gt;
 export XORG_PREFIX=/usr/X11R7&lt;br /&gt;
 &lt;br /&gt;
 export PATH=&amp;quot;${PATH}:${XORG_PREFIX}/bin&amp;quot;&lt;br /&gt;
 export PKG_CONFIG_PATH=&amp;quot;${PKG_CONFIG_PATH}${PKG_CONFIG_PATH+:}${XORG_PREFIX}/lib/pkgconfig&amp;quot;&lt;br /&gt;
 export ACLOCAL=&amp;quot;aclocal -I $XORG_PREFIX/share/aclocal&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
 # End /etc/profile.d/15-xorg.sh&lt;br /&gt;
 EOF&lt;br /&gt;
&lt;br /&gt;
==== Multilib 15-xorg.sh ====&lt;br /&gt;
&lt;br /&gt;
 cat &amp;gt; /etc/profile.d/15-xorg.sh &amp;lt;&amp;lt; &amp;quot;EOF&amp;quot;&lt;br /&gt;
 # Begin /etc/profile.d/15-xorg.sh&lt;br /&gt;
 &lt;br /&gt;
 export XORG_PREFIX=/usr/X11R7&lt;br /&gt;
 &lt;br /&gt;
 export PATH=&amp;quot;${PATH}:${XORG_PREFIX}/bin&amp;quot;&lt;br /&gt;
 export PKG_CONFIG_PATH32=&amp;quot;${PKG_CONFIG_PATH32}${PKG_CONFIG_PATH32+:}${XORG_PREFIX}/lib/pkgconfig&amp;quot;&lt;br /&gt;
 export PKG_CONFIG_PATHN32=&amp;quot;${PKG_CONFIG_PATHN32}${PKG_CONFIG_PATHN32+:}${XORG_PREFIX}/lib32/pkgconfig&amp;quot;&lt;br /&gt;
 export PKG_CONFIG_PATH64=&amp;quot;${PKG_CONFIG_PATH64}${PKG_CONFIG_PATH64+:}${XORG_PREFIX}/lib64/pkgconfig&amp;quot;&lt;br /&gt;
 export ACLOCAL=&amp;quot;aclocal -I $XORG_PREFIX/share/aclocal&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
 # End /etc/profile.d/15-xorg.sh&lt;br /&gt;
 EOF&lt;br /&gt;
&lt;br /&gt;
=== 50-dircolors.sh ===&lt;br /&gt;
&lt;br /&gt;
 cat &amp;gt; /etc/profile.d/50-dircolors.sh &amp;lt;&amp;lt; &amp;quot;EOF&amp;quot;&lt;br /&gt;
 # Begin /etc/profile.d/50-dircolors.sh&lt;br /&gt;
 &lt;br /&gt;
 alias ls=&#039;ls --color=auto&#039;&lt;br /&gt;
 if [ -f &amp;quot;$HOME/.dircolors&amp;quot; ]; then&lt;br /&gt;
   eval `dircolors -b &amp;quot;$HOME/.dircolors&amp;quot;`&lt;br /&gt;
 else&lt;br /&gt;
   if [ -f &amp;quot;/etc/dircolors&amp;quot; ]; then&lt;br /&gt;
     eval `dircolors -b &amp;quot;/etc/dircolors&amp;quot;`&lt;br /&gt;
   fi&lt;br /&gt;
 fi&lt;br /&gt;
 &lt;br /&gt;
 # End /etc/profile.d/50-dircolors.sh&lt;br /&gt;
 EOF&lt;br /&gt;
&lt;br /&gt;
To create /etc/dircolors run the following command:&lt;br /&gt;
&lt;br /&gt;
 dircolors -p &amp;gt; /etc/dircolors&lt;br /&gt;
&lt;br /&gt;
=== 50-history.sh ===&lt;br /&gt;
&lt;br /&gt;
 cat &amp;gt; /etc/profile.d/50-history.sh &amp;lt;&amp;lt; &amp;quot;EOF&amp;quot;&lt;br /&gt;
 # Begin /etc/profile.d/50-history.sh&lt;br /&gt;
 &lt;br /&gt;
 export HISTSIZE=1000&lt;br /&gt;
 export HISTIGNORE=&amp;quot;&amp;amp;:[bf]g:exit&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
 # End /etc/profile.d/50-history.sh&lt;br /&gt;
 EOF&lt;br /&gt;
&lt;br /&gt;
=== 50-prompt.sh ===&lt;br /&gt;
&lt;br /&gt;
 cat &amp;gt; /etc/profile.d/50-prompt.sh &amp;lt;&amp;lt; &amp;quot;EOF&amp;quot;&lt;br /&gt;
 # Begin /etc/profile.d/50-prompt.sh&lt;br /&gt;
 &lt;br /&gt;
 export PS1=&amp;quot;\u:\w\$ &amp;quot;&lt;br /&gt;
 if [ &amp;quot;${TERM:0:5}&amp;quot; = &amp;quot;xterm&amp;quot; ]; then&lt;br /&gt;
   export PS1=&amp;quot;\[\e]2;\u@\H :: \w\a\]$PS1&amp;quot;&lt;br /&gt;
 fi&lt;br /&gt;
 &lt;br /&gt;
 # End /etc/profile.d/50-prompt.sh&lt;br /&gt;
 EOF&lt;br /&gt;
&lt;br /&gt;
If you&#039;re after a colorful PS1 try using &#039;&#039;&#039;&amp;lt;nowiki&amp;gt;\[\e[1;32m\]\u\[\e[1;33m\]@\[\e[1;31m\]\H \[\e[1;34m\]\w \[\e[1;32m\]\$ \[\e[0;0m\]&amp;lt;/nowiki&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=== 50-readline.sh ===&lt;br /&gt;
&lt;br /&gt;
 cat &amp;gt; /etc/profile.d/50-readline.sh &amp;lt;&amp;lt; &amp;quot;EOF&amp;quot;&lt;br /&gt;
 # Begin /etc/profile.d/50-readline.sh&lt;br /&gt;
 &lt;br /&gt;
 if [ -z &amp;quot;$INPUTRC&amp;quot; ]; then&lt;br /&gt;
   if [ -f &amp;quot;$HOME/.inputrc&amp;quot; ]; then&lt;br /&gt;
     export INPUTRC=&amp;quot;$HOME/.inputrc&amp;quot;&lt;br /&gt;
   else&lt;br /&gt;
     if [ -f &amp;quot;/etc/inputrc&amp;quot; ]; then&lt;br /&gt;
       export INPUTRC=&amp;quot;/etc/inputrc&amp;quot;&lt;br /&gt;
     fi&lt;br /&gt;
   fi&lt;br /&gt;
 fi&lt;br /&gt;
 &lt;br /&gt;
 # End /etc/profile.d/50-readline.sh&lt;br /&gt;
 EOF&lt;br /&gt;
&lt;br /&gt;
=== 50-umask.sh ===&lt;br /&gt;
&lt;br /&gt;
 cat &amp;gt; /etc/profile.d/50-umask.sh &amp;lt;&amp;lt; &amp;quot;EOF&amp;quot;&lt;br /&gt;
 # Begin /etc/profile.d/50-umask.sh&lt;br /&gt;
 &lt;br /&gt;
 if [ &amp;quot;`id -un`&amp;quot; = &amp;quot;`id -gn`&amp;quot; -a $EUID -gt 99 ]; then&lt;br /&gt;
   umask 002&lt;br /&gt;
 else&lt;br /&gt;
   umask 022&lt;br /&gt;
 fi&lt;br /&gt;
 &lt;br /&gt;
 # End /etc/profile.d/50-umask.sh&lt;br /&gt;
 EOF&lt;br /&gt;
&lt;br /&gt;
=== 50-multilib.sh (For Multilib Only) ===&lt;br /&gt;
&lt;br /&gt;
==== Non-Mips ====&lt;br /&gt;
&lt;br /&gt;
 cat &amp;gt; /etc/profile.d/50-multilib.sh &amp;lt;&amp;lt; &amp;quot;EOF&amp;quot;&lt;br /&gt;
 # Begin /etc/profile.d/50-multilib.sh&lt;br /&gt;
 &lt;br /&gt;
 export BUILD32=&amp;quot;-m32&amp;quot;&lt;br /&gt;
 export BUILD64=&amp;quot;-m64&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
 export LD_BUILD32=&amp;quot;-m elf_i386&amp;quot;&lt;br /&gt;
 export LD_BUILD64=&amp;quot;-m elf_x86_64&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
 # End /etc/profile.d/50-multilib.sh&lt;br /&gt;
 EOF&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Adjust elf_i386 and elf_x86_64 accordingly for your architecture. If you&#039;re unsure what to set the value to see the output of:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 ld --help | grep emulations&lt;br /&gt;
&lt;br /&gt;
==== Mips ====&lt;br /&gt;
&lt;br /&gt;
 cat &amp;gt; /etc/profile.d/50-multilib.sh &amp;lt;&amp;lt; &amp;quot;EOF&amp;quot;&lt;br /&gt;
 # Begin /etc/profile.d/50-multilib.sh&lt;br /&gt;
 &lt;br /&gt;
 export BUILD32=&amp;quot;-mabi=32&amp;quot;&lt;br /&gt;
 export BUILDN32=&amp;quot;-mabi=n32&amp;quot;&lt;br /&gt;
 export BUILD64=&amp;quot;-mabi=64&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
 export LD_BUILD32=&amp;quot;&amp;quot;&lt;br /&gt;
 export LD_BUILDN32=&amp;quot;&amp;quot;&lt;br /&gt;
 export LD_BUILD64=&amp;quot;&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
 # End /etc/profile.d/50-multilib.sh&lt;br /&gt;
 EOF&lt;/div&gt;</summary>
		<author><name>71.127.215.2</name></author>
	</entry>
	<entry>
		<id>?title=Bash_Startup_Files&amp;diff=4150</id>
		<title>Bash Startup Files</title>
		<link rel="alternate" type="text/html" href="?title=Bash_Startup_Files&amp;diff=4150"/>
		<updated>2006-11-18T23:12:31Z</updated>

		<summary type="html">&lt;p&gt;71.127.215.2: /* /etc/bashrc */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== /etc/bashrc ==&lt;br /&gt;
&lt;br /&gt;
 cat &amp;gt; /etc/bashrc &amp;lt;&amp;lt; &amp;quot;EOF&amp;quot;&lt;br /&gt;
 # Begin /etc/bashrc&lt;br /&gt;
&lt;br /&gt;
 source /etc/profile&lt;br /&gt;
 &lt;br /&gt;
 # End /etc/bashrc&lt;br /&gt;
 EOF&lt;br /&gt;
&lt;br /&gt;
== /etc/profile ==&lt;br /&gt;
&lt;br /&gt;
 cat &amp;gt; /etc/profile &amp;lt;&amp;lt; &amp;quot;EOF&amp;quot;&lt;br /&gt;
 # Begin /etc/profile&lt;br /&gt;
 # Based on the profile scripts in BLFS http://www.linuxfromscratch.org/blfs/view/svn/postlfs/profile.html&lt;br /&gt;
 &lt;br /&gt;
 for script in /etc/profile.d/*.sh&lt;br /&gt;
 do&lt;br /&gt;
   source $script&lt;br /&gt;
 done&lt;br /&gt;
 unset script&lt;br /&gt;
 &lt;br /&gt;
 # End /etc/profile.d&lt;br /&gt;
 EOF&lt;br /&gt;
&lt;br /&gt;
 install -d -m755 /etc/profile.d&lt;br /&gt;
&lt;br /&gt;
=== 05-i18n.sh ===&lt;br /&gt;
&lt;br /&gt;
 cat &amp;gt; /etc/profile.d/05-i18n.sh &amp;lt;&amp;lt; &amp;quot;EOF&amp;quot;&lt;br /&gt;
 # Begin /etc/profile.d/05-i18n.sh&lt;br /&gt;
 &lt;br /&gt;
 export LANG=[ll]_[CC].[locale]&lt;br /&gt;
 export LC_ALL=[ll]_[CC]&lt;br /&gt;
 export G_FILENAME_ENCODING=@locale&lt;br /&gt;
  &lt;br /&gt;
 # End /etc/profile.d/05-i18n.sh&lt;br /&gt;
 EOF&lt;br /&gt;
&lt;br /&gt;
=== 10-path.sh ===&lt;br /&gt;
&lt;br /&gt;
 cat &amp;gt; /etc/profile.d/10-path.sh &amp;lt;&amp;lt; &amp;quot;EOF&amp;quot;&lt;br /&gt;
 # Begin /etc/profile.d/10-path.sh&lt;br /&gt;
 &lt;br /&gt;
 if [ &amp;quot;$EUID&amp;quot; -eq 0 ]; then&lt;br /&gt;
   export PATH=&amp;quot;/sbin:/bin:/usr/sbin:/usr/bin&amp;quot;&lt;br /&gt;
   if [ -d &amp;quot;/usr/local/sbin&amp;quot; ]; then&lt;br /&gt;
     export PATH=&amp;quot;$PATH:/usr/local/sbin&amp;quot;&lt;br /&gt;
   fi&lt;br /&gt;
 else&lt;br /&gt;
   export PATH=&amp;quot;/bin:/usr/bin&amp;quot;&lt;br /&gt;
 fi&lt;br /&gt;
 &lt;br /&gt;
 if [ -d &amp;quot;/usr/local/bin&amp;quot; ]; then&lt;br /&gt;
   export PATH=&amp;quot;$PATH:/usr/local/bin&amp;quot;&lt;br /&gt;
 fi&lt;br /&gt;
 &lt;br /&gt;
 if [ -d &amp;quot;$HOME/bin&amp;quot; ]; then&lt;br /&gt;
   export PATH=&amp;quot;$HOME/bin:$PATH&amp;quot;&lt;br /&gt;
 fi&lt;br /&gt;
 &lt;br /&gt;
 # End /etc/profile.d/10-path.sh&lt;br /&gt;
 EOF&lt;br /&gt;
&lt;br /&gt;
=== 10-pkg_config_path.sh (Multilib Only) ===&lt;br /&gt;
&lt;br /&gt;
 cat &amp;gt; /etc/profile.d/10-pkg_config_path.sh &amp;lt;&amp;lt; &amp;quot;EOF&amp;quot;&lt;br /&gt;
 # Begin /etc/profile.d/10-pkg_config_path.sh&lt;br /&gt;
 &lt;br /&gt;
 export PKG_CONFIG_PATH32=&amp;quot;/usr/lib/pkgconfig&amp;quot;&lt;br /&gt;
 export PKG_CONFIG_PATHN32=&amp;quot;/usr/lib32/pkgconfig&amp;quot;&lt;br /&gt;
 export PKG_CONFIG_PATH64=&amp;quot;/usr/lib64/pkgconfig&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
 # End /etc/profile.d/10-pkg_config_path.sh&lt;br /&gt;
 EOF&lt;br /&gt;
&lt;br /&gt;
=== 10-xdg.sh ===&lt;br /&gt;
&lt;br /&gt;
 cat &amp;gt; /etc/profile.d/10-xdg.sh &amp;lt;&amp;lt; &amp;quot;EOF&amp;quot;&lt;br /&gt;
 # Begin /etc/profild.d/10-xdg.sh&lt;br /&gt;
 &lt;br /&gt;
 export XDG_DATA_DIRS=&amp;quot;/usr/share&amp;quot;&lt;br /&gt;
 export XDG_CONFIG_DIRS=&amp;quot;/usr/share&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
 # End /etc/profild.d/10-xdg.sh&lt;br /&gt;
 EOF&lt;br /&gt;
&lt;br /&gt;
=== 15-xorg.sh ===&lt;br /&gt;
&lt;br /&gt;
Change &#039;&#039;XORG_PREFIX&#039;&#039; to wherever you are going to install Xorg to. Even if you are going to install Xorg6 or XFree86 make sure that &#039;&#039;XORG_PREFIX&#039;&#039; is still set to the appropriate value.&lt;br /&gt;
&lt;br /&gt;
==== Non-Multilib 15-xorg.sh ====&lt;br /&gt;
&lt;br /&gt;
 cat &amp;gt; /etc/profile.d/15-xorg.sh &amp;lt;&amp;lt; &amp;quot;EOF&amp;quot;&lt;br /&gt;
 # Begin /etc/profile.d/15-xorg.sh&lt;br /&gt;
 &lt;br /&gt;
 export XORG_PREFIX=/usr/X11R7&lt;br /&gt;
 &lt;br /&gt;
 export PATH=&amp;quot;${PATH}:${XORG_PREFIX}/bin&amp;quot;&lt;br /&gt;
 export PKG_CONFIG_PATH=&amp;quot;${PKG_CONFIG_PATH}${PKG_CONFIG_PATH+:}${XORG_PREFIX}/lib/pkgconfig&amp;quot;&lt;br /&gt;
 export ACLOCAL=&amp;quot;aclocal -I $XORG_PREFIX/share/aclocal&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
 # End /etc/profile.d/15-xorg.sh&lt;br /&gt;
 EOF&lt;br /&gt;
&lt;br /&gt;
==== Multilib 15-xorg.sh ====&lt;br /&gt;
&lt;br /&gt;
 cat &amp;gt; /etc/profile.d/15-xorg.sh &amp;lt;&amp;lt; &amp;quot;EOF&amp;quot;&lt;br /&gt;
 # Begin /etc/profile.d/15-xorg.sh&lt;br /&gt;
 &lt;br /&gt;
 export XORG_PREFIX=/usr/X11R7&lt;br /&gt;
 &lt;br /&gt;
 export PATH=&amp;quot;${PATH}:${XORG_PREFIX}/bin&amp;quot;&lt;br /&gt;
 export PKG_CONFIG_PATH32=&amp;quot;${PKG_CONFIG_PATH32}${PKG_CONFIG_PATH32+:}${XORG_PREFIX}/lib/pkgconfig&amp;quot;&lt;br /&gt;
 export PKG_CONFIG_PATHN32=&amp;quot;${PKG_CONFIG_PATHN32}${PKG_CONFIG_PATHN32+:}${XORG_PREFIX}/lib32/pkgconfig&amp;quot;&lt;br /&gt;
 export PKG_CONFIG_PATH64=&amp;quot;${PKG_CONFIG_PATH64}${PKG_CONFIG_PATH64+:}${XORG_PREFIX}/lib64/pkgconfig&amp;quot;&lt;br /&gt;
 export ACLOCAL=&amp;quot;aclocal -I $XORG_PREFIX/share/aclocal&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
 # End /etc/profile.d/15-xorg.sh&lt;br /&gt;
 EOF&lt;br /&gt;
&lt;br /&gt;
=== 50-dircolors.sh ===&lt;br /&gt;
&lt;br /&gt;
 cat &amp;gt; /etc/profile.d/50-dircolors.sh &amp;lt;&amp;lt; &amp;quot;EOF&amp;quot;&lt;br /&gt;
 # Begin /etc/profile.d/50-dircolors.sh&lt;br /&gt;
 &lt;br /&gt;
 alias ls=&#039;ls --color=auto&#039;&lt;br /&gt;
 if [ -f &amp;quot;$HOME/.dircolors&amp;quot; ]; then&lt;br /&gt;
   eval `dircolors -b &amp;quot;$HOME/.dircolors&amp;quot;`&lt;br /&gt;
 else&lt;br /&gt;
   if [ -f &amp;quot;/etc/dircolors&amp;quot; ]; then&lt;br /&gt;
     eval `dircolors -b &amp;quot;/etc/dircolors&amp;quot;`&lt;br /&gt;
   fi&lt;br /&gt;
 fi&lt;br /&gt;
 &lt;br /&gt;
 # End /etc/profile.d/50-dircolors.sh&lt;br /&gt;
 EOF&lt;br /&gt;
&lt;br /&gt;
To create /etc/dircolors run the following command:&lt;br /&gt;
&lt;br /&gt;
 dircolors -p &amp;gt; /etc/dircolors&lt;br /&gt;
&lt;br /&gt;
=== 50-history.sh ===&lt;br /&gt;
&lt;br /&gt;
 cat &amp;gt; /etc/profile.d/50-history.sh &amp;lt;&amp;lt; &amp;quot;EOF&amp;quot;&lt;br /&gt;
 # Begin /etc/profile.d/50-history.sh&lt;br /&gt;
 &lt;br /&gt;
 export HISTSIZE=1000&lt;br /&gt;
 export HISTIGNORE=&amp;quot;&amp;amp;:[bf]g:exit&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
 # End /etc/profile.d/50-history.sh&lt;br /&gt;
 EOF&lt;br /&gt;
&lt;br /&gt;
=== 50-prompt.sh ===&lt;br /&gt;
&lt;br /&gt;
 cat &amp;gt; /etc/profile.d/50-prompt.sh &amp;lt;&amp;lt; &amp;quot;EOF&amp;quot;&lt;br /&gt;
 # Begin /etc/profile.d/50-prompt.sh&lt;br /&gt;
 &lt;br /&gt;
 export PS1=&amp;quot;\u:\w\$ &amp;quot;&lt;br /&gt;
 if [ &amp;quot;${TERM:0:5}&amp;quot; = &amp;quot;xterm&amp;quot; ]; then&lt;br /&gt;
   export PS1=&amp;quot;\[\e]2;\u@\H :: \w\a\]$PS1&amp;quot;&lt;br /&gt;
 fi&lt;br /&gt;
 &lt;br /&gt;
 # End /etc/profile.d/50-prompt.sh&lt;br /&gt;
 EOF&lt;br /&gt;
&lt;br /&gt;
If you&#039;re after a colorful PS1 try using &#039;&#039;&#039;&amp;lt;nowiki&amp;gt;\[\e[1;32m\]\u\[\e[1;33m\]@\[\e[1;31m\]\H \[\e[1;34m\]\w \[\e[1;32m\]\$ \[\e[0;0m\]&amp;lt;/nowiki&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=== 50-readline.sh ===&lt;br /&gt;
&lt;br /&gt;
 cat &amp;gt; /etc/profile.d/50-readline.sh &amp;lt;&amp;lt; &amp;quot;EOF&amp;quot;&lt;br /&gt;
 # Begin /etc/profile.d/50-readline.sh&lt;br /&gt;
 &lt;br /&gt;
 if [ -z &amp;quot;$INPUTRC&amp;quot; ]; then&lt;br /&gt;
   if [ -f &amp;quot;$HOME/.inputrc&amp;quot; ]; then&lt;br /&gt;
     export INPUTRC=&amp;quot;$HOME/.inputrc&amp;quot;&lt;br /&gt;
   else&lt;br /&gt;
     if [ -f &amp;quot;/etc/inputrc&amp;quot; ]; then&lt;br /&gt;
       export INPUTRC=&amp;quot;/etc/inputrc&amp;quot;&lt;br /&gt;
     fi&lt;br /&gt;
   fi&lt;br /&gt;
 fi&lt;br /&gt;
 &lt;br /&gt;
 # End /etc/profile.d/50-readline.sh&lt;br /&gt;
 EOF&lt;br /&gt;
&lt;br /&gt;
=== 50-umask.sh ===&lt;br /&gt;
&lt;br /&gt;
 cat &amp;gt; /etc/profile.d/50-umask.sh &amp;lt;&amp;lt; &amp;quot;EOF&amp;quot;&lt;br /&gt;
 # Begin /etc/profile.d/50-umask.sh&lt;br /&gt;
 &lt;br /&gt;
 if [ &amp;quot;`id -un`&amp;quot; = &amp;quot;`id -gn`&amp;quot; -a $EUID -gt 99 ]; then&lt;br /&gt;
   umask 002&lt;br /&gt;
 else&lt;br /&gt;
   umask 022&lt;br /&gt;
 fi&lt;br /&gt;
 &lt;br /&gt;
 # End /etc/profile.d/50-umask.sh&lt;br /&gt;
 EOF&lt;br /&gt;
&lt;br /&gt;
=== 50-multilib.sh (For Multilib Only) ===&lt;br /&gt;
&lt;br /&gt;
==== Non-Mips ====&lt;br /&gt;
&lt;br /&gt;
 cat &amp;gt; /etc/profile.d/50-multilib.sh &amp;lt;&amp;lt; &amp;quot;EOF&amp;quot;&lt;br /&gt;
 # Begin /etc/profile.d/50-multilib.sh&lt;br /&gt;
 &lt;br /&gt;
 export BUILD32=&amp;quot;-m32&amp;quot;&lt;br /&gt;
 export BUILD64=&amp;quot;-m64&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
 export LD_BUILD32=&amp;quot;-m elf_i386&amp;quot;&lt;br /&gt;
 export LD_BUILD64=&amp;quot;-m elf_x86_64&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
 # End /etc/profile.d/50-multilib.sh&lt;br /&gt;
 EOF&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Adjust elf_i386 and elf_x86_64 accordingly for your architecture. If you&#039;re unsure what to set the value to see the output of:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 ld --help | grep emulations&lt;br /&gt;
&lt;br /&gt;
==== Mips ====&lt;br /&gt;
&lt;br /&gt;
 cat &amp;gt; /etc/profile.d/50-multilib.sh &amp;lt;&amp;lt; &amp;quot;EOF&amp;quot;&lt;br /&gt;
 # Begin /etc/profile.d/50-multilib.sh&lt;br /&gt;
 &lt;br /&gt;
 export BUILD32=&amp;quot;-mabi=32&amp;quot;&lt;br /&gt;
 export BUILDN32=&amp;quot;-mabi=n32&amp;quot;&lt;br /&gt;
 export BUILD64=&amp;quot;-mabi=64&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
 export LD_BUILD32=&amp;quot;&amp;quot;&lt;br /&gt;
 export LD_BUILDN32=&amp;quot;&amp;quot;&lt;br /&gt;
 export LD_BUILD64=&amp;quot;&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
 # End /etc/profile.d/50-multilib.sh&lt;br /&gt;
 EOF&lt;/div&gt;</summary>
		<author><name>71.127.215.2</name></author>
	</entry>
	<entry>
		<id>?title=Vorbis_Tools&amp;diff=4111</id>
		<title>Vorbis Tools</title>
		<link rel="alternate" type="text/html" href="?title=Vorbis_Tools&amp;diff=4111"/>
		<updated>2006-11-17T01:08:22Z</updated>

		<summary type="html">&lt;p&gt;71.127.215.2: /* Multilib */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| style=&amp;quot;text-align: left; background-color: AliceBlue;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!Download Source:&lt;br /&gt;
| http://downloads.xiph.org/releases/vorbis/vorbis-tools-1.1.1.tar.gz&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Dependencies ==&lt;br /&gt;
=== Required  ===&lt;br /&gt;
* [[libvorbis]]&lt;br /&gt;
=== Recommended (Required to Build the &#039;ogg123&#039; Program) ===&lt;br /&gt;
* [[Curl]]&lt;br /&gt;
* [[libao]]&lt;br /&gt;
=== Optional ===&lt;br /&gt;
* [[FLAC]] &lt;br /&gt;
* [[Speex]]&lt;br /&gt;
&lt;br /&gt;
== Non-Multilib ==&lt;br /&gt;
&lt;br /&gt;
Configure and compile the package:&lt;br /&gt;
&lt;br /&gt;
 ./configure --prefix=/usr --enable-vcut &amp;amp;&amp;amp;&lt;br /&gt;
 make&lt;br /&gt;
&lt;br /&gt;
Install the package:&lt;br /&gt;
&lt;br /&gt;
 make install&lt;br /&gt;
&lt;br /&gt;
== Multilib ==&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;This package does not provide any libraries so only one installation is needed.&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=== 32Bit ===&lt;br /&gt;
&lt;br /&gt;
Configure and compile the package:&lt;br /&gt;
&lt;br /&gt;
 CC=&amp;quot;gcc ${BUILD32}&amp;quot; CXX=&amp;quot;g++ ${BUILD32}&amp;quot; USE_ARCH=32 \&lt;br /&gt;
 PKG_CONFIG_PATH=&amp;quot;${PKG_CONFIG_PATH32}&amp;quot; \&lt;br /&gt;
 ./configure --prefix=/usr --enable-vcut &amp;amp;&amp;amp;&lt;br /&gt;
 make&lt;br /&gt;
&lt;br /&gt;
Install the package:&lt;br /&gt;
&lt;br /&gt;
 make install&lt;br /&gt;
&lt;br /&gt;
=== N32 ===&lt;br /&gt;
&lt;br /&gt;
Configure and compile the package:&lt;br /&gt;
&lt;br /&gt;
 CC=&amp;quot;gcc ${BUILDN32}&amp;quot; CXX=&amp;quot;g++ ${BUILDN32}&amp;quot; USE_ARCH=n32 \&lt;br /&gt;
 PKG_CONFIG_PATH=&amp;quot;${PKG_CONFIG_PATHN32}&amp;quot; \&lt;br /&gt;
 ./configure --prefix=/usr --libdir=/usr/lib32 --enable-vcut &amp;amp;&amp;amp;&lt;br /&gt;
 make&lt;br /&gt;
&lt;br /&gt;
Install the package:&lt;br /&gt;
&lt;br /&gt;
 make install&lt;br /&gt;
&lt;br /&gt;
=== 64Bit ===&lt;br /&gt;
&lt;br /&gt;
Configure and compile the package:&lt;br /&gt;
&lt;br /&gt;
 CC=&amp;quot;gcc ${BUILD64}&amp;quot; CXX=&amp;quot;g++ ${BUILD64}&amp;quot; USE_ARCH=64 \&lt;br /&gt;
 PKG_CONFIG_PATH=&amp;quot;${PKG_CONFIG_PATH64}&amp;quot; \&lt;br /&gt;
 ./configure --prefix=/usr --libdir=/usr/lib64 --enable-vcut &amp;amp;&amp;amp;&lt;br /&gt;
 make&lt;br /&gt;
&lt;br /&gt;
Install the package:&lt;br /&gt;
&lt;br /&gt;
 make install&lt;/div&gt;</summary>
		<author><name>71.127.215.2</name></author>
	</entry>
	<entry>
		<id>?title=Vorbis_Tools&amp;diff=4110</id>
		<title>Vorbis Tools</title>
		<link rel="alternate" type="text/html" href="?title=Vorbis_Tools&amp;diff=4110"/>
		<updated>2006-11-17T01:04:57Z</updated>

		<summary type="html">&lt;p&gt;71.127.215.2: /* 32Bit */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| style=&amp;quot;text-align: left; background-color: AliceBlue;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!Download Source:&lt;br /&gt;
| http://downloads.xiph.org/releases/vorbis/vorbis-tools-1.1.1.tar.gz&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Dependencies ==&lt;br /&gt;
=== Required  ===&lt;br /&gt;
* [[libvorbis]]&lt;br /&gt;
=== Recommended (Required to Build the &#039;ogg123&#039; Program) ===&lt;br /&gt;
* [[Curl]]&lt;br /&gt;
* [[libao]]&lt;br /&gt;
=== Optional ===&lt;br /&gt;
* [[FLAC]] &lt;br /&gt;
* [[Speex]]&lt;br /&gt;
&lt;br /&gt;
== Non-Multilib ==&lt;br /&gt;
&lt;br /&gt;
Configure and compile the package:&lt;br /&gt;
&lt;br /&gt;
 ./configure --prefix=/usr --enable-vcut &amp;amp;&amp;amp;&lt;br /&gt;
 make&lt;br /&gt;
&lt;br /&gt;
Install the package:&lt;br /&gt;
&lt;br /&gt;
 make install&lt;br /&gt;
&lt;br /&gt;
== Multilib ==&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;This package does not provide any libraries so only one installation is needed.&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=== 32Bit ===&lt;br /&gt;
&lt;br /&gt;
Configure and compile the package:&lt;br /&gt;
&lt;br /&gt;
 CC=&amp;quot;gcc ${BUILD32}&amp;quot; CXX=&amp;quot;g++ ${BUILD32}&amp;quot; USE_ARCH=32 \&lt;br /&gt;
 ./configure --prefix=/usr --enable-vcut &amp;amp;&amp;amp;&lt;br /&gt;
 make&lt;br /&gt;
&lt;br /&gt;
Install the package:&lt;br /&gt;
&lt;br /&gt;
 make install&lt;br /&gt;
&lt;br /&gt;
=== N32 ===&lt;br /&gt;
&lt;br /&gt;
Configure and compile the package:&lt;br /&gt;
&lt;br /&gt;
 CC=&amp;quot;gcc ${BUILDN32}&amp;quot; CXX=&amp;quot;g++ ${BUILDN32}&amp;quot; USE_ARCH=n32 \&lt;br /&gt;
 ./configure --prefix=/usr --libdir=/usr/lib32 --enable-vcut &amp;amp;&amp;amp;&lt;br /&gt;
 make&lt;br /&gt;
&lt;br /&gt;
Install the package:&lt;br /&gt;
&lt;br /&gt;
 make install&lt;br /&gt;
&lt;br /&gt;
=== 64Bit ===&lt;br /&gt;
&lt;br /&gt;
Configure and compile the package:&lt;br /&gt;
&lt;br /&gt;
 CC=&amp;quot;gcc ${BUILD64}&amp;quot; CXX=&amp;quot;g++ ${BUILD64}&amp;quot; LDFLAGS=&amp;quot;-L/usr/lib64&amp;quot; USE_ARCH=64 \&lt;br /&gt;
 ./configure --prefix=/usr --libdir=/usr/lib64 --enable-vcut &amp;amp;&amp;amp;&lt;br /&gt;
 make&lt;br /&gt;
&lt;br /&gt;
Install the package:&lt;br /&gt;
&lt;br /&gt;
 make install&lt;/div&gt;</summary>
		<author><name>71.127.215.2</name></author>
	</entry>
	<entry>
		<id>?title=Vorbis_Tools&amp;diff=4109</id>
		<title>Vorbis Tools</title>
		<link rel="alternate" type="text/html" href="?title=Vorbis_Tools&amp;diff=4109"/>
		<updated>2006-11-17T01:03:32Z</updated>

		<summary type="html">&lt;p&gt;71.127.215.2: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| style=&amp;quot;text-align: left; background-color: AliceBlue;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!Download Source:&lt;br /&gt;
| http://downloads.xiph.org/releases/vorbis/vorbis-tools-1.1.1.tar.gz&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Dependencies ==&lt;br /&gt;
=== Required  ===&lt;br /&gt;
* [[libvorbis]]&lt;br /&gt;
=== Recommended (Required to Build the &#039;ogg123&#039; Program) ===&lt;br /&gt;
* [[Curl]]&lt;br /&gt;
* [[libao]]&lt;br /&gt;
=== Optional ===&lt;br /&gt;
* [[FLAC]] &lt;br /&gt;
* [[Speex]]&lt;br /&gt;
&lt;br /&gt;
== Non-Multilib ==&lt;br /&gt;
&lt;br /&gt;
Configure and compile the package:&lt;br /&gt;
&lt;br /&gt;
 ./configure --prefix=/usr --enable-vcut &amp;amp;&amp;amp;&lt;br /&gt;
 make&lt;br /&gt;
&lt;br /&gt;
Install the package:&lt;br /&gt;
&lt;br /&gt;
 make install&lt;br /&gt;
&lt;br /&gt;
== Multilib ==&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;This package does not provide any libraries so only one installation is needed.&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=== 32Bit ===&lt;br /&gt;
&lt;br /&gt;
Configure and compile the package:&lt;br /&gt;
&lt;br /&gt;
 CC=&amp;quot;gcc ${BUILD32}&amp;quot; CXX=&amp;quot;g++ ${BUILD32}&amp;quot; USE_ARCH=32 \ &lt;br /&gt;
 ./configure --prefix=/usr --enable-vcut &amp;amp;&amp;amp;&lt;br /&gt;
 make&lt;br /&gt;
&lt;br /&gt;
Install the package:&lt;br /&gt;
&lt;br /&gt;
 make install&lt;br /&gt;
&lt;br /&gt;
=== N32 ===&lt;br /&gt;
&lt;br /&gt;
Configure and compile the package:&lt;br /&gt;
&lt;br /&gt;
 CC=&amp;quot;gcc ${BUILDN32}&amp;quot; CXX=&amp;quot;g++ ${BUILDN32}&amp;quot; USE_ARCH=n32 \&lt;br /&gt;
 ./configure --prefix=/usr --libdir=/usr/lib32 --enable-vcut &amp;amp;&amp;amp;&lt;br /&gt;
 make&lt;br /&gt;
&lt;br /&gt;
Install the package:&lt;br /&gt;
&lt;br /&gt;
 make install&lt;br /&gt;
&lt;br /&gt;
=== 64Bit ===&lt;br /&gt;
&lt;br /&gt;
Configure and compile the package:&lt;br /&gt;
&lt;br /&gt;
 CC=&amp;quot;gcc ${BUILD64}&amp;quot; CXX=&amp;quot;g++ ${BUILD64}&amp;quot; LDFLAGS=&amp;quot;-L/usr/lib64&amp;quot; USE_ARCH=64 \&lt;br /&gt;
 ./configure --prefix=/usr --libdir=/usr/lib64 --enable-vcut &amp;amp;&amp;amp;&lt;br /&gt;
 make&lt;br /&gt;
&lt;br /&gt;
Install the package:&lt;br /&gt;
&lt;br /&gt;
 make install&lt;/div&gt;</summary>
		<author><name>71.127.215.2</name></author>
	</entry>
	<entry>
		<id>?title=Gnome2&amp;diff=4108</id>
		<title>Gnome2</title>
		<link rel="alternate" type="text/html" href="?title=Gnome2&amp;diff=4108"/>
		<updated>2006-11-17T01:03:15Z</updated>

		<summary type="html">&lt;p&gt;71.127.215.2: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Gnome Core Packages ==&lt;br /&gt;
* [[Gnome Pre-Installation Configuration]]&lt;br /&gt;
* [[ORBit2]]&lt;br /&gt;
* [[libbonobo]]&lt;br /&gt;
* [[GConf]]&lt;br /&gt;
* [[Desktop-file-utils]]&lt;br /&gt;
* [[GNOME-MIME-Data]]&lt;br /&gt;
* [[Shared-MIME-Info]]&lt;br /&gt;
* [[GNOME Virtual File System]]&lt;br /&gt;
* [[libgnome]]&lt;br /&gt;
* [[libgnomecanvas]]&lt;br /&gt;
* [[libbonoboui]]&lt;br /&gt;
* [[GNOME Icon Theme]]&lt;br /&gt;
* [[GNOME Keyring]]&lt;br /&gt;
* [[libgnomeui]]&lt;br /&gt;
&lt;br /&gt;
== Gnome Core Desktop Packages ==&lt;br /&gt;
* [[GTK Engines]]&lt;br /&gt;
* [[GNOME Themes]]&lt;br /&gt;
* [[GNOME Doc-Utils]]&lt;br /&gt;
* [[GNOME Desktop]]&lt;br /&gt;
* [[GNOME Backgrounds]]&lt;br /&gt;
* [[GNOME Menus]]&lt;br /&gt;
* [[GNOME Panel]]&lt;br /&gt;
* [[GAIL]]&lt;br /&gt;
* [[EEL]]&lt;br /&gt;
* [[Nautilus]]&lt;br /&gt;
* [[Control Center]]&lt;br /&gt;
* [[GNOME Session]]&lt;br /&gt;
* [[VTE]]&lt;br /&gt;
* [[GNOME Terminal]]&lt;br /&gt;
* [[libGTop]]&lt;br /&gt;
* [[GNOME Applets]]&lt;br /&gt;
* [[Yelp]]&lt;br /&gt;
* [[GNOME User Docs]]&lt;br /&gt;
&lt;br /&gt;
== Gnome Additional Packages ==&lt;br /&gt;
&lt;br /&gt;
=== Libraries ===&lt;br /&gt;
* [[libgnomecups]]&lt;br /&gt;
* [[libgnomeprint]]&lt;br /&gt;
* [[libgnomeprintui]]&lt;br /&gt;
* [[Evolution Data Server]]&lt;br /&gt;
* [[GNOME Spell]]&lt;br /&gt;
* [[GtkHTML]]&lt;br /&gt;
* [[gtksourceview]]&lt;br /&gt;
* [[gnome-audio]]&lt;br /&gt;
&lt;br /&gt;
=== Utilities ===&lt;br /&gt;
* [[bug-buddy]]&lt;br /&gt;
* [[EOG]]&lt;br /&gt;
* [[Ekiga]]&lt;br /&gt;
* [[evince]]&lt;br /&gt;
* [[File Roller]]&lt;br /&gt;
* [[gcalctool]]&lt;br /&gt;
* [[GConf Editor]]&lt;br /&gt;
* [[GDM]]&lt;br /&gt;
* [[gedit]]&lt;br /&gt;
* [[GNOME Games]]&lt;br /&gt;
* [[GNOME Keyring Manager]]&lt;br /&gt;
* [[GNOME Media]]&lt;br /&gt;
* [[GNOME Pilot]]&lt;br /&gt;
* [[GNOME Pilot Conduits]]&lt;br /&gt;
* [[GNOME Utilities]]&lt;br /&gt;
* [[GNOME System Monitor]]&lt;br /&gt;
* [[gnome-bluetooth]]&lt;br /&gt;
* [[gnome-mount]]&lt;br /&gt;
* [[gnome-volume-manager]]&lt;br /&gt;
* [[gucharmap]]&lt;br /&gt;
* [[Nautilus CD Burner]]&lt;br /&gt;
* [[Rhythmbox]]&lt;br /&gt;
* [[system-tools-backends]]&lt;br /&gt;
* [[Totem]]&lt;br /&gt;
* [[Zenity]]&lt;/div&gt;</summary>
		<author><name>71.127.215.2</name></author>
	</entry>
	<entry>
		<id>?title=Avahi&amp;diff=4105</id>
		<title>Avahi</title>
		<link rel="alternate" type="text/html" href="?title=Avahi&amp;diff=4105"/>
		<updated>2006-11-15T20:14:28Z</updated>

		<summary type="html">&lt;p&gt;71.127.215.2: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| style=&amp;quot;text-align: left; background-color: AliceBlue;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!Download Source:&lt;br /&gt;
| http://avahi.org/download/avahi-0.6.14.tar.gz&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Dependencies ==&lt;br /&gt;
See http://www.avahi.org/wiki/DownloadAvahi#Requirements for more information.&lt;br /&gt;
&lt;br /&gt;
=== Required ===&lt;br /&gt;
* [[Expat]]&lt;br /&gt;
* [[libdaemon]]&lt;br /&gt;
=== Reccomended ===&lt;br /&gt;
* [[DBUS]] (With glib binding)&lt;br /&gt;
* [[Glib2]]&lt;br /&gt;
&lt;br /&gt;
=== Optional ===&lt;br /&gt;
* [[Gtk2]]&lt;br /&gt;
* [[Libglade]]&lt;br /&gt;
* [[Qt3]]&lt;br /&gt;
* [[Qt4]]&lt;br /&gt;
* [[PyGTK]] and the dbus python binding&lt;br /&gt;
* [[PyTwisted]]&lt;br /&gt;
* [[Mono]]&lt;br /&gt;
* [[libcap]]&lt;br /&gt;
* [[Pyrex]] and [[Python]] (Built with [[GDBM]])&lt;br /&gt;
&lt;br /&gt;
== Avahi Users/Groups ==&lt;br /&gt;
&lt;br /&gt;
The avahi user is running the Avahi daemon:&lt;br /&gt;
&lt;br /&gt;
 groupadd -g 20 avahi &amp;amp;&amp;amp;&lt;br /&gt;
 useradd -c &amp;quot;Avahi Daemon User&amp;quot; -d /dev/null \&lt;br /&gt;
         -u 20 -g avahi -s /bin/false avahi&lt;br /&gt;
&lt;br /&gt;
The avahi-autoipd user/group is for running the avahi-autoipd daemon:&lt;br /&gt;
&lt;br /&gt;
 groupadd -g 21 avahi-autoipd &amp;amp;&amp;amp;&lt;br /&gt;
 useradd -c &amp;quot;Avahi AutoIP Daemon User&amp;quot; -d /dev/null \&lt;br /&gt;
         -u 21 -g avahi-autoipd -s /bin/false avahi-autoipd&lt;br /&gt;
&lt;br /&gt;
The netdev group is a priviliged access group for Avahi clients:&lt;br /&gt;
&lt;br /&gt;
 groupadd -g 22 netdev&lt;br /&gt;
&lt;br /&gt;
== Configure Options ==&lt;br /&gt;
&lt;br /&gt;
If you do not have any of following packages installed pass the appropriate options to configure:&lt;br /&gt;
&lt;br /&gt;
 --disable-glib&lt;br /&gt;
 --disable-qt3&lt;br /&gt;
 --disable-qt4&lt;br /&gt;
 --disable-gtk&lt;br /&gt;
 --disable-dbus&lt;br /&gt;
 --disable-expat&lt;br /&gt;
 --disable-mono --disable-monodoc&lt;br /&gt;
&lt;br /&gt;
If you want to enable the HOWL compat layer:&lt;br /&gt;
&lt;br /&gt;
 --enable-compat-howl&lt;br /&gt;
&lt;br /&gt;
If you want to enable to libdns_sd compat layer:&lt;br /&gt;
&lt;br /&gt;
 --enable-compat-libdns_sd&lt;br /&gt;
&lt;br /&gt;
== Non-Multilib ==&lt;br /&gt;
&lt;br /&gt;
Compile the package:&lt;br /&gt;
&lt;br /&gt;
 ./configure --prefix=/usr --sysconfdir=/etc \&lt;br /&gt;
     --localstatedir=/var --with-distro=none &amp;amp;&amp;amp;&lt;br /&gt;
 make&lt;br /&gt;
&lt;br /&gt;
Install the package&lt;br /&gt;
&lt;br /&gt;
 make install&lt;br /&gt;
&lt;br /&gt;
== Multilib ==&lt;br /&gt;
&lt;br /&gt;
=== 32Bit ===&lt;br /&gt;
&lt;br /&gt;
Compile the package:&lt;br /&gt;
&lt;br /&gt;
 CC=&amp;quot;gcc ${BUILD32}&amp;quot; CXX=&amp;quot;g++ ${BUILD32}&amp;quot; \&lt;br /&gt;
 PKG_CONFIG_PATH=&amp;quot;${PKG_CONFIG_PATH32}&amp;quot; USE_ARCH=32 \&lt;br /&gt;
 ./configure --prefix=/usr --sysconfdir=/etc \&lt;br /&gt;
     --localstatedir=/var --with-distro=none &amp;amp;&amp;amp;&lt;br /&gt;
 make&lt;br /&gt;
&lt;br /&gt;
Install the package&lt;br /&gt;
&lt;br /&gt;
 make install&lt;br /&gt;
&lt;br /&gt;
=== N32 ===&lt;br /&gt;
&lt;br /&gt;
Compile the package:&lt;br /&gt;
&lt;br /&gt;
 CC=&amp;quot;gcc ${BUILDN32}&amp;quot; CXX=&amp;quot;g++ ${BUILDN32}&amp;quot; \&lt;br /&gt;
 PKG_CONFIG_PATH=&amp;quot;${PKG_CONFIG_PATHN32}&amp;quot; USE_ARCH=n32 \&lt;br /&gt;
 ./configure --prefix=/usr --sysconfdir=/etc \&lt;br /&gt;
     --localstatedir=/var --libdir=/usrlib32 \&lt;br /&gt;
     --with-distro=none &amp;amp;&amp;amp;&lt;br /&gt;
 make&lt;br /&gt;
&lt;br /&gt;
Install the package&lt;br /&gt;
&lt;br /&gt;
 make install&lt;br /&gt;
&lt;br /&gt;
=== 64Bit ===&lt;br /&gt;
&lt;br /&gt;
Compile the package:&lt;br /&gt;
&lt;br /&gt;
 CC=&amp;quot;gcc ${BUILD64}&amp;quot; CXX=&amp;quot;g++ ${BUILD64}&amp;quot; \&lt;br /&gt;
 PKG_CONFIG_PATH=&amp;quot;${PKG_CONFIG_PATH64}&amp;quot; USE_ARCH=64 \&lt;br /&gt;
 ./configure --prefix=/usr --sysconfdir=/etc \&lt;br /&gt;
     --localstatedir=/var --libdir=/usr/lib64 \&lt;br /&gt;
     --with-distro=none &amp;amp;&amp;amp;&lt;br /&gt;
 make&lt;br /&gt;
&lt;br /&gt;
Install the package&lt;br /&gt;
&lt;br /&gt;
 make install&lt;br /&gt;
&lt;br /&gt;
== Configuring ==&lt;br /&gt;
&lt;br /&gt;
=== Bootscript ===&lt;br /&gt;
&lt;br /&gt;
There currently isn&#039;t a pre-written bootscript for any of the 3 daemons Avahi provides. &#039;&#039;&#039;avahi-daemon&#039;&#039;&#039; must start after udev.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;avahi-daemon&#039;&#039;&#039; -  The Avahi mDNS/DNS-SD daemon.&lt;br /&gt;
* &#039;&#039;&#039;avahi-audoipd&#039;&#039;&#039; - IPv4LL network address configuration daemon. For use in an ad-hoc network where there is a lack of a DHCP server.&lt;br /&gt;
* &#039;&#039;&#039;avahi-dnsconfd&#039;&#039;&#039; - Unicast DNS server from mDNS/DNS-SD configuration daemon. Connects to a running avahi-daemon and runs the script /etc/avahi/dnsconfd.action for each unicast DNS server that is announced on the local LAN.&lt;/div&gt;</summary>
		<author><name>71.127.215.2</name></author>
	</entry>
</feed>