Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: Qdog
  • Order by date
  1. Qdog

    Split a BIG Drive

    I've used that technote before and it works. You have to have the exclude (W:\Drive3\*) configured first. Then the include W:\Drive3\[a-dA-D]*\* would work.
  2. Qdog

    NDMP Netbackup Newbie - can't backup NDMP Host

    NetBackup client software cannot be installed on the NDMP filer (Symantec doesn't make an agent that actually installs on the filer itself.) That is why admins cannot click the browse to 'see' selections on the filer. You have to manually enter the paths as they would appear if you were logged...
  3. Qdog

    Scanning tape labels in a robot

    I think you're looking to perform an inventory. The following command lists the media contents of TLD robot 1 and the volume configuration for that robot on the host named niagra, along with a list of any mismatches that are detected: vmcheckxxx -rt tld -rn 1 -rh niagra -h niagra You should be...
  4. Qdog

    Windows 2003 X64 as OS for NBU

    Be sure to hit the OS Compatibility Lists for NBU 5.x and 6.0...some versions only support 64 bit as client and not as a mediasvr/master...depends upon the CPU platform too. 5.x: http://ftp.support.veritas.com/pub/support/products/NetBackup_Enterprise_Server/263839.pdf 6.0...
  5. Qdog

    Configure backup_exit_notify to duplicate a particular policy/schedule's backup upon backup exit.

    1. Add following lines to the /usr/openv/netbackup/bin/backup_exit_notify script after the 8 'echo' statements: [color green] ############begin custom edits############# if [ "$5" -gt 1 ] then exit 1 fi ###### if [ "$2" = "laptopTest" ] then...
  6. Qdog

    DSSU won't do multiple copies?

    Here's what I did: - added following lines to the master server's /usr/openv/netbackup/bin/backup_exit_notify script before the 'echo' statements: #######start custom edits########### if [ "$2" = "laptopTest" ] then /usr/openv/netbackup/bin/admincmd/bpduplicate -dstunit DSU_vault -dp...
  7. Qdog

    DSSU won't do multiple copies?

    Per page 160 of the NBU System Administrator's Guide: "The option to create multiple copies is not allowed for synthetic backups." ...bummer. You could duplicate that synthetic later. Or you could use a bpend_notify specific to the policy and synthetic schedule name that kicks off a...
  8. Qdog

    Catalog Migration - How to Migrate a Catalog?

    Me again...that last command won't work either...because the density has to be the word, not the density number. But you should get my drift. You'll have to use the '-L' switch with the bpimmedia command to get it to display density as the word. You'll have to edit my *nix syntax to pull the...
  9. Qdog

    Catalog Migration - How to Migrate a Catalog?

    Correction: I fixed that bpimmedia command, this one works (all one line): bpimmedia | grep FRAG | cut -f7,9 -d ' ' | sort | uniq | awk '{print "bptm -makedbentry -m "$2" -den "$1" -poolnum 1"}'
  10. Qdog

    Catalog Migration - How to Migrate a Catalog?

    Here is what I would try if this were my problem and all I wanted was the /usr/openv/netbackup/db/images information to move to the Linux master... - upgrade the Solaris master to 6.0 as there may be differences in the image database header/.f structure - run following command to create a...
  11. Qdog

    DSSU won't do multiple copies?

    Yo, you probably have Host Properties of your master > Global Settings 'maximum copies' set at default of 2. Run this to check the Maximum backup copies: /usr/openv/netbackup/bin/admincmd/bpconfig -U Run this to change it: bpconfig -max_copies 10 ...or whatever # you want up to 10. Then...
  12. Qdog

    How to Find out what is getting backed up?

    the bpcoverage command is a good start as far as what file systems on what servers got backed up. Beyond that, check out bplist and bpflist commands to list what directories/files got backed up by specific backups.
  13. Qdog

    bpend_notify scripts on Windows

    Yo, the following 2 scripts will stop the Windows 'Automatic Updates' service at the start of the first backup stream and then stop the service at conclusion of last stream. Enjoy! @REM BPSTART_NOTIFY.bat contents: @echo "" > c:\temp\backup\%1.%STREAM_PID% @REM IF THIS IS THE FIRST STREAM...
  14. Qdog

    why are there double back slashes in the bpdbjobs -reports allcolums

    Yo, just run 'bpdbjobs -all_columns' the '-report' can be left out (it is the default anyway).
  15. Qdog

    Netbackup 5.1 can't connect to client anymore

    Yo, you got a bpstart_notify.bat or .cmd (I forgot the extension) script at \NetBackup\bin on the client. Rename that and retry. If you need the script, increase the timeouts. Lata
  16. Qdog

    _vxfiVspCacheFile_0.tmp

    On NetBackup 5.x, VSP is enabled by default unless you go into Host Properties of the master > Client Attributes and add the client hostnames, then click on 'Windows Open File Backup' tab and deselect the 'Enable...' checkbox....Apply > Ok. No need to restart NBU svcs. Also VSP is installed by...
  17. Qdog

    Is Linux good as Master and media server?

    I agree w/the other posters. However, you state the reason for migration from Windows to Linux is the Windows default 64kb buffer size written to tape. FYI - Adaptec 39160/3960D cards can do 128K (thats the ceiling) but it requires a Windows reg hack. For the reghack, see...
  18. Qdog

    Hide Network card MAC Address

    Check out this HOWTO on spoofing your MAC address using Linux: http://whoozoo.co.uk/mac-spoof-linux.htm
  19. Qdog

    Cannot make required directory

    You should look at the All Log Entries report or Problems report to determine what directory/file it could not create and check the permissions on that directory. Common causes: 1. full disk on master where images folder is located 2. permissions on directory 3. Check netbackup/db/images for...
  20. Qdog

    SCSI Timeout NBU 5.0Mp1

    Fix the underlying hardware problem causing the scsi communication errors.

Part and Inventory Search

Back
Top