Copy disk to disk linux dd

Disk cloning in Linux using dd command

Everyone likes to have a copy of the disk drive to have a chance to recover. Even If you don’t want a copy now – you will want when your first HDD will be broken. It is used to clone all of the data from the initial etalon dump disk to several hosts disks. It will save you a huge portion-time. But what is the action options to clone the disk – let’s look:

  • have disk drive big enough to store your host disk drive dump in the file at this drive
  • connect several disk drives to your localhost and copy it set by set
  • connect several disk drives to remote hosts and transmit your host disk drive data over the network to remote hosts disk drives

All of these options are available at the Linux command line and are easy to establish and understand. “Everything is a file” at Linux: from disk driver to file at application layer point of view

“Everything is a file” at Linux

Let’s look at how disk drive partition and files look in Linux:

Script body:

#!/usr/bin/env bash ls -l /dev/sda5 ls -l just_a_file

script body in yellow rectangle, the output is next to the rectangle

ls is the command to list selected files by names: /dev/sda5 is a special file associated with disk drive partition and just_a_file is a file at files system displayed by console. What is the difference in the output? The first letter “b” shows that /dev/sda5 is a block device file – not just a file. Let’s look from the inside of Linux: the global conception of data storage and manipulation at Linux is – “everything is the file”. It means that even devices a Linux point of view can be represented as files. In the deep of OS code you can find that file is an abstract instance that has several well-structured functions specific for the date it holds:

  • read function
  • write function
  • open function (to make correct data access on several readers/writers)
  • close function
  • ioctl function (very specific actions function for device driver files)

In this conception – the hard disk drive is represented as a file at /dev/ folder. As a file, this HDD has a read function defined. This read acts like any read of file data at any application layer program. So – we can read the HDD entry. We will be in logic if this file has a write function defined also.

How to detect disk drive files?

Reasonable question is – how to detect the file and the “file size” for a copy. It is possible by using “lsblk” and “df” Linux utilities. First utility list of block devices files of the system. The second utility shows the size of the device in blocks.

Читайте также:  Google disk linux console

lsblk script body:

lsblk script execution console:

script body in yellow rectangle, the output is next to rectangle, orange rectangle contain our disk info

At console output we can see disk file “/dev/sda” with subfiles represents partitions of this disk: “/dev/sda1“, “/dev/sda2“, “/dev/sda3″.

df script body:

script body in yellow rectangle, output is next to rectangle

At the console output, we can see the size of our device file in 1K blocks.

dd – standard disk dump utility of Linux

Now let’s look at “dd” Linux standard disk dump utility. “dd” operates with files (with data streams exactly) in input and output and just get data from input file block by block and pass this data to the output file. “dd” utility have several running params – we will look at main params and overview how to use it.

dd running format with main wide used params:

dd running notes:

“if” param can be reduced – in case of reduction input be collected from a standard input stream of application. “of” param can be reduced – in case of reduction output be directed to the standard output stream of application. “bs” param can be reduced – in case of reduction some system-specific default parameter be selected. “count” parameter can be reduced – in case of reduction all of the dd param input file entry be dumped to dd output file param sink.
(You should have root permissions to act with dd. Please be sure that you are going to do – your data can be harmed on wrong actions)

Using dd to store disk dump at file:

Now we go one by one to use cases to look at how to use “dd“. First, let’s look at storing disk images to file. In our case, we will copy cdrom device disk image clone to the file that we will specify.

dd disk to file cloning script body:

#!/usr/bin/env bash dd if=/dev/sr0 of=cdrom_disk_dump_file ls -l cdrom_disk_dump_file rm cdrom_disk_dump_file

dd disk to file cloning script running at the console:

script body in yellow rectangle, the output is next to the rectangle

As we can see at the output at console raw cdrom dump have been copied at the file at our disk with rate 392Mb/s. Throughput rate can vary on the disk type you using and “bs” param selected. “1457256+0″ is a number of blocks copied in and out on “dd” run.
(please note that /dev/sr0 is cdrom disk name at my system – your system can hold other names)

Using dd to store raw disk image at other disk connected to host:

As mentioned before it is very useful to clone the main disk as it is: from one disk drive to another. “dd” is useful for this case also.

dd raw disk image clone to other disk script body:

#!/usr/bin/env bash lsblk /dev/sda /dev/sdb sudo dd if=/dev/sda /dev/sdb bs=1k lsblk /dev/sda /dev/sdb

dd raw disk image clone to other disk script running at the console:

script body in yellow rectangle, the output is next to the rectangle

As we can see before the copy destination disk /dev/sdb have no data. But after the copy partition structure of /dev/sda is equal to the structure of /dev/sdb.

Читайте также:  List volume in linux

Note: Please note that “sudo” command is needed here to be root on working on dev file directly.

Store disk dump at another network-connected host disk

In this example, we will translate the dump of our disk over the network by using nc utility. This utility will be run at our host to put data in network and get it from the network. It will be run local – but you can write both of the sending and receiving scripts at different hosts.

Script sending disk dump body:

#!/usr/bin/env bash lsblk /dev/sda /dev/sdb sudo dd if=/dev/sda | nc -l

script body in yellow rectangle, the output is next to the rectangle

dd here have no “of” parameter – it will write to standard output stream in this case. This stream redirected to following nc call standard input stream by using of “|“. nc transmit disk data by TCP connection to “localhost” (out current host) port 9000. We only need an appropriate TCP listener at port 9000 to succeed. It will follow next.

