- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- dd blocksize for DLT tapes
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-18-2001 12:00 PM
05-18-2001 12:00 PM
Should I increase the blocksize with "bs=". How do I know what to use?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-18-2001 12:04 PM
05-18-2001 12:04 PM
Re: dd blocksize for DLT tapes
I would bump the obs up to about 1000k as long as the obs is a multiple of your ibs everything will work fine.
Clay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-18-2001 12:11 PM
05-18-2001 12:11 PM
Re: dd blocksize for DLT tapes
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-18-2001 12:12 PM
05-18-2001 12:12 PM
Re: dd blocksize for DLT tapes
One other utility you might look into, if it is Hp to HP is ftio; it forks into multiple processes so that reads and writes are going on simultaneously and you can set the block size on the command line. Man ftio for details.
Clay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-18-2001 12:18 PM
05-18-2001 12:18 PM
SolutionThe ibs by default is 512. You can do this:
dd if=myfile ibs=5k obs=1000k of=/dev/rmt/2m
This will work fine and if the last input block is a partial read then it will take care of it.
One thing to be aware of, is that dd may not copy the file with the exact output size; on some implementations it made pad the last output block with NUL's. Normally this does no harm. That's why I would suggest you use ftio -
it takes care of file ownerships and permissions and lengths.
Clay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-19-2001 04:33 AM
05-19-2001 04:33 AM
Re: dd blocksize for DLT tapes
If your file is a raw device use rlvolxx instead lvolxx.
When using ibs and obs option whit the same size it is better do use bs (both ibs and obs).
Recommended bs for DLT is 68k .