source: archive/pre-install-config.xml@ fa91d2e

11.0 11.1 11.2 11.3 12.0 12.1 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since fa91d2e was 45ab6c7, checked in by Xi Ruoyao <xry111@…>, 3 years ago

more SVN prop clean up

Remove "$LastChanged$" everywhere, and also some unused $Date$

  • Property mode set to 100644
File size: 3.6 KB
RevLine 
[fdca4266]1<?xml version="1.0" encoding="ISO-8859-1"?>
[6732c094]2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
[fdca4266]4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6]>
7
[85b98c3]8<sect1 id="gnome-pre-install-config">
[9ad96f5]9 <?dbhtml filename="pre-install-config.html"?>
[d1ea01e3]10
[15a1fed9]11 <sect1info>
12 <date>$Date$</date>
13 </sect1info>
[23abb34]14
[9ad96f5]15 <title>Pre-installation Configuration</title>
[23abb34]16
[15a1fed9]17 <para>Set an environment variable to resolve the prefix destination.</para>
[23abb34]18
[9ad96f5]19 <para>If <application>GNOME</application> is your desktop of choice:</para>
[23abb34]20
[8d3eae9]21<screen><userinput>cat &gt; /etc/profile.d/gnome.sh &lt;&lt; "EOF" &amp;&amp;
22<literal>export GNOME_PREFIX=/usr
23export GNOME_SYSCONFDIR=&gnome-etc-dir;
[31b1acd]24export XDG_CONFIG_DIRS=${GNOME_SYSCONFDIR}/xdg
[8d3eae9]25export XDG_DATA_DIRS=/usr/share:/usr/local/share</literal>
26EOF
27. /etc/profile.d/gnome.sh</userinput></screen>
28
[26a12b5]29
[9ad96f5]30 <para>If you want to try-out <application>GNOME</application>, or install
[3b269b9]31 it in an easy-to-remove location:</para>
[b394e5f7]32
[9761bea4]33 <note>
34 <para>You may wish to create a symbolic link to the actual versioned
35 directory using a non-versioned name. This has the advantage of an easier
36 path to type in all the changes below and also makes it easy to point
37 to a different/newer version of GNOME without changing all the edits
38 below. If you wish to use a non-versioned name in the changes below,
39 issue the following commands as the
40 <systemitem class='username'>root</systemitem> user:</para>
41
[790998f]42<screen role='root'><userinput>install -v -m755 -d /opt/gnome-&gnome-version;&gnome-minor-version; &amp;&amp;
43ln -v -s gnome-&gnome-version;&gnome-minor-version; /opt/gnome</userinput></screen>
[9761bea4]44 </note>
45
46 <para>If you created the symbolic link, change all instances of <filename
[790998f]47 class='directory'>/opt/gnome-&gnome-version;&gnome-minor-version;</filename>
[9761bea4]48 to <filename class='directory'>/opt/gnome</filename> in the instructions
49 below.</para>
[d1ea01e3]50
[790998f]51<screen><userinput>export GNOME_PREFIX=/opt/gnome-&gnome-version;&gnome-minor-version;</userinput></screen>
[d1ea01e3]52
[15a1fed9]53 <para>The try-out group will also need to make all the following
54 configuration changes:</para>
55
56 <para>Add to your system or personal profile:</para>
57
[31b1acd]58<screen><literal>export PATH=${PATH}:/opt/gnome-&gnome-version;&gnome-minor-version;/bin
59export PKG_CONFIG_PATH=${PKG_CONFIG_PATH}:/opt/gnome-&gnome-version;&gnome-minor-version;/lib/pkgconfig
60export PKG_CONFIG_PATH=${PKG_CONFIG_PATH}:/opt/gnome-&gnome-version;&gnome-minor-version;/share/pkgconfig
[4a96d460]61export GNOME_LIBCONFIG_PATH=/usr/lib:/opt/gnome-&gnome-version;&gnome-minor-version;/lib
[002bf11]62export PYTHONPATH=${PYTHONPATH}:/usr/lib/python&python2-majorver;/site-packages:/opt/gnome-&gnome-version;/lib/python&python2-majorver;/site-packages</literal></screen>
[d1ea01e3]63
[15a1fed9]64 <para>Add to your <filename>/etc/ld.so.conf</filename>:</para>
[d1ea01e3]65
[9ad96f5]66<screen role='root'><userinput>cat &gt;&gt; /etc/ld.so.conf &lt;&lt; "EOF"
[15a1fed9]67<literal># Begin gnome addition to /etc/ld.so.conf
[d1ea01e3]68
[790998f]69/opt/gnome-&gnome-version;&gnome-minor-version;/lib
[d1ea01e3]70
[15a1fed9]71# End gnome addition</literal>
[9ad96f5]72EOF</userinput></screen>
[d1ea01e3]73
[58c6057]74 <para>Add to your <filename>/etc/man_db.conf</filename>:</para>
[d1ea01e3]75
[58c6057]76<screen role='root'><userinput>cat &gt;&gt; /etc/man_db.conf &lt;&lt; "EOF"
77<literal># Begin gnome addition to man_db.conf
[d1ea01e3]78
[790998f]79MANDATORY_MANPATH /opt/gnome-&gnome-version;&gnome-minor-version;/share/man
[d1ea01e3]80
[58c6057]81# End gnome addition to man_db.conf</literal>
[9ad96f5]82EOF</userinput></screen>
[d1ea01e3]83
[9761bea4]84 <tip>
85 <para>Remember to execute <command>ldconfig</command> as the
86 <systemitem class='username'>root</systemitem> user after installation of
87 libraries to update the linker's library cache.</para>
88 </tip>
89
[d1ea01e3]90</sect1>
Note: See TracBrowser for help on using the repository browser.