source: basicnet/mailnews/slrn.xml@ 518538f

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 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 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 518538f was 518538f, checked in by Randy McMurchy <randy@…>, 19 years ago

Standardized the 'Estimated disk space required' text

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

  • 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.3//EN"
3 "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY slrn-download-http "http://prdownloads.sourceforge.net/slrn/slrn-&slrn-version;.tar.bz2">
8 <!ENTITY slrn-download-ftp "ftp://ftp.fh-heilbronn.de/pub/mirrors/slrn/slrn-&slrn-version;.tar.bz2">
9 <!ENTITY slrn-size "1011 KB">
10 <!ENTITY slrn-buildsize "9.3 MB">
11 <!ENTITY slrn-time "0.19 SBU">
12]>
13
14<sect1 id="slrn" xreflabel="slrn-&slrn-version;">
15<sect1info>
16<othername>$LastChangedBy$</othername>
17<date>$Date$</date>
18</sect1info>
19<?dbhtml filename="slrn.html"?>
20<title>slrn-&slrn-version;</title>
21
22<sect2>
23<title>Introduction to <application>slrn</application></title>
24
25<para><application>slrn</application> is a slang-based news reader, capable of reading local news
26spools as well as groups from an <acronym>NNTP</acronym> server. Small local news spools
27can also be created with the use of the slrnpull program included in
28the slrn distribution.</para>
29
30<sect3><title>Package information</title>
31<itemizedlist spacing='compact'>
32<listitem><para>Download (HTTP): <ulink url="&slrn-download-http;"/></para></listitem>
33<listitem><para>Download (FTP): <ulink url="&slrn-download-ftp;"/></para></listitem>
34<listitem><para>Download size: &slrn-size;</para></listitem>
35<listitem><para>Estimated disk space required: &slrn-buildsize;</para></listitem>
36<listitem><para>Estimated build time: &slrn-time;</para></listitem></itemizedlist>
37</sect3>
38
39<sect3><title><application>slrn</application> dependencies</title>
40<sect4><title>Required</title>
41<para><xref linkend="slang"/> and <acronym>MTA</acronym> (See <xref linkend="server-mail"/>)</para></sect4>
42
43<sect4><title>Optional</title>
44<para>
45<xref linkend="openssl"/>,
46<ulink url="http://www.gnu.org/software/gnutls/">GnuTLS</ulink>,
47<ulink url="http://www.fpx.de/fp/Software/UUDeview/">UUDeview</ulink>,
48<ulink url="http://www.isc.org/index.pl?/sw/inn/">INN</ulink> and
49<ulink url="http://homepage.mac.com/imeowbot/iblog/C1355421991/">libcanlock</ulink>
50</para></sect4>
51</sect3>
52
53</sect2>
54
55<sect2>
56<title>Installation of <application>slrn</application></title>
57
58<para>Install <application>slrn</application> by running the following commands:</para>
59
60<screen><userinput><command>./configure --prefix=/usr --sysconfdir=/etc \
61 --with-slrnpull --enable-spool &amp;&amp;
62make &amp;&amp;
63make install</command></userinput></screen>
64
65</sect2>
66
67<sect2>
68<title>Command explanations</title>
69
70<para><parameter>--with-slrnpull --enable-spool</parameter>: These
71switches enable building the <command>slrnpull</command>
72executable.</para>
73
74<para><option>--with-ssl</option>: This switch adds OpenSSL support to
75slrn.</para>
76
77<para><option>--with-uudeview</option>: This switch adds UUDeview
78support to slrn.</para>
79
80</sect2>
81
82<sect2>
83<title>Configuring <application>slrn</application></title>
84
85<sect3><title>Config files</title>
86<para><filename>/etc/slrn.rc</filename>,
87<filename>~/.slrnrc</filename></para>
88</sect3>
89
90<sect3><title>Configuration Information</title>
91
92<para>The first time <command>slrn</command> is run, the
93<filename>~/.jnewsrc</filename> file must be
94created. For this configuration to work, you must have an environmental
95variable, <envar>NNTPSERVER</envar>, set. In normal operation it would be exported into
96the environment by a startup file, like <filename>/etc/profile</filename>
97or <filename>~/.bashrc</filename>. Here we will just put it into the
98environment of the configuration step. We will use the
99<acronym>LFS</acronym> news server in this example, but you should use
100whatever server you prefer.</para>
101
102<para>Create the <filename>~/.jnewsrc</filename> file with the following
103command:</para>
104
105<screen><userinput><command>NNTPSERVER=<replaceable>news.linuxfromscratch.org</replaceable> \
106 slrn -f ~/.jnewsrc --create</command></userinput></screen>
107
108<para>You will also have to edit one of the configuration files. There
109is a sample startup <filename>/usr/share/doc/slrn/slrn.rc</filename>
110file that comes with slrn. It is extensively documented but if you
111need more information, look at <ulink
112url="http://slrn.sourceforge.net/docs/">the slrn
113website</ulink>.</para>
114
115</sect3>
116
117</sect2>
118
119<sect2>
120<title>Contents</title>
121<para>The <application>slrn</application> package contains
122<command>slrn</command> and
123<command>slrnpull</command>.</para>
124</sect2>
125
126<sect2><title>Description</title>
127
128<sect3><title>slrn</title>
129<para><command>slrn</command> is the slang-based news reader.</para></sect3>
130
131<sect3><title>slrnpull</title>
132<para><command>slrnpull</command> is used to pull a small news feed from
133an <acronym>NNTP</acronym> server for offline reading.</para></sect3>
134
135</sect2>
136
137</sect1>
138
Note: See TracBrowser for help on using the repository browser.