source: introduction/important/beyond.xml@ ddbbdde

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 9.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 ddbbdde was ddbbdde, checked in by Ken Moffat <ken@…>, 4 years ago

Beyond BLFS - for Fedora point to the files now that I know where they have moved to.

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@22634 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 11.1 KB
RevLine 
[4122007]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" [
[4122007]4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6]>
7
[4afc2603]8<sect1 id="beyond" xreflabel="Going Beyond BLFS">
[8b354833]9 <?dbhtml filename="beyond.html"?>
10
11 <sect1info>
12 <othername>$LastChangedBy$</othername>
13 <date>$Date$</date>
14 </sect1info>
15
16 <title>Going Beyond BLFS</title>
17
18 <para>The packages that are installed in this book are only the tip of the
[24ca7aa]19 iceberg. We hope that the experience you gained with the LFS book and
20 the BLFS book will give you the background needed to compile, install
[8b354833]21 and configure packages that are not included in this book.</para>
22
23 <para>When you want to install a package to a location other than
[24ca7aa]24 <filename class='directory'>/</filename>, or
[8b354833]25 <filename class='directory'>/usr</filename>, you are installing
26 outside the default environment settings on most machines. The following
27 examples should assist you in determining how to correct this situation.
28 The examples cover the complete range of settings that may need
29 updating, but they are not all needed in every situation.</para>
30
31 <itemizedlist>
32 <listitem>
33 <para>Expand the <envar>PATH</envar> to include
34 <filename class='directory'>$PREFIX/bin</filename>.</para>
35 </listitem>
36 <listitem>
[24ca7aa]37 <para>Expand the <envar>PATH</envar> for
[8b354833]38 <systemitem class="username">root</systemitem> to include
39 <filename class='directory'>$PREFIX/sbin</filename>.</para>
40 </listitem>
41 <listitem>
42 <para>Add <filename class='directory'>$PREFIX/lib</filename>
43 to <filename>/etc/ld.so.conf</filename> or expand
[4afc2603]44 <envar>LD_LIBRARY_PATH</envar> to include it. Before using the latter
[506a625]45 option, check out <ulink
46 url="http://xahlee.org/UnixResource_dir/_/ldpath.html"/>.
[4afc2603]47 If you modify <filename>/etc/ld.so.conf</filename>, remember to update
48 <filename>/etc/ld.so.cache</filename> by executing
49 <command>ldconfig</command> as the
50 <systemitem class="username">root</systemitem> user.</para>
[8b354833]51 </listitem>
52 <listitem>
53 <para>Add <filename class='directory'>$PREFIX/man</filename>
[58c6057]54 to <filename>/etc/man_db.conf</filename> or expand
[4afc2603]55 <envar>MANPATH</envar>.</para>
[8b354833]56 </listitem>
57 <listitem>
58 <para>Add <filename class='directory'>$PREFIX/info</filename>
59 to <envar>INFOPATH</envar>.</para>
60 </listitem>
61 <listitem>
[4afc2603]62 <para>Add <filename class='directory'>$PREFIX/lib/pkgconfig</filename>
63 to <envar>PKG_CONFIG_PATH</envar>. Some packages are now installing
64 <filename class='extension'>.pc</filename> files in
65 <filename class='directory'>$PREFIX/share/pkgconfig</filename>, so you may
66 have to include this directory also.</para>
[8b354833]67 </listitem>
68 <listitem>
[24ca7aa]69 <para>Add <filename class='directory'>$PREFIX/include</filename> to
70 <envar>CPPFLAGS</envar> when compiling packages that depend on
[8b354833]71 the package you installed.</para>
72 </listitem>
[dc8a51e7]73 <listitem>
74 <para>Add <filename class='directory'>$PREFIX/lib</filename> to
75 <envar>LDFLAGS</envar> when compiling packages that depend on a library
76 installed by the package.</para>
77 </listitem>
[8b354833]78 </itemizedlist>
79
80 <para>If you are in search of a package that is not in the book, the following
[4afc2603]81 are different ways you can search for the desired package.</para>
[8b354833]82
83 <itemizedlist>
84 <listitem>
[6ed5123]85 <para>If you know the name of the package, then search Freecode for
86 it at <ulink url="http://freecode.com/"/>. Also search Google at
[4afc2603]87 <ulink url="http://google.com/"/>. Sometimes a search for the
88 <filename class='extension'>rpm</filename> at
89 <ulink url="http://rpmfind.net/"/> or the
90 <filename class='extension'>deb</filename> at
91 <ulink url="http://www.debian.org/distrib/packages#search_packages"/> can
92 also lead to a link to the package.</para>
[8b354833]93 </listitem>
94 <listitem>
[24ca7aa]95 <para>If you know the name of the executable, but not the package
[4afc2603]96 that the executable belongs to, first try a Google search with the name
97 of the executable. If the results are overwhelming, try searching for the
98 given executable in the Debian repository at <ulink
99 url="http://www.debian.org/distrib/packages#search_contents"/>.</para>
[8b354833]100 </listitem>
101 </itemizedlist>
102
103 <para>Some general hints on handling new packages:</para>
104
105 <itemizedlist>
106 <listitem>
107 <para>Many of the newer packages follow the <command>./configure
108 &amp;&amp; make &amp;&amp; make install</command> process.
[24ca7aa]109 Help on the options accepted by configure can be obtained via the
[8b354833]110 command <command>./configure --help</command>.</para>
111 </listitem>
112 <listitem>
113 <para>Most of the packages contain documentation on compiling and
114 installing the package. Some of the documents are excellent, some not so
[4afc2603]115 excellent. Check out the homepage of the package for any additional and
116 updated hints for compiling and configuring the package.</para>
[8b354833]117 </listitem>
118 <listitem>
119 <para>If you are having a problem compiling the package, try
[4afc2603]120 searching the LFS archives at
[98078a6]121 <ulink url="http://www.&lfs-domainname;/search.html"/> for the error or if
[6ed5123]122 that fails, try searching Google. Often, a distribution will have already
123 solved the problem (many of them use development versions of packages, so
124 they see the changes sooner than those of us who normally use stable released
125 versions). But be cautious - all builders tend to carry patches which are no
126 longer necessary, and to have fixes which are only required because of their
127 particular choices in how they build a package. You may have to search
128 deeply to find a fix for the package version you are trying to use, or even
129 to find the package (names are sometimes not what you might expect, e.g.
130 <application>ghostscript</application> often has a prefix or a suffix in its
[58b66af3]131 name), but the following notes might help, particularly for those who, like
132 the editors, are trying to build the latest versions and encountering
133 problems:</para>
[6ed5123]134 <itemizedlist>
135 <listitem>
[6693e21]136 <para>Arch <ulink url="http://www.archlinux.org/packages/"/> - enter
137 the package name in the 'Keywords' box, select the package name,
138 select the 'Source Files' field, and then select the
139 <filename>PKGBUILD</filename> entry to see how they build this
140 package.</para>
[6ed5123]141 </listitem>
142 <listitem>
143 <para>Debian
[028759b]144 <ulink url="ftp://ftp.uk.debian.org/debian/pool"/> (use your country's
[6ed5123]145 version if there is one) - the source will be in .tar.gz tarballs (either
146 the original upstream <filename class='extension'>.orig</filename> source,
147 or else a <filename>dfsg</filename> containing those parts which comply
148 with debian's free software guidelines) accompanied by versioned .diff.gz
149 or .tar.gz additions. These additions often show how the package is built,
150 and may contain patches. In the .diff.gz versions, any patches create files
151 in <filename class="directory">debian/patches</filename>.</para>
152 </listitem>
153 <listitem>
[ddbbdde]154 <para>Fedora package source gets reorganized from time to time.
155 At the moment the package source for rpms is at <ulink
156 url="https://src.fedoraproject.org/projects/rpms/%2A"/> and from there
157 you can try putting a package name in the search box. If the package is
158 found you can look at the files (specfile to control the build, various
159 patches) or the commits. If that fails, you can download
[ac421ac]160 an srpm (source rpm) and using <application>rpm2cpio</application> (see
[ddbbdde]161 the Tip at the bottom of the page). For rpms go to <ulink
[ac421ac]162 url="https://dl.fedoraproject.org/pub/fedora/linux/"/> and then choose
163 which repo you wish to look at - development/rawhide is the latest
164 development, or choose releases for what was shipped in a release,
165 updates for updates to a release, or updates/testing for the latest
166 updates which might work or might have problems.
167 </para>
[6ed5123]168 </listitem>
169 <listitem>
170 <para>Gentoo - the mirrors for ebuilds and patches seem to be well-hidden,
171 and they change frequently. Also, if you have found a mirror, you need to
172 know which directory the application has been assigned to. The ebuilds
173 themselves can be found at <ulink url="http://packages.gentoo.org/"/> -
174 use the search field. If there are any patches, a mirror will have them
175 in the <filename class="directory">files/</filename> directory. Depending
176 on your browser, or the mirror, you might need to download the ebuild to
177 be able to read it. Treat the ebuild as a sort of pseudo-code / shell
178 combination - look in particular for <command>sed</command> commands and
179 patches, or hazard a guess at the meanings of the functions such as
180 <command>dodoc</command>.</para>
181 </listitem>
182 <listitem>
[58b66af3]183 <para>openSUSE provide a rolling release, some package versions are in
184 <ulink url="http://download.opensuse.org/source/tumbleweed/repo/oss/src/"/>
185 but others are in ../update/openSUSE-current/src - the
[df4bcb1]186 source only seems to be available in source rpms.</para>
[6ed5123]187 </listitem>
188 <listitem>
189 <para>Slackware - the official package browser is currently broken. The
190 site at <ulink url="http://slackbuilds.org/"/> has current and previous
191 versions in their unofficial repository with links to homepages, downloads,
192 and some individual files, particularly the <filename>.SlackBuild</filename>
193 files.</para>
194 </listitem>
195 <listitem>
196 <para>Ubuntu <ulink url="ftp://ftp.ubuntu.com/ubuntu/pool/"/> - see the
197 debian notes above.</para>
198 </listitem>
199 </itemizedlist>
200 <para>If everything else fails, try the blfs-support mailing-list.</para>
[8b354833]201 </listitem>
202 </itemizedlist>
203
204 <tip>
[4afc2603]205 <para>If you have found a package that is only available in
206 <filename class='extension'>.deb</filename> or
207 <filename class='extension'>.rpm</filename>
[24ca7aa]208 format, there are two small scripts, <command>rpm2targz</command> and
209 <command>deb2targz</command> that are available at
210 <ulink url="&downloads-project;/deb2targz.tar.bz2"/> and
211 <ulink url="&downloads-project;/rpm2targz.tar.bz2"/> to convert the archives
[8b354833]212 into a simple <filename>tar.gz</filename> format.</para>
[601a838]213 <para>You may also find an rpm2cpio script useful. The Perl version in the
[6ed5123]214 linux kernel archives at <ulink
215 url="http://lkml.indiana.edu/hypermail/linux/kernel/0210.2/att-0093/01-rpm2cpio"/>
216 works for most source rpms. The rpm2targz script will use an rpm2cpio script
217 or binary if one is on your path. Note that rpm2cpio will unpack a source
218 rpm in the current directory, giving a tarball, a spec file, and perhaps patches
219 or other files.</para>
[8b354833]220 </tip>
[f45b1953]221
222</sect1>
Note: See TracBrowser for help on using the repository browser.