- Community Home
- >
- Servers and Operating Systems
- >
- Legacy
- >
- Operating System - Tru64 Unix
- >
- Re: tape will not stream ...
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-05-2006 07:28 AM
10-05-2006 07:28 AM
tape will not stream ...
HBA KZPCA-AX, Tape Drive HP DLT-8000
Only device on the bus
Cart is DLT-IV 40/80 brand new
Drive just cleaned w/new cleaning cart.
I can't get the tape to stream at all,
any suggestions ? Currently I'm getting
about 650-750 KB/sec with tar/default
blocks
cpu/disk loads are effectivly 0%
-pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-05-2006 07:51 AM
10-05-2006 07:51 AM
Re: tape will not stream ...
tar cvf /dev/tape/tapeXc /usr
Don't forget the trailing "c". If you have a file system with big files, backup that file sytem.
Run collect to identify the throughput:
collect -st
collect -T
Post the results. Then, run
dia -R
To see if there are SCSI events related to the tape drive.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-05-2006 10:01 AM
10-05-2006 10:01 AM
Re: tape will not stream ...
but did a quick foreach loop and
got the results in the attachment,
looks like tar's default block size
is just too small. Up to 4 MB/Sec not
the 6-12 MB/Sec the drive is suppose
to go but a lot better !
-pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-06-2006 02:34 AM
10-06-2006 02:34 AM
Re: tape will not stream ...
If you want to do a performance test, you can use dd, for example:
dd if=/dev/zero of=/dev/tape/tapeXc bs=64k
Use collect to capture performance data.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-06-2006 08:35 AM
10-06-2006 08:35 AM
Re: tape will not stream ...
but zero's and with hw compression i get
approx 12 MB/sec. With out compresson
approx 5.5 to 6 MB/sec, just what the
drive is suppose to do. The catch seems
to be keeping the block size BIG, at
least 60 KB.
btw, if your file is anywhere random,
like from gzipping it, dont use hw
compression, can get pretty slow, and
that is what I was doing with out thinking.
so, block size at least 60 KB, and think
about if you should use hw compression or
not.
collect as usual showed me all i needed
to know.
-pete
PS remember tar's blocks are 512 bytes