- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Problem in backup
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
05-06-2004 02:19 AM
05-06-2004 02:19 AM
Problem in backup
I am having some problem during taking backup using tar command. I am using 40/80 GB DLT Tape. Although data is less than 40 GB, it is showing "end of tape" in the verbose mode. In tape drive display, it is showing "clean up the drive". I have done so, 2-3 times it didn't help. But backup using 'fback' command working fine.
Can anybody tell me, why 'tar' command is giving problem?
Regards,
Sugata
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-06-2004 02:24 AM
05-06-2004 02:24 AM
Re: Problem in backup
tar does NOT use compression.
I suggest you use GNU's tar, which has a compression option.
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-06-2004 02:25 AM
05-06-2004 02:25 AM
Re: Problem in backup
-Hazem
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-06-2004 02:33 AM
05-06-2004 02:33 AM
Re: Problem in backup
With GNU's tar, you do not have a 2GB limit on individual files.
Do you have the Tape drive compression enabled?
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-06-2004 02:45 AM
05-06-2004 02:45 AM
Re: Problem in backup
for download free tar support >2.0Gb
In the page personal of Merijn
https://www.beepz.com/personal/merijn/
GNUTAR AND GNUCPIO
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-06-2004 11:59 AM
05-06-2004 11:59 AM
Re: Problem in backup
One more option....
fbackup will work for files in excess of 2gb.
Attached is a doc made (lond ago when we were noew to HP-UX) for this.
Best regards,
dl
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-06-2004 10:54 PM
05-06-2004 10:54 PM
Re: Problem in backup
Perhaps you have a lot of small file.
Or sparse files.
check tar archive size by using follow comannd.
tar cbf 20 - ./backup_volume_name | dd bs=1024 of=/dev/null
so, dd reports total size.
If this size is over 40GB, you have a lot of small file
or sparse files.
tar always pads information written to an archive up to the next
multiple of the block size.
(see man tar)
Thanks.