- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: dump -0 -f Failing
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
04-20-2004 01:37 PM
04-20-2004 01:37 PM
dump -0 -f Failing
Hi,
I can't seem to find the correct command for this but this one is working with Redhat 9 but in HP-UX 11 this command is failing. Please see the output below:
# dump -0 -f /temp02/b/test.bak /appl
DUMP: Date of this level 0 dump: Wed Apr 21 09:47:31 2004
DUMP: Date of last level 0 dump: the epoch
DUMP: Dumping -f to /dev/rmt/0m
DUMP: Cannot open -f
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-20-2004 03:06 PM
04-20-2004 03:06 PM
Re: dump -0 -f Failing
In HP-UX dump is used to take FileSystem Backup of HFS and vxdump is used to take vxfs filesystem backup.
The syntax is below:-
#vxdump -0 -B 200g -u -f /dev/rmt/0m /
For more details see man pages of dump/restore and vxdump/vxrestore.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-20-2004 03:14 PM
04-20-2004 03:14 PM
Re: dump -0 -f Failing
Try the below it should work.
#dump -0f /temp02/b/test.bak /appl
In HP-UX dump is used to take FileSystem Backup of HFS and vxdump is used to take vxfs filesystem backup.dump will not backup a file system containing large files.
The syntax is below:-
#dump -0 -B 200g -u -f /dev/rmt/0m /
For more details see man pages of dump/restore and vxdump/vxrestore.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-20-2004 03:42 PM
04-20-2004 03:42 PM
Re: dump -0 -f Failing
I've tried both commands but none of them is successful :
# dump -0f /temp02/b/test.bak /appl
DUMP: Date of this level 0 dump: Wed Apr 21 11:55:49 2004
DUMP: Date of last level 0 dump: the epoch
DUMP: Dumping /appl to /temp02/b/test.bak
DUMP: ERROR: /appl is not an HFS file system.
DUMP: bad sblock magic number
DUMP: The ENTIRE dump is aborted.
# #dump -0 -B 200g -u -f /dev/rmt/0m /appl
# dump -0 -B 200g -u -f /dev/rmt/0m /appl
DUMP: Date of this level 0 dump: Wed Apr 21 11:56:20 2004
DUMP: Date of last level 0 dump: the epoch
DUMP: Dumping -B to /dev/rmt/0m
DUMP: Cannot open -B
#
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-20-2004 03:48 PM
04-20-2004 03:48 PM
Re: dump -0 -f Failing
From the error it is sure that FS /appl is not a HFS FS. If it is vxfs you try using
#vxdump -0f /temp02/b/test.bak /appl
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-20-2004 03:54 PM
04-20-2004 03:54 PM
Re: dump -0 -f Failing
Check the file system type.
if it is Vxfs You have to use vxdump insted of dump. I think using dump and vxdump we can dump full file system not part of file system.
follow this steps:
1. cat /etc/fstab |grep
see the Fils system type and use
2. vxdump -0 -f /dev/rmt/0m
Sunil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-20-2004 04:17 PM
04-20-2004 04:17 PM
Re: dump -0 -f Failing
Hi,
Thanks for the replies.
vxdump seemed to work. But is this "dump" command cannot backup a specific folder only (subfolder of the mounted partition). Sorry, I was just trying to compare the Linux "dump" into HP-UX "dump", because in Linux .. this is possible.