looks like either your path is incorrect or you need some packages or both. you need to make sure your path includes the following: PATH=/usr/local/bin:/usr/ucb:/usr/ccs/bin. There may be be a link to the gnu tools as well but I can't recall what that path is right offhand. I'm also including a build script to help you out...

I'd also recommend you subscribe to the amanda list. Instructions are on the amanda.org web page.

=G=

Kathy Ange wrote:

I tried tosend this question tothe amanda users list,
but haven't been able to figure out the correct e-mail
address. So if anyone can help me out I would
appreciate it.

I am kind of new to unix. I am trying to install
amanda 2.4.3 on my Solaris 8 system.
I downloaded the file
Then unpacked it with gzip -d amanda-2.4.3.tar.gz
Then tar -xvf amanda-2.4.3.tar
cd amanda-2.4.3

# ./configure --with-user=amanda --with-group=backup

This looked like it ran ok, so I ran make and here is
where I ran into problems.

Bunch of stuff on the screen

echo timestamp > sl.lo
/usr/bin/sh ../libtool --mode=link gcc -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -o libamanda.la -rpath /usr/local/lib -release 2.4.3
alloc.lo amflock.lo clock.lo debug.lo dgram.lo error.lo file.lo fileheader.lo amfeatures.lo match.lo protocol.lo regcomp.lo regerror.lo regexec.lo
regfree.lo security.lo statfs.lo stream.lo token.lo
util.lo version.lo versuff.lo pipespawn.lo sl.lo -lgen -lm -ltermcap -lsocket -lnsl -lintl
rm -fr .libs/libamanda.la .libs/libamanda.*
.libs/libamanda-2.4.3.*
ar cru .libs/libamanda.a alloc.o amflock.o clock.o
debug.o dgram.o error.o file.o fileheader.o
amfeatures.o match.o protocol.o regcomp.o regerror.o
regexec.o regfree.o security.o statfs.o stream.o
token.o util.o version.o versuff.o pipespawn.o sl.o ../libtool: ar: not found
*** Error code 1
make: Fatal error: Command failed for target
`libamanda.la'
Current working directory /tmp/amanda-2.4.3/common-src
*** Error code 1
make: Fatal error: Command failed for target
`all-recursive'
# ^C
#
I have searched the archives and read the FAQs but
can't figure this out. Can anyone help?


=====
Kathy Ange
Virginia Department of Agriculture & Consumer Services
Information Systems
(804) 786-1340 Voice Mail
(804) 786-2110 FAX
HotJobs - Search new jobs daily now
http://hotjobs.yahoo.com/
_______________________________________________
sunmanagers mailing list
[EMAIL PROTECTED]
http://www.sunmanagers.org/mailman/listinfo/sunmanagers


#!/bin/sh
if [ `whoami` != 'amanda' ]; then
        echo
        echo "WARNING!!!!"
        echo "AMANDA needs to be configured and built by the amanda user,"
        echo "but must be installed by root."
        echo
        exit 1
fi
make clean
rm -f config.status config.cache
./configure --prefix=/home/amanda \
            --libdir=/usr/local/lib/amanda \
            --mandir=/usr/local/man \
            --with-user=amanda \
            --with-group=disk \
            --with-config=daily \
            --with-configdir=/home/amanda/config \
            --with-gnutar=/home/amanda/bin/tar \
            --with-gnutar-listdir=/home/amanda/var \
            --with-smbclient=/usr/bin/smbclient \
            --with-changer-device=/dev/sg0 \
            --with-tape-device=/dev/nst0 \
            --with-amandahosts \
            --with-gnu-ld \
            --with-db=db \
            --with-debugging=/tmp/amanda-dbg

# Create directories that aren't created by make
if [ ! -d /home/amanda/var ]; then
        mkdir /home/amanda/var
fi

if [ ! -d /home/amanda/config ]; then
        mkdir /home/amanda/config
fi

Reply via email to