= $stitle ?>
HOWTO: afio
Description: Creates cpio-format archives
Click here for ChangeLog
NOTE: I use GNU tar >= 1.13.25 so it's -j for .tar.bz2 files,
it's safe to assume that make, gcc, binutils, fileutils/coreutils, gawk, sed, and grep are prerequisites for almost everything
# afio 2.5
# ========
# Prerequisites:
# cpio
cd
test -f installed/afio-2.5.tgz && mv installed/afio-2.5.tgz .
test ! -f afio-2.5.tgz &&
wget http://members.brabant.chello.nl/~k.holtman/afio-2.5.tgz
mkdir -p -m 0700 src
cd src
find -maxdepth 1 -type d -name "afio-*" -exec rm -r {} \;
tar xzvf ~/afio-2.5.tgz
cd afio-2.5
test $UID = 0 && chown -R root:root .
make
make regtest
# If you have > 2 GB space free and some time:
make regtest2gb
# Become root to install it
su
test -f /usr/bin/afio && mv -f /usr/bin/afio /usr/bin/afio.old
make install
strip /usr/local/bin/afio
# Become yourself again
exit
cd
mkdir -p -m 0700 installed
rm -f installed/afio-*.tgz
mv afio-2.5.tgz installed/
|
Last updated: Fri, 26 Mar 2010 13:18:56 -0400 Jason Englander <jason at englanders dot us> |
|