mirror of
https://github.com/Zeckmathederg/glfs.git
synced 2025-01-24 23:32:12 +08:00
Tagged reiser.xml
git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@4193 af4574ff-66df-0310-9fd7-8a98e5e911e0
This commit is contained in:
parent
22c910a7da
commit
bd46ff4d02
@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="ISO-8859-1"?>
|
||||
<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
|
||||
<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
|
||||
"http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
|
||||
<!ENTITY % general-entities SYSTEM "../../general.ent">
|
||||
%general-entities;
|
||||
@ -13,139 +13,161 @@
|
||||
]>
|
||||
|
||||
<sect1 id="reiserfs" xreflabel="ReiserFS-&reiser-version;">
|
||||
<sect1info>
|
||||
<othername>$LastChangedBy$</othername>
|
||||
<date>$Date$</date>
|
||||
</sect1info>
|
||||
<?dbhtml filename="reiserfs.html"?>
|
||||
<title>ReiserFS-&reiser-version;</title>
|
||||
<indexterm zone="reiserfs">
|
||||
<primary sortas="a-ReiserFS">ReiserFS</primary>
|
||||
</indexterm>
|
||||
<?dbhtml filename="reiserfs.html"?>
|
||||
|
||||
<sect2>
|
||||
<title>Introduction to <application>ReiserFS</application></title>
|
||||
<sect1info>
|
||||
<othername>$LastChangedBy$</othername>
|
||||
<date>$Date$</date>
|
||||
</sect1info>
|
||||
|
||||
<para>The <application>ReiserFS</application> package contains various
|
||||
utilities for use with the Reiser file system.</para>
|
||||
<title>ReiserFS-&reiser-version;</title>
|
||||
|
||||
<sect3><title>Package information</title>
|
||||
<itemizedlist spacing='compact'>
|
||||
<listitem><para>Download (HTTP): <ulink
|
||||
url="&reiser-download-http;"/></para></listitem>
|
||||
<listitem><para>Download (FTP): <ulink
|
||||
url="&reiser-download-ftp;"/></para></listitem>
|
||||
<listitem><para>Download MD5 sum: &reiser-md5sum;</para></listitem>
|
||||
<listitem><para>Download size: &reiser-size;</para></listitem>
|
||||
<listitem><para>Estimated disk space required:
|
||||
&reiser-buildsize;</para></listitem>
|
||||
<listitem><para>Estimated build time:
|
||||
&reiser-time;</para></listitem></itemizedlist>
|
||||
</sect3>
|
||||
<indexterm zone="reiserfs">
|
||||
<primary sortas="a-ReiserFS">ReiserFS</primary>
|
||||
</indexterm>
|
||||
|
||||
</sect2>
|
||||
<sect2 role="package">
|
||||
<title>Introduction to ReiserFS</title>
|
||||
|
||||
<sect2>
|
||||
<title>Installation of <application>ReiserFS</application></title>
|
||||
<para>The <application>ReiserFS</application> package contains various
|
||||
utilities for use with the Reiser file system.</para>
|
||||
|
||||
<para>Install <application>ReiserFS</application> by running the following
|
||||
commands:</para>
|
||||
<bridgehead renderas="sect3">Package Information</bridgehead>
|
||||
<itemizedlist spacing="compact">
|
||||
<listitem>
|
||||
<para>Download (HTTP): <ulink url="&reiser-download-http;"/></para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>Download (FTP): <ulink url="&reiser-download-ftp;"/></para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>Download MD5 sum: &reiser-md5sum;</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>Download size: &reiser-size;</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>Estimated disk space required: &reiser-buildsize;</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>Estimated build time: &reiser-time;</para>
|
||||
</listitem>
|
||||
</itemizedlist>
|
||||
|
||||
<screen><userinput><command>./configure --prefix=/usr --sbindir=/sbin &&
|
||||
make</command></userinput></screen>
|
||||
</sect2>
|
||||
|
||||
<para>Now, as the root user:</para>
|
||||
<sect2 role="installation">
|
||||
<title>Installation of ReiserFS</title>
|
||||
|
||||
<screen><userinput role='root'><command>make install &&
|
||||
<para>Install <application>ReiserFS</application> by running the following
|
||||
commands:</para>
|
||||
|
||||
<screen><userinput>./configure --prefix=/usr --sbindir=/sbin &&
|
||||
make</userinput></screen>
|
||||
|
||||
<para>Now, as the <systemitem class="username">root</systemitem> user:</para>
|
||||
|
||||
<screen role="root"><userinput>make install &&
|
||||
ln -sf reiserfsck /sbin/fsck.reiserfs &&
|
||||
ln -sf mkreiserfs /sbin/mkfs.reiserfs</command></userinput></screen>
|
||||
ln -sf mkreiserfs /sbin/mkfs.reiserfs</userinput></screen>
|
||||
|
||||
</sect2>
|
||||
</sect2>
|
||||
|
||||
<sect2>
|
||||
<title>Command explanations</title>
|
||||
<sect2 role="commands">
|
||||
<title>Command Explanations</title>
|
||||
|
||||
<para><parameter>--prefix=/usr</parameter>: This ensures that
|
||||
the manual pages are installed in the correct location while still
|
||||
installing the programs in <filename class="directory">/sbin</filename> as
|
||||
they should be.</para>
|
||||
<para><parameter>--prefix=/usr</parameter>: This ensures that
|
||||
the manual pages are installed in the correct location while still
|
||||
installing the programs in <filename class="directory">/sbin</filename> as
|
||||
they should be.</para>
|
||||
|
||||
<para><parameter>--sbindir=/sbin</parameter>: This ensures that the
|
||||
<application>ReiserFS</application> utilities are installed in
|
||||
<filename class="directory">/sbin</filename> as they should be.</para>
|
||||
<para><parameter>--sbindir=/sbin</parameter>: This ensures that the
|
||||
<application>ReiserFS</application> utilities are installed in
|
||||
<filename class="directory">/sbin</filename> as they should be.</para>
|
||||
|
||||
</sect2>
|
||||
</sect2>
|
||||
|
||||
<sect2>
|
||||
<title>Contents</title>
|
||||
<sect2 role="content">
|
||||
<title>Contents</title>
|
||||
|
||||
<segmentedlist>
|
||||
<segtitle>Installed Programs</segtitle>
|
||||
<segtitle>Installed Libraries</segtitle>
|
||||
<segtitle>Installed Directories</segtitle>
|
||||
<segmentedlist>
|
||||
<segtitle>Installed Programs</segtitle>
|
||||
<segtitle>Installed Libraries</segtitle>
|
||||
<segtitle>Installed Directories</segtitle>
|
||||
|
||||
<seglistitem>
|
||||
<seg>debugreiserfs, mkreiserfs, reiserfsck, reiserfstune and
|
||||
resize_reiserfs</seg>
|
||||
<seg>None</seg>
|
||||
<seg>None</seg>
|
||||
</seglistitem>
|
||||
</segmentedlist>
|
||||
<seglistitem>
|
||||
<seg>debugreiserfs, mkreiserfs, reiserfsck, reiserfstune, and
|
||||
resize_reiserfs</seg>
|
||||
<seg>None</seg>
|
||||
<seg>None</seg>
|
||||
</seglistitem>
|
||||
</segmentedlist>
|
||||
|
||||
<variablelist>
|
||||
<bridgehead renderas="sect3">Short Descriptions</bridgehead>
|
||||
<?dbfo list-presentation="list"?>
|
||||
<variablelist>
|
||||
<bridgehead renderas="sect3">Short Descriptions</bridgehead>
|
||||
<?dbfo list-presentation="list"?>
|
||||
<?dbhtml list-presentation="table"?>
|
||||
|
||||
<varlistentry id="debugreiserfs">
|
||||
<term><command>debugreiserfs</command></term>
|
||||
<listitem><para>can sometimes help to solve problems with
|
||||
<application>ReiserFS</application> file systems. If it is called without
|
||||
options, it prints the super block of any reiserfs file system found on the
|
||||
device.</para>
|
||||
<indexterm zone="reiserfs debugreiserfs">
|
||||
<primary sortas="b-debugreiserfs">debugreiserfs</primary>
|
||||
</indexterm></listitem>
|
||||
</varlistentry>
|
||||
<varlistentry id="debugreiserfs">
|
||||
<term><command>debugreiserfs</command></term>
|
||||
<listitem>
|
||||
<para>can sometimes help to solve problems with
|
||||
<application>ReiserFS</application> file systems. If it is called
|
||||
without options, it prints the super block of any reiserfs file
|
||||
system found on the device.</para>
|
||||
<indexterm zone="reiserfs debugreiserfs">
|
||||
<primary sortas="b-debugreiserfs">debugreiserfs</primary>
|
||||
</indexterm>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
<varlistentry id="mkreiserfs">
|
||||
<term><command>mkreiserfs</command></term>
|
||||
<listitem><para>creates a <application>ReiserFS</application> file
|
||||
system.</para>
|
||||
<indexterm zone="reiserfs mkreiserfs">
|
||||
<primary sortas="b-mkreiserfs">mkreiserfs</primary>
|
||||
</indexterm></listitem>
|
||||
</varlistentry>
|
||||
<varlistentry id="mkreiserfs">
|
||||
<term><command>mkreiserfs</command></term>
|
||||
<listitem>
|
||||
<para>creates a <application>ReiserFS</application> file system.</para>
|
||||
<indexterm zone="reiserfs mkreiserfs">
|
||||
<primary sortas="b-mkreiserfs">mkreiserfs</primary>
|
||||
</indexterm>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
<varlistentry id="reiserfsck">
|
||||
<term><command>reiserfsck</command></term>
|
||||
<listitem><para>is used to check or repair a
|
||||
<application>ReiserFS</application> file system.</para>
|
||||
<indexterm zone="reiserfs reiserfsck">
|
||||
<primary sortas="b-reiserfsck">reiserfsck</primary>
|
||||
</indexterm></listitem>
|
||||
</varlistentry>
|
||||
<varlistentry id="reiserfsck">
|
||||
<term><command>reiserfsck</command></term>
|
||||
<listitem>
|
||||
<para>is used to check or repair a
|
||||
<application>ReiserFS</application> file system.</para>
|
||||
<indexterm zone="reiserfs reiserfsck">
|
||||
<primary sortas="b-reiserfsck">reiserfsck</primary>
|
||||
</indexterm>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
<varlistentry id="reiserfstune">
|
||||
<term><command>reiserfstune</command></term>
|
||||
<listitem><para>is used for tuning the <application>ReiserFS</application>
|
||||
journal. <emphasis>WARNING</emphasis>: Don't use this utility without first
|
||||
reading the man page thoroughly.</para>
|
||||
<indexterm zone="reiserfs reiserfstune">
|
||||
<primary sortas="b-reiserfstune">reiserfstune</primary>
|
||||
</indexterm></listitem>
|
||||
</varlistentry>
|
||||
<varlistentry id="reiserfstune">
|
||||
<term><command>reiserfstune</command></term>
|
||||
<listitem>
|
||||
<para>is used for tuning the <application>ReiserFS</application>
|
||||
journal. <emphasis>WARNING</emphasis>: Don't use this utility without
|
||||
first reading the man page thoroughly.</para>
|
||||
<indexterm zone="reiserfs reiserfstune">
|
||||
<primary sortas="b-reiserfstune">reiserfstune</primary>
|
||||
</indexterm>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
<varlistentry id="resize_reiserfs">
|
||||
<term><command>resize_reiserfs</command></term>
|
||||
<listitem><para>is used to resize an unmounted
|
||||
<application>ReiserFS</application> file system.</para>
|
||||
<indexterm zone="reiserfs resize_reiserfs">
|
||||
<primary sortas="b-resize_reiserfs">resize_reiserfs</primary>
|
||||
</indexterm></listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
<varlistentry id="resize_reiserfs">
|
||||
<term><command>resize_reiserfs</command></term>
|
||||
<listitem>
|
||||
<para>is used to resize an unmounted
|
||||
<application>ReiserFS</application> file system.</para>
|
||||
<indexterm zone="reiserfs resize_reiserfs">
|
||||
<primary sortas="b-resize_reiserfs">resize_reiserfs</primary>
|
||||
</indexterm>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
</sect2>
|
||||
</variablelist>
|
||||
|
||||
</sect2>
|
||||
|
||||
</sect1>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user