Script receiving disk dump body:

#!/usr/bin/env bash lsblk /dev/sda /dev/sdb nc -l 9000 | sudo dd of=/dev/sdb bs=1M lsblk /dev/sda /dev/sdb

script body in yellow rectangle, the output is next to the rectangle

Here we listening for TCP connection at port 9000 by nc. Next nc transmit all connection data to the standard output stream of nc. This is passed to standard input stream of dd by using of “|” redirection command. dd have no “if” parameter here – it will get standard input stream as input in this case (means nc standard output stream). In the end, we can see – that /dev/sdb partition structure is equal to /dev/sda as expected.

Источник

Use dd to Clone a Disk

The dd command in Linux is a powerful utility used to copy and convert a file. As in Linux, everything is considered as a file; even your hard disk drives. Hence, dd can also be used for cloning disks and partitions. The dd utility comes installed in almost all Linux distributions.

The dd utility in Linux can be used to:

  • Clone a disk
  • Clone a partition
  • Backup and restore the entire hard disk or partition.
  • Erase hard drive content

This post will describe how to use dd to clone a disk in Linux OS. The procedure demonstrated here has been tested on Linux Mint 20. For other Linux distributions, the same procedure can be used for disk cloning.

Note: Before running the dd command to clone the disk to the destination, remember that all the data on the destination will be lost, and you will not be informed about that. Therefore, make sure you specify the correct destination so that you may not lose your valuable data.

dd command syntax

The basic syntax of the dd command is as follows:

Where

  • if: used for specifying an input file
  • source-disk: It is the source disk from where files will be cloned
  • of: used for specifying an output file
  • destination-disk: It is the destination disk where you want to place the copied files
  • option: Different options can be used with the dd command like for progress, speed of file transfer, the format of the file, etc.

Clone an entire disk

  1. First, execute the lsblk command to view all the available disks on your system.

Or you can also use the following command for viewing the disks:

We have three disks /dev/sda, /dev/sdb and /dev/sdc. The /dev/sdb has two partitions /dev/sdb1 and /dev/sdb2. We want to make the exact copy from /dev/sdb to /dev/sdc. Both disks /dev/sdb and /dev/sdc have the same size, 5GB. You can copy a smaller disk to a larger disk, but you cannot copy a larger disk to a smaller one.

Читайте также:  Linux find command and or

This command tells dd to copy the source disk /dev/sdb to the destination disk /dev/sdc and shows the progress of the cloning process.

Once the cloning process has been completed, you will see a similar output.

  1. Now, the cloning has been done. If you run the lsblk command again, you will see that the destination disk /dev/sdc has the same partitions as the source disk /dev/sdb.

Clone a partition from one disk to another

Using the same above described procedure, a partition can be cloned from one disk to another. However, instead of specifying the disk, you will need to specify the partition you want to clone.

For instance, to clone a partition /dev/sdb2 to /dev/sdc2, the command would be:

That is all there is to it! Using the simple procedure described above, you can easily clone a disk or partition in your Linux system.

About the author

Karim Buzdar

Karim Buzdar holds a degree in telecommunication engineering and holds several sysadmin certifications. As an IT engineer and technical author, he writes for various web sites. He blogs at LinuxWays.

Источник

How to Clone a Partition or Hard drive in Linux

There are many reasons why you may want to clone a Linux partition or even hard drive, most of which are related to creating backups of your data. There are multiple ways you can achieve this in Linux by using some external tools such as partimage or Clonezilla.

However in this tutorial we are going to review Linux disk cloning with tool called dd, which is most commonly used to convert or copy files and it comes pre-installed in most Linux distributions.

How to Clone Linux Partition

With dd command you can copy entire hard drive or just a Linux partition. Lets start with cloning one of our partitions. In my case I have the following drives: /dev/sdb, /dev/sdc.. I will clone /dev/sdb1/ to /dev/sdc1.

First list the these partitions using the fdisk command as shown.

List Linux Partitions

Now clone a partition /dev/sdb1/ to /dev/sdc1 using the following dd command.

The above command tells dd to use /dev/sdb1 as input file and write it to output file /dev/sdc1.

Clone Linux Partition with dd Command

After cloning Linux partition, you can then check both partitions with:

Verify Linux Partition Cloning

How to Clone Linux Hard Drive

Cloning a Linux hard drive is similar to cloning a partition. However, instead of specifying the partition, you just use the entire drive. Note that in this case it is recommended that the hard drive is same in size (or bigger) than the source drive.

Clone Hard Drive in Linux

This should have copied the drive /dev/sdb with its partitions on the target hard drive /dev/sdc. You can verify the changes by listing both drives with fdisk command.

Verify Linux Hard Drive Cloning

How to Backup MBR in Linux

dd command can also be used to backup your MBR, which is located at the first sector of the device, before the first partition. So if you want to create backup of your MBR, simply run:

# dd if=/dev/sda of=/backup/mbr.img bs=512 count=1.

The above command tells dd to copy /dev/sda to /backup/mbr.img with step of 512 bytes and the count option tells to copy only 1 block. In other words you tell dd to copy the first 512 bytes from /dev/sda to the file you have provided.

Backup MBR in Linux

That’s all! dd command is a powerful Linux tool that should be used with caution when copying or cloning Linux partitions or drives.

Источник

Оцените статью
Adblock
detector