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
04-28-2002 05:57 PM
04-28-2002 05:57 PM
dd error
When I use dd command.
There's a error.
dd if=/dev/rdsk/c3t6d0 of=/dev/rdsk/c3t5d0 bs=1024k
There's error.
'dd: Tape-to-tape copy is not allowed.'
Please let me know.
Kiyoung.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-28-2002 11:35 PM
04-28-2002 11:35 PM
Re: dd error
From man dd:-
WARNINGS
You may experience trouble writing directly to or reading directly
from a cartridge tape. For best results, use tcio(1) as an input or
output filter. For example, for output to a cartridge tape, use
... | dd ... | tcio -ovVS 256 /dev/rct/c4t1d0
or, for input from a cartridge tape, use
tcio -ivS 256 /dev/rct/c4t1d0 | dd ... | ...
See man tcio.
HTH
Paula
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-28-2002 11:41 PM
04-28-2002 11:41 PM
Re: dd error
Also check here:-
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0xfcd20bce6f33d6118fff0090279cd0f9,00.html
Paula
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-29-2002 03:20 AM
04-29-2002 03:20 AM
Re: dd error
using a block-device for the reading should omit your problem...
Just my $0.02,
Wodisch
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-29-2002 03:37 AM
04-29-2002 03:37 AM
Re: dd error
dd if=/dev/dsk/c3t6d0 of=/dev/dsk/c3t5d0 bs=1024k
Another note on DISK to DISK copies, you will be copying each track of data, of which there are side effects.
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-29-2002 03:50 PM
04-29-2002 03:50 PM
Re: dd error
Devices are harddisk driver.
I tried to copy using block-device.
It works well, but it takes so many times (1GByte/Hour) more than using character-device.
When I use HPUX10.20, it supported character-device(400MB/min) and block-device(1GB/Hour).
Please let me know, how can i use dd commnad with character device.
kiyoung.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-29-2002 10:50 PM
04-29-2002 10:50 PM
Re: dd error
cumulative patch) installed?
check it with swlist -l patch | grep
This patch depends on phkl_18543 and phkl_24187
Hope this helps.Do not use block device with
dd,it'll take hours :).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-30-2002 09:10 AM
04-30-2002 09:10 AM
Re: dd error
cp /dev/rdsk/c3t6d0 /dev/rdsk/c3t5d0
would accomplish the same at about the same speed as dd bs=1024k. I couldn't reproduce your error on my 11.0 with the same command, probably because my patches are more recent thatn March'01. I also often use dd to clone installed systems, because it says in the end how many blocks it has read, but this is not essential. cp will do the job just as fast.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-01-2002 08:13 PM
05-01-2002 08:13 PM
Re: dd error
cumulative patch) and tried to copy, but same error occurs.
The command cp cannot copy them.
I need more help.
Thank you.
Kiyoung.