- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Backup using fbackup utility
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
01-01-2009 01:44 AM
01-01-2009 01:44 AM
1) How do I ensure that my tape drive is up and connected?
2) Is it possible to perform fbackup to a file rather than to a tape? If it is, what is the command?
Thanks
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-01-2009 02:02 AM
01-01-2009 02:02 AM
Re: Backup using fbackup utility
#mt -t /dev/rmt/Xmn status
>>Is it possible to perform fbackup to a file rather than to a tape? If it is, what is the command?
yes you can do it. check the man pages
#man fbackup
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-01-2009 02:07 AM
01-01-2009 02:07 AM
Re: Backup using fbackup utility
Will this command suffice to perform fbackup to a file?
fbackup -f /tmp/backup_file -g var/adm/fbackupfiles/gfile
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-01-2009 02:15 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-01-2009 02:22 AM
01-01-2009 02:22 AM
Re: Backup using fbackup utility
#ioscan -fnCtape will show u all the tape drives connected to ur system.
these will show as /dev/rmt/0mn
/dev/rmt/1mn /dev/rmt/2mn if u have multiplae drives connected.
Remember that device files in teh iosacn listing for tapes /dev/rmt/1mn /dev/rmt/1m
etc refer physically to the same tape drive and /dev/rmt/1mn and /dev/rmt/0mn are different Tape drives.
as stated in the preceeding post u can use
#mt -t /dev/rmt/0mn status
to see that the Tape drive is ONline or not
put a media in the drive and again
#mt -t /dev/rmt/0mn status
to see if media is shown in the drive.
#mt -t /dev/rmt/0mn rewind
this will rewind the media
this is how u can check the tape devices in the system and media status of them.
2)once u r done with u can give fbackup command to take the backup like this for example:
#fbackup -0 -v -u -i /etc -i /usr -e /usr/lib -f /dev/rmt/0mn
this is to take alevel 0 that is Full backup of the diectories as included using -i option that is here /etc and /usr but will exclude the directory /usr/lib that is expressed with the -e option on teh tape device /dev/rmt/0mn which is given by -f option and will update the internal database of the fbackup operations that fbackup keeps as we have given the -u commans option
Sujit
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-01-2009 02:25 AM
01-01-2009 02:25 AM
Re: Backup using fbackup utility
Happy new year!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-01-2009 02:26 AM
01-01-2009 02:26 AM
Re: Backup using fbackup utility
this is to take alevel 0 that is Full backup of the diectories as included using -i option that is here /etc and /usr but will exclude the directory /usr/lib that is expressed with the -e option on teh directory /tmp/backup.files on the disk. which is given by -f option and will update the internal database of the fbackup operations that fbackup keeps as we have given the -u commans option
fbackup shall fail if for the files that u have specified for backing up u do not have enough space to keep the backup.\
Sujit