Changeset dcee0f2f
- Timestamp:
- 01/27/2005 06:24:29 PM (20 years ago)
- Branches:
- 10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 12.2, 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, gimp3, 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/for-12.3, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/spidermonkey128, xry111/test-20220226, xry111/xf86-video-removal
- Children:
- a56c29d
- Parents:
- 852cd813
- Location:
- postlfs/filesystems
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
postlfs/filesystems/ext3.xml
r852cd813 rdcee0f2f 47 47 following command.</para> 48 48 49 <screen><userinput ><command>tune2fs -j /dev/hd<replaceable>XX</replaceable></command></userinput></screen>49 <screen><userinput role='root'><command>tune2fs -j /dev/hd<replaceable>XX</replaceable></command></userinput></screen> 50 50 51 51 <para>Remount the concerned partitions, or simply reboot if you have -
postlfs/filesystems/reiser.xml
r852cd813 rdcee0f2f 8 8 <!ENTITY reiser-download-ftp "ftp://ftp.namesys.com/pub/reiserfsprogs/reiserfsprogs-&reiser-version;.tar.gz"> 9 9 <!ENTITY reiser-size "400 KB"> 10 <!ENTITY reiser-buildsize " 5.8MB">10 <!ENTITY reiser-buildsize "7.9 MB"> 11 11 <!ENTITY reiser-time "0.16 SBU"> 12 12 ]> … … 19 19 <?dbhtml filename="reiserfs.html"?> 20 20 <title>ReiserFS-&reiser-version;</title> 21 <indexterm zone="reiserfs"> 22 <primary sortas="a-ReiserFS">ReiserFS</primary> 23 </indexterm> 21 24 22 25 <sect2> … … 48 51 49 52 <screen><userinput><command>./configure --prefix=/usr --sbindir=/sbin && 50 make && 51 make install && 53 make</command></userinput></screen> 54 55 <para>Now, as the root user:</para> 56 57 <screen><userinput role='root'><command>make install && 52 58 ln -sf reiserfsck /sbin/fsck.reiserfs && 53 59 ln -sf mkreiserfs /sbin/mkfs.reiserfs</command></userinput></screen> … … 60 66 <para><parameter>--prefix=/usr</parameter>: This ensures that 61 67 the manual pages are installed in the correct location while still 62 installing the programs in <filename class="directory">/sbin</filename> as they should63 be.</para>68 installing the programs in <filename class="directory">/sbin</filename> as 69 they should be.</para> 64 70 65 71 <para><parameter>--sbindir=/sbin</parameter>: This ensures that the 66 <application>ReiserFS</application> 67 utilities are installed in<filename class="directory">/sbin</filename> as they should be.</para>72 <application>ReiserFS</application> utilities are installed in 73 <filename class="directory">/sbin</filename> as they should be.</para> 68 74 69 75 </sect2> … … 72 78 <title>Contents</title> 73 79 74 < para><application>ReiserFS</application> contains <command>debugreiserfs</command>,75 < command>mkreiserfs</command>, <command>reiserfsck</command>,76 < command>resize_reiserfs</command> and77 < command>unpack</command>.</para>80 <segmentedlist> 81 <segtitle>Installed Programs</segtitle> 82 <segtitle>Installed Libraries</segtitle> 83 <segtitle>Installed Directories</segtitle> 78 84 79 </sect2> 85 <seglistitem> 86 <seg>debugreiserfs, mkreiserfs, reiserfsck, reiserfstune and 87 resize_reiserfs</seg> 88 <seg>None</seg> 89 <seg>None</seg> 90 </seglistitem> 91 </segmentedlist> 80 92 81 <sect2><title>Description</title> 93 <variablelist> 94 <bridgehead renderas="sect3">Short Descriptions</bridgehead> 95 <?dbfo list-presentation="list"?> 82 96 83 <sect3><title>debugreiserfs</title> 97 <varlistentry id="debugreiserfs"> 98 <term><command>debugreiserfs</command></term> 99 <listitem><para>can sometimes help to solve problems with 100 <application>ReiserFS</application> file systems. If it is called without 101 options, it prints the super block of any reiserfs file system found on the 102 device.</para> 103 <indexterm zone="reiserfs debugreiserfs"> 104 <primary sortas="b-debugreiserfs">debugreiserfs</primary> 105 </indexterm></listitem> 106 </varlistentry> 84 107 85 <para><command>debugreiserfs</command> can sometimes help to solve problems 86 with <application>ReiserFS</application> file systems. If it is called without 87 options, it prints the super block of any reiserfs file system found on the 88 device.</para></sect3> 108 <varlistentry id="mkreiserfs"> 109 <term><command>mkreiserfs</command></term> 110 <listitem><para>creates a <application>ReiserFS</application> file 111 system.</para> 112 <indexterm zone="reiserfs mkreiserfs"> 113 <primary sortas="b-mkreiserfs">mkreiserfs</primary> 114 </indexterm></listitem> 115 </varlistentry> 89 116 90 <sect3><title>mkreiserfs</title> 91 <para><command>mkreiserfs</command> creates a 117 <varlistentry id="reiserfsck"> 118 <term><command>reiserfsck</command></term> 119 <listitem><para>is used to check or repair a 92 120 <application>ReiserFS</application> file system.</para> 93 </sect3> 121 <indexterm zone="reiserfs reiserfsck"> 122 <primary sortas="b-reiserfsck">reiserfsck</primary> 123 </indexterm></listitem> 124 </varlistentry> 94 125 95 <sect3><title>reiserfsck</title> 96 <para><command>reiserfsck</command> checks a 126 <varlistentry id="reiserfstune"> 127 <term><command>reiserfstune</command></term> 128 <listitem><para>is used for tuning the <application>ReiserFS</application> 129 journal. <emphasis>WARNING</emphasis>: Don't use this utility without first 130 reading the man page thoroughly.</para> 131 <indexterm zone="reiserfs reiserfstune"> 132 <primary sortas="b-reiserfstune">reiserfstune</primary> 133 </indexterm></listitem> 134 </varlistentry> 135 136 <varlistentry id="resize_reiserfs"> 137 <term><command>resize_reiserfs</command></term> 138 <listitem><para>is used to resize an unmounted 97 139 <application>ReiserFS</application> file system.</para> 98 </sect3> 99 100 <sect3><title>reiserfstune</title> 101 <para><command>reiserfstune</command> is used for tuning the 102 <application>ReiserFS</application> journal. 103 <emphasis>WARNING</emphasis>: Don't use this utility without first reading the 104 man page thoroughly.</para></sect3> 105 106 <sect3><title>resize_reiserfs</title> 107 <para><command>resize_reiserfs</command> is used to resize an unmounted 108 <application>ReiserFS</application> file system.</para></sect3> 109 110 <sect3><title>unpack</title> 111 <para>The <command>unpack</command> utility can be used to dump 112 <application>ReiserFS</application> 113 file system information to files for debugging, much like 114 <command>debugreiserfs</command>. 115 </para></sect3> 140 <indexterm zone="reiserfs resize_reiserfs"> 141 <primary sortas="b-resize_reiserfs">resize_reiserfs</primary> 142 </indexterm></listitem> 143 </varlistentry> 144 </variablelist> 116 145 117 146 </sect2> -
postlfs/filesystems/xfs.xml
r852cd813 rdcee0f2f 6 6 7 7 <!ENTITY xfsprogs-download-http "http://mirrors.sunsite.dk/xfs/download/cmd_tars/xfsprogs-&xfsprogs-version;.src.tar.gz"> 8 <!ENTITY xfsprogs-download-ftp "ftp://oss.sgi.com/projects/xfs/download/cmd_tars/xfsprogs-&xfsprogs-version;.src.tar.gz">9 <!ENTITY xfsprogs-size "833 KB">10 <!ENTITY xfsprogs-buildsize "19MB">11 <!ENTITY xfsprogs-time "0.69 SBU">8 <!ENTITY xfsprogs-download-ftp "ftp://oss.sgi.com/projects/xfs/download/cmd_tars/xfsprogs-&xfsprogs-version;.src.tar.gz"> 9 <!ENTITY xfsprogs-size "833 KB"> 10 <!ENTITY xfsprogs-buildsize "25.2 MB"> 11 <!ENTITY xfsprogs-time "0.59 SBU"> 12 12 ]> 13 13 … … 19 19 <?dbhtml filename="xfsfs.html"?> 20 20 <title>XFS-&xfsprogs-version;</title> 21 <indexterm zone="xfs"> 22 <primary sortas="a-XFS">XFS</primary> 23 </indexterm> 21 24 22 25 <sect2> 23 <title>Introduction to <application><acronym>XFS</acronym></application></title> 26 <title>Introduction to 27 <application><acronym>XFS</acronym></application></title> 24 28 25 29 <para>The <application>XFS</application> package contains administration … … 41 45 </sect2> 42 46 43 44 47 <sect2> 45 48 <title>Installation of <application>XFS</application></title> … … 49 52 50 53 <screen><userinput><command>sed -i 's/autoconf//' Makefile && 51 make && 52 make install</command></userinput></screen> 54 make</command></userinput></screen> 55 56 <para>Now, as the root user:</para> 57 58 <screen><userinput role='root'><command>make install</command></userinput></screen> 53 59 54 60 </sect2> … … 57 63 <title>Contents</title> 58 64 59 <para><application>XFS</application> contains 60 <command>fsck.xfs</command>, 61 <command>mkfs.xfs</command>, 62 <command>xfs_admin</command>, 63 <command>xfs_bmap</command>, 64 <command>xfs_check</command>, 65 <command>xfs_copy</command>, 66 <command>xfs_db</command>, 67 <command>xfs_freeze</command>, 68 <command>xfs_growfs</command>, 69 <command>xfs_info</command>, 70 <command>xfs_io</command>, 71 <command>xfs_logprint</command>, 72 <command>xfs_mkfile</command>, 73 <command>xfs_ncheck</command>, 74 <command>xfs_repair</command> and 75 <command>xfs_rtcp</command>. 76 </para> 65 <segmentedlist> 66 <segtitle>Installed Programs</segtitle> 67 <segtitle>Installed Library</segtitle> 68 <segtitle>Installed Directory</segtitle> 69 70 <seglistitem> 71 <seg>fsck.xfs, mkfs.xfs, xfs_admin, xfs_bmap, xfs_check, xfs_copy, xfs_db, 72 xfs_freeze, xfs_growfs, xfs_info, xfs_io, xfs_logprint, xfs_mkfile, 73 xfs_ncheck, xfs_repair and xfs_rtcp</seg> 74 <seg>libhandle.so</seg> 75 <seg>/usr/share/doc/xfsprogs</seg> 76 </seglistitem> 77 </segmentedlist> 78 79 <variablelist> 80 <bridgehead renderas="sect3">Short Descriptions</bridgehead> 81 <?dbfo list-presentation="list"?> 82 83 <varlistentry id="fsck.xfs"> 84 <term><command>fsck.xfs</command></term> 85 <listitem><para>simply exits with a zero status, since <acronym>XFS</acronym> 86 partitions are checked at mount time.</para> 87 <indexterm zone="xfs fsck.xfs"> 88 <primary sortas="b-fsck.xfs">fsck.xfs</primary> 89 </indexterm></listitem> 90 </varlistentry> 91 92 <varlistentry id="mkfs.xfs"> 93 <term><command>mkfs.xfs</command></term> 94 <listitem><para>constructs an <acronym>XFS</acronym> file system.</para> 95 <indexterm zone="xfs mkfs.xfs"> 96 <primary sortas="b-mkfs.xfs">mkfs.xfs</primary> 97 </indexterm></listitem> 98 </varlistentry> 99 100 <varlistentry id="xfs_admin"> 101 <term><command>xfs_admin</command></term> 102 <listitem><para>changes the parameters of an <acronym>XFS</acronym> file 103 system.</para> 104 <indexterm zone="xfs xfs_admin"> 105 <primary sortas="b-xfs_admin">xfs_admin</primary> 106 </indexterm></listitem> 107 </varlistentry> 108 109 <varlistentry id="xfs_bmap"> 110 <term><command>xfs_bmap</command></term> 111 <listitem><para>prints block mapping for an <acronym>XFS</acronym> file.</para> 112 <indexterm zone="xfs xfs_bmap"> 113 <primary sortas="b-xfs_bmap">xfs_bmap</primary> 114 </indexterm></listitem> 115 </varlistentry> 116 117 <varlistentry id="xfs_check"> 118 <term><command>xfs_check</command></term> 119 <listitem><para>checks <acronym>XFS</acronym> file system consistency.</para> 120 <indexterm zone="xfs xfs_check"> 121 <primary sortas="b-xfs_check">xfs_check</primary> 122 </indexterm></listitem> 123 </varlistentry> 124 125 <varlistentry id="xfs_copy"> 126 <term><command>xfs_copy</command></term> 127 <listitem><para>copies the contents of an <acronym>XFS</acronym> file system 128 to one or more targets in parallel.</para> 129 <indexterm zone="xfs xfs_copy"> 130 <primary sortas="b-xfs_copy">xfs_copy</primary> 131 </indexterm></listitem> 132 </varlistentry> 133 134 <varlistentry id="xfs_db"> 135 <term><command>xfs_db</command></term> 136 <listitem><para>is used to debug an <acronym>XFS</acronym> file system.</para> 137 <indexterm zone="xfs xfs_db"> 138 <primary sortas="b-xfs_db">xfs_db</primary> 139 </indexterm></listitem> 140 </varlistentry> 141 142 <varlistentry id="xfs_freeze"> 143 <term><command>xfs_freeze</command></term> 144 <listitem><para>suspends access to an <acronym>XFS</acronym> file 145 system.</para> 146 <indexterm zone="xfs xfs_freeze"> 147 <primary sortas="b-xfs_freeze">xfs_freeze</primary> 148 </indexterm></listitem> 149 </varlistentry> 150 151 <varlistentry id="xfs_growfs"> 152 <term><command>xfs_growfs</command></term> 153 <listitem><para>expands an <acronym>XFS</acronym> file system.</para> 154 <indexterm zone="xfs xfs_growfs"> 155 <primary sortas="b-xfs_growfs">xfs_growfs</primary> 156 </indexterm></listitem> 157 </varlistentry> 158 159 <varlistentry id="xfs_info"> 160 <term><command>xfs_info</command></term> 161 <listitem><para>is equivalent to invoking <command>xfs_growfs</command>, but 162 specifying that no change to the file system is to be made.</para> 163 <indexterm zone="xfs xfs_info"> 164 <primary sortas="b-xfs_info">xfs_info</primary> 165 </indexterm></listitem> 166 </varlistentry> 167 168 <varlistentry id="xfs_io"> 169 <term><command>xfs_io</command></term> 170 <listitem><para>is a debugging tool like <command>xfs_db</command>, but is 171 aimed at examining the regular file I/O path rather than the raw 172 <acronym>XFS</acronym> volume itself.</para> 173 <indexterm zone="xfs xfs_io"> 174 <primary sortas="b-xfs_io">xfs_io</primary> 175 </indexterm></listitem> 176 </varlistentry> 177 178 <varlistentry id="xfs_logprint"> 179 <term><command>xfs_logprint</command></term> 180 <listitem><para>prints the log of an <acronym>XFS</acronym> file system.</para> 181 <indexterm zone="xfs xfs_logprint"> 182 <primary sortas="b-xfs_logprint">xfs_logprint</primary> 183 </indexterm></listitem> 184 </varlistentry> 185 186 <varlistentry id="xfs_mkfile"> 187 <term><command>xfs_mkfile</command></term> 188 <listitem><para>creates an <acronym>XFS</acronym> file, padded with zeroes by 189 default.</para> 190 <indexterm zone="xfs xfs_mkfile"> 191 <primary sortas="b-xfs_mkfile">xfs_mkfile</primary> 192 </indexterm></listitem> 193 </varlistentry> 194 195 <varlistentry id="xfs_ncheck"> 196 <term><command>xfs_ncheck</command></term> 197 <listitem><para>generates pathnames from inode numbers for an 198 <acronym>XFS</acronym> file system.</para> 199 <indexterm zone="xfs xfs_ncheck"> 200 <primary sortas="b-xfs_ncheck">xfs_ncheck</primary> 201 </indexterm></listitem> 202 </varlistentry> 203 204 <varlistentry id="xfs_repair"> 205 <term><command>xfs_repair</command></term> 206 <listitem><para>repairs corrupt or damaged <acronym>XFS</acronym>file 207 systems.</para> 208 <indexterm zone="xfs xfs_repair"> 209 <primary sortas="b-xfs_repair">xfs_repair</primary> 210 </indexterm></listitem> 211 </varlistentry> 212 213 <varlistentry id="xfs_rtcp"> 214 <term><command>xfs_rtcp</command></term> 215 <listitem><para>copies a file to the real-time partition on an 216 <acronym>XFS</acronym> file system.</para> 217 <indexterm zone="xfs xfs_rtcp"> 218 <primary sortas="b-xfs_rtcp">xfs_rtcp</primary> 219 </indexterm></listitem> 220 </varlistentry> 221 222 <varlistentry id="libhandle"> 223 <term><filename class='libraryfile'>libhandle.so</filename></term> 224 <listitem><para>contains functions to map filesystem handles to a 225 corresponding open file descriptor for that filesystem.</para> 226 <indexterm zone="xfs libhandle"> 227 <primary sortas="c-libhandle">libhandle.so</primary> 228 </indexterm></listitem> 229 </varlistentry> 230 </variablelist> 77 231 78 232 </sect2> 79 233 80 <sect2><title>Description</title>81 82 <sect3><title>fsck.xfs</title>83 <para><command>fsck.xfs</command> simply exits with a zero status, since84 <acronym>XFS</acronym> partitions are checked at mount time.</para></sect3>85 86 <sect3><title>mkfs.xfs</title>87 <para><command>mkfs.xfs</command> constructs an <acronym>XFS</acronym>88 file system.</para></sect3>89 90 <sect3><title>xfs_admin</title>91 <para><command>xfs_admin</command> changes the parameters of an <acronym>XFS92 </acronym> file system.</para></sect3>93 94 <sect3><title>xfs_bmap</title>95 <para><command>xfs_bmap</command> prints block mapping for an <acronym>XFS96 </acronym> file.</para></sect3>97 98 <sect3><title>xfs_check</title>99 <para><command>xfs_check</command> checks <acronym>XFS</acronym> file system100 consistency.</para>101 </sect3>102 103 <sect3><title>xfs_copy</title>104 <para><command>xfs_copy</command> copies the contents of an105 <acronym>XFS</acronym> file system to one or more targets in106 parallel.</para></sect3>107 108 <sect3><title>xfs_db</title>109 <para><command>xfs_db</command> is used to debug an <acronym>XFS</acronym>110 file system.</para></sect3>111 112 <sect3><title>xfs_freeze</title>113 <para><command>xfs_freeze</command> suspends access to an114 <acronym>XFS</acronym> file system.</para></sect3>115 116 <sect3><title>xfs_growfs</title>117 <para><command>xfs_growfs</command> expands an <acronym>XFS</acronym> file system.118 </para></sect3>119 120 <sect3><title>xfs_info</title>121 <para><command>xfs_info</command> is equivalent to invoking122 <command>xfs_growfs</command>, but specifying that no change to the file123 system is to be made.</para></sect3>124 125 <sect3><title>xfs_io</title>126 <para><command>xfs_io</command> is a debugging tool like127 <command>xfs_db</command>, but is aimed at examining the regular128 file I/O path rather than the raw <acronym>XFS</acronym> volume129 itself.</para></sect3>130 131 <sect3><title>xfs_logprint</title>132 <para><command>xfs_logprint</command> prints the log of an <acronym>XFS133 </acronym> file system.</para></sect3>134 135 <sect3><title>xfs_mkfile</title>136 <para><command>xfs_mkfile</command> creates an <acronym>XFS</acronym> file,137 padded with zeroes by default.</para></sect3>138 139 <sect3><title>xfs_ncheck</title>140 <para><command>xfs_ncheck</command> generates pathnames from inode numbers for141 an <acronym>XFS</acronym> file system.</para></sect3>142 143 <sect3><title>xfs_repair</title>144 <para><command>xfs_repair</command> repairs corrupt or damaged <acronym>XFS145 </acronym>file systems.</para></sect3>146 147 <sect3><title>xfs_rtcp</title>148 <para><command>xfs_rtcp</command> copies a file to the real-time149 partition on an <acronym>XFS</acronym> file system.</para></sect3>150 151 </sect2>152 153 234 </sect1>
Note:
See TracChangeset
for help on using the changeset viewer.