- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- backup of filesystems
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
07-29-2004 10:17 AM
07-29-2004 10:17 AM
backup of filesystems
I need to make a backup the next FS on DLT:
/ora9i
/siebel/undo
/siebel/temp
/siebel/system
/siebel/redo
/siebel/index
/siebel/data
what is the sintaxis for execute my backup in HP-UX 11.11 with a log file.
Thank you
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-29-2004 10:20 AM
07-29-2004 10:20 AM
Re: backup of filesystems
i /ora9i
i /siebel/undo
i /siebel/undo
i /siebel/temp
i /siebel/system
i /siebel/redo
i /siebel/index
i /siebel/data
#
# mkdir /var/adm/fbackupfiles
# fbackup -f /dev/rmt/1mn -0 -uv -g /root/graph -I /root/logfile
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-29-2004 10:23 AM
07-29-2004 10:23 AM
Re: backup of filesystems
# vi /tmp/graph
i /ora9i
i /siebel/undo
i /siebel/temp
i /siebel/system
i /siebel/redo
i /siebel/index
i /siebel/data
Then run these commands to create the archive to tape and read it back. Substitute the ?m to your tape device.
# fbackup -g /tmp/graph -f /dev/rmt/?m
# frecover -I /tmp/index -f /dev/rmt/?m
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-29-2004 10:25 AM
07-29-2004 10:25 AM
Re: backup of filesystems
Thank you for your help me.
how I can to check what is the tape available for my backup?
excuse me and what is the comand for the restore.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-29-2004 10:28 AM
07-29-2004 10:28 AM
Re: backup of filesystems
This will tell you the tape drives installed in the system.
frecover is the command to restore from the backup
# frecover -f /dev/rmt/0mn -rvF -i /ora9i
The above command will restore /ora9i from the backup tape /dev/rmt/0mn.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-29-2004 10:37 AM
07-29-2004 10:37 AM
Re: backup of filesystems
I execute the command and recieve the next:
# ioscan -fnC tape
Class I H/W Path Driver S/W State H/W Type Description
=====================================================================
tape 0 0/0/1/0.0.0 stape CLAIMED DEVICE Quantum DLT4000
/dev/rmt/0m /dev/rmt/c0t0d0BESTn
/dev/rmt/0mb /dev/rmt/c0t0d0BESTnb
/dev/rmt/0mn /dev/rmt/c0t0d0DDS
/dev/rmt/0mnb /dev/rmt/c0t0d0DDSb
/dev/rmt/c0t0d0BEST /dev/rmt/c0t0d0DDSn
/dev/rmt/c0t0d0BESTb /dev/rmt/c0t0d0DDSnb
I don't Know what is the device for execute my backup; I check the tape device and is a DLT 4000 Model for 8 tapes but my question is What dev is available or what is the characteristics of all /dev/rmt/xxxxx
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-29-2004 10:43 AM
07-29-2004 10:43 AM
Re: backup of filesystems
man 7 mt for more details.
You can use /dev/rmt/0m.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-29-2004 11:06 AM
07-29-2004 11:06 AM
Re: backup of filesystems
I would also suggest a small change to your backup graph files. Rather than using absolute paths, e.g i/ora9i, I would change to relative paths e.g. i./ora9i BUT cd to / before running fbackup. This simply makes restoring to other locations easier.