can 'dd' be used to clone to a smaller HDD, knowing that partitions will need editing?












12














I've used dd to clone disks like this:



 dd if=/dev/sdb of=/dev/sda bs=4096 conv=notrunc,noerror,sync


And it's always worked fine. Any and all docs on 'dd' take pains to remind you that the target disk must be the same size or bigger than the source. Does that absolutely have to be true?



Now, I quite understand that if I clone to a smaller disk I can't expect any partitions that are even partially 'out of bounds' on the target to be intact.



However, knowing full well that I'd need to edit my partitions on the target later, deleting the 'out of bounds' ones, could I still use 'dd' to make a brute force copy of the source up to the limits of the physical size of the target? Or would 'dd' reduce the target to a smoking pile of wreckage when it reached the limit of its size ;-)



BTW, researching this, I've seen recommended values for bs= of everything from bs=1024 up to bs=32M, what really is best?










share|improve this question
























  • Note, if using dd calculating the optimal block size is useful
    – Wilf
    Dec 30 '17 at 22:24
















12














I've used dd to clone disks like this:



 dd if=/dev/sdb of=/dev/sda bs=4096 conv=notrunc,noerror,sync


And it's always worked fine. Any and all docs on 'dd' take pains to remind you that the target disk must be the same size or bigger than the source. Does that absolutely have to be true?



Now, I quite understand that if I clone to a smaller disk I can't expect any partitions that are even partially 'out of bounds' on the target to be intact.



However, knowing full well that I'd need to edit my partitions on the target later, deleting the 'out of bounds' ones, could I still use 'dd' to make a brute force copy of the source up to the limits of the physical size of the target? Or would 'dd' reduce the target to a smoking pile of wreckage when it reached the limit of its size ;-)



BTW, researching this, I've seen recommended values for bs= of everything from bs=1024 up to bs=32M, what really is best?










share|improve this question
























  • Note, if using dd calculating the optimal block size is useful
    – Wilf
    Dec 30 '17 at 22:24














12












12








12


2





I've used dd to clone disks like this:



 dd if=/dev/sdb of=/dev/sda bs=4096 conv=notrunc,noerror,sync


And it's always worked fine. Any and all docs on 'dd' take pains to remind you that the target disk must be the same size or bigger than the source. Does that absolutely have to be true?



Now, I quite understand that if I clone to a smaller disk I can't expect any partitions that are even partially 'out of bounds' on the target to be intact.



However, knowing full well that I'd need to edit my partitions on the target later, deleting the 'out of bounds' ones, could I still use 'dd' to make a brute force copy of the source up to the limits of the physical size of the target? Or would 'dd' reduce the target to a smoking pile of wreckage when it reached the limit of its size ;-)



BTW, researching this, I've seen recommended values for bs= of everything from bs=1024 up to bs=32M, what really is best?










share|improve this question















I've used dd to clone disks like this:



 dd if=/dev/sdb of=/dev/sda bs=4096 conv=notrunc,noerror,sync


And it's always worked fine. Any and all docs on 'dd' take pains to remind you that the target disk must be the same size or bigger than the source. Does that absolutely have to be true?



Now, I quite understand that if I clone to a smaller disk I can't expect any partitions that are even partially 'out of bounds' on the target to be intact.



However, knowing full well that I'd need to edit my partitions on the target later, deleting the 'out of bounds' ones, could I still use 'dd' to make a brute force copy of the source up to the limits of the physical size of the target? Or would 'dd' reduce the target to a smoking pile of wreckage when it reached the limit of its size ;-)



BTW, researching this, I've seen recommended values for bs= of everything from bs=1024 up to bs=32M, what really is best?







partition hard-disk dd cloning






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 15 '16 at 16:52









Marcelo

2,301816




2,301816










asked Oct 13 '14 at 16:16









Ray Andrews

7253825




7253825












  • Note, if using dd calculating the optimal block size is useful
    – Wilf
    Dec 30 '17 at 22:24


















  • Note, if using dd calculating the optimal block size is useful
    – Wilf
    Dec 30 '17 at 22:24
















Note, if using dd calculating the optimal block size is useful
– Wilf
Dec 30 '17 at 22:24




Note, if using dd calculating the optimal block size is useful
– Wilf
Dec 30 '17 at 22:24










5 Answers
5






active

oldest

votes


















6














The physical drive should not start smoking, at least, but chances are very good that your filesystem will not work anymore (I mean, the target filesystem; if you just copied and did not touch anything in the source, the source itself should be fine). Data inside a partition is not necessarily allocated in increasing order. Some of it may be at the end of the partition even if the partition is not full (actually, I think that this happens deterministically with some filesystem, but I do not know enough to get in the details). The data there may be essential to the integrity of the filesystem. So I strongly advise you not to rely on such a copy.



If you want to do this copy, you first have to shrink the partition with some tool that is aware of its internal structure and is able to remap everything in good order into a smaller partition. Then you can do the copy. gparted is a good GUI interface to do this kind of things.



For the bs value, usually the best idea is to have a couple of tests before starting the real copy. There are some tools that help you automating this check, but I do not remember the name. In my experience, the best range is usually between 4M and 16M. Higher than that you do not earn much anymore. But it depends on many things, including the disks themselves. For example, I rarely worked with real high-end disks, which may be suitable for higher values due to bigger speed and cache size.



EDIT If a partition is wholly copied, then you can use it without problems. However, as others have underlined, you also have to be sure that the partition table is intact (at least, the relevant entries). With MBR's four primary partitions there are no problems, since they are described in the first 512 bytes of the disk. Logic partitions are described throughout the extended partition, so entries may be lost (but they would described partitions that would be lost anyway). With GPT there is a copy of the partition table both at the beginning and at the end of the disk. You lose the second one, but you can rebuilt it from the first one. Of course it is advisable to do that as soon as possible; other answers were more precise with respect to that.






share|improve this answer























  • Please see edited question :)
    – Ray Andrews
    Oct 13 '14 at 17:12






  • 1




    @rayandrews Not sure what update you're expecting, but basically dd copies bytes. It'll start at byte 0, and keep copying until something (in your case, end of media on the destination) stops it. That'll leave you with a partition table that specifies a drive larger than reality and partitions outside the drive... but if you fix that, it should be fine. Though it'd probably be easier to use dd per-partition to copy the data. [It'll also leave you with all the normal dd problems, like duplicate UUIDs]
    – derobert
    Oct 13 '14 at 17:35










  • What I like is that it creates and labels the partitions and file systems as it goes--very time saving. Right about the UUIDs tho.
    – Ray Andrews
    Oct 14 '14 at 1:01






  • 1




    how do you restore the second gpt table?
    – user230910
    Aug 13 '17 at 2:34



















1














Although at first the proposed "challenge" may seem difficult, not feasible or sound naive as some have commented, it isn't. The main idea behind using dd to migrate from a bigger to a smaller disk is perfectly fine and have benefits for migrating the data. Of course, having enough free space so that the occupied data fits in the destination disk is a necessary requirement.



The idea is to think in dd'ing each partition individually and not the entire disk at once as initially proposed. Even more can be accomplished: The partition(s) that would be truncated can also be safely migrated with a little help of filesystem re-sizing tools. Indeed, such kind of migration is interesting in order to preserve filesystem matadata and extended file attributes that cannot be easily copied with tools like cp, rsync, pax, ... which operate in the filesystem layer and not block device layer. Using dd elliminates the need of re-installing the OS or having to relabel the FS in order to avoid issues with SELinux.



Below is what I usually do to accomplish similar tasks:



1) First you have reduce the filesystem(s) within the affected partitions that would be truncated. For this, use the resize2fs tool (assuming we are talking about an ext2/ext3/ext4 fs - other modern FSs also have resizing tools for the same purpose). Note that although -- for obvious reasons -- a filesystem cannot be bigger than the partition it resides within, it can safely be smaller. The safety trick here is to reduce "more than needed". For example: imagine you have a filesystem of 1TB that you want to migrate to a 500 Gig drive. In this case, I suggest reducing the fs to, let's say, 450 Gig (you have to have enough free space for this, of course, i.e., the currently occupied space in this filesystem cannot exceed 450 Gig). The apparent wasted 50 Gig of space will be fixed after the data migration.



2) Partition the destination disk with the appropriate geometry considering its space constraints;



3) dd the data using the partition device(s) and not the disk device (i.e., use dd if=/dev/sda# of=/dev/sdb# for each partition instead of using if=/dev/sda of=/dev/sdb). NOTE: sda and sdb here are just examples;
IMPORTANT NOTE: When dd'ing from a bigger to a smaller partition device, dd will complain about attempting to write post to the end of the block device, that's ok since the filesystem data would have been entirely copied before reaching that point. To avoid such error message you can specify the size of the copy using bs= and count= parameters to match the shrunk filesystem size, but this will require some (simple) calculation, but if done wrongly can risk your data.



4) After dd'ing the data, resize the respective filesystem(s) within the destination partition(s) again using resize2fs. This time do not specify the new filesystem size. When ran without a size specification, resize2fs grows the filesystem so that it occupies the maximum allowed size, so, in this case, the 450 Gig filesystem will grow again to occupy the entire 500 Gig partition and no byte will be wasted. (The "reduce more than needed" approach avoids you to accidentally specify sizes wrongly and risk your data. Note that GB vs GiB units can be tricky).



Note for more complex operations: If you have a boot manager that you intend to copy along, which is very likely to be the case, you can dd the first few KBs of the disk using the disk device instead of the partition devices (like dd if=/dev/sda of=/dev/sdb bs=4096 count=5), and then reconfigure the geometry in /dev/sdb (which will temporarily contain an invalid geometry for the new drive but an intact and valid boot manager). Finally proceed using the partition devices as described above for dd'ing a partition at a time. I did operations like this many times. Quite recently, I successfully performed a complex migration when upgrading from a HDD containing a mix of MacOSX & Linux installations to a smaller SDD in my MacMini6,2. In this case, I had to boot Linux from an external drive, dd'ed the bootmanager, ran gdisk to fix the GPT in the new disk and finally dd'ed each partition containing the just shrunk filesystes. (Note that the GPT partition scheme keeps two copies of the partition table, one in the beginning and another in the end of the disk. gdisk complains a lot because it cannot find the second copy of the PT and because the partitions exceed the disk size, but it correctly fixes the PT copy issue after you redefine the disk geometry). This was a much more complex case, but worth mentioning because illustrates that this kind of operation is also perfectly feasible.



