- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: fbackup without tape drive
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
08-06-2007 07:58 PM
08-06-2007 07:58 PM
manpage of fbackup (HP-UX 11.00) says:
"The output device can be a raw magnetic tape drive (for example, a DLT tape drive), the standard output, a rewritable magneto-optical disk, or a file".
I would prefer to backup a file system (11 GB) to another free disk.
Please tell me the fbackup-syntax for the "file"-output.
Thank you all,
Michael
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-06-2007 08:01 PM
08-06-2007 08:01 PM
Re: fbackup without tape drive
regards,
ivan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-06-2007 08:34 PM
08-06-2007 08:34 PM
Re: fbackup without tape drive
Issue command:
# fbackup -vf
Example (fbackup /usr filesystem):
# fbackup -vf /disk1/usr-20070807.fbackup -i /usr
If you intend to compress the the fbackup file:
# gzip -9
Example:
# cd /disk1
# gzip -9 usr-20070807.fbackup
You should see the final compressed file: /disk1/usr-20070807.fbackup.gz
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-06-2007 09:08 PM
08-06-2007 09:08 PM
Solution/usr/sbin/fbackup -f /var/tmp/backupfile -i /home/micahel
(the above would create a fbackup archive file called backupfile in /var/tmp comprising the contents of /home/micahel
To see the contents of the arhcive:
frecover -I `tty` -f /var/tmp/backupfile
Regards,
Rasheed Tamton.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-06-2007 09:09 PM
08-06-2007 09:09 PM
Re: fbackup without tape drive
> file:
> [...]
If you want compression, it would make more
sense to use a pipeline, as in the the thread
cited above. Although, as noted there, I'd
use bzip2 or gzip, rather than "compress" as
the compression program, but any of them
could be used in a pipeline, reducing the
transient demand for disk space.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-07-2007 12:07 AM
08-07-2007 12:07 AM
Re: fbackup without tape drive
thank you for your solutions,
also for the frecover command.
Bye, Michael