mirror of
https://github.com/Zeckmathederg/glfs.git
synced 2025-02-03 14:47:17 +08:00
update to reiserfs-3.6.11
git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@1053 af4574ff-66df-0310-9fd7-8a98e5e911e0
This commit is contained in:
parent
c815c04d19
commit
f7b26fb7d1
@ -11,7 +11,7 @@ page in Chapter 1 for details on who wrote what.</para>
|
||||
<itemizedlist>
|
||||
|
||||
<listitem><para>September 12th, 2003 [larry]: update to
|
||||
xfsprogs-2.5.6.</para></listitem>
|
||||
xfsprogs-2.5.6 and reiserfsprogs-3.6.11.</para></listitem>
|
||||
|
||||
<listitem><para>September 12th, 2003 [igor]: update to
|
||||
Apache-2.0.47.</para></listitem>
|
||||
|
@ -7,31 +7,32 @@ filesystem. It is backward compatible with ext2 and the conversion from ext2
|
||||
to ext3 is trivial.</para>
|
||||
|
||||
<para>You don't need to install anything to use ext3, all the required
|
||||
packages are available with a bare LFS system.</para>
|
||||
packages are available with a bare <acronym>LFS</acronym> system.</para>
|
||||
|
||||
<para>When building the kernel, ensure that you have compiled in ext3
|
||||
support. If you want your root partition to be ext3, then compile the ext3
|
||||
support in the kernel, else you may compile it as a module. Recompile the
|
||||
kernel if needed.</para>
|
||||
|
||||
<para>Edit your <filename>/etc/fstab</filename>. For each partition that you want to convert into
|
||||
ext3, edit the entry so that it looks similar to the following line.</para>
|
||||
<para>Edit your <filename>/etc/fstab</filename>. For each partition that you
|
||||
want to convert into ext3, edit the entry so that it looks similar to the
|
||||
following line.</para>
|
||||
|
||||
<para><screen>/dev/hdXX /mnt_point ext3 defaults 1 0</screen></para>
|
||||
<screen>/dev/hdXX /mnt_point ext3 defaults 1 0</screen>
|
||||
|
||||
<para>In the above line, replace <filename>/dev/hdXX</filename> by the
|
||||
partition (e.g. <filename>/dev/hda2</filename>),
|
||||
<filename class="directory">/mnt_point</filename> by the mount point (e.g. <filename>/home</filename>). The 0 in the last field ensures
|
||||
that the partition will not be checked for consistency during bootup by the
|
||||
checkfs script. You may replace the ext3 fs type in the above by auto if you
|
||||
want to ensure that the partition is mounted if you accidentally skip
|
||||
enabling the ext3 support in the kernel.</para>
|
||||
partition (e.g. <filename>/dev/hda2</filename>), <filename class="directory">
|
||||
/mnt_point</filename> by the mount point (e.g. <filename>/home</filename>). The
|
||||
0 in the last field ensures that the partition will not be checked for
|
||||
consistency during bootup by the checkfs script. You may replace the ext3 fs
|
||||
type in the above by auto if you want to ensure that the partition is mounted
|
||||
if you accidentally skip enabling the ext3 support in the kernel.</para>
|
||||
|
||||
<para>For each partition that you have converted to ext3 in
|
||||
<filename>/etc/fstab</filename>,
|
||||
enable the journal for the partition by running the following command.</para>
|
||||
<para>For each partition that you have converted to ext3 in <filename>
|
||||
/etc/fstab</filename>, enable the journal for the partition by running the
|
||||
following command.</para>
|
||||
|
||||
<para><userinput>tune2fs -j /dev/hdXX</userinput></para>
|
||||
<screen><userinput><command>tune2fs -j /dev/hdXX</command></userinput></screen>
|
||||
|
||||
<para>Remount the concerned partitions, or simply reboot if you have
|
||||
recompiled the kernel to enable ext3 support.</para>
|
||||
|
@ -1,38 +1,40 @@
|
||||
<sect2>
|
||||
<title>Contents</title>
|
||||
|
||||
<para>reiserfsprogs contains <userinput>debugreiserfs</userinput>,
|
||||
<userinput>mkreiserfs</userinput>, <userinput>reiserfsck</userinput>,
|
||||
<userinput>resize_reiserfs</userinput> and
|
||||
<userinput>unpack</userinput>.</para>
|
||||
<para>reiserfsprogs contains <command>debugreiserfs</command>,
|
||||
<command>mkreiserfs</command>, <command>reiserfsck</command>,
|
||||
<command>resize_reiserfs</command> and
|
||||
<command>unpack</command>.</para>
|
||||
|
||||
</sect2>
|
||||
|
||||
<sect2><title>Description</title>
|
||||
|
||||
<sect3><title>debugreiserfs</title>
|
||||
<para>debugreiserfs can sometimes help to solve problems with reiserfs
|
||||
filesystems. If it is called without options it prints the super block
|
||||
of any reiserfs filesystem found on the device.</para></sect3>
|
||||
<para><command>debugreiserfs</command> can sometimes help to solve problems
|
||||
with reiserfs filesystems. If it is called without options it prints the super
|
||||
block of any reiserfs filesystem found on the device.</para></sect3>
|
||||
|
||||
<sect3><title>mkreiserfs</title>
|
||||
<para>mkreiserfs creates a reiserfs file system.</para></sect3>
|
||||
<para><command>mkreiserfs</command> creates a reiserfs file system.</para>
|
||||
</sect3>
|
||||
|
||||
<sect3><title>reiserfsck</title>
|
||||
<para>reiserfsck checks a reiserfs file system.</para></sect3>
|
||||
<para><command>reiserfsck</command> checks a reiserfs file system.</para>
|
||||
</sect3>
|
||||
|
||||
<sect3><title>reiserfstune</title>
|
||||
<para>reiserfstune is used for tuning the ReiserFS journal. WARNING: Don't
|
||||
use this utility without first reading the man page
|
||||
thoroughly.</para></sect3>
|
||||
<para><command>reiserfstune</command> is used for tuning the ReiserFS journal.
|
||||
<emphasis>WARNING</emphasis>: Don't use this utility without first reading the
|
||||
man page thoroughly.</para></sect3>
|
||||
|
||||
<sect3><title>resize_reiserfs</title>
|
||||
<para>resize_reiserfs is used to resize an unmounted reiserfs file
|
||||
system.</para></sect3>
|
||||
<para><command>resize_reiserfs</command> is used to resize an unmounted
|
||||
reiserfs file system.</para></sect3>
|
||||
|
||||
<sect3><title>unpack</title>
|
||||
<para>The unpack utility can be used to dump reiserfs filesystem
|
||||
information to files for debugging, much like debugreiserfs.
|
||||
<para>The <command>unpack</command> utility can be used to dump reiserfs
|
||||
filesystem information to files for debugging, much like debugreiserfs.
|
||||
</para></sect3>
|
||||
|
||||
</sect2>
|
||||
|
@ -1,12 +1,13 @@
|
||||
<sect2>
|
||||
<title>Command explanations</title>
|
||||
|
||||
<para><userinput>--prefix=/usr</userinput> : This ensures that
|
||||
<para><command>--prefix=/usr</command> : This ensures that
|
||||
the manual pages are installed in the correct location while still
|
||||
installing the programs in <filename>/sbin</filename> as they should
|
||||
be.</para>
|
||||
|
||||
<para><userinput>--sbindir=/sbin</userinput> : This ensures that the reiserfs utilities are installed in <filename>/sbin</filename> as they should be.</para>
|
||||
<para><command>--sbindir=/sbin</command> : This ensures that the reiserfs
|
||||
utilities are installed in <filename>/sbin</filename> as they should be.</para>
|
||||
|
||||
</sect2>
|
||||
|
||||
|
@ -1,14 +1,14 @@
|
||||
<sect2>
|
||||
<title>Installation of reiserfs</title>
|
||||
<title>Installation of <application>reiserfs</application></title>
|
||||
|
||||
<para>Install reiserfs by running the following commands:</para>
|
||||
<para>Install <application>reiserfs</application> by running the following
|
||||
commands:</para>
|
||||
|
||||
<para><screen><userinput>patch -Np1 -i ../reiserfsprogs-3.6.5-flush_buffers-bug.patch &&
|
||||
./configure --prefix=/usr --sbindir=/sbin &&
|
||||
<screen><userinput><command>./configure --prefix=/usr --sbindir=/sbin &&
|
||||
make &&
|
||||
make install &&
|
||||
ln -sf reiserfsck /sbin/fsck.reiserfs &&
|
||||
ln -sf mkreiserfs /sbin/mkfs.reiserfs</userinput></screen></para>
|
||||
ln -sf mkreiserfs /sbin/mkfs.reiserfs</command></userinput></screen>
|
||||
|
||||
</sect2>
|
||||
|
||||
|
@ -1,17 +1,20 @@
|
||||
<sect2>
|
||||
<title>Introduction to reiserfsutils</title>
|
||||
<title>Introduction to <application>reiserfsutils</application></title>
|
||||
|
||||
<screen>Download location (HTTP): <ulink url="&reiser-download-http;"/>
|
||||
Download location (FTP): <ulink url="&reiser-download-ftp;"/>
|
||||
Version used: &reiser-version;
|
||||
Package size: &reiser-size;
|
||||
Estimated Disk space required: &reiser-buildsize;
|
||||
Estimated build time: &reiser-time;</screen>
|
||||
<screen>
|
||||
Additional Download:
|
||||
<ulink url="ftp://ftp.namesys.com/pub/reiserfsprogs/reiserfsprogs-3.6.5-flush_buffers-bug.patch">flush_buffers bug patch</ulink></screen>
|
||||
<para>The <application>reiserfsutils</application> package contains various
|
||||
utilities for use with the reiser filesystem.</para>
|
||||
|
||||
<para>The reiserfsutils package contains various utilities for use with the
|
||||
reiser filesystem.</para>
|
||||
<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 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>
|
||||
|
||||
</sect2>
|
||||
|
@ -3,9 +3,9 @@
|
||||
<!ENTITY reiser-inst SYSTEM "reiser-inst.xml">
|
||||
<!ENTITY reiser-exp SYSTEM "reiser-exp.xml">
|
||||
<!ENTITY reiser-desc SYSTEM "reiser-desc.xml">
|
||||
<!ENTITY reiser-buildsize "3.6 MB">
|
||||
<!ENTITY reiser-version "3.6.5">
|
||||
<!ENTITY reiser-buildsize "9.3 MB">
|
||||
<!ENTITY reiser-version "3.6.11">
|
||||
<!ENTITY reiser-download-http "http://ftp.namesys.com/pub/reiserfsprogs/reiserfsprogs-&reiser-version;.tar.gz">
|
||||
<!ENTITY reiser-download-ftp "ftp://ftp.namesys.com/pub/reiserfsprogs/reiserfsprogs-&reiser-version;.tar.gz">
|
||||
<!ENTITY reiser-size "356 KB">
|
||||
<!ENTITY reiser-time "0.43 SBU">
|
||||
<!ENTITY reiser-size "368 KB">
|
||||
<!ENTITY reiser-time "0.16 SBU">
|
||||
|
@ -15,4 +15,4 @@
|
||||
<!ENTITY xfsprogs-download-ftp "ftp://oss.sgi.com/projects/xfs/download/Release-1.3/cmd_tars/xfsprogs-2.5.6.src.tar.gz">
|
||||
<!ENTITY xfspatch-download-http "">
|
||||
<!ENTITY xfspatch-download-ftp "ftp://oss.sgi.com/projects/xfs/download/patches/&xfspatch-version;/xfs-&xfspatch-version;-all-i386.bz2">
|
||||
<!ENTITY xfsprogs-time "">
|
||||
<!ENTITY xfsprogs-time "0.67 SBU">
|
||||
|
Loading…
Reference in New Issue
Block a user