Changeset 0c60367
- Timestamp:
- 02/20/2004 05:16:24 AM (19 years ago)
- Branches:
- 10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 6.0, 6.1, 6.2, 6.2.0, 6.2.0-rc1, 6.2.0-rc2, 6.3, 6.3-rc1, 6.3-rc2, 6.3-rc3, 7.10, 7.4, 7.5, 7.6, 7.6-blfs, 7.6-systemd, 7.7, 7.8, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, gnome, kde5-13430, kde5-14269, kde5-14686, ken/inkscape-core-mods, krejzi/svn, lazarus, nosym, perl-modules, plabs/python-mods, qt5new, systemd-11177, systemd-13485, trunk, upgradedb, v5_1, v5_1-pre1, xry111/intltool, xry111/soup3, xry111/test-20220226
- Children:
- 6387eb8
- Parents:
- 7e4be43
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
introduction/important/unpacking.xml
r7e4be43 r0c60367 1 1 <sect1 id="intro-important-unpacking"> 2 2 <?dbhtml filename="unpacking.html" dir="introduction"?> 3 <title> Getting and unpacking thesoftware</title>3 <title>Notes on downloading, unpacking and compiling software</title> 4 4 5 5 <para>Those people who have built a <acronym>LFS</acronym> system will be aware … … 53 53 </sect2> 54 54 55 <sect2> 56 <title>Verifying file integrity using md5sum</title> 57 58 <para>Generally, to verify that the downloaded file is genuine and complete, 59 most package maintainers also distribute md5sums of the files. 60 To verify the md5sum of the downloaded files, download both the file and the 61 corresponding md5sum file to the same directory (preferably from different 62 on-line locations), and (assuming file.md5sum is the md5sum file downloaded) 63 run the following command:</para> 64 65 <screen><command>md5sum -c file.md5sum</command></screen> 66 67 <para>If there are any errors, they will be reported.</para> 68 69 </sect2> 70 71 <sect2> 72 <title>Creating Log files during installation</title> 73 74 <para>For larger packages, it is convenient to create log files instead of 75 staring at the screen hoping to catch a particular error or warning. Log files 76 are also useful for debugging and keeping records. The following command 77 allows you to create a installation log. Replace <command> with the 78 command you intend to execute.</para> 79 80 <screen><command>( <command> 2>&1 | tee compile.log && exit $PIPESTATUS )</command></screen> 81 82 <para><parameter>2>&1</parameter> redirects error messages 83 to the same location as normal output. The <command>tee</command> command 84 allows viewing of the output while logging the results to a file. The parentheses 85 around the command run the entire command in a subshell and finally the 86 <command>exit $PIPESTATUS</command> ensures the result of the <command> 87 is returned as the result and not the result of the <command>tee</command> command.</para> 88 89 </sect2> 90 55 91 </sect1> -
x/installing/xfree86/xfree86-exp.xml
r7e4be43 r0c60367 2 2 <title>Command explanations</title> 3 3 4 <!-- 4 5 <para><command>( WORLDOPTS="" make World 2>&1 | tee xfree-compile.log 5 6 && exit $PIPESTATUS )</command>: … … 12 13 <command>exit $PIPESTATUS</command> ensures the result of the <command>make</command> 13 14 is returned as the result and not the result of the <command>tee</command> command.</para> 15 --> 16 <para><command>WORLDOPTS="" make World</command>: 17 This command runs multiple makefiles to completely rebuild the system. 18 <envar>WORLDOPTS</envar>="" disables the default setting to continue after 19 encountering an error.</para> 14 20 15 21 <note><para>When rebuilding <application>XFree86</application>, a separate command that may be used if only minor -
x/installing/xfree86/xfree86-inst.xml
r7e4be43 r0c60367 206 206 207 207 208 <screen><userinput><command> ( WORLDOPTS="" make World 2>&1 | tee xfree-compile.log && exit $PIPESTATUS )&&208 <screen><userinput><command>WORLDOPTS="" make World && 209 209 make install && 210 210 make install.man && -
x/installing/xfree86/xfree86-intro.xml
r7e4be43 r0c60367 72 72 <acronym>LFS</acronym> system.</para> 73 73 74 <!-- 74 75 <para>To check your downloads for integrity, download the <filename>SUMS.md5sum</filename> 75 76 file. Then:</para> … … 87 88 <screen><userinput><command>md5sum 4.3.0-4.3.0.1.diff.gz</command></userinput> 88 89 <userinput><command>md5sum fontfile.diff</command></userinput></screen> 90 --> 89 91 90 92 <para>After unpacking the <filename>X430src-?.tgz</filename> files and uncompressing the
Note:
See TracChangeset
for help on using the changeset viewer.