Good luck! ...and most importantly remember to backup all important data before such kind of operation. A mistake and you can surely damage your data irrecoverably.



And just in case I didn't emphasize enough: back up your data before the migration! :)






share|improve this answer































    0














    If you want to fit a car in a passageway that's 20cm narrower than the car, and you cut the left 20cm of the car, will the car still work? Probably not.



    If you copy a the beginning of a disk to another disk and cut the copy short because the target disk is smaller, the result isn't going to work. Even if there would be enough space to fit all the files on target disk, cutting after N bytes from the start of the disk won't give you a working filesystem.



    If the disk is divided in PC-style partitions (GPT or MBR), then all the partitions that fit entirely on the target will work. There's one exception: with MBR partitions, if the logical partitions are not numbered in disk order, then as soon as the chain leaves the target area, the partitions will no longer be listed. (If you don't understand this, that's one more reason not to do a partial disk copy.) It would make a lot more sense to copy the partitions you want to keep, instead of copying from the start and ending up with whatever fits. The partially-copied partition at the end will not be usable.



    If the disk or a partial partition is an LVM physical volume, and you make a partial copy of that physical volume, you can't be sure to get any useful data from the result either.



    If you want to copy only some of the data from a large disk to a smaller disk, create partitions on the smaller disk. If you want to copy a partition to a same-size partition, you can do it with cat. If you want to copy a partition to a smaller partition, create a filesystem on the target partition and do a file-level copy with something like cp -a or pax -rw -pe -t.



    You can use dd instead of cat if you're a masochist. dd has a strange syntax and is typically slower than cat unless you find the right buffer size. There is no single optimal value for the buffer size, it depends on the characteristics of your hardware. If the size is too small, dd will waste time making many tiny transfers. If the size is too large, dd will waste time fully reading one buffer before starting to write the next one. The optimal size for a disk-to-disk transfer is usually a few megabytes (1024 bytes is ridiculously small). cat will pick a decent size with no effort on your part.






    share|improve this answer























    • Yup, I'm fine with loosing the last partitions. On all my disks, all the important stuff always fits within the size of even the smallest of my disks. Partitions beyond that are always non-essential. The thing with 'cat' is that it won't create partitions or an MBR (unless I'm wrong)
      – Ray Andrews
      Oct 14 '14 at 0:57










    • @rayandrews If you run cat on the whole disk, it will create the same partitions (with a caveat for MBR partitions, see my edit). The same goes for dd, using dd is just a complicated way of doing cat. If you run cat on a partition, then of course it won't create partitions; use fdisk/gdisk/parted/… for that.
      – Gilles
      Oct 14 '14 at 1:04










    • Very interesting. OK, show me an example command, then I will try it out, and if it's good this is the best solution.
      – Ray Andrews
      Oct 14 '14 at 18:33










    • @rayandrews An example command to do what?
      – Gilles
      Oct 14 '14 at 18:39










    • Just a sample command using 'cat' to clone a disk. Make it a new answer so I can accept it.
      – Ray Andrews
      Oct 15 '14 at 20:11



















    0














    I would like to share my experience with this topic, should this prove useful to another reader. Recently I used DDRESCUE to recover the first 1/3 of an NTFS partition from a malfunctioned hard drive, and successfully rebuilt the recovered segment of the partition onto a smaller hard drive - thereby rescuing the files captured (and loosing the rest). Following are the steps I took in so doing (definitely a HACKSAW approach!!)...



    The source hard drive consisted of 750GB formatted in NTFS with a MBR filetable. I had used it only a few times to back up files to, so most of the files were at the beginning of drive, about 160GB worth. A family member knocked the hard drive (mounted externally) onto the floor - it never functioned properly after after that! Using ddrescue (painstakingly) I was able to recover a large portion of the beginning of the drive. Due to the physical damage, it shut down very frequently throughout the process ...



    I had a small laptop hard drive available 150GB (mounted externally), which I extracted the ddrescue data directly to. Alternatively I could have extracted the data to an image file, and later mounted the file, however I thought writing the data directly to a hard drive to be more straitforward.



    The key trick to the rescue was to manually edit both the MBR and the NTFS Boot Sector data on the rescue hard drive. Without so doing, the hard drive is unrecognized by any operating system. I was not able to find a suitable program in linux to do so, so I turned to windows. There is a handy package named Windows Support Tools, no longer maintained however still useful (see link below)! The tool I used to edit the partition is Disk Probe. Make sure to know the end sector value of your hard drive (I used fdisk -l in Ubuntu)



    https://en.wikipedia.org/wiki/Windows_Support_Tools



    Using a good calculator and some creativity I loaded up and mounted the hard drive into Disk Probe in Windows and edited the end sector values. In the MBR two sets of values had to be changed, namely a) the hard drive end sector and b) the NTFS partition end sector. In the NTFS Boot Sector the partition Total Sectors value had to be changed. In each case the numerical value was decreased in order to match the decreased "dimension" of the smaller hard drive (end sectors changed from 750GB to 150GB). Click the View tab to edit these values.



    Here is an image of Disk Probe in action editing the NTFS Boot Sector data Windows Support Tools - Disk Probe



    Upon editing the aforementioned fields, Windows recognized the partition as a valid partition albeit damaged. I entered command prompt and ran the windows program Chkdsk on the damaged hard drive (chdsk D:). It was thrilling to see the partition come back to life, file by file! The program rebuilt the partition table and successfully remapped all of the files which had been copied over from the damaged hard drive. Files which were out of range (not copied over) were not found and were therefore eliminated.



    The next part I do not understand the reason for, as windows did successfully rebuild the 150GB hard drive with files included. Nonetheless windows natively was not able to open the hard drive partition for file viewing (there was some error). However Ubuntu to the rescue! I rebooted into Ubuntu, mounted the external hard drive, and without issue at all, all recovered files showed up!



    Hopefully this hacksaw method of recovering files from a large hard drive onto a smaller hard drive will prove useful to some other poor soul besides myself. Cheers!






    share|improve this answer

















    • 1




      You clearly put a lot of thought into this answer. Unfortunately, it does not really answer the question. "ddrescue is not a derivative of dd, nor is it related to dd in any way except in that both can be used for copying data from one device to another. The difference is that ddrescue uses a sophisticated algorithm to copy data from failing drives causing them as little damage as possible." — Wikipedia. Further, your answer appears to be focused primarily on a Windows operating environment, which is not a typical configuration here
      – Fox
      Feb 26 at 4:13






    • 1




      As the original questioner, I yet find Dan's experience most helpful, it's good to know what can be done in a desperate situation, tho of course it is peripheral to this exact thread, but let's not be too strict.
      – Ray Andrews
      Feb 26 at 17:08



















    0














    You need to shrink the partitions on the source first (or delete those out-of-bounds).

    Than dd and after you will probably need to repair the partition table by using gdisk /dev/sd<target>

    and the key sequence to repair the table is v r d w

    I suggest you to shring the partitions a bit smaller than needed and after expand them back to the full size of the target disk.

    (This answer is based on my personal experience when cloning my HDD to a smaller SSD)






    share|improve this answer








    New contributor




    Zhigalin is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.


















    • +1. This method works for me too: cloning works when all partitions fit within the target drive :-) Just one comment: You need to repair the backup partition table of a GUID partiiton table (GPT), but if there is an old-style MSDOS partition table, there is no backup partition table to repair.
      – sudodus
      12 mins ago













    Your Answer








    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "106"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: false,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: null,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f161859%2fcan-dd-be-used-to-clone-to-a-smaller-hdd-knowing-that-partitions-will-need-ed%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    5 Answers
    5






    active

    oldest

    votes








    5 Answers
    5






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    6














    The physical drive should not start smoking, at least, but chances are very good that your filesystem will not work anymore (I mean, the target filesystem; if you just copied and did not touch anything in the source, the source itself should be fine). Data inside a partition is not necessarily allocated in increasing order. Some of it may be at the end of the partition even if the partition is not full (actually, I think that this happens deterministically with some filesystem, but I do not know enough to get in the details). The data there may be essential to the integrity of the filesystem. So I strongly advise you not to rely on such a copy.



    If you want to do this copy, you first have to shrink the partition with some tool that is aware of its internal structure and is able to remap everything in good order into a smaller partition. Then you can do the copy. gparted is a good GUI interface to do this kind of things.



    For the bs value, usually the best idea is to have a couple of tests before starting the real copy. There are some tools that help you automating this check, but I do not remember the name. In my experience, the best range is usually between 4M and 16M. Higher than that you do not earn much anymore. But it depends on many things, including the disks themselves. For example, I rarely worked with real high-end disks, which may be suitable for higher values due to bigger speed and cache size.



    EDIT If a partition is wholly copied, then you can use it without problems. However, as others have underlined, you also have to be sure that the partition table is intact (at least, the relevant entries). With MBR's four primary partitions there are no problems, since they are described in the first 512 bytes of the disk. Logic partitions are described throughout the extended partition, so entries may be lost (but they would described partitions that would be lost anyway). With GPT there is a copy of the partition table both at the beginning and at the end of the disk. You lose the second one, but you can rebuilt it from the first one. Of course it is advisable to do that as soon as possible; other answers were more precise with respect to that.






    share|improve this answer























    • Please see edited question :)
      – Ray Andrews
      Oct 13 '14 at 17:12






    • 1




      @rayandrews Not sure what update you're expecting, but basically dd copies bytes. It'll start at byte 0, and keep copying until something (in your case, end of media on the destination) stops it. That'll leave you with a partition table that specifies a drive larger than reality and partitions outside the drive... but if you fix that, it should be fine. Though it'd probably be easier to use dd per-partition to copy the data. [It'll also leave you with all the normal dd problems, like duplicate UUIDs]
      – derobert
      Oct 13 '14 at 17:35










    • What I like is that it creates and labels the partitions and file systems as it goes--very time saving. Right about the UUIDs tho.
      – Ray Andrews
      Oct 14 '14 at 1:01






    • 1




      how do you restore the second gpt table?
      – user230910
      Aug 13 '17 at 2:34
















    6














    The physical drive should not start smoking, at least, but chances are very good that your filesystem will not work anymore (I mean, the target filesystem; if you just copied and did not touch anything in the source, the source itself should be fine). Data inside a partition is not necessarily allocated in increasing order. Some of it may be at the end of the partition even if the partition is not full (actually, I think that this happens deterministically with some filesystem, but I do not know enough to get in the details). The data there may be essential to the integrity of the filesystem. So I strongly advise you not to rely on such a copy.



    If you want to do this copy, you first have to shrink the partition with some tool that is aware of its internal structure and is able to remap everything in good order into a smaller partition. Then you can do the copy. gparted is a good GUI interface to do this kind of things.



    For the bs value, usually the best idea is to have a couple of tests before starting the real copy. There are some tools that help you automating this check, but I do not remember the name. In my experience, the best range is usually between 4M and 16M. Higher than that you do not earn much anymore. But it depends on many things, including the disks themselves. For example, I rarely worked with real high-end disks, which may be suitable for higher values due to bigger speed and cache size.



    EDIT If a partition is wholly copied, then you can use it without problems. However, as others have underlined, you also have to be sure that the partition table is intact (at least, the relevant entries). With MBR's four primary partitions there are no problems, since they are described in the first 512 bytes of the disk. Logic partitions are described throughout the extended partition, so entries may be lost (but they would described partitions that would be lost anyway). With GPT there is a copy of the partition table both at the beginning and at the end of the disk. You lose the second one, but you can rebuilt it from the first one. Of course it is advisable to do that as soon as possible; other answers were more precise with respect to that.






    share|improve this answer























    • Please see edited question :)
      – Ray Andrews
      Oct 13 '14 at 17:12






    • 1




      @rayandrews Not sure what update you're expecting, but basically dd copies bytes. It'll start at byte 0, and keep copying until something (in your case, end of media on the destination) stops it. That'll leave you with a partition table that specifies a drive larger than reality and partitions outside the drive... but if you fix that, it should be fine. Though it'd probably be easier to use dd per-partition to copy the data. [It'll also leave you with all the normal dd problems, like duplicate UUIDs]
      – derobert
      Oct 13 '14 at 17:35










    • What I like is that it creates and labels the partitions and file systems as it goes--very time saving. Right about the UUIDs tho.
      – Ray Andrews
      Oct 14 '14 at 1:01






    • 1




      how do you restore the second gpt table?
      – user230910
      Aug 13 '17 at 2:34














    6












    6








    6






    The physical drive should not start smoking, at least, but chances are very good that your filesystem will not work anymore (I mean, the target filesystem; if you just copied and did not touch anything in the source, the source itself should be fine). Data inside a partition is not necessarily allocated in increasing order. Some of it may be at the end of the partition even if the partition is not full (actually, I think that this happens deterministically with some filesystem, but I do not know enough to get in the details). The data there may be essential to the integrity of the filesystem. So I strongly advise you not to rely on such a copy.



    If you want to do this copy, you first have to shrink the partition with some tool that is aware of its internal structure and is able to remap everything in good order into a smaller partition. Then you can do the copy. gparted is a good GUI interface to do this kind of things.



    For the bs value, usually the best idea is to have a couple of tests before starting the real copy. There are some tools that help you automating this check, but I do not remember the name. In my experience, the best range is usually between 4M and 16M. Higher than that you do not earn much anymore. But it depends on many things, including the disks themselves. For example, I rarely worked with real high-end disks, which may be suitable for higher values due to bigger speed and cache size.



    EDIT If a partition is wholly copied, then you can use it without problems. However, as others have underlined, you also have to be sure that the partition table is intact (at least, the relevant entries). With MBR's four primary partitions there are no problems, since they are described in the first 512 bytes of the disk. Logic partitions are described throughout the extended partition, so entries may be lost (but they would described partitions that would be lost anyway). With GPT there is a copy of the partition table both at the beginning and at the end of the disk. You lose the second one, but you can rebuilt it from the first one. Of course it is advisable to do that as soon as possible; other answers were more precise with respect to that.






    share|improve this answer














    The physical drive should not start smoking, at least, but chances are very good that your filesystem will not work anymore (I mean, the target filesystem; if you just copied and did not touch anything in the source, the source itself should be fine). Data inside a partition is not necessarily allocated in increasing order. Some of it may be at the end of the partition even if the partition is not full (actually, I think that this happens deterministically with some filesystem, but I do not know enough to get in the details). The data there may be essential to the integrity of the filesystem. So I strongly advise you not to rely on such a copy.



    If you want to do this copy, you first have to shrink the partition with some tool that is aware of its internal structure and is able to remap everything in good order into a smaller partition. Then you can do the copy. gparted is a good GUI interface to do this kind of things.



    For the bs value, usually the best idea is to have a couple of tests before starting the real copy. There are some tools that help you automating this check, but I do not remember the name. In my experience, the best range is usually between 4M and 16M. Higher than that you do not earn much anymore. But it depends on many things, including the disks themselves. For example, I rarely worked with real high-end disks, which may be suitable for higher values due to bigger speed and cache size.



    EDIT If a partition is wholly copied, then you can use it without problems. However, as others have underlined, you also have to be sure that the partition table is intact (at least, the relevant entries). With MBR's four primary partitions there are no problems, since they are described in the first 512 bytes of the disk. Logic partitions are described throughout the extended partition, so entries may be lost (but they would described partitions that would be lost anyway). With GPT there is a copy of the partition table both at the beginning and at the end of the disk. You lose the second one, but you can rebuilt it from the first one. Of course it is advisable to do that as soon as possible; other answers were more precise with respect to that.







    share|improve this answer














    share|improve this answer



    share|improve this answer








    edited Oct 14 '14 at 13:40

























    answered Oct 13 '14 at 16:33









    Giovanni Mascellani

    30919




    30919












    • Please see edited question :)
      – Ray Andrews
      Oct 13 '14 at 17:12






    • 1




      @rayandrews Not sure what update you're expecting, but basically dd copies bytes. It'll start at byte 0, and keep copying until something (in your case, end of media on the destination) stops it. That'll leave you with a partition table that specifies a drive larger than reality and partitions outside the drive... but if you fix that, it should be fine. Though it'd probably be easier to use dd per-partition to copy the data. [It'll also leave you with all the normal dd problems, like duplicate UUIDs]
      – derobert
      Oct 13 '14 at 17:35










    • What I like is that it creates and labels the partitions and file systems as it goes--very time saving. Right about the UUIDs tho.
      – Ray Andrews
      Oct 14 '14 at 1:01






    • 1




      how do you restore the second gpt table?
      – user230910
      Aug 13 '17 at 2:34


















    • Please see edited question :)
      – Ray Andrews
      Oct 13 '14 at 17:12






    • 1




      @rayandrews Not sure what update you're expecting, but basically dd copies bytes. It'll start at byte 0, and keep copying until something (in your case, end of media on the destination) stops it. That'll leave you with a partition table that specifies a drive larger than reality and partitions outside the drive... but if you fix that, it should be fine. Though it'd probably be easier to use dd per-partition to copy the data. [It'll also leave you with all the normal dd problems, like duplicate UUIDs]
      – derobert
      Oct 13 '14 at 17:35










    • What I like is that it creates and labels the partitions and file systems as it goes--very time saving. Right about the UUIDs tho.
      – Ray Andrews
      Oct 14 '14 at 1:01






    • 1




      how do you restore the second gpt table?
      – user230910
      Aug 13 '17 at 2:34
















    Please see edited question :)
    – Ray Andrews
    Oct 13 '14 at 17:12




    Please see edited question :)
    – Ray Andrews
    Oct 13 '14 at 17:12




    1




    1




    @rayandrews Not sure what update you're expecting, but basically dd copies bytes. It'll start at byte 0, and keep copying until something (in your case, end of media on the destination) stops it. That'll leave you with a partition table that specifies a drive larger than reality and partitions outside the drive... but if you fix that, it should be fine. Though it'd probably be easier to use dd per-partition to copy the data. [It'll also leave you with all the normal dd problems, like duplicate UUIDs]
    – derobert
    Oct 13 '14 at 17:35




    @rayandrews Not sure what update you're expecting, but basically dd copies bytes. It'll start at byte 0, and keep copying until something (in your case, end of media on the destination) stops it. That'll leave you with a partition table that specifies a drive larger than reality and partitions outside the drive... but if you fix that, it should be fine. Though it'd probably be easier to use dd per-partition to copy the data. [It'll also leave you with all the normal dd problems, like duplicate UUIDs]
    – derobert
    Oct 13 '14 at 17:35












    What I like is that it creates and labels the partitions and file systems as it goes--very time saving. Right about the UUIDs tho.
    – Ray Andrews
    Oct 14 '14 at 1:01




    What I like is that it creates and labels the partitions and file systems as it goes--very time saving. Right about the UUIDs tho.
    – Ray Andrews
    Oct 14 '14 at 1:01




    1




    1




    how do you restore the second gpt table?
    – user230910
    Aug 13 '17 at 2:34




    how do you restore the second gpt table?
    – user230910
    Aug 13 '17 at 2:34













    1














    Although at first the proposed "challenge" may seem difficult, not feasible or sound naive as some have commented, it isn't. The main idea behind using dd to migrate from a bigger to a smaller disk is perfectly fine and have benefits for migrating the data. Of course, having enough free space so that the occupied data fits in the destination disk is a necessary requirement.



    The idea is to think in dd'ing each partition individually and not the entire disk at once as initially proposed. Even more can be accomplished: The partition(s) that would be truncated can also be safely migrated with a little help of filesystem re-sizing tools. Indeed, such kind of migration is interesting in order to preserve filesystem matadata and extended file attributes that cannot be easily copied with tools like cp, rsync, pax, ... which operate in the filesystem layer and not block device layer. Using dd elliminates the need of re-installing the OS or having to relabel the FS in order to avoid issues with SELinux.



    Below is what I usually do to accomplish similar tasks:



    1) First you have reduce the filesystem(s) within the affected partitions that would be truncated. For this, use the resize2fs tool (assuming we are talking about an ext2/ext3/ext4 fs - other modern FSs also have resizing tools for the same purpose). Note that although -- for obvious reasons -- a filesystem cannot be bigger than the partition it resides within, it can safely be smaller. The safety trick here is to reduce "more than needed". For example: imagine you have a filesystem of 1TB that you want to migrate to a 500 Gig drive. In this case, I suggest reducing the fs to, let's say, 450 Gig (you have to have enough free space for this, of course, i.e., the currently occupied space in this filesystem cannot exceed 450 Gig). The apparent wasted 50 Gig of space will be fixed after the data migration.



    2) Partition the destination disk with the appropriate geometry considering its space constraints;



    3) dd the data using the partition device(s) and not the disk device (i.e., use dd if=/dev/sda# of=/dev/sdb# for each partition instead of using if=/dev/sda of=/dev/sdb). NOTE: sda and sdb here are just examples;
    IMPORTANT NOTE: When dd'ing from a bigger to a smaller partition device, dd will complain about attempting to write post to the end of the block device, that's ok since the filesystem data would have been entirely copied before reaching that point. To avoid such error message you can specify the size of the copy using bs= and count= parameters to match the shrunk filesystem size, but this will require some (simple) calculation, but if done wrongly can risk your data.



    4) After dd'ing the data, resize the respective filesystem(s) within the destination partition(s) again using resize2fs. This time do not specify the new filesystem size. When ran without a size specification, resize2fs grows the filesystem so that it occupies the maximum allowed size, so, in this case, the 450 Gig filesystem will grow again to occupy the entire 500 Gig partition and no byte will be wasted. (The "reduce more than needed" approach avoids you to accidentally specify sizes wrongly and risk your data. Note that GB vs GiB units can be tricky).



    Note for more complex operations: If you have a boot manager that you intend to copy along, which is very likely to be the case, you can dd the first few KBs of the disk using the disk device instead of the partition devices (like dd if=/dev/sda of=/dev/sdb bs=4096 count=5), and then reconfigure the geometry in /dev/sdb (which will temporarily contain an invalid geometry for the new drive but an intact and valid boot manager). Finally proceed using the partition devices as described above for dd'ing a partition at a time. I did operations like this many times. Quite recently, I successfully performed a complex migration when upgrading from a HDD containing a mix of MacOSX & Linux installations to a smaller SDD in my MacMini6,2. In this case, I had to boot Linux from an external drive, dd'ed the bootmanager, ran gdisk to fix the GPT in the new disk and finally dd'ed each partition containing the just shrunk filesystes. (Note that the GPT partition scheme keeps two copies of the partition table, one in the beginning and another in the end of the disk. gdisk complains a lot because it cannot find the second copy of the PT and because the partitions exceed the disk size, but it correctly fixes the PT copy issue after you redefine the disk geometry). This was a much more complex case, but worth mentioning because illustrates that this kind of operation is also perfectly feasible.



    Good luck! ...and most importantly remember to backup all important data before such kind of operation. A mistake and you can surely damage your data irrecoverably.



    And just in case I didn't emphasize enough: back up your data before the migration! :)






    share|improve this answer




























      1














      Although at first the proposed "challenge" may seem difficult, not feasible or sound naive as some have commented, it isn't. The main idea behind using dd to migrate from a bigger to a smaller disk is perfectly fine and have benefits for migrating the data. Of course, having enough free space so that the occupied data fits in the destination disk is a necessary requirement.



      The idea is to think in dd'ing each partition individually and not the entire disk at once as initially proposed. Even more can be accomplished: The partition(s) that would be truncated can also be safely migrated with a little help of filesystem re-sizing tools. Indeed, such kind of migration is interesting in order to preserve filesystem matadata and extended file attributes that cannot be easily copied with tools like cp, rsync, pax, ... which operate in the filesystem layer and not block device layer. Using dd elliminates the need of re-installing the OS or having to relabel the FS in order to avoid issues with SELinux.



      Below is what I usually do to accomplish similar tasks:



      1) First you have reduce the filesystem(s) within the affected partitions that would be truncated. For this, use the resize2fs tool (assuming we are talking about an ext2/ext3/ext4 fs - other modern FSs also have resizing tools for the same purpose). Note that although -- for obvious reasons -- a filesystem cannot be bigger than the partition it resides within, it can safely be smaller. The safety trick here is to reduce "more than needed". For example: imagine you have a filesystem of 1TB that you want to migrate to a 500 Gig drive. In this case, I suggest reducing the fs to, let's say, 450 Gig (you have to have enough free space for this, of course, i.e., the currently occupied space in this filesystem cannot exceed 450 Gig). The apparent wasted 50 Gig of space will be fixed after the data migration.



      2) Partition the destination disk with the appropriate geometry considering its space constraints;



      3) dd the data using the partition device(s) and not the disk device (i.e., use dd if=/dev/sda# of=/dev/sdb# for each partition instead of using if=/dev/sda of=/dev/sdb). NOTE: sda and sdb here are just examples;
      IMPORTANT NOTE: When dd'ing from a bigger to a smaller partition device, dd will complain about attempting to write post to the end of the block device, that's ok since the filesystem data would have been entirely copied before reaching that point. To avoid such error message you can specify the size of the copy using bs= and count= parameters to match the shrunk filesystem size, but this will require some (simple) calculation, but if done wrongly can risk your data.



      4) After dd'ing the data, resize the respective filesystem(s) within the destination partition(s) again using resize2fs. This time do not specify the new filesystem size. When ran without a size specification, resize2fs grows the filesystem so that it occupies the maximum allowed size, so, in this case, the 450 Gig filesystem will grow again to occupy the entire 500 Gig partition and no byte will be wasted. (The "reduce more than needed" approach avoids you to accidentally specify sizes wrongly and risk your data. Note that GB vs GiB units can be tricky).



      Note for more complex operations: If you have a boot manager that you intend to copy along, which is very likely to be the case, you can dd the first few KBs of the disk using the disk device instead of the partition devices (like dd if=/dev/sda of=/dev/sdb bs=4096 count=5), and then reconfigure the geometry in /dev/sdb (which will temporarily contain an invalid geometry for the new drive but an intact and valid boot manager). Finally proceed using the partition devices as described above for dd'ing a partition at a time. I did operations like this many times. Quite recently, I successfully performed a complex migration when upgrading from a HDD containing a mix of MacOSX & Linux installations to a smaller SDD in my MacMini6,2. In this case, I had to boot Linux from an external drive, dd'ed the bootmanager, ran gdisk to fix the GPT in the new disk and finally dd'ed each partition containing the just shrunk filesystes. (Note that the GPT partition scheme keeps two copies of the partition table, one in the beginning and another in the end of the disk. gdisk complains a lot because it cannot find the second copy of the PT and because the partitions exceed the disk size, but it correctly fixes the PT copy issue after you redefine the disk geometry). This was a much more complex case, but worth mentioning because illustrates that this kind of operation is also perfectly feasible.



      Good luck! ...and most importantly remember to backup all important data before such kind of operation. A mistake and you can surely damage your data irrecoverably.



      And just in case I didn't emphasize enough: back up your data before the migration! :)






      share|improve this answer


























        1












        1








        1






        Although at first the proposed "challenge" may seem difficult, not feasible or sound naive as some have commented, it isn't. The main idea behind using dd to migrate from a bigger to a smaller disk is perfectly fine and have benefits for migrating the data. Of course, having enough free space so that the occupied data fits in the destination disk is a necessary requirement.



        The idea is to think in dd'ing each partition individually and not the entire disk at once as initially proposed. Even more can be accomplished: The partition(s) that would be truncated can also be safely migrated with a little help of filesystem re-sizing tools. Indeed, such kind of migration is interesting in order to preserve filesystem matadata and extended file attributes that cannot be easily copied with tools like cp, rsync, pax, ... which operate in the filesystem layer and not block device layer. Using dd elliminates the need of re-installing the OS or having to relabel the FS in order to avoid issues with SELinux.



        Below is what I usually do to accomplish similar tasks:



        1) First you have reduce the filesystem(s) within the affected partitions that would be truncated. For this, use the resize2fs tool (assuming we are talking about an ext2/ext3/ext4 fs - other modern FSs also have resizing tools for the same purpose). Note that although -- for obvious reasons -- a filesystem cannot be bigger than the partition it resides within, it can safely be smaller. The safety trick here is to reduce "more than needed". For example: imagine you have a filesystem of 1TB that you want to migrate to a 500 Gig drive. In this case, I suggest reducing the fs to, let's say, 450 Gig (you have to have enough free space for this, of course, i.e., the currently occupied space in this filesystem cannot exceed 450 Gig). The apparent wasted 50 Gig of space will be fixed after the data migration.



        2) Partition the destination disk with the appropriate geometry considering its space constraints;



        3) dd the data using the partition device(s) and not the disk device (i.e., use dd if=/dev/sda# of=/dev/sdb# for each partition instead of using if=/dev/sda of=/dev/sdb). NOTE: sda and sdb here are just examples;
        IMPORTANT NOTE: When dd'ing from a bigger to a smaller partition device, dd will complain about attempting to write post to the end of the block device, that's ok since the filesystem data would have been entirely copied before reaching that point. To avoid such error message you can specify the size of the copy using bs= and count= parameters to match the shrunk filesystem size, but this will require some (simple) calculation, but if done wrongly can risk your data.



        4) After dd'ing the data, resize the respective filesystem(s) within the destination partition(s) again using resize2fs. This time do not specify the new filesystem size. When ran without a size specification, resize2fs grows the filesystem so that it occupies the maximum allowed size, so, in this case, the 450 Gig filesystem will grow again to occupy the entire 500 Gig partition and no byte will be wasted. (The "reduce more than needed" approach avoids you to accidentally specify sizes wrongly and risk your data. Note that GB vs GiB units can be tricky).



        Note for more complex operations: If you have a boot manager that you intend to copy along, which is very likely to be the case, you can dd the first few KBs of the disk using the disk device instead of the partition devices (like dd if=/dev/sda of=/dev/sdb bs=4096 count=5), and then reconfigure the geometry in /dev/sdb (which will temporarily contain an invalid geometry for the new drive but an intact and valid boot manager). Finally proceed using the partition devices as described above for dd'ing a partition at a time. I did operations like this many times. Quite recently, I successfully performed a complex migration when upgrading from a HDD containing a mix of MacOSX & Linux installations to a smaller SDD in my MacMini6,2. In this case, I had to boot Linux from an external drive, dd'ed the bootmanager, ran gdisk to fix the GPT in the new disk and finally dd'ed each partition containing the just shrunk filesystes. (Note that the GPT partition scheme keeps two copies of the partition table, one in the beginning and another in the end of the disk. gdisk complains a lot because it cannot find the second copy of the PT and because the partitions exceed the disk size, but it correctly fixes the PT copy issue after you redefine the disk geometry). This was a much more complex case, but worth mentioning because illustrates that this kind of operation is also perfectly feasible.



        Good luck! ...and most importantly remember to backup all important data before such kind of operation. A mistake and you can surely damage your data irrecoverably.



        And just in case I didn't emphasize enough: back up your data before the migration! :)






        share|improve this answer














        Although at first the proposed "challenge" may seem difficult, not feasible or sound naive as some have commented, it isn't. The main idea behind using dd to migrate from a bigger to a smaller disk is perfectly fine and have benefits for migrating the data. Of course, having enough free space so that the occupied data fits in the destination disk is a necessary requirement.



        The idea is to think in dd'ing each partition individually and not the entire disk at once as initially proposed. Even more can be accomplished: The partition(s) that would be truncated can also be safely migrated with a little help of filesystem re-sizing tools. Indeed, such kind of migration is interesting in order to preserve filesystem matadata and extended file attributes that cannot be easily copied with tools like cp, rsync, pax, ... which operate in the filesystem layer and not block device layer. Using dd elliminates the need of re-installing the OS or having to relabel the FS in order to avoid issues with SELinux.



        Below is what I usually do to accomplish similar tasks:



        1) First you have reduce the filesystem(s) within the affected partitions that would be truncated. For this, use the resize2fs tool (assuming we are talking about an ext2/ext3/ext4 fs - other modern FSs also have resizing tools for the same purpose). Note that although -- for obvious reasons -- a filesystem cannot be bigger than the partition it resides within, it can safely be smaller. The safety trick here is to reduce "more than needed". For example: imagine you have a filesystem of 1TB that you want to migrate to a 500 Gig drive. In this case, I suggest reducing the fs to, let's say, 450 Gig (you have to have enough free space for this, of course, i.e., the currently occupied space in this filesystem cannot exceed 450 Gig). The apparent wasted 50 Gig of space will be fixed after the data migration.



        2) Partition the destination disk with the appropriate geometry considering its space constraints;



        3) dd the data using the partition device(s) and not the disk device (i.e., use dd if=/dev/sda# of=/dev/sdb# for each partition instead of using if=/dev/sda of=/dev/sdb). NOTE: sda and sdb here are just examples;
        IMPORTANT NOTE: When dd'ing from a bigger to a smaller partition device, dd will complain about attempting to write post to the end of the block device, that's ok since the filesystem data would have been entirely copied before reaching that point. To avoid such error message you can specify the size of the copy using bs= and count= parameters to match the shrunk filesystem size, but this will require some (simple) calculation, but if done wrongly can risk your data.



        4) After dd'ing the data, resize the respective filesystem(s) within the destination partition(s) again using resize2fs. This time do not specify the new filesystem size. When ran without a size specification, resize2fs grows the filesystem so that it occupies the maximum allowed size, so, in this case, the 450 Gig filesystem will grow again to occupy the entire 500 Gig partition and no byte will be wasted. (The "reduce more than needed" approach avoids you to accidentally specify sizes wrongly and risk your data. Note that GB vs GiB units can be tricky).



        Note for more complex operations: If you have a boot manager that you intend to copy along, which is very likely to be the case, you can dd the first few KBs of the disk using the disk device instead of the partition devices (like dd if=/dev/sda of=/dev/sdb bs=4096 count=5), and then reconfigure the geometry in /dev/sdb (which will temporarily contain an invalid geometry for the new drive but an intact and valid boot manager). Finally proceed using the partition devices as described above for dd'ing a partition at a time. I did operations like this many times. Quite recently, I successfully performed a complex migration when upgrading from a HDD containing a mix of MacOSX & Linux installations to a smaller SDD in my MacMini6,2. In this case, I had to boot Linux from an external drive, dd'ed the bootmanager, ran gdisk to fix the GPT in the new disk and finally dd'ed each partition containing the just shrunk filesystes. (Note that the GPT partition scheme keeps two copies of the partition table, one in the beginning and another in the end of the disk. gdisk complains a lot because it cannot find the second copy of the PT and because the partitions exceed the disk size, but it correctly fixes the PT copy issue after you redefine the disk geometry). This was a much more complex case, but worth mentioning because illustrates that this kind of operation is also perfectly feasible.



        Good luck! ...and most importantly remember to backup all important data before such kind of operation. A mistake and you can surely damage your data irrecoverably.



        And just in case I didn't emphasize enough: back up your data before the migration! :)







        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited Oct 14 '14 at 11:31

























        answered Oct 14 '14 at 2:17









        Marcelo

        2,301816




        2,301816























            0














            If you want to fit a car in a passageway that's 20cm narrower than the car, and you cut the left 20cm of the car, will the car still work? Probably not.



            If you copy a the beginning of a disk to another disk and cut the copy short because the target disk is smaller, the result isn't going to work. Even if there would be enough space to fit all the files on target disk, cutting after N bytes from the start of the disk won't give you a working filesystem.



            If the disk is divided in PC-style partitions (GPT or MBR), then all the partitions that fit entirely on the target will work. There's one exception: with MBR partitions, if the logical partitions are not numbered in disk order, then as soon as the chain leaves the target area, the partitions will no longer be listed. (If you don't understand this, that's one more reason not to do a partial disk copy.) It would make a lot more sense to copy the partitions you want to keep, instead of copying from the start and ending up with whatever fits. The partially-copied partition at the end will not be usable.



            If the disk or a partial partition is an LVM physical volume, and you make a partial copy of that physical volume, you can't be sure to get any useful data from the result either.



            If you want to copy only some of the data from a large disk to a smaller disk, create partitions on the smaller disk. If you want to copy a partition to a same-size partition, you can do it with cat. If you want to copy a partition to a smaller partition, create a filesystem on the target partition and do a file-level copy with something like cp -a or pax -rw -pe -t.



            You can use dd instead of cat if you're a masochist. dd has a strange syntax and is typically slower than cat unless you find the right buffer size. There is no single optimal value for the buffer size, it depends on the characteristics of your hardware. If the size is too small, dd will waste time making many tiny transfers. If the size is too large, dd will waste time fully reading one buffer before starting to write the next one. The optimal size for a disk-to-disk transfer is usually a few megabytes (1024 bytes is ridiculously small). cat will pick a decent size with no effort on your part.






            share|improve this answer























            • Yup, I'm fine with loosing the last partitions. On all my disks, all the important stuff always fits within the size of even the smallest of my disks. Partitions beyond that are always non-essential. The thing with 'cat' is that it won't create partitions or an MBR (unless I'm wrong)
              – Ray Andrews
              Oct 14 '14 at 0:57










            • @rayandrews If you run cat on the whole disk, it will create the same partitions (with a caveat for MBR partitions, see my edit). The same goes for dd, using dd is just a complicated way of doing cat. If you run cat on a partition, then of course it won't create partitions; use fdisk/gdisk/parted/… for that.
              – Gilles
              Oct 14 '14 at 1:04










            • Very interesting. OK, show me an example command, then I will try it out, and if it's good this is the best solution.
              – Ray Andrews
              Oct 14 '14 at 18:33










            • @rayandrews An example command to do what?
              – Gilles
              Oct 14 '14 at 18:39










            • Just a sample command using 'cat' to clone a disk. Make it a new answer so I can accept it.
              – Ray Andrews
              Oct 15 '14 at 20:11
















            0














            If you want to fit a car in a passageway that's 20cm narrower than the car, and you cut the left 20cm of the car, will the car still work? Probably not.



            If you copy a the beginning of a disk to another disk and cut the copy short because the target disk is smaller, the result isn't going to work. Even if there would be enough space to fit all the files on target disk, cutting after N bytes from the start of the disk won't give you a working filesystem.



            If the disk is divided in PC-style partitions (GPT or MBR), then all the partitions that fit entirely on the target will work. There's one exception: with MBR partitions, if the logical partitions are not numbered in disk order, then as soon as the chain leaves the target area, the partitions will no longer be listed. (If you don't understand this, that's one more reason not to do a partial disk copy.) It would make a lot more sense to copy the partitions you want to keep, instead of copying from the start and ending up with whatever fits. The partially-copied partition at the end will not be usable.



            If the disk or a partial partition is an LVM physical volume, and you make a partial copy of that physical volume, you can't be sure to get any useful data from the result either.



            If you want to copy only some of the data from a large disk to a smaller disk, create partitions on the smaller disk. If you want to copy a partition to a same-size partition, you can do it with cat. If you want to copy a partition to a smaller partition, create a filesystem on the target partition and do a file-level copy with something like cp -a or pax -rw -pe -t.



            You can use dd instead of cat if you're a masochist. dd has a strange syntax and is typically slower than cat unless you find the right buffer size. There is no single optimal value for the buffer size, it depends on the characteristics of your hardware. If the size is too small, dd will waste time making many tiny transfers. If the size is too large, dd will waste time fully reading one buffer before starting to write the next one. The optimal size for a disk-to-disk transfer is usually a few megabytes (1024 bytes is ridiculously small). cat will pick a decent size with no effort on your part.






            share|improve this answer























            • Yup, I'm fine with loosing the last partitions. On all my disks, all the important stuff always fits within the size of even the smallest of my disks. Partitions beyond that are always non-essential. The thing with 'cat' is that it won't create partitions or an MBR (unless I'm wrong)
              – Ray Andrews
              Oct 14 '14 at 0:57










            • @rayandrews If you run cat on the whole disk, it will create the same partitions (with a caveat for MBR partitions, see my edit). The same goes for dd, using dd is just a complicated way of doing cat. If you run cat on a partition, then of course it won't create partitions; use fdisk/gdisk/parted/… for that.
              – Gilles
              Oct 14 '14 at 1:04










            • Very interesting. OK, show me an example command, then I will try it out, and if it's good this is the best solution.
              – Ray Andrews
              Oct 14 '14 at 18:33










            • @rayandrews An example command to do what?
              – Gilles
              Oct 14 '14 at 18:39










            • Just a sample command using 'cat' to clone a disk. Make it a new answer so I can accept it.
              – Ray Andrews
              Oct 15 '14 at 20:11














            0












            0








            0






            If you want to fit a car in a passageway that's 20cm narrower than the car, and you cut the left 20cm of the car, will the car still work? Probably not.



            If you copy a the beginning of a disk to another disk and cut the copy short because the target disk is smaller, the result isn't going to work. Even if there would be enough space to fit all the files on target disk, cutting after N bytes from the start of the disk won't give you a working filesystem.



            If the disk is divided in PC-style partitions (GPT or MBR), then all the partitions that fit entirely on the target will work. There's one exception: with MBR partitions, if the logical partitions are not numbered in disk order, then as soon as the chain leaves the target area, the partitions will no longer be listed. (If you don't understand this, that's one more reason not to do a partial disk copy.) It would make a lot more sense to copy the partitions you want to keep, instead of copying from the start and ending up with whatever fits. The partially-copied partition at the end will not be usable.



            If the disk or a partial partition is an LVM physical volume, and you make a partial copy of that physical volume, you can't be sure to get any useful data from the result either.



            If you want to copy only some of the data from a large disk to a smaller disk, create partitions on the smaller disk. If you want to copy a partition to a same-size partition, you can do it with cat. If you want to copy a partition to a smaller partition, create a filesystem on the target partition and do a file-level copy with something like cp -a or pax -rw -pe -t.



            You can use dd instead of cat if you're a masochist. dd has a strange syntax and is typically slower than cat unless you find the right buffer size. There is no single optimal value for the buffer size, it depends on the characteristics of your hardware. If the size is too small, dd will waste time making many tiny transfers. If the size is too large, dd will waste time fully reading one buffer before starting to write the next one. The optimal size for a disk-to-disk transfer is usually a few megabytes (1024 bytes is ridiculously small). cat will pick a decent size with no effort on your part.






            share|improve this answer














            If you want to fit a car in a passageway that's 20cm narrower than the car, and you cut the left 20cm of the car, will the car still work? Probably not.



            If you copy a the beginning of a disk to another disk and cut the copy short because the target disk is smaller, the result isn't going to work. Even if there would be enough space to fit all the files on target disk, cutting after N bytes from the start of the disk won't give you a working filesystem.



            If the disk is divided in PC-style partitions (GPT or MBR), then all the partitions that fit entirely on the target will work. There's one exception: with MBR partitions, if the logical partitions are not numbered in disk order, then as soon as the chain leaves the target area, the partitions will no longer be listed. (If you don't understand this, that's one more reason not to do a partial disk copy.) It would make a lot more sense to copy the partitions you want to keep, instead of copying from the start and ending up with whatever fits. The partially-copied partition at the end will not be usable.



            If the disk or a partial partition is an LVM physical volume, and you make a partial copy of that physical volume, you can't be sure to get any useful data from the result either.



            If you want to copy only some of the data from a large disk to a smaller disk, create partitions on the smaller disk. If you want to copy a partition to a same-size partition, you can do it with cat. If you want to copy a partition to a smaller partition, create a filesystem on the target partition and do a file-level copy with something like cp -a or pax -rw -pe -t.



            You can use dd instead of cat if you're a masochist. dd has a strange syntax and is typically slower than cat unless you find the right buffer size. There is no single optimal value for the buffer size, it depends on the characteristics of your hardware. If the size is too small, dd will waste time making many tiny transfers. If the size is too large, dd will waste time fully reading one buffer before starting to write the next one. The optimal size for a disk-to-disk transfer is usually a few megabytes (1024 bytes is ridiculously small). cat will pick a decent size with no effort on your part.







            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited Apr 13 '17 at 12:36









            Community

            1




            1










            answered Oct 14 '14 at 0:12









            Gilles

            527k12810561581




            527k12810561581












            • Yup, I'm fine with loosing the last partitions. On all my disks, all the important stuff always fits within the size of even the smallest of my disks. Partitions beyond that are always non-essential. The thing with 'cat' is that it won't create partitions or an MBR (unless I'm wrong)
              – Ray Andrews
              Oct 14 '14 at 0:57










            • @rayandrews If you run cat on the whole disk, it will create the same partitions (with a caveat for MBR partitions, see my edit). The same goes for dd, using dd is just a complicated way of doing cat. If you run cat on a partition, then of course it won't create partitions; use fdisk/gdisk/parted/… for that.
              – Gilles
              Oct 14 '14 at 1:04










            • Very interesting. OK, show me an example command, then I will try it out, and if it's good this is the best solution.
              – Ray Andrews
              Oct 14 '14 at 18:33










            • @rayandrews An example command to do what?
              – Gilles
              Oct 14 '14 at 18:39










            • Just a sample command using 'cat' to clone a disk. Make it a new answer so I can accept it.
              – Ray Andrews
              Oct 15 '14 at 20:11


















            • Yup, I'm fine with loosing the last partitions. On all my disks, all the important stuff always fits within the size of even the smallest of my disks. Partitions beyond that are always non-essential. The thing with 'cat' is that it won't create partitions or an MBR (unless I'm wrong)
              – Ray Andrews
              Oct 14 '14 at 0:57










            • @rayandrews If you run cat on the whole disk, it will create the same partitions (with a caveat for MBR partitions, see my edit). The same goes for dd, using dd is just a complicated way of doing cat. If you run cat on a partition, then of course it won't create partitions; use fdisk/gdisk/parted/… for that.
              – Gilles
              Oct 14 '14 at 1:04










            • Very interesting. OK, show me an example command, then I will try it out, and if it's good this is the best solution.
              – Ray Andrews
              Oct 14 '14 at 18:33










            • @rayandrews An example command to do what?
              – Gilles
              Oct 14 '14 at 18:39










            • Just a sample command using 'cat' to clone a disk. Make it a new answer so I can accept it.
              – Ray Andrews
              Oct 15 '14 at 20:11
















            Yup, I'm fine with loosing the last partitions. On all my disks, all the important stuff always fits within the size of even the smallest of my disks. Partitions beyond that are always non-essential. The thing with 'cat' is that it won't create partitions or an MBR (unless I'm wrong)
            – Ray Andrews
            Oct 14 '14 at 0:57




            Yup, I'm fine with loosing the last partitions. On all my disks, all the important stuff always fits within the size of even the smallest of my disks. Partitions beyond that are always non-essential. The thing with 'cat' is that it won't create partitions or an MBR (unless I'm wrong)
            – Ray Andrews
            Oct 14 '14 at 0:57












            @rayandrews If you run cat on the whole disk, it will create the same partitions (with a caveat for MBR partitions, see my edit). The same goes for dd, using dd is just a complicated way of doing cat. If you run cat on a partition, then of course it won't create partitions; use fdisk/gdisk/parted/… for that.
            – Gilles
            Oct 14 '14 at 1:04




            @rayandrews If you run cat on the whole disk, it will create the same partitions (with a caveat for MBR partitions, see my edit). The same goes for dd, using dd is just a complicated way of doing cat. If you run cat on a partition, then of course it won't create partitions; use fdisk/gdisk/parted/… for that.
            – Gilles
            Oct 14 '14 at 1:04












            Very interesting. OK, show me an example command, then I will try it out, and if it's good this is the best solution.
            – Ray Andrews
            Oct 14 '14 at 18:33




            Very interesting. OK, show me an example command, then I will try it out, and if it's good this is the best solution.
            – Ray Andrews
            Oct 14 '14 at 18:33












            @rayandrews An example command to do what?
            – Gilles
            Oct 14 '14 at 18:39




            @rayandrews An example command to do what?
            – Gilles
            Oct 14 '14 at 18:39












            Just a sample command using 'cat' to clone a disk. Make it a new answer so I can accept it.
            – Ray Andrews
            Oct 15 '14 at 20:11




            Just a sample command using 'cat' to clone a disk. Make it a new answer so I can accept it.
            – Ray Andrews
            Oct 15 '14 at 20:11











            0














            I would like to share my experience with this topic, should this prove useful to another reader. Recently I used DDRESCUE to recover the first 1/3 of an NTFS partition from a malfunctioned hard drive, and successfully rebuilt the recovered segment of the partition onto a smaller hard drive - thereby rescuing the files captured (and loosing the rest). Following are the steps I took in so doing (definitely a HACKSAW approach!!)...



            The source hard drive consisted of 750GB formatted in NTFS with a MBR filetable. I had used it only a few times to back up files to, so most of the files were at the beginning of drive, about 160GB worth. A family member knocked the hard drive (mounted externally) onto the floor - it never functioned properly after after that! Using ddrescue (painstakingly) I was able to recover a large portion of the beginning of the drive. Due to the physical damage, it shut down very frequently throughout the process ...



            I had a small laptop hard drive available 150GB (mounted externally), which I extracted the ddrescue data directly to. Alternatively I could have extracted the data to an image file, and later mounted the file, however I thought writing the data directly to a hard drive to be more straitforward.



            The key trick to the rescue was to manually edit both the MBR and the NTFS Boot Sector data on the rescue hard drive. Without so doing, the hard drive is unrecognized by any operating system. I was not able to find a suitable program in linux to do so, so I turned to windows. There is a handy package named Windows Support Tools, no longer maintained however still useful (see link below)! The tool I used to edit the partition is Disk Probe. Make sure to know the end sector value of your hard drive (I used fdisk -l in Ubuntu)



            https://en.wikipedia.org/wiki/Windows_Support_Tools



            Using a good calculator and some creativity I loaded up and mounted the hard drive into Disk Probe in Windows and edited the end sector values. In the MBR two sets of values had to be changed, namely a) the hard drive end sector and b) the NTFS partition end sector. In the NTFS Boot Sector the partition Total Sectors value had to be changed. In each case the numerical value was decreased in order to match the decreased "dimension" of the smaller hard drive (end sectors changed from 750GB to 150GB). Click the View tab to edit these values.



            Here is an image of Disk Probe in action editing the NTFS Boot Sector data Windows Support Tools - Disk Probe



            Upon editing the aforementioned fields, Windows recognized the partition as a valid partition albeit damaged. I entered command prompt and ran the windows program Chkdsk on the damaged hard drive (chdsk D:). It was thrilling to see the partition come back to life, file by file! The program rebuilt the partition table and successfully remapped all of the files which had been copied over from the damaged hard drive. Files which were out of range (not copied over) were not found and were therefore eliminated.



            The next part I do not understand the reason for, as windows did successfully rebuild the 150GB hard drive with files included. Nonetheless windows natively was not able to open the hard drive partition for file viewing (there was some error). However Ubuntu to the rescue! I rebooted into Ubuntu, mounted the external hard drive, and without issue at all, all recovered files showed up!



            Hopefully this hacksaw method of recovering files from a large hard drive onto a smaller hard drive will prove useful to some other poor soul besides myself. Cheers!






            share|improve this answer

















            • 1




              You clearly put a lot of thought into this answer. Unfortunately, it does not really answer the question. "ddrescue is not a derivative of dd, nor is it related to dd in any way except in that both can be used for copying data from one device to another. The difference is that ddrescue uses a sophisticated algorithm to copy data from failing drives causing them as little damage as possible." — Wikipedia. Further, your answer appears to be focused primarily on a Windows operating environment, which is not a typical configuration here
              – Fox
              Feb 26 at 4:13






            • 1




              As the original questioner, I yet find Dan's experience most helpful, it's good to know what can be done in a desperate situation, tho of course it is peripheral to this exact thread, but let's not be too strict.
              – Ray Andrews
              Feb 26 at 17:08
















            0














            I would like to share my experience with this topic, should this prove useful to another reader. Recently I used DDRESCUE to recover the first 1/3 of an NTFS partition from a malfunctioned hard drive, and successfully rebuilt the recovered segment of the partition onto a smaller hard drive - thereby rescuing the files captured (and loosing the rest). Following are the steps I took in so doing (definitely a HACKSAW approach!!)...



            The source hard drive consisted of 750GB formatted in NTFS with a MBR filetable. I had used it only a few times to back up files to, so most of the files were at the beginning of drive, about 160GB worth. A family member knocked the hard drive (mounted externally) onto the floor - it never functioned properly after after that! Using ddrescue (painstakingly) I was able to recover a large portion of the beginning of the drive. Due to the physical damage, it shut down very frequently throughout the process ...



            I had a small laptop hard drive available 150GB (mounted externally), which I extracted the ddrescue data directly to. Alternatively I could have extracted the data to an image file, and later mounted the file, however I thought writing the data directly to a hard drive to be more straitforward.



            The key trick to the rescue was to manually edit both the MBR and the NTFS Boot Sector data on the rescue hard drive. Without so doing, the hard drive is unrecognized by any operating system. I was not able to find a suitable program in linux to do so, so I turned to windows. There is a handy package named Windows Support Tools, no longer maintained however still useful (see link below)! The tool I used to edit the partition is Disk Probe. Make sure to know the end sector value of your hard drive (I used fdisk -l in Ubuntu)



            https://en.wikipedia.org/wiki/Windows_Support_Tools



            Using a good calculator and some creativity I loaded up and mounted the hard drive into Disk Probe in Windows and edited the end sector values. In the MBR two sets of values had to be changed, namely a) the hard drive end sector and b) the NTFS partition end sector. In the NTFS Boot Sector the partition Total Sectors value had to be changed. In each case the numerical value was decreased in order to match the decreased "dimension" of the smaller hard drive (end sectors changed from 750GB to 150GB). Click the View tab to edit these values.



            Here is an image of Disk Probe in action editing the NTFS Boot Sector data Windows Support Tools - Disk Probe



            Upon editing the aforementioned fields, Windows recognized the partition as a valid partition albeit damaged. I entered command prompt and ran the windows program Chkdsk on the damaged hard drive (chdsk D:). It was thrilling to see the partition come back to life, file by file! The program rebuilt the partition table and successfully remapped all of the files which had been copied over from the damaged hard drive. Files which were out of range (not copied over) were not found and were therefore eliminated.



            The next part I do not understand the reason for, as windows did successfully rebuild the 150GB hard drive with files included. Nonetheless windows natively was not able to open the hard drive partition for file viewing (there was some error). However Ubuntu to the rescue! I rebooted into Ubuntu, mounted the external hard drive, and without issue at all, all recovered files showed up!



            Hopefully this hacksaw method of recovering files from a large hard drive onto a smaller hard drive will prove useful to some other poor soul besides myself. Cheers!






            share|improve this answer

















            • 1




              You clearly put a lot of thought into this answer. Unfortunately, it does not really answer the question. "ddrescue is not a derivative of dd, nor is it related to dd in any way except in that both can be used for copying data from one device to another. The difference is that ddrescue uses a sophisticated algorithm to copy data from failing drives causing them as little damage as possible." — Wikipedia. Further, your answer appears to be focused primarily on a Windows operating environment, which is not a typical configuration here
              – Fox
              Feb 26 at 4:13






            • 1




              As the original questioner, I yet find Dan's experience most helpful, it's good to know what can be done in a desperate situation, tho of course it is peripheral to this exact thread, but let's not be too strict.
              – Ray Andrews
              Feb 26 at 17:08














            0












            0








            0






            I would like to share my experience with this topic, should this prove useful to another reader. Recently I used DDRESCUE to recover the first 1/3 of an NTFS partition from a malfunctioned hard drive, and successfully rebuilt the recovered segment of the partition onto a smaller hard drive - thereby rescuing the files captured (and loosing the rest). Following are the steps I took in so doing (definitely a HACKSAW approach!!)...



            The source hard drive consisted of 750GB formatted in NTFS with a MBR filetable. I had used it only a few times to back up files to, so most of the files were at the beginning of drive, about 160GB worth. A family member knocked the hard drive (mounted externally) onto the floor - it never functioned properly after after that! Using ddrescue (painstakingly) I was able to recover a large portion of the beginning of the drive. Due to the physical damage, it shut down very frequently throughout the process ...



            I had a small laptop hard drive available 150GB (mounted externally), which I extracted the ddrescue data directly to. Alternatively I could have extracted the data to an image file, and later mounted the file, however I thought writing the data directly to a hard drive to be more straitforward.



            The key trick to the rescue was to manually edit both the MBR and the NTFS Boot Sector data on the rescue hard drive. Without so doing, the hard drive is unrecognized by any operating system. I was not able to find a suitable program in linux to do so, so I turned to windows. There is a handy package named Windows Support Tools, no longer maintained however still useful (see link below)! The tool I used to edit the partition is Disk Probe. Make sure to know the end sector value of your hard drive (I used fdisk -l in Ubuntu)



            https://en.wikipedia.org/wiki/Windows_Support_Tools



            Using a good calculator and some creativity I loaded up and mounted the hard drive into Disk Probe in Windows and edited the end sector values. In the MBR two sets of values had to be changed, namely a) the hard drive end sector and b) the NTFS partition end sector. In the NTFS Boot Sector the partition Total Sectors value had to be changed. In each case the numerical value was decreased in order to match the decreased "dimension" of the smaller hard drive (end sectors changed from 750GB to 150GB). Click the View tab to edit these values.



            Here is an image of Disk Probe in action editing the NTFS Boot Sector data Windows Support Tools - Disk Probe



            Upon editing the aforementioned fields, Windows recognized the partition as a valid partition albeit damaged. I entered command prompt and ran the windows program Chkdsk on the damaged hard drive (chdsk D:). It was thrilling to see the partition come back to life, file by file! The program rebuilt the partition table and successfully remapped all of the files which had been copied over from the damaged hard drive. Files which were out of range (not copied over) were not found and were therefore eliminated.



            The next part I do not understand the reason for, as windows did successfully rebuild the 150GB hard drive with files included. Nonetheless windows natively was not able to open the hard drive partition for file viewing (there was some error). However Ubuntu to the rescue! I rebooted into Ubuntu, mounted the external hard drive, and without issue at all, all recovered files showed up!



            Hopefully this hacksaw method of recovering files from a large hard drive onto a smaller hard drive will prove useful to some other poor soul besides myself. Cheers!






            share|improve this answer












            I would like to share my experience with this topic, should this prove useful to another reader. Recently I used DDRESCUE to recover the first 1/3 of an NTFS partition from a malfunctioned hard drive, and successfully rebuilt the recovered segment of the partition onto a smaller hard drive - thereby rescuing the files captured (and loosing the rest). Following are the steps I took in so doing (definitely a HACKSAW approach!!)...



            The source hard drive consisted of 750GB formatted in NTFS with a MBR filetable. I had used it only a few times to back up files to, so most of the files were at the beginning of drive, about 160GB worth. A family member knocked the hard drive (mounted externally) onto the floor - it never functioned properly after after that! Using ddrescue (painstakingly) I was able to recover a large portion of the beginning of the drive. Due to the physical damage, it shut down very frequently throughout the process ...



            I had a small laptop hard drive available 150GB (mounted externally), which I extracted the ddrescue data directly to. Alternatively I could have extracted the data to an image file, and later mounted the file, however I thought writing the data directly to a hard drive to be more straitforward.



            The key trick to the rescue was to manually edit both the MBR and the NTFS Boot Sector data on the rescue hard drive. Without so doing, the hard drive is unrecognized by any operating system. I was not able to find a suitable program in linux to do so, so I turned to windows. There is a handy package named Windows Support Tools, no longer maintained however still useful (see link below)! The tool I used to edit the partition is Disk Probe. Make sure to know the end sector value of your hard drive (I used fdisk -l in Ubuntu)



            https://en.wikipedia.org/wiki/Windows_Support_Tools



            Using a good calculator and some creativity I loaded up and mounted the hard drive into Disk Probe in Windows and edited the end sector values. In the MBR two sets of values had to be changed, namely a) the hard drive end sector and b) the NTFS partition end sector. In the NTFS Boot Sector the partition Total Sectors value had to be changed. In each case the numerical value was decreased in order to match the decreased "dimension" of the smaller hard drive (end sectors changed from 750GB to 150GB). Click the View tab to edit these values.



            Here is an image of Disk Probe in action editing the NTFS Boot Sector data Windows Support Tools - Disk Probe



            Upon editing the aforementioned fields, Windows recognized the partition as a valid partition albeit damaged. I entered command prompt and ran the windows program Chkdsk on the damaged hard drive (chdsk D:). It was thrilling to see the partition come back to life, file by file! The program rebuilt the partition table and successfully remapped all of the files which had been copied over from the damaged hard drive. Files which were out of range (not copied over) were not found and were therefore eliminated.



            The next part I do not understand the reason for, as windows did successfully rebuild the 150GB hard drive with files included. Nonetheless windows natively was not able to open the hard drive partition for file viewing (there was some error). However Ubuntu to the rescue! I rebooted into Ubuntu, mounted the external hard drive, and without issue at all, all recovered files showed up!



            Hopefully this hacksaw method of recovering files from a large hard drive onto a smaller hard drive will prove useful to some other poor soul besides myself. Cheers!







            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Feb 26 at 1:40









            Dan Gardner

            1




            1








            • 1




              You clearly put a lot of thought into this answer. Unfortunately, it does not really answer the question. "ddrescue is not a derivative of dd, nor is it related to dd in any way except in that both can be used for copying data from one device to another. The difference is that ddrescue uses a sophisticated algorithm to copy data from failing drives causing them as little damage as possible." — Wikipedia. Further, your answer appears to be focused primarily on a Windows operating environment, which is not a typical configuration here
              – Fox
              Feb 26 at 4:13






            • 1




              As the original questioner, I yet find Dan's experience most helpful, it's good to know what can be done in a desperate situation, tho of course it is peripheral to this exact thread, but let's not be too strict.
              – Ray Andrews
              Feb 26 at 17:08














            • 1




              You clearly put a lot of thought into this answer. Unfortunately, it does not really answer the question. "ddrescue is not a derivative of dd, nor is it related to dd in any way except in that both can be used for copying data from one device to another. The difference is that ddrescue uses a sophisticated algorithm to copy data from failing drives causing them as little damage as possible." — Wikipedia. Further, your answer appears to be focused primarily on a Windows operating environment, which is not a typical configuration here
              – Fox
              Feb 26 at 4:13






            • 1




              As the original questioner, I yet find Dan's experience most helpful, it's good to know what can be done in a desperate situation, tho of course it is peripheral to this exact thread, but let's not be too strict.
              – Ray Andrews
              Feb 26 at 17:08








            1




            1




            You clearly put a lot of thought into this answer. Unfortunately, it does not really answer the question. "ddrescue is not a derivative of dd, nor is it related to dd in any way except in that both can be used for copying data from one device to another. The difference is that ddrescue uses a sophisticated algorithm to copy data from failing drives causing them as little damage as possible." — Wikipedia. Further, your answer appears to be focused primarily on a Windows operating environment, which is not a typical configuration here
            – Fox
            Feb 26 at 4:13




            You clearly put a lot of thought into this answer. Unfortunately, it does not really answer the question. "ddrescue is not a derivative of dd, nor is it related to dd in any way except in that both can be used for copying data from one device to another. The difference is that ddrescue uses a sophisticated algorithm to copy data from failing drives causing them as little damage as possible." — Wikipedia. Further, your answer appears to be focused primarily on a Windows operating environment, which is not a typical configuration here
            – Fox
            Feb 26 at 4:13




            1




            1




            As the original questioner, I yet find Dan's experience most helpful, it's good to know what can be done in a desperate situation, tho of course it is peripheral to this exact thread, but let's not be too strict.
            – Ray Andrews
            Feb 26 at 17:08




            As the original questioner, I yet find Dan's experience most helpful, it's good to know what can be done in a desperate situation, tho of course it is peripheral to this exact thread, but let's not be too strict.
            – Ray Andrews
            Feb 26 at 17:08











            0














            You need to shrink the partitions on the source first (or delete those out-of-bounds).

            Than dd and after you will probably need to repair the partition table by using gdisk /dev/sd<target>

            and the key sequence to repair the table is v r d w

            I suggest you to shring the partitions a bit smaller than needed and after expand them back to the full size of the target disk.

            (This answer is based on my personal experience when cloning my HDD to a smaller SSD)






            share|improve this answer








            New contributor




            Zhigalin is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
            Check out our Code of Conduct.


















            • +1. This method works for me too: cloning works when all partitions fit within the target drive :-) Just one comment: You need to repair the backup partition table of a GUID partiiton table (GPT), but if there is an old-style MSDOS partition table, there is no backup partition table to repair.
              – sudodus
              12 mins ago


















            0














            You need to shrink the partitions on the source first (or delete those out-of-bounds).

            Than dd and after you will probably need to repair the partition table by using gdisk /dev/sd<target>

            and the key sequence to repair the table is v r d w

            I suggest you to shring the partitions a bit smaller than needed and after expand them back to the full size of the target disk.

            (This answer is based on my personal experience when cloning my HDD to a smaller SSD)






            share|improve this answer








            New contributor




            Zhigalin is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
            Check out our Code of Conduct.


















            • +1. This method works for me too: cloning works when all partitions fit within the target drive :-) Just one comment: You need to repair the backup partition table of a GUID partiiton table (GPT), but if there is an old-style MSDOS partition table, there is no backup partition table to repair.
              – sudodus
              12 mins ago
















            0












            0








            0






            You need to shrink the partitions on the source first (or delete those out-of-bounds).

            Than dd and after you will probably need to repair the partition table by using gdisk /dev/sd<target>

            and the key sequence to repair the table is v r d w

            I suggest you to shring the partitions a bit smaller than needed and after expand them back to the full size of the target disk.

            (This answer is based on my personal experience when cloning my HDD to a smaller SSD)






            share|improve this answer








            New contributor




            Zhigalin is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
            Check out our Code of Conduct.









            You need to shrink the partitions on the source first (or delete those out-of-bounds).

            Than dd and after you will probably need to repair the partition table by using gdisk /dev/sd<target>

            and the key sequence to repair the table is v r d w

            I suggest you to shring the partitions a bit smaller than needed and after expand them back to the full size of the target disk.

            (This answer is based on my personal experience when cloning my HDD to a smaller SSD)







            share|improve this answer








            New contributor




            Zhigalin is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
            Check out our Code of Conduct.









            share|improve this answer



            share|improve this answer






            New contributor




            Zhigalin is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
            Check out our Code of Conduct.









            answered 39 mins ago









            Zhigalin

            1092




            1092




            New contributor




            Zhigalin is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
            Check out our Code of Conduct.





            New contributor





            Zhigalin is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
            Check out our Code of Conduct.






            Zhigalin is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
            Check out our Code of Conduct.












            • +1. This method works for me too: cloning works when all partitions fit within the target drive :-) Just one comment: You need to repair the backup partition table of a GUID partiiton table (GPT), but if there is an old-style MSDOS partition table, there is no backup partition table to repair.
              – sudodus
              12 mins ago




















            • +1. This method works for me too: cloning works when all partitions fit within the target drive :-) Just one comment: You need to repair the backup partition table of a GUID partiiton table (GPT), but if there is an old-style MSDOS partition table, there is no backup partition table to repair.
              – sudodus
              12 mins ago


















            +1. This method works for me too: cloning works when all partitions fit within the target drive :-) Just one comment: You need to repair the backup partition table of a GUID partiiton table (GPT), but if there is an old-style MSDOS partition table, there is no backup partition table to repair.
            – sudodus
            12 mins ago






            +1. This method works for me too: cloning works when all partitions fit within the target drive :-) Just one comment: You need to repair the backup partition table of a GUID partiiton table (GPT), but if there is an old-style MSDOS partition table, there is no backup partition table to repair.
            – sudodus
            12 mins ago




















            draft saved

            draft discarded




















































            Thanks for contributing an answer to Unix & Linux Stack Exchange!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.





            Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


            Please pay close attention to the following guidance:


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f161859%2fcan-dd-be-used-to-clone-to-a-smaller-hdd-knowing-that-partitions-will-need-ed%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            サソリ

            広島県道265号伴広島線

            Setup Asymptote in Texstudio