Re: amtape problems

2004-03-10 Thread Benjamin Hyatt
Brian, Changing chg-zd-mtx to use ksh seems to have fixed the problem. Thanks for the quick answer! >Check the debug file for the glue script, should be in /tmp/amanda/ >Also, someone at one point suggested that I use ksh rather than sh >for the chg-zd-mtx script, don't know if that is still a

Re: amtape problems

2004-03-10 Thread Benjamin Hyatt
Hello Josh, > Did you go through the tests in the chg-zd-mtx script? Those should > confirm that your CHANGER.conf file is good. (amanda)@atbackup:/usr/local/etc/amanda/atlab$ chg-zd-mtx -info 3 7 1 (amanda)@atbackup:/usr/local/etc/amanda/atlab$ chg-zd-mtx -reset /usr/local/libexec/chg-zd-mtx:

amtape problems

2004-03-10 Thread Benjamin Hyatt
Hello, I'm having some problems with amtape and a L280 changer. Specifically, I'm unable to use amtape for anything other than showing the current slot, and ejecting the current slot. (amanda)@atbackup:/tmp/amanda$ amtape atlab current amtape: scanning current slot in tape-changer rack: slot 3: d

Re: Getting a TOC from an existing tape?

2001-08-30 Thread Benjamin Hyatt
On 30 Aug 2001 10:40:46 -0400, Paul Lussier wrote: > I have a tape, and want to find out what's on it directly from > the tape. I know I've seen this answered some where before, but > can't seem to remember wherer. Take a look at amtoc, which will create a TOC from logfiles. ./Ben > Thanks, >

Re: Installing Amanda on Solaris 8

2001-08-27 Thread Benjamin Hyatt
On 26 Aug 2001 13:28:40 -0400, Dan Smith wrote: > I have installed libtool, but I still get an error that 'ar' cannot be > found. Can someone help me with this? Make sure /usr/ccs/bin is in your $PATH > > --Dan > ./Ben

Re: Some Questions From A New User

2001-07-05 Thread Benjamin Hyatt
[EMAIL PROTECTED] wrote: > FAIL planner 172.16.1.9 hda3 0 [Request to 172.16.1.9 timed out.] > > I know that the amanda client is running on the machine but if I do a > netstat i show it is not listening on its port. Am I missing a concept > here? what does netstat -an |grep 10080 say? > Travi

Re: amrecover problems

2001-06-27 Thread Benjamin Hyatt
John R. Jackson wrote: > You're inetd.conf line is probably wrong. I'm betting you forgot to > put amidxtaped twice, e.g.: You are correct argh! always the small details ;) > amidxtape stream tcp nowait backup /opt/amanda/libexec/amidxtaped amidxtaped > > Without that trailing "amidxtape

Re: amrecover problems

2001-06-27 Thread Benjamin Hyatt
John R. Jackson wrote: > You need to rebuild everything, not just amidxtaped, because of the > Amanda libraries it brings in. But you only need to install/test the > resulting amidxtaped binary. With --disable-shared involved, it should > be self-contained. did a 'make distclean' export CFLAGS

Re: amrecover problems

2001-06-26 Thread Benjamin Hyatt
John R. Jackson wrote: > That's not enough information to go on, but is the critical piece of > the puzzle. Please recompile amidxtaped with -g and reinstall it, then > see if you can get a traceback with actual routine names and line numbers. > > > John R. Jackson, Technical Software Specialis

Re: non-rewinding?

2001-06-12 Thread Benjamin Hyatt
On 12 Jun 2001 12:25:09 -0400, Larry Brown wrote: > I have a single HP-T20i unit and am trying to run amlabel. Upon running > amlabel I get > rewinding, reading label, not an Amanda tape > rewinding, writing label , checking label > amlabel: no label found, are you sure /dev/st0 is non-rewindin

Re: Listing tape content -- confusion

2001-06-05 Thread Benjamin Hyatt
If you want to get a index rather quickly you can do something like... (from the amanda restore doc) #!/bin/sh TAPEDEV=/your/tape/dev while mt -f $TAPEDEV fsf 1 ; do dd if=$TAPEDEV bs=32k count=1 | head -1 sleep 1 done < Hello, > Can someone clarify for me how to list tape content? >

Re: Error messages compiling client

2001-05-29 Thread Benjamin Hyatt
On 29 May 2001 16:58:20 -0400, Anthony Carter wrote: > I am getting the following error messages on a SCO Unix client. I hope > someone can point me in the right direction. I finally got the server > running > > Checking whether make set ${MAKE} ./configure:Make: not found no

Re: Easy Questions

2001-05-09 Thread Benjamin Hyatt
[EMAIL PROTECTED] wrote: > Tomorrow I want to reuse tape 1. Can I just put tape 1 in > the drive, or must I run an amrmtape before I can reuse it. As long as the tape is set for reuse(I believe this is default), you're fine Andrew Hall