- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- dd command in single user mode
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
01-24-2002 01:25 PM
01-24-2002 01:25 PM
dd if=/dev/rdsk/c1t15d0 of=/dev/rdsk/c3t15d0 bs=64
the > prompt returns and we can't exit. Any ideas? Thanks.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-24-2002 01:26 PM
01-24-2002 01:26 PM
Re: dd command in single user mode
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-24-2002 01:33 PM
01-24-2002 01:33 PM
SolutionSo bs=64 means you are requesting 64 byte copies. Most drives are 512 or 1024 byte sectors.
-- Rod Hills
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-24-2002 01:33 PM
01-24-2002 01:33 PM
Re: dd command in single user mode
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-24-2002 04:30 PM
01-24-2002 04:30 PM
Re: dd command in single user mode
My values are:
dd if=/dev/rdsk/c1t15d0 of=/dev/rdsk/c3t15d0 bs=8000k
I do assume that you have checked the device nodes and that /dev/rdsk/cXtydZ actually do refer to raw disk devices. Just because the have the names correct does not mean that the major/minor device numbers are correct. That's all the box cares about.
Also, for this to work well, the drives must be identical. Don't worry if dd can't read a full 8000k on the last block. It will read as much as it can and write that.
Regards, Clay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-28-2002 06:28 AM
01-28-2002 06:28 AM
Re: dd command in single user mode
Anyway, when that happens, CTRL+C will probably abort the command and give you a prompt.
As others have stated, the bs= parameter is in bytes, i.e. 64 is way too small. 64k (64 Kilo Bytes) would be more logical.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-28-2002 07:05 AM
01-28-2002 07:05 AM