- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: TAR problemas - tape device space
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
10-08-2001 06:06 AM
10-08-2001 06:06 AM
TAR problemas - tape device space
If it is true, where can I download bzip2 and manuals for HP-UX 10.20 ? Is there a option in tar command that allow to compress files while copying it to a tape device ?
Thanks, cheers, Mauro
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2001 06:14 AM
10-08-2001 06:14 AM
Re: TAR problemas - tape device space
How may GB are you saving?.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2001 06:18 AM
10-08-2001 06:18 AM
Re: TAR problemas - tape device space
/dev/rmt/c0t5d0BESTb
Otherwise, you can use gzip to compress the files before dumping them onto the tape. Gzip does a better job of compressing the files, but its much slower than the hardware compression on the tape.
-Santosh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2001 06:19 AM
10-08-2001 06:19 AM
Re: TAR problemas - tape device space
you could do this:
tar cvf -
For restore do:
dd if=/dev/rmt/0m ibs=10k | gzip -dc | tar xvf -
Regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2001 06:28 AM
10-08-2001 06:28 AM
Re: TAR problemas - tape device space
1) If you are not using 120m tapes already, get them to increase tape capacity.
2) Use fbackup rather than tar so that you can do incremental backups and much less freequent full backups that must span tapes.
3) Divide your backups so that they will fit on 1 tape.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2001 06:33 AM
10-08-2001 06:33 AM
Re: TAR problemas - tape device space
Cheers, Mauro
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2001 06:41 AM
10-08-2001 06:41 AM
Re: TAR problemas - tape device space
Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2001 06:43 AM
10-08-2001 06:43 AM
Re: TAR problemas - tape device space
Use a cleanning tape twice, and use new tapes.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2001 06:47 AM
10-08-2001 06:47 AM
Re: TAR problemas - tape device space
Hope this helps.
-Santosh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2001 12:38 AM
10-09-2001 12:38 AM
Re: TAR problemas - tape device space
I doubt that using software compression will help. *If* you try software compression, you will probably have to disable hardware compression, because using two, different, methods of compression can often make things worse instead of better. See the mksf(1M) manual page on how to make a device file without (hardware) compression.