source: networking/netprogs/wget.xml@ cacae795

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 7.10 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 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts krejzi/svn lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition systemd-11177 systemd-13485 trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since cacae795 was cacae795, checked in by Bruce Dubbs <bdubbs@…>, 10 years ago

First set of LFS-7.5 tags

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

  • Property mode set to 100644
File size: 5.7 KB
RevLine 
[d47e7ea9]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" [
[d47e7ea9]4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
[78865d9]7 <!ENTITY wget-download-http
[61562907]8 "http://ftp.gnu.org/gnu/wget/wget-&wget-version;.tar.xz">
[78865d9]9 <!ENTITY wget-download-ftp
[61562907]10 "ftp://ftp.gnu.org/gnu/wget/wget-&wget-version;.tar.xz">
[987fe4db]11 <!ENTITY wget-md5sum "7a279d5ac5594919124d5526e7143e28">
12 <!ENTITY wget-size "1.7 MB">
13 <!ENTITY wget-buildsize "22 MB (additional 2 MB for the tests)">
14 <!ENTITY wget-time "0.4 SBU (additional 0.1 SBU for the tests)">
[d47e7ea9]15]>
[def11b7]16
[19234f1]17<sect1 id="wget" xreflabel="Wget-&wget-version;">
[db0eb6a]18 <?dbhtml filename="wget.html"?>
[bab92281]19
[db0eb6a]20 <sect1info>
21 <othername>$LastChangedBy$</othername>
22 <date>$Date$</date>
23 </sect1info>
[bab92281]24
[db0eb6a]25 <title>Wget-&wget-version;</title>
[bab92281]26
[db0eb6a]27 <indexterm zone="wget">
28 <primary sortas="a-Wget">Wget</primary>
29 </indexterm>
30
31 <sect2 role="package">
32 <title>Introduction to Wget</title>
[bab92281]33
[78865d9]34 <para>
35 The <application>Wget</application> package contains a utility useful for
36 non-interactive downloading of files from the Web.
37 </para>
[bab92281]38
[cacae795]39 &lfs75_checked;
[1c65bfd]40
[db0eb6a]41 <bridgehead renderas="sect3">Package Information</bridgehead>
42 <itemizedlist spacing="compact">
43 <listitem>
[78865d9]44 <para>
45 Download (HTTP): <ulink url="&wget-download-http;"/>
46 </para>
[db0eb6a]47 </listitem>
48 <listitem>
[78865d9]49 <para>
50 Download (FTP): <ulink url="&wget-download-ftp;"/>
51 </para>
[db0eb6a]52 </listitem>
53 <listitem>
[78865d9]54 <para>
55 Download MD5 sum: &wget-md5sum;
56 </para>
[db0eb6a]57 </listitem>
58 <listitem>
[78865d9]59 <para>
60 Download size: &wget-size;
61 </para>
[db0eb6a]62 </listitem>
63 <listitem>
[78865d9]64 <para>
65 Estimated disk space required: &wget-buildsize;
66 </para>
[db0eb6a]67 </listitem>
68 <listitem>
[78865d9]69 <para>
70 Estimated build time: &wget-time;
71 </para>
[2174baa]72 </listitem>
[db0eb6a]73 </itemizedlist>
[bab92281]74
[db0eb6a]75 <bridgehead renderas="sect3">Wget Dependencies</bridgehead>
[bab92281]76
[61562907]77 <bridgehead renderas="sect4">Recommended</bridgehead>
78 <para role="recommended">
79 <xref linkend="openssl"/> or <xref linkend="gnutls"/>
80 </para>
81
[db0eb6a]82 <bridgehead renderas="sect4">Optional</bridgehead>
[78865d9]83 <para role="optional">
84 <xref linkend="libidn"/>,
[f2f7b12]85 <xref linkend="pcre"/>,
86 <xref linkend="perl-lwp"/> (required for the majority of the test suite), and
[78865d9]87 <ulink url="http://www.inet.no/dante/">Dante</ulink>
88 </para>
89
90 <para condition="html" role="usernotes">
91 User Notes: <ulink url="&blfs-wiki;/wget"/>
92 </para>
[db0eb6a]93 </sect2>
[bab92281]94
[db0eb6a]95 <sect2 role="installation">
96 <title>Installation of Wget</title>
97
[78865d9]98 <para>
99 Install <application>Wget</application> by running the following commands:
100 </para>
[db0eb6a]101
[987fe4db]102<screen><userinput>./configure --prefix=/usr \
[78865d9]103 --sysconfdir=/etc \
[ce4cc4c]104 --with-ssl=openssl &amp;&amp;
[db0eb6a]105make</userinput></screen>
106
[78865d9]107 <para>
108 To test the results, issue: <command>make check</command>.
109 </para>
[bab92281]110
[78865d9]111 <para>
112 Now, as the <systemitem class="username">root</systemitem> user:
113 </para>
[bab92281]114
[db0eb6a]115<screen role="root"><userinput>make install</userinput></screen>
116 </sect2>
[bab92281]117
[db0eb6a]118 <sect2 role="commands">
119 <title>Command Explanations</title>
[bab92281]120
[78865d9]121 <para>
122 <parameter>--sysconfdir=/etc</parameter>: This relocates the configuration
123 file from <filename class="directory">/usr/etc</filename> to
124 <filename class="directory">/etc</filename>.
125 </para>
126
127 <para>
128 <parameter>--with-ssl=openssl</parameter>: This allows the program to work
129 with <xref linkend="openssl"/>. It can be omitted if
[0d7900a]130 <xref linkend="gnutls"/> is found or the HTTPS protocol is not needed.
[78865d9]131 </para>
[61562907]132
[db0eb6a]133 </sect2>
[bab92281]134
[db0eb6a]135 <sect2 role="configuration">
136 <title>Configuring Wget</title>
137
138 <sect3 id="wget-config">
139 <title>Config Files</title>
[bab92281]140
[78865d9]141 <para>
142 <filename>/etc/wgetrc</filename> and
143 <filename>~/.wgetrc</filename>
144 </para>
[bab92281]145
[db0eb6a]146 <indexterm zone="wget wget-config">
147 <primary sortas="e-AA.wgetrc">~/.wgetrc</primary>
148 </indexterm>
[bab92281]149
[db0eb6a]150 <indexterm zone="wget wget-config">
151 <primary sortas="e-etc-wgetrc">/etc/wgetrc</primary>
152 </indexterm>
[bab92281]153
[78865d9]154 <para>
155 If you have installed the <xref linkend="cacerts"/> and you want
156 <application>Wget</application> to use them, as the
157 <systemitem class="username">root</systemitem> user:
158 </para>
[bab92281]159
[78865d9]160<screen role="root"><userinput>echo ca-directory=/etc/ssl/certs >> /etc/wgetrc</userinput></screen>
[61562907]161
[db0eb6a]162 </sect3>
[61562907]163
[db0eb6a]164 </sect2>
[bab92281]165
[db0eb6a]166 <sect2 role="content">
167 <title>Contents</title>
168
169 <segmentedlist>
170 <segtitle>Installed Program</segtitle>
[c3c56b2]171 <segtitle>Installed Libraries</segtitle>
172 <segtitle>Installed Directories</segtitle>
[bab92281]173
[db0eb6a]174 <seglistitem>
[c3c56b2]175 <seg>
176 wget
177 </seg>
178 <seg>
179 None
180 </seg>
181 <seg>
182 None
183 </seg>
[db0eb6a]184 </seglistitem>
185 </segmentedlist>
[bab92281]186
[db0eb6a]187 <variablelist>
188 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
189 <?dbfo list-presentation="list"?>
190 <?dbhtml list-presentation="table"?>
[bab92281]191
[db0eb6a]192 <varlistentry id="wget-prog">
193 <term><command>wget</command></term>
194 <listitem>
[78865d9]195 <para>
196 retrieves files from the Web using the HTTP, HTTPS and FTP
197 protocols. It is designed to be non-interactive, for background or
198 unattended operations.
199 </para>
[db0eb6a]200 <indexterm zone="wget wget-prog">
201 <primary sortas="b-wget">wget</primary>
202 </indexterm>
203 </listitem>
204 </varlistentry>
[61562907]205
[db0eb6a]206 </variablelist>
[61562907]207
[db0eb6a]208 </sect2>
[61562907]209
[f45b1953]210</sect1>
Note: See TracBrowser for help on using the repository browser.