- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: fbackup on dds3 tape
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
03-30-2005 12:22 AM
03-30-2005 12:22 AM
Can I take more than 12GB data on DDS3 tape?Which device name should I use for that?
Regards
Jerry
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-30-2005 12:29 AM
03-30-2005 12:29 AM
Re: fbackup on dds3 tape
Anil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-30-2005 01:06 AM
03-30-2005 01:06 AM
Re: fbackup on dds3 tape
If the data is compressable, then yes. If the data is not compressable, then no.
Use /dev/rmt/0m
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-30-2005 01:15 AM
03-30-2005 01:15 AM
Re: fbackup on dds3 tape
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-30-2005 01:47 AM
03-30-2005 01:47 AM
Re: fbackup on dds3 tape
(/usr/contrib/bin/gzip is always available)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-30-2005 01:56 AM
03-30-2005 01:56 AM
SolutionTry compressing one of those tar files with gzip or compress. See if it gets any smaller. If it doesn't then the tape drive is *not* going to do any better and you should plan on multiple tapes.
You would be much better off keeping the tapes in the set the same. If you start backing up with DDS3, then stick with it. If you have 19.5GB of data that should easily fit on 2 DDS3 tapes at their native 12GB capacity.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-30-2005 06:46 PM
03-30-2005 06:46 PM
Re: fbackup on dds3 tape
Take a look with this thread:
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=753278
Regard
HoangChiCong
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-30-2005 06:51 PM
03-30-2005 06:51 PM
Re: fbackup on dds3 tape
Thanks for the inputs.
jerry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-31-2005 02:13 AM
03-31-2005 02:13 AM
Re: fbackup on dds3 tape
lssf /dev/rmt/*
Using this device file will turn on the drive's compression which is about equal to any external compression utility. A tar file is not compressed, it is simply a concatenation of the orginal files with headers between each file, so there is nothing you can determine about the compressability of the data. You can run gzip or compress on one of your tar files to see what the difference is:
ll myfile.tar
compress myfile.tar
ll myfile.tar.Z
The difference is roughly how much compression will be used when you backup that file to tape. Average data compression on a basic HP-UX installation is just under 2:1 which means you can store just under 24Gb on the DDS3 tape. If you are backing up a commercial database that is only partially used, your compression ratio may be 10:1 or even 20:1 (in other words, you can store 120Gb on a DDS3 tape). But that is because the empty database typically contains long strings of nulls or is a sparse file. There really isn't 120Gb of data, just codes that indicate long strings of the same pattern.
Noted also that except for fbackup, when you restore a sparse file (where many records were never defined), all the missing holes in the restored file will be filled with nulls, thus occupying more space on the disk. This is normal and expected since if all the records are eventually used, the file would still be the same size. fbackup has an option (-s) which compresses long strings of nulls into directory entries that mark these blocks as undefined.
So all of this is to prepare you for the fact that the *only* amount of data that can be stored on any tape drive is the native capacity which is sometimes difficult to determine. The tape industry adopted the 'compressed model' more than a decade ago, calling a 12Gb DDS3 a DAT24, implying that it stores 24Gb. However, the fine print says: "assuming 2:1 compression". In Unix land, we say: "Your mileage may vary"
Here is a quick reference chart:
Tape type Length Native capacity
DDS1________60m____1.3Gb
DDS1________90m____2.0Gb
DDS2_______120m____4.0Gb
DDS3_______125m____12.0Gb
DDS4_______150m____20.0Gb
DDS72______180m____36.0Gb
More details:
http://h20000.www2.hp.com/bizsupport/TechSupport/Document.jsp?objectID=lpg50457
Bill Hassell, sysadmin