HOWTOs
About
Search
unarj
- Freeware arj un-archiver from Robert Jung (the author of ARJ)
ChangeLog
Web site:
http://ibiblio.org/pub/Linux/utils/compress/
HOWTO
# unarj 2.63a
# ===========
# This is a modified version of Robert Jung's unarj self-extracting archive
# found here (the 1st one was non-responsive when I wrote this):
#
ftp://ftp.std.com/pub/arj/
#
http://mysite.verizon.net/vze3nqpn/files/unarj265.exe
#
ftp://members.aol.com/arjsoft/files/
# The latest (.exe) version is 2.65
# The ARJ Software web site is
http://www.arjsoftware.com/
# Remove the old Slackware-installed unarj
rm -f /usr/bin/unarj
# Remove lines from the Slackware 'bin' package that reference files
# from the old unarj that you removed above.
FNAME=`find /var/adm/packages/bin* -type f | head -1`
cat $FNAME | \
grep -v "^usr/bin/unarj$" > ${FNAME}.new
test -s ${FNAME}.new &&
(
mkdir -p -m 0700 ~/backup/packages
mv -f $FNAME ${FNAME}.`date +%Y%m%d`
mv ${FNAME}.`date +%Y%m%d` ~/backup/packages/
mv -f ${FNAME}.new $FNAME
)
unset FNAME
cd
test -f installed/unarj-2.63a.tar.gz && mv installed/unarj-2.63a.tar.gz .
test ! -f unarj-2.63a.tar.gz &&
wget http://ibiblio.org/pub/Linux/utils/compress/unarj-2.63a.tar.gz
cd /usr/local/src
find -type d -maxdepth 1 -name "unarj-*" -exec rm -r {} \;
tar xzvf ~/unarj-2.63a.tar.gz
cd unarj-2.63a
chown -R root.root .
cat Makefile | sed 's/usr\/local\/bin/usr\/bin/' > Makefile.new
test -s Makefile.new && mv -f Makefile.new Makefile
make
make install
cd
mkdir -p -m 0700 installed
rm -f installed/unarj-*.tar.gz
mv unarj-2.63a.tar.gz installed/
List of HOWTOs
Web page itself last updated:
2023-12-20 8:06pm (EST -0500)
HOWTO last updated:
2004-10-27 5:02pm
Copyright © 2001-2024
Jason Englander
. All Rights reserved.