The XFS package contains administration and debugging tools for the XFS file system.
Download (HTTP): http://mirrors.sunsite.dk/xfs/download/cmd_tars/xfsprogs-2.7.11.src.tar.gz
Download (FTP): ftp://oss.sgi.com/projects/xfs/download/cmd_tars/xfsprogs-2.7.11.src.tar.gz
Download MD5 sum: d4a78fced98c0f3f32627a473e8e0a59
Download size: 878 KB
Estimated disk space required: 17.3 MB
Estimated build time: 0.78 SBU
User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/xfs
Install XFS by running the following commands:
sed -i '/autoconf/d' Makefile && make DEBUG=-DNDEBUG
Now, as the root user:
make install && chmod -v 755 /lib/libhandle.so* && install -v -m755 -D libhandle/libhandle.la /usr/lib/libhandle.la && install -v -m644 libhandle/.libs/libhandle.a /usr/lib && ln -sv ../../lib/libhandle.so.1 /usr/lib/libhandle.so
sed -i '/autoconf/d' Makefile: This command disables running autoconf because it is unnecessary.
make DEBUG=-DNDEBUG: The XFS build will fail using the default -DDEBUG flags.
OPTIMIZER="...": Adding this parameter to the make command overrides the default optimization settings.
install -v ...: These commands install the static library and libtool archive for libhandle since make install only installs the shared library.
ln -sv ...: This command installs a symlink that is missed by the make install command.
Last updated on 2006-10-14 21:25:47 -0500