- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: HPUX 11 O/S Full Backup?
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-09-2001 07:02 PM
05-09-2001 07:02 PM
HPUX 11 O/S Full Backup?
I have wonder how could I fully perform the operating system backup? My server using HPUX 11 64 bits. In which directory I should consider in at fully backup the directory like example /etc/passwd directory should be included because it contain all the user ID and password.
Reason that I want to perform O/S backup because of one day system will totally crash. Who know?
Here, I don't under which directories I should backup the data?
And, I don't what HPUX command is the best to use and the command for faster way to perform recovery also. My server using DDS tape to make the backup. Since HPUX has many command like fbackup, cpio, tar dump and so on. What is the best command to use?
Please help me for the issue above. All your help would be appreciated. Thank you so much.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-09-2001 09:01 PM
05-09-2001 09:01 PM
Re: HPUX 11 O/S Full Backup?
Once this is installed, you will want to look at the command make_tape_recovery. This command will create a bootable tape that contains your entire vg00 volume group.
If your machine ever crashes, or you have a hard disk crash, or you have to rebuild your system for any reason, your just boot from the tape, you can make changes if you desire, and your system will be restored exactly like it was when you made the tape.
Ignite/UX is FREE from HP. It is a utility that no one should be without on their system.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-09-2001 09:27 PM
05-09-2001 09:27 PM
Re: HPUX 11 O/S Full Backup?
Thanks for you helped. What the difference between O/S full backup and make_recovery. Are they backup all the same data?
I know that HP's Ignite is one of the utility to make a O/S full backup but I would like to try to use HPUX command to perform the O/S full backup. Could I know under which directories are important for the system?
What are the HPUX commands are the best to use for the O/S full backup?
Thank you in advance.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-09-2001 10:38 PM
05-09-2001 10:38 PM
Re: HPUX 11 O/S Full Backup?
The problem is, after a complete system crash, you'll need to do an installation first and then do an "frecover" afterwards. There can be some pitfalls with this installation when you are under pressure in such a situation, so this may cost time.
It is easier to boot the ignite tape and relax...
By the way, you'll need this SAM/fbackup tape anyway, because you will need to backup your application and userdata as well, and after ignite restored your system, you'll need to restore the user-/application data in addition.
Volker
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-10-2001 08:21 AM
05-10-2001 08:21 AM
Re: HPUX 11 O/S Full Backup?
with fbackup you may use a graph file that will tell fbackup which filesystems and files to backup.
example: #fbackup -0 -u f /dev/dest -g /tmp/graph -d /tmp1/graph/date
- fnhalili
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-10-2001 08:24 AM
05-10-2001 08:24 AM
Re: HPUX 11 O/S Full Backup?
Good Luck
first i would install ignite, and run a
make_recovery -Ai
this will backup all of vg00 and allow you to boot off of that tape if you need too.
next i would run an fbackup on /vg00 only
bdf | grep vg00 | awk '{print $6}' > /tmp/graph
bdf | grep -v vg00 | grep -v Mounted | awk '{print $6}' >> /tmp/graph
vi /tmp/graph (for all vg00 put an i
i /
i /home
i /var
e /vg01mountpoint
e /vg02mountpoint
save this
now run
fbackup -0 -g /tmp/graph -I /tmp/fb_log -f /dev/rmt/
after you do that, change all the "i" to "e" and vice versa in the /tmp/graph eg..
e /
e /home
e /var
i /vg01mountpoint
i /vg02mountpoint
now run the fbackup command
fbackup -0 -g /tmp/graph -I /tmp/fb_log2 -f /dev/rmt/
now you will have your:
vg00 tape
non vg00 tape
make_recovery tape (to recover a full OS if needed)
let us know if you need more detail, good luck, if your not sure about the tape device, put and ioscan -funC tape on the forum and some one will help you out.
Boley