source: networking/netprogs/wget.xml@ 14891a90

12.0 12.1 kea ken/TL2024 ken/tuningfonts lazarus lxqt plabs/newcss python3.11 rahul/power-profiles-daemon renodr/vulkan-addition trunk xry111/llvm18 xry111/xf86-video-removal
Last change on this file since 14891a90 was 14891a90, checked in by Xi Ruoyao <xry111@…>, 12 months ago

treewide: More "User Notes" clean up

Remove links to pages w/o real contents.

  • Property mode set to 100644
File size: 6.0 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY wget-download-http
8 "&gnu-http;/wget/wget-&wget-version;.tar.gz">
9 <!ENTITY wget-download-ftp
10 "&gnu-ftp;/wget/wget-&wget-version;.tar.gz">
11 <!ENTITY wget-md5sum "e7f7ca2f215b711f76584756ebd3c853">
12 <!ENTITY wget-size "4.8 MB">
13 <!ENTITY wget-buildsize "36 MB (add 27 MB for tests)">
14 <!ENTITY wget-time "0.3 SBU (add 0.3 SBU for tests)">
15]>
16
17<sect1 id="wget" xreflabel="Wget-&wget-version;">
18 <?dbhtml filename="wget.html"?>
19
20
21 <title>Wget-&wget-version;</title>
22
23 <indexterm zone="wget">
24 <primary sortas="a-Wget">Wget</primary>
25 </indexterm>
26
27 <sect2 role="package">
28 <title>Introduction to Wget</title>
29
30 <para>
31 The <application>Wget</application> package contains a utility useful for
32 non-interactive downloading of files from the Web.
33 </para>
34
35 &lfs113_checked;
36
37 <bridgehead renderas="sect3">Package Information</bridgehead>
38 <itemizedlist spacing="compact">
39 <listitem>
40 <para>
41 Download (HTTP): <ulink url="&wget-download-http;"/>
42 </para>
43 </listitem>
44 <listitem>
45 <para>
46 Download (FTP): <ulink url="&wget-download-ftp;"/>
47 </para>
48 </listitem>
49 <listitem>
50 <para>
51 Download MD5 sum: &wget-md5sum;
52 </para>
53 </listitem>
54 <listitem>
55 <para>
56 Download size: &wget-size;
57 </para>
58 </listitem>
59 <listitem>
60 <para>
61 Estimated disk space required: &wget-buildsize;
62 </para>
63 </listitem>
64 <listitem>
65 <para>
66 Estimated build time: &wget-time;
67 </para>
68 </listitem>
69 </itemizedlist>
70
71 <bridgehead renderas="sect3">Wget Dependencies</bridgehead>
72
73 <bridgehead renderas="sect4">Recommended</bridgehead>
74 <para role="recommended">
75 <xref role="runtime" linkend="make-ca"/> (runtime)
76 </para>
77
78 <bridgehead renderas="sect4">Optional</bridgehead>
79 <para role="optional">
80 <xref linkend="gnutls"/>,
81 <xref linkend="perl-http-daemon"/> (for the test suite),
82 <xref linkend="perl-io-socket-ssl"/> (for the test suite),
83 <xref linkend="libidn2"/>,
84 <xref linkend="libpsl"/>,
85 <xref linkend="pcre"/> or <xref linkend="pcre2"/>, and
86 <xref linkend="valgrind"/> (for the test suite)
87 </para>
88
89 </sect2>
90
91 <sect2 role="installation">
92 <title>Installation of Wget</title>
93
94 <para>
95 Install <application>Wget</application> by running the following commands:
96 </para>
97
98<screen><userinput>./configure --prefix=/usr \
99 --sysconfdir=/etc \
100 --with-ssl=openssl &amp;&amp;
101make</userinput></screen>
102
103 <para>
104 To test the results, issue: <command>make check</command>.
105 </para>
106
107 <!-- libwww-perl/HTTP-Daemon/#21
108 Removing, since IO::Socket//INET6 has been deprecated
109 and replaced with IO::Socket::IP, which fixes the
110 problem
111 <para>
112 HTTPS tests are known to fail if Perl module IO::Socket::INET6
113 is installed.
114 </para>
115-->
116 <para>
117 Some tests may fail when Valgrind tests are enabled.
118 </para>
119
120 <para>
121 Now, as the <systemitem class="username">root</systemitem> user:
122 </para>
123
124<screen role="root"><userinput>make install</userinput></screen>
125 </sect2>
126
127 <sect2 role="commands">
128 <title>Command Explanations</title>
129
130 <para>
131 <parameter>--sysconfdir=/etc</parameter>: This relocates the configuration
132 file from <filename class="directory">/usr/etc</filename> to
133 <filename class="directory">/etc</filename>.
134 </para>
135
136 <para>
137 <parameter>--with-ssl=openssl</parameter>: This allows the program to use
138 openssl instead of <xref linkend="gnutls"/>.
139 </para>
140
141 <para>
142 <option>--enable-valgrind-tests</option>: This allows the tests to be
143 run under valgrind.
144 </para>
145
146 </sect2>
147
148 <sect2 role="configuration">
149 <title>Configuring Wget</title>
150
151 <sect3 id="wget-config">
152 <title>Config Files</title>
153
154 <para>
155 <filename>/etc/wgetrc</filename> and
156 <filename>~/.wgetrc</filename>
157 </para>
158
159 <indexterm zone="wget wget-config">
160 <primary sortas="e-AA.wgetrc">~/.wgetrc</primary>
161 </indexterm>
162
163 <indexterm zone="wget wget-config">
164 <primary sortas="e-etc-wgetrc">/etc/wgetrc</primary>
165 </indexterm>
166
167<!--
168 <para>
169 If you have installed <xref linkend="make-ca"/> and you want
170 <application>Wget</application> to use them, as the
171 <systemitem class="username">root</systemitem> user:
172 </para>
173
174<screen role="root"><userinput>echo ca-directory=/etc/ssl/certs >> /etc/wgetrc</userinput></screen>
175-->
176
177 </sect3>
178
179 </sect2>
180
181 <sect2 role="content">
182 <title>Contents</title>
183
184 <segmentedlist>
185 <segtitle>Installed Program</segtitle>
186 <segtitle>Installed Libraries</segtitle>
187 <segtitle>Installed Directories</segtitle>
188
189 <seglistitem>
190 <seg>
191 wget
192 </seg>
193 <seg>
194 None
195 </seg>
196 <seg>
197 None
198 </seg>
199 </seglistitem>
200 </segmentedlist>
201
202 <variablelist>
203 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
204 <?dbfo list-presentation="list"?>
205 <?dbhtml list-presentation="table"?>
206
207 <varlistentry id="wget-prog">
208 <term><command>wget</command></term>
209 <listitem>
210 <para>
211 retrieves files from the Web using the HTTP, HTTPS and FTP
212 protocols. It is designed to be non-interactive, for background or
213 unattended operations
214 </para>
215 <indexterm zone="wget wget-prog">
216 <primary sortas="b-wget">wget</primary>
217 </indexterm>
218 </listitem>
219 </varlistentry>
220
221 </variablelist>
222
223 </sect2>
224
225</sect1>
Note: See TracBrowser for help on using the repository browser.