source: postlfs/filesystems/reiser.xml@ 12a6d32

11.0 11.1 11.2 11.3 12.0 12.1 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 12a6d32 was 45ab6c7, checked in by Xi Ruoyao <xry111@…>, 3 years ago

more SVN prop clean up

Remove "$LastChanged$" everywhere, and also some unused $Date$

  • Property mode set to 100644
File size: 6.6 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 reiser-download-http "&kernel-dl;/linux/kernel/people/jeffm/reiserfsprogs/v&reiser-version;/reiserfsprogs-&reiser-version;.tar.xz">
8 <!ENTITY reiser-download-ftp " ">
9 <!ENTITY reiser-md5sum "90c139542725efc6da3a6b1709695395">
10 <!ENTITY reiser-size "439 KB">
11 <!ENTITY reiser-buildsize "13 MB">
12 <!ENTITY reiser-time "0.2 SBU">
13]>
14
15<sect1 id="reiserfs" xreflabel="reiserfsprogs-&reiser-version;">
16 <?dbhtml filename="reiserfs.html"?>
17
18 <sect1info>
19 <date>$Date$</date>
20 </sect1info>
21
22 <title>reiserfsprogs-&reiser-version;</title>
23
24 <indexterm zone="reiserfs">
25 <primary sortas="a-reiserfs">reiserfsprogs</primary>
26 </indexterm>
27
28 <sect2 role="package">
29 <title>Introduction to reiserfsprogs</title>
30
31 <para>
32 The <application>reiserfsprogs</application> package contains various
33 utilities for use with the Reiser file system.
34 </para>
35
36 &lfs101_checked;
37
38 <bridgehead renderas="sect3">Package Information</bridgehead>
39 <itemizedlist spacing="compact">
40 <listitem>
41 <para>
42 Download (HTTP): <ulink url="&reiser-download-http;"/>
43 </para>
44 </listitem>
45 <listitem>
46 <para>
47 Download (FTP): <ulink url="&reiser-download-ftp;"/>
48 </para>
49 </listitem>
50 <listitem>
51 <para>
52 Download MD5 sum: &reiser-md5sum;
53 </para>
54 </listitem>
55 <listitem>
56 <para>
57 Download size: &reiser-size;
58 </para>
59 </listitem>
60 <listitem>
61 <para>
62 Estimated disk space required: &reiser-buildsize;
63 </para>
64 </listitem>
65 <listitem>
66 <para>
67 Estimated build time: &reiser-time;
68 </para>
69 </listitem>
70 </itemizedlist>
71
72 <para condition="html" role="usernotes">User Notes:
73 <ulink url="&blfs-wiki;/reiser"/></para>
74
75 </sect2>
76
77 <sect2 role="kernel" id='reiserfs-kernel'>
78 <title>Kernel Configuration</title>
79
80 <para>
81 Enable the following option in the kernel configuration
82 and recompile the kernel:
83 </para>
84
85<screen><literal>File systems ---&gt;
86 &lt;*/M&gt; Reiserfs support [CONFIG_REISERFS_FS]</literal></screen>
87
88 <indexterm zone="reiserfs reiserfs-kernel">
89 <primary sortas="d-reiseerfs">Reiserfs Programs</primary>
90 </indexterm>
91
92 </sect2>
93
94 <sect2 role="installation">
95 <title>Installation of reiserfsprogs</title>
96
97 <para>
98 Install <application>reiserfsprogs</application> by running the following
99 commands:
100 </para>
101
102<screen><userinput>sed -i '/parse_time.h/i #define _GNU_SOURCE' lib/parse_time.c &amp;&amp;
103autoreconf -fiv &amp;&amp;
104./configure --prefix=/usr \
105 --sbindir=/sbin &amp;&amp;
106
107make</userinput></screen>
108
109 <para>
110 This package does not come with a test suite.
111 </para>
112
113 <para>
114 Now, as the <systemitem class="username">root</systemitem> user:
115 </para>
116
117<screen role="root"><userinput>make install</userinput></screen>
118
119 </sect2>
120
121 <sect2 role="commands">
122 <title>Command Explanations</title>
123
124 <para>
125 <command>sed ...</command>: Ensure a variable is defined for use
126 with recent include files.
127 </para>
128
129 <para>
130 <parameter>--sbindir=/sbin</parameter>: This switch ensures that the
131 <application>reiserfsprogs</application> utilities are installed in
132 <filename class="directory">/sbin</filename>.
133 </para>
134
135 </sect2>
136
137 <sect2 role="content">
138 <title>Contents</title>
139
140 <segmentedlist>
141 <segtitle>Installed Programs</segtitle>
142 <segtitle>Installed Library</segtitle>
143 <segtitle>Installed Directory</segtitle>
144
145 <seglistitem>
146 <seg>debugreiserfs, mkreiserfs, reiserfsck, reiserfstune, and
147 resize_reiserfs</seg>
148 <seg>libreiserfscore.so</seg>
149 <seg>/usr/include/reiserfs</seg>
150 </seglistitem>
151 </segmentedlist>
152
153 <variablelist>
154 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
155 <?dbfo list-presentation="list"?>
156 <?dbhtml list-presentation="table"?>
157
158 <varlistentry id="debugreiserfs">
159 <term><command>debugreiserfs</command></term>
160 <listitem>
161 <para>
162 can sometimes help to solve problems with
163 <application>ReiserFS</application> file systems. If it is called
164 without options, it prints the super block of any
165 <application>ReiserFS</application> file
166 system found on the device
167 </para>
168 <indexterm zone="reiserfs debugreiserfs">
169 <primary sortas="b-debugreiserfs">debugreiserfs</primary>
170 </indexterm>
171 </listitem>
172 </varlistentry>
173
174 <varlistentry id="mkreiserfs">
175 <term><command>mkreiserfs</command></term>
176 <listitem>
177 <para>
178 creates a <application>ReiserFS</application> file system
179 </para>
180 <indexterm zone="reiserfs mkreiserfs">
181 <primary sortas="b-mkreiserfs">mkreiserfs</primary>
182 </indexterm>
183 </listitem>
184 </varlistentry>
185
186 <varlistentry id="reiserfsck">
187 <term><command>reiserfsck</command></term>
188 <listitem>
189 <para>
190 is used to check or repair a
191 <application>ReiserFS</application> file system
192 </para>
193 <indexterm zone="reiserfs reiserfsck">
194 <primary sortas="b-reiserfsck">reiserfsck</primary>
195 </indexterm>
196 </listitem>
197 </varlistentry>
198
199 <varlistentry id="reiserfstune">
200 <term><command>reiserfstune</command></term>
201 <listitem>
202 <para>
203 is used for tuning the <application>ReiserFS</application>
204 journal. <emphasis>WARNING</emphasis>: Don't use this utility
205 without first reading the man page thoroughly
206 </para>
207 <indexterm zone="reiserfs reiserfstune">
208 <primary sortas="b-reiserfstune">reiserfstune</primary>
209 </indexterm>
210 </listitem>
211 </varlistentry>
212
213 <varlistentry id="resize_reiserfs">
214 <term><command>resize_reiserfs</command></term>
215 <listitem>
216 <para>
217 is used to resize an unmounted
218 <application>ReiserFS</application> file system
219 </para>
220 <indexterm zone="reiserfs resize_reiserfs">
221 <primary sortas="b-resize_reiserfs">resize_reiserfs</primary>
222 </indexterm>
223 </listitem>
224 </varlistentry>
225
226 </variablelist>
227
228 </sect2>
229
230</sect1>
Note: See TracBrowser for help on using the repository browser.