source: postlfs/editors/nano.xml@ 8070ffce

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 8070ffce was d4afab2, checked in by Randy McMurchy <randy@…>, 19 years ago

Added md5sums to Emacs, Ed, nano, Vim and JOE instructions

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

  • Property mode set to 100644
File size: 3.3 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 nano-download-http "http://www.nano-editor.org/dist/v1.2/nano-&nano-version;.tar.gz">
8 <!ENTITY nano-download-ftp "ftp://ftp.uni-koeln.de/editor/nano-&nano-version;.tar.gz">
9 <!ENTITY nano-md5sum "2c513310ec5e8b63abaecaf48670ac7a">
10 <!ENTITY nano-size "897 KB">
11 <!ENTITY nano-buildsize "4.3 MB">
12 <!ENTITY nano-time "0.08 SBU">
13]>
14
15<sect1 id="postlfs-editors-nano">
16<sect1info>
17<othername>$LastChangedBy$</othername>
18<date>$Date$</date>
19</sect1info>
20<?dbhtml filename="nano.html"?>
21<title>nano-&nano-version;</title>
22
23<sect2>
24<title>Introduction to <application>nano</application></title>
25
26<para>The <application>nano</application> package contains a small, simple
27text editor which aims to replace <application>Pico</application>, the default
28editor in the <application>Pine</application> package.</para>
29
30<sect3><title>Package information</title>
31<itemizedlist spacing='compact'>
32<listitem><para>Download (HTTP): <ulink
33url="&nano-download-http;"/></para></listitem>
34<listitem><para>Download (FTP): <ulink
35url="&nano-download-ftp;"/></para></listitem>
36<listitem><para>Download MD5 sum: &nano-md5sum;</para></listitem>
37<listitem><para>Download size: &nano-size;</para></listitem>
38<listitem><para>Estimated disk space required:
39&nano-buildsize;</para></listitem>
40<listitem><para>Estimated build time:
41&nano-time;</para></listitem></itemizedlist>
42</sect3>
43
44<sect3><title><application>nano</application> dependencies</title>
45<sect4><title>Optional</title>
46<para><xref linkend="slang"/></para>
47</sect4>
48</sect3>
49
50</sect2>
51
52<sect2>
53<title>Installation of <application>nano</application></title>
54
55<para>Install <application>nano</application> by running the following
56commands:</para>
57
58<screen><userinput><command>./configure --prefix=/usr --sysconfdir=/etc \
59 --enable-color --enable-multibuffer --enable-nanorc &amp;&amp;
60make &amp;&amp;
61make install &amp;&amp;
62mkdir -p /usr/share/doc/nano/examples &amp;&amp;
63cp nanorc.sample /usr/share/doc/nano/examples</command></userinput></screen>
64
65</sect2>
66
67<sect2>
68<title>Configuring nano</title>
69
70<sect3><title>Config files</title>
71<para><filename>/etc/nanorc</filename>, <filename>~/.nanorc</filename></para>
72
73<para>Example Configuration</para>
74
75<screen><userinput>set autoindent
76set const
77set fill 72
78set historylog
79set multibuffer
80set nohelp
81set regexp
82set smooth
83set suspend</userinput></screen>
84
85<para>Another example is in the
86<filename class="directory">/usr/share/doc/nano/examples</filename> directory
87in the <filename>nanorc.sample</filename> file. It includes color
88configurations and has some documentation included in the comments.</para>
89</sect3>
90</sect2>
91
92<sect2>
93<title>Contents</title>
94
95<para>The <application>nano</application> package contains
96<command>nano</command>.</para>
97
98</sect2>
99
100<sect2><title>Description</title>
101
102<sect3><title>nano</title>
103<para><command>nano</command> is a small, simple text editor which aims to
104replace <application>Pico</application>, the default editor in the
105<application>Pine</application> package.</para></sect3>
106
107</sect2>
108
109</sect1>
Note: See TracBrowser for help on using the repository browser.