Changeset 78865d9


Ignore:
Timestamp:
03/31/2012 12:43:48 AM (12 years ago)
Author:
Andrew Benton <andy@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 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, 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
Children:
f7993366
Parents:
e5b9fc73
Message:

added a note about the ca certs to the wget page

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • networking/netprogs/wget.xml

    re5b9fc73 r78865d9  
    55  %general-entities;
    66
    7   <!ENTITY wget-download-http "http://ftp.gnu.org/gnu/wget/wget-&wget-version;.tar.xz">
    8   <!ENTITY wget-download-ftp  "ftp://ftp.gnu.org/gnu/wget/wget-&wget-version;.tar.xz">
     7  <!ENTITY wget-download-http
     8    "http://ftp.gnu.org/gnu/wget/wget-&wget-version;.tar.xz">
     9  <!ENTITY wget-download-ftp
     10    "ftp://ftp.gnu.org/gnu/wget/wget-&wget-version;.tar.xz">
    911  <!ENTITY wget-md5sum        "7f518b3a71e9efd330e9a0c3714f8463">
    1012  <!ENTITY wget-size          "1.4 MB">
     
    3032    <title>Introduction to Wget</title>
    3133
    32     <para>The <application>Wget</application> package contains a utility useful
    33     for non-interactive downloading of files from the Web.</para>
     34    <para>
     35      The <application>Wget</application> package contains a utility useful for
     36      non-interactive downloading of files from the Web.
     37    </para>
    3438
    35     &lfs70_checked;
     39    &lfs71_checked;
    3640
    3741    <bridgehead renderas="sect3">Package Information</bridgehead>
    3842    <itemizedlist spacing="compact">
    3943      <listitem>
    40         <para>Download (HTTP): <ulink url="&wget-download-http;"/></para>
     44        <para>
     45          Download (HTTP): <ulink url="&wget-download-http;"/>
     46        </para>
    4147      </listitem>
    4248      <listitem>
    43         <para>Download (FTP): <ulink url="&wget-download-ftp;"/></para>
     49        <para>
     50          Download (FTP): <ulink url="&wget-download-ftp;"/>
     51        </para>
    4452      </listitem>
    4553      <listitem>
    46         <para>Download MD5 sum: &wget-md5sum;</para>
     54        <para>
     55          Download MD5 sum: &wget-md5sum;
     56        </para>
    4757      </listitem>
    4858      <listitem>
    49         <para>Download size: &wget-size;</para>
     59        <para>
     60          Download size: &wget-size;
     61        </para>
    5062      </listitem>
    5163      <listitem>
    52         <para>Estimated disk space required: &wget-buildsize;</para>
     64        <para>
     65          Estimated disk space required: &wget-buildsize;
     66        </para>
    5367      </listitem>
    5468      <listitem>
    55         <para>Estimated build time: &wget-time;</para>
     69        <para>
     70          Estimated build time: &wget-time;
     71        </para>
    5672      </listitem>
    5773    </itemizedlist>
     
    6076
    6177    <bridgehead renderas="sect4">Optional</bridgehead>
    62     <para role="optional"><xref linkend="openssl"/> or <xref linkend="gnutls"/>,
    63     <xref linkend="libidn"/>, Perl Module HTTP::Server (for the test suite)
    64     (see the standard Perl <xref linkend="perl-standard-install"/>), and
    65     <ulink url="http://www.inet.no/dante/">Dante</ulink></para>
     78    <para role="optional">
     79      <xref linkend="openssl"/> or <xref linkend="gnutls"/>,
     80      <xref linkend="libidn"/>,
     81      Perl Module HTTP::Server (for the test suite: see the standard Perl
     82      <xref linkend="perl-standard-install"/>) and
     83      <ulink url="http://www.inet.no/dante/">Dante</ulink>
     84    </para>
    6685
    67     <para condition="html" role="usernotes">User Notes:
    68     <ulink url="&blfs-wiki;/wget"/></para>
    69 
     86    <para condition="html" role="usernotes">
     87      User Notes: <ulink url="&blfs-wiki;/wget"/>
     88    </para>
    7089  </sect2>
    7190
     
    7392    <title>Installation of Wget</title>
    7493
    75     <para>Install <application>Wget</application> by running the following
    76     commands:</para>
     94    <para>
     95      Install <application>Wget</application> by running the following commands:
     96    </para>
    7797
    78 <screen><userinput>./configure --prefix=/usr     \
    79             --sysconfdir=/etc \
     98<screen><userinput>./configure --prefix=/usr      \
     99            --sysconfdir=/etc  \
    80100            --with-ssl=openssl &amp;&amp;
    81101make</userinput></screen>
    82102
    83     <para>To test the results, issue: <command>make check</command>.</para>
     103    <para>
     104      To test the results, issue: <command>make check</command>.
     105    </para>
    84106
    85     <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
     107    <para>
     108      Now, as the <systemitem class="username">root</systemitem> user:
     109    </para>
    86110
    87111<screen role="root"><userinput>make install</userinput></screen>
    88 
    89112  </sect2>
    90113
     
    92115    <title>Command Explanations</title>
    93116
    94     <para><parameter>--sysconfdir=/etc</parameter>: This relocates
    95     the configuration file from <filename class="directory">/usr/etc</filename> to
    96     <filename class="directory">/etc</filename>.</para>
     117    <para>
     118      <parameter>--sysconfdir=/etc</parameter>: This relocates the configuration
     119      file from <filename class="directory">/usr/etc</filename> to
     120      <filename class="directory">/etc</filename>.
     121    </para>
    97122
    98     <para><parameter>--with-ssl=openssl</parameter>: This allows the program to
    99     work with <xref linkend="openssl"/>.  It can be omitted if <xref linkend="gnutls"/>
    100     is found or the https protocol is not needed. </para>
    101 
     123    <para>
     124      <parameter>--with-ssl=openssl</parameter>: This allows the program to work
     125      with <xref linkend="openssl"/>. It can be omitted if
     126      <xref linkend="gnutls"/> is found or the https protocol is not needed.
     127    </para>
    102128  </sect2>
    103129
     
    108134      <title>Config Files</title>
    109135
    110       <para><filename>/etc/wgetrc</filename> and
    111       <filename>~/.wgetrc</filename></para>
     136      <para>
     137        <filename>/etc/wgetrc</filename> and
     138        <filename>~/.wgetrc</filename>
     139      </para>
    112140
    113141      <indexterm zone="wget wget-config">
     
    119147      </indexterm>
    120148
    121       <para>There are no changes required to these files.</para>
     149      <para>
     150        If you have installed the <xref linkend="cacerts"/> and you want
     151        <application>Wget</application> to use them, as the
     152        <systemitem class="username">root</systemitem> user:
     153      </para>
    122154
     155<screen role="root"><userinput>echo ca-directory=/etc/ssl/certs >> /etc/wgetrc</userinput></screen>
    123156    </sect3>
    124 
    125157  </sect2>
    126158
     
    130162    <segmentedlist>
    131163      <segtitle>Installed Program</segtitle>
    132       <segtitle>Installed Libraries</segtitle>
    133       <segtitle>Installed Directories</segtitle>
    134164
    135165      <seglistitem>
    136166        <seg>wget</seg>
    137         <seg>None</seg>
    138         <seg>None</seg>
    139167      </seglistitem>
    140168    </segmentedlist>
     
    148176        <term><command>wget</command></term>
    149177        <listitem>
    150           <para> retrieves files from the Web using the HTTP, HTTPS and
    151           FTP protocols.  It is designed to be non-interactive, for
    152           background or unattended operations.</para>
     178          <para>
     179            retrieves files from the Web using the HTTP, HTTPS and FTP
     180            protocols.  It is designed to be non-interactive, for background or
     181            unattended operations.
     182          </para>
    153183          <indexterm zone="wget wget-prog">
    154184            <primary sortas="b-wget">wget</primary>
     
    156186        </listitem>
    157187      </varlistentry>
    158 
    159188    </variablelist>
    160 
    161189  </sect2>
    162 
    163190</sect1>
Note: See TracChangeset for help on using the changeset viewer.