Sponsored Content
Operating Systems Solaris Need steps for Netbackup Update from 7.1 to 7.5 Post 302786919 by manalisharmabe on Thursday 28th of March 2013 11:52:56 AM
Old 03-28-2013
Yes,
but Symantec Netbackup 7.5 does not support many OS versions
Check this link
Code:
https://sort.symantec.com/checklist/install#report and select as 7.5 
 
below os are not supported:-
Windows 2008IA6464Client7.1.xWindows 2003 R2IA6464Client7.1.xWindows 2003 SP1IA6464Client7.1.xWindows 2000 NASx86-3232Client and Media Server6.5.xWindows 2000 SP4x86-3232Client, Master and Media Server6.5.xWindows 2000 SP4x86-6464Client, Master and Media Server6.5.xWindows XP Professional SP2IA6464Client7.1.x
Windows 2008IA6464Client7.1.xWindows 2003 R2IA6464Client7.1.xWindows 2003 SP1IA6464Client7.1.xWindows 2000 NASx86-3232Client and Media Server6.5.xWindows 2000 SP4x86-3232Client, Master and Media Server6.5.xWindows 2000 SP4x86-6464Client, Master and Media Server6.5.xWindows XP Professional SP2IA6464Client7.1.x
Windows 2008IA6464Client7.1.xWindows 2003 R2IA6464Client7.1.xWindows 2003 SP1IA6464Client7.1.xWindows 2000 NASx86-3232Client and Media Server6.5.xWindows 2000 SP4x86-3232Client, Master and Media Server6.5.xWindows 2000 SP4x86-6464Client, Master and Media Server6.5.xWindows XP Professional SP2IA6464Client7.1.xwindows 2008 64bit windows 2003 R2 64bit

 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Veritas NetBackup

Veritas NetBackup, how does it work?? I mean, I know it is used for backups and restores but really, can anybody give me a brief or any explanation that sums up basically what it is about besides the fact that it does backups and restores??? Please, if you have any information, I would appreciate... (2 Replies)
Discussion started by: TRUEST
2 Replies

2. Filesystems, Disks and Memory

Netbackup question

Hello, I am setting up scripts to do shadow image backups but have found a pitfall I cannot figure out how to work around. Basically what I need to figure out is how to launch a bunch of bpbackups, and then have the script pause until all of the children have exited. The problem is that bpbackup... (2 Replies)
Discussion started by: 98_1LE
2 Replies

3. Solaris

Netbackup on Solaris 8

Hi, Anyone know netbackup 3.4 on Solaris 8 . Currently I use root to perform backup / monitoring ...etc . Can I create a user call "backup" and perform the same task What permission should I give the "backup" user . (1 Reply)
Discussion started by: civic2005
1 Replies

4. HP-UX

Netbackup Installation

Hello all. I have a HP-UX 11.11 system that I need to install Netbackup 6.5 onto. After I mount the cd drive and run the 'install' command, it comes back with the following error: usage: install file WHAT options is it talking about? When I look at the documentation from Netbackup, it... (4 Replies)
Discussion started by: impunchdrunk
4 Replies

5. Filesystems, Disks and Memory

Netbackup Questions

I have 2 questions maybe those netbackup experts and gurus in the house can help. Firstly, is there a particular location maybe under /usr/openv where I can find a diretory or file which contains all the backup policy information, so lets say If someone were to physically delete all the... (3 Replies)
Discussion started by: sparcguy
3 Replies

6. UNIX for Dummies Questions & Answers

Netbackup 6 Question

What is the command to find out if a policy has been run and if it has the date it was last run? (0 Replies)
Discussion started by: mr_crosby
0 Replies

7. Solaris

veritas NETbackup command

i am using veritas admenistration console to control all backup operations of our servers . we use SUN LT25 LTO library connected to a backupserver running solaris 8 . i was wondering if there is a command that i can use from solaris so that i can activate and deactivate some policeis , rather... (4 Replies)
Discussion started by: ppass
4 Replies

8. Solaris

veritas netbackup

Hi All, We are currently running Veritas netbackup. We are currently having a few issues where were unable to log in due to several errors. Out usual fix for this is to recycle the backup servers however due to the nature of the information being backed up this is done by someone else and... (1 Reply)
Discussion started by: rickyclayton201
1 Replies

9. UNIX for Dummies Questions & Answers

Netbackup Report

Would I be able to get the report (text format) of an activity monitor view of a netbackup via command line? I am trying to make a script out of it that would be run daily an be saved in a txt document which would could be viewed for history purpose. I need minimal details only like policy name,... (0 Replies)
Discussion started by: ryan_estiya
0 Replies

10. What is on Your Mind?

Forum Update New Steps for UNIX.com

Dear Everyone, Thank you for all the great comments, feedback and patience during our recent modernization efforts at unix.com. Now, I need to decide where to go next, as we move into the next phase. Some of the ideas I have are: Make the UserCP experience and all those non-public... (6 Replies)
Discussion started by: Neo
6 Replies
merge_fonts(3alleg4)						  Allegro manual					      merge_fonts(3alleg4)

NAME
merge_fonts - Merges two fonts into one font. Allegro game programming library. SYNOPSIS
#include <allegro.h> FONT *merge_fonts(FONT *f1, FONT *f2) DESCRIPTION
This function merges the character ranges from two fonts and returns a new font containing all characters in the old fonts. In general, you cannot merge fonts of different types (eg, TrueType fonts and bitmapped fonts), but as a special case, this function can promote a mono- chrome bitmapped font to a color font and merge those. Example: FONT *myfont; FONT *myfancy_font; FONT *lower_range; FONT *upper_range; FONT *capitals; FONT *combined_font; FONT *tempfont; ... /* Create a font that contains the capitals from */ /* the fancy font but other characters from myfont */ lower_range = extract_font_range(myfont, -1, 'A'-1); upper_range = extract_font_range(myfont, 'Z'+1, -1); capitals = extract_font_range(myfancy_font, 'A', 'Z'); tempfont = merge_fonts(lower_range, capitals); combined_font = merge_fonts(tempfont, upper_range); /* Clean up temporary fonts */ destroy_font(lower_range); destroy_font(upper_range); destroy_font(capitals); destroy_font(tempfont); RETURN VALUE
Returns a pointer to the new font or NULL on error. Remember that you are responsible for destroying the font when you are finished with it to avoid memory leaks. SEE ALSO
extract_font_range(3alleg4), is_trans_font(3alleg4), is_color_font(3alleg4), is_mono_font(3alleg4), exfont(3alleg4) Allegro version 4.4.2 merge_fonts(3alleg4)
All times are GMT -4. The time now is 02:23 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy