Whamcloud - gitweb
ChangeLog, Makefile.in:
[tools/e2fsprogs.git] / INSTALL.elfbin
1 NOTE: This is the ELF version of the binary distribution.  If you have
2 a DLL system, please compile e2fsprogs from sources yourself.
3
4         To install the binary distribution of the second extended file
5 system management programs, just follow the steps:
6
7 1) Install this tar file using the following command:
8
9         gunzip < e2fsprogs-1.09-elfbin.tar.gz | (cd /; tar Sxvpf - )
10
11 2) Run ldconfig to update the shared library pointers.
12
13         As root, type /sbin/ldconfig. This will update the links to
14 the shared libraries included in the distribution. You can then remove
15 the old versions of the libraries from /lib.  
16
17 3) Remove any pre-formatted man pages.  
18
19         Some distributions will have pre-formatted manual pages which
20 will always be displayed in preference to newer man pages in /usr/man.
21 If this is the case, you may need to manually remove them in order to
22 see the correct manual pages.  The shell script in
23 install-utils/remove_preformat_manpages may be helpful in doing so.
24
25 4) Make sure your /etc/fstab file is correct.
26
27         Some distributions install an /etc/fstab which is missing the
28 fifth and sixth field of filesystem entry, which are the dump
29 frequency, and the fsck pass number, respectively.  The problem with
30 this is that the getmntent() library routine interprets those missing
31 fields as "0", and a pass number of 0 is documented as meaning that
32 fsck should not check that particular filesystem.  If your entries in
33 your /etc/fstab file look liks this:
34
35 /dev/hda4       /        ext2        defaults
36
37 you should add "1 1" at the end of each line, so that they look like this:
38
39 /dev/hda4       /        ext2        defaults   1       1
40
41         There is a script in install-utils/convfstab (donated by
42 Michael Weller) that may help you correct your /etc/fstab file.
43
44 5) Cleanup files from the installation.
45
46         When you're done with the installation, you will probably want
47 to remove /INSTALL (this file), /README, and /install-utils from your
48 root directory