source: prologue/hostreqs.xml@ 5e858e7

10.0 10.0-rc1 10.1 10.1-rc1 11.0 11.0-rc1 11.0-rc2 11.0-rc3 11.1 11.1-rc1 11.2 11.2-rc1 11.3 11.3-rc1 12.0 12.0-rc1 12.1 12.1-rc1 6.3 6.4 6.5 6.6 6.7 6.8 7.0 7.1 7.2 7.3 7.4 7.5 7.5-systemd 7.6 7.6-systemd 7.7 7.7-systemd 7.8 7.8-systemd 7.9 7.9-systemd 8.0 8.1 8.2 8.3 8.4 9.0 9.1 arm bdubbs/gcc13 ml-11.0 multilib renodr/libudev-from-systemd s6-init trunk xry111/arm64 xry111/arm64-12.0 xry111/clfs-ng xry111/lfs-next xry111/loongarch xry111/loongarch-12.0 xry111/loongarch-12.1 xry111/mips64el xry111/pip3 xry111/rust-wip-20221008 xry111/update-glibc
Last change on this file since 5e858e7 was 5e858e7, checked in by Manuel Canales Esparcia <manuel@…>, 18 years ago

Revised again the Host System Requirements page wording and look.
Thanks to Bruce Dubbs for the patch.

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@7558 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 4.7 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
3 "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../general.ent">
5 %general-entities;
6]>
7
8<sect1 id="pre-hostreqs">
9 <?dbhtml filename="hostreqs.html"?>
10
11 <title>Host System Requirements</title>
12
13 <para>Your host system should have the following software with the
14 minimum versions indicated. This should not be an issue for most
15 modern Linux distributions. Also note that many distributions will
16 place software headers into separate packages, often in the form of
17 <quote>&lt;package-name&gt;-devel</quote> or
18 <quote>&lt;package-name&gt;-dev</quote>. Be sure to install those if
19 your distribution provides them.</para>
20
21 <itemizedlist spacing="compact">
22
23 <listitem>
24 <para><emphasis role="strong">Bash-2.05a</emphasis></para>
25 </listitem>
26
27 <listitem>
28 <para><emphasis role="strong">Binutils-2.12</emphasis> (Versions
29 greater than &binutils-version; are not recommended as they have
30 not been tested)</para>
31 </listitem>
32
33 <listitem>
34 <para><emphasis role="strong">Bzip2-1.0.2</emphasis></para>
35 </listitem>
36
37 <listitem>
38 <para><emphasis role="strong">Coreutils-5.0</emphasis> (or Sh-Utils-2.0,
39 Textutils-2.0, and Fileutils-4.1)</para>
40 </listitem>
41
42 <listitem>
43 <para><emphasis role="strong">Diffutils-2.8</emphasis></para>
44 </listitem>
45
46 <listitem>
47 <para><emphasis role="strong">Findutils-4.1.20</emphasis></para>
48 </listitem>
49
50 <listitem>
51 <para><emphasis role="strong">Gawk-3.0</emphasis></para>
52 </listitem>
53
54 <listitem>
55 <para><emphasis role="strong">Gcc-2.95.3</emphasis> (Versions
56 greater than &gcc-version; are not recommended as they have not
57 been tested)</para>
58 </listitem>
59
60 <listitem>
61 <para><emphasis role="strong">Glibc-2.2.5</emphasis> (Versions
62 greater than &glibc-version; are not recommended as they have
63 not been tested)</para>
64 </listitem>
65
66 <listitem>
67 <para><emphasis role="strong">Grep-2.5</emphasis></para>
68 </listitem>
69
70 <listitem>
71 <para><emphasis role="strong">Gzip-1.2.4</emphasis></para>
72 </listitem>
73
74 <listitem>
75 <para><emphasis role="strong">Linux Kernel-2.6.x</emphasis>
76 (having been compiled with GCC-3.0 or greater)</para>
77
78 <para>The reason for the kernel version requirement is that thread-local
79 storage support in Binutils will not be built and the Native POSIX
80 Threading Library (NPTL) test suite will segfault if the host's kernel
81 isn't at least a 2.6.x version compiled with a 3.0 or later release of
82 GCC.</para>
83
84 <para>If the host kernel is either 2.6.x, or it was not compiled using
85 a GCC-3.0 (or later) compiler, you will have to replace the kernel with
86 one adhering to the specifications. There are two methods you can take
87 to solve this. First, see if your Linux vendor provides a 2.6 kernel
88 package. If so, you may wish to install it. If your vendor doesn't offer
89 a 2.6 kernel package, or you would prefer not to install it, then you
90 can compile a 2.6 kernel yourself. Instructions for compiling the kernel
91 and configuring the boot loader (assuming the host uses GRUB) are located
92 in <xref linkend="chapter-bootable"/>.</para>
93 </listitem>
94
95 <listitem>
96 <para><emphasis role="strong">Make-3.79.1</emphasis></para>
97 </listitem>
98
99 <listitem>
100 <para><emphasis role="strong">Patch-2.5.4</emphasis></para>
101 </listitem>
102
103 <listitem>
104 <para><emphasis role="strong">Sed-3.0.2</emphasis></para>
105 </listitem>
106
107 <listitem>
108 <para><emphasis role="strong">Tar-1.14</emphasis></para>
109 </listitem>
110
111 </itemizedlist>
112
113 <para>To see all the appropriate versions, copy the following script
114 to your system and run it.</para>
115
116<screen><userinput>cat &gt; version-check.sh &lt;&lt; "EOF"
117<literal>#!/bin/bash
118
119# Simple script to list version numbers of critical developmet tools
120
121bash --version | head -n1 | cut -d" " -f2-4
122echo -n "Binutils: "; ld --version | head -n1 | cut -d" " -f3-4
123bzip2 --version 2&gt;&amp;1 &lt; /dev/null | head -n1 | cut -d" " -f1,6-
124echo -n "Coreutils: "; chown --version | head -n1 | cut -d" " -f4
125diff --version | head -n1
126find --version | head -n1
127gawk --version | head -n1
128gcc --version | head -n1
129/lib/libc.so.6 | head -n1 | cut -d" " -f1-7
130grep --version | head -n1
131gzip --version | head -n1
132cat /proc/version | head -n1 | cut -d" " -f1-3,5-7
133make --version | head -n1
134patch --version | head -n1
135sed --version | head -n1
136tar --version | head -n1</literal>
137
138EOF
139
140bash version-check.sh</userinput></screen>
141
142</sect1>
Note: See TracBrowser for help on using the repository browser.