- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: dd syntax ?
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
Discussions
Discussions
Discussions
Forums
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
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
тАО12-03-2005 09:54 PM
тАО12-03-2005 09:54 PM
I have read in diffrent posts that dd can be use to make a clone.
the souce machine have the following partitions
/dev/hda1 = /boot
/dev/hda2 = /usr
/dev/hda3 = /var
/dev/hda5 = /
/dev/hda6 = /home
Now i have attached the target/destination machine's hard drive to the source as hdb (primary slave)
what is the right syntax of dd to use so that hdb will be prepare as hda
Thanks n Regards
Regards
Maaz
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-04-2005 03:55 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-04-2005 04:20 PM
тАО12-04-2005 04:20 PM
Re: dd syntax ?
if u can plz explain why "bs=20M"
Regards
Maaz
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-04-2005 07:02 PM
тАО12-04-2005 07:02 PM
Re: dd syntax ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-04-2005 07:17 PM
тАО12-04-2005 07:17 PM
Re: dd syntax ?
/dev/hda is used as source point of file name which gives data
/dev/hdb is used as destination pointe of the file name which gets data
bs means block size. Used to control speed of data that is going to be transfered from source to destination.
20M means -> Data transaction rate is with 1024 * 1024 Bytes.
20MB means -> Data trasaction rate is with 1000 * 1000 Bytes.
Refer dd man page for more details.
hth.