Amanda-Users

Re: HPUX 11.0 Install

2003-07-24 10:57:49
Subject: Re: HPUX 11.0 Install
From: Gene Heskett <gene.heskett AT verizon DOT net>
To: "LaValley, Brian E" <BLaValley AT ALLEGROMICRO DOT com>, "Amanda-Users (E-mail)" <amanda-users AT amanda DOT org>
Date: Thu, 24 Jul 2003 10:55:16 -0400
On Thursday 24 July 2003 08:58, LaValley, Brian E wrote:
>Hello.
>
>When I run the configure script I get the following error:
>
>root@turing-28% ./configure
>checking build system type... hppa2.0w-hp-hpux11.00
>checking host system type... hppa2.0w-hp-hpux11.00
>checking target system type... hppa2.0w-hp-hpux11.00
>checking for a BSD-compatible install... config/install-sh -c
>checking whether build environment is sane... yes
>checking for gawk... no
>checking for mawk... no
>checking for nawk... no
>checking for awk... awk
>checking whether make sets $(MAKE)... yes
>configure: error: *** --with-user=USER is missing
>
>
>Can anyone give me a solution?  Or where to look for the problem?

In most cases, you need to specify both the user and the group 
membership to the ./configure script.  Here is the driver script I've 
been using for quite a while now:
--------------------------------
#!/bin/sh
# since I'm always forgetting to su amanda...
if [ `whoami` != 'amanda' ]; then
        echo
        echo "!!!!!!!!!!!! Warning !!!!!!!!!!!!"
        echo "Amanda needs to be configured and built by the user amanda,"
        echo "but must be installed by user root."
        echo
        exit 1
fi
make clean
rm -f config.status config.cache
./configure --with-user=amanda \
        --with-group=disk \
        --with-owner=amanda \
        --with-tape-device=/dev/nst0 \
        --with-changer-device=/dev/sg1 \
        --with-gnu-ld --prefix=/usr/local \
        --with-debugging=/tmp/amanda-dbg/ \
        --with-tape-server=coyote.coyote.den \
        --with-amandahosts \
        --with-configdir=/usr/local/etc/amanda

make
--------------------------------
modify to suit.  If you don't have a changer, remove that line.

-- 
Cheers, Gene
AMD K6-III@500mhz 320M
Athlon1600XP@1400mhz  512M
99.27% setiathome rank, not too shabby for a WV hillbilly
Yahoo.com attornies please note, additions to this message
by Gene Heskett are:
Copyright 2003 by Maurice Eugene Heskett, all rights reserved.


<Prev in Thread] Current Thread [Next in Thread>