- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- backup using tar
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-20-2005 01:59 AM
01-20-2005 01:59 AM
I need to backup one file of 60 GB using tar becuase i need to restore under Linux and Solaris but i get that messages when i try that
# tar -cvf /dev/rmt/0mn fullVENTASWedJan19.dmp
tar: Size of fullVENTASWedJan19.dmp > 2GB. Not dumped.
is there some patch for correct that??
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-20-2005 02:05 AM
01-20-2005 02:05 AM
Re: backup using tar
ca. 68 GBytes.
HP Tar without patches is 2GB, with - is 8GB....
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-20-2005 02:09 AM
01-20-2005 02:09 AM
Re: backup using tar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-20-2005 02:10 AM
01-20-2005 02:10 AM
Re: backup using tar
you can also compress the files first, which will reduce the backup space requirements.Of course at the cost of having to run un/compress!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-20-2005 02:11 AM
01-20-2005 02:11 AM
SolutionI don't know if Sun and Linux have the same limitations or not.
You could try GNU tar, but you'll have to make sure that you install the appropriate version of GNU tar on the Sun and Linux machines as well.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-20-2005 02:15 AM
01-20-2005 02:15 AM
Re: backup using tar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-20-2005 02:17 AM
01-20-2005 02:17 AM
Re: backup using tar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-20-2005 02:18 AM
01-20-2005 02:18 AM
Re: backup using tar
http://www2.itrc.hp.com/service/cki/patchDocDisplay.do?patchId=PHCO_28992
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-20-2005 02:30 AM
01-20-2005 02:30 AM
Re: backup using tar
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-20-2005 06:07 AM
01-20-2005 06:07 AM
Re: backup using tar
I note that Netbackup is basically a superset of tar. It breaks up your files into 2GB chunks and backs those up to tape, but does indexing and data validation so that the data is recoverable. It can be configured so that these 2GB chunks each go on different devices, which really cuts down backup and restore times. Its better to have 30 2GB files than 1 60GB file on tape.
I'm a fan of tar, but don't think it appropriate for really large data files.
Chris
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-20-2005 09:52 AM
01-20-2005 09:52 AM
Re: backup using tar
First set up remsh and ssh to work across the two systems ...
Second, go to your destination machine .... ( I prefer destination)...
A) Remote Shell (rsh on your Linux or Sun box, remsh on HPUX)
Login into Linux box...
cd /mydest
rsh hpuxmachine "cd /mysource; dd if=./fullVENTASWedJan19.dmp bs=64k" | dd of=./fullVENTASWedJan19.dmp bs=64k &
Now, just wait till it's over...
If data dump won't do it - you can try the "cat" command.
ssh hpuxmachine " cd /mysource; cat fullVENTASWedJan19.dmp " > fullVENTASWEDJAN19.dmp
Well, I've never had a problem with using "cat" instead of dd - but I'm just a bit skeptical ... you could easily download a checksum program from the HPUX porting archive (search google for HPUX porting archive), and do a checksum on both sides and make sure that they match.
As seen above - if you're using ssh(recommended) instead of rsh - just put ssh instead of rsh in the command structure...
Lastly, if this is a one-time-thing - then I'd be really tempted to use dd, tar, cpio, or whatever I can get my hands on... but if this is a recurring thing I'd get some professional backup software. Since others are throwing in their votes - I'd suggest HP Data Protector - I really think it's great. But then again - I'm a big fan of HP products and services... (that could/should be read as throw away your Sun box).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-21-2005 01:33 AM
01-21-2005 01:33 AM
Re: backup using tar
Bill Hassell, sysadmin