source: clfs-embedded/BOOK/materials/common/introduction.xml @ e9d5b1a

Last change on this file since e9d5b1a was e9d5b1a, checked in by Andrew Bradford <andrew@…>, 11 years ago

materials-intro: Remove cross-lfs.org link

The contents found at the link are horribly outdated and thus not
useful. Google will turn up much better results for recent packages.

  • Property mode set to 100644
File size: 2.3 KB
RevLine 
[a9e389d]1<?xml version="1.0" encoding="ISO-8859-1"?>
[bd48e48]2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3  "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
[a9e389d]4  <!ENTITY % general-entities SYSTEM "../../general.ent">
5  %general-entities;
6]>
7
8<sect1 id="ch-materials-introduction">
9  <?dbhtml filename="introduction.html"?>
10
11  <title>Introduction</title>
12
13  <para>This chapter includes a list of packages that need to be downloaded
14  for building a basic Linux system. The listed version numbers correspond
15  to versions of the software that are known to work, and this book is based
16  on their use. We highly recommend not using newer versions because the
17  build commands for one version may not work with a newer version. The
18  newest package versions may also have problems that require work-arounds.
19  These work-arounds will be developed and stabilized in the development
20  version of the book.</para>
21
22  <para>Download locations may not always be accessible. If a download
23  location has changed since this book was published, Google (<ulink
24  url="http://www.google.com/"/>) provides a useful search engine for
[e9d5b1a]25  most packages.</para>
[a9e389d]26
27  <para>Downloaded packages and patches will need to be stored somewhere
28  that is conveniently available throughout the entire build. A working
29  directory is also required to unpack the sources and build them.
30  <filename class="directory">${CLFS}/sources</filename> can be used both
31  as the place to store the tarballs and patches and as a working
32  directory. By using this directory, the required elements will be
33  located on the CLFS partition and will be available during all stages
34  of the building process.</para>
35
36  <para>To create this directory, execute, as user <systemitem
37  class="username">root</systemitem>, the following command before
38  starting the download session:</para>
39
40<screen><userinput>mkdir -v ${CLFS}/sources</userinput></screen>
41
42  <para>Make this directory writable and sticky. When a directory is
43  marked <quote>sticky</quote>, that means that even if multiple users have
44  write permission on that directory, any file within that directory can only be
45  deleted or modified by its owner. The following command will enable the
46  write and sticky modes:</para>
47
48<screen><userinput>chmod -v a+wt ${CLFS}/sources</userinput></screen>
49
50</sect1>
Note: See TracBrowser for help on using the repository browser.