How to migrate the whole system to a new machine?





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}







28















I use ubuntu to deal with daily job. Now I buy a new laptop, and I want to migrate my whole system(programs, packages, data, settings, etc) to the new machine.



I know I can copy my home folder to new machine and I will get (almost) all data and settings. But is there a safe way to copy the whole system? Or it's a bad idea?










share|improve this question























  • Is anything stopping you from swapping the old drive to the new system, or the image of it to a new drive? I got a new laptop and just put the drive from the old one in the new one and that was it.

    – Bert
    Mar 27 '13 at 1:24


















28















I use ubuntu to deal with daily job. Now I buy a new laptop, and I want to migrate my whole system(programs, packages, data, settings, etc) to the new machine.



I know I can copy my home folder to new machine and I will get (almost) all data and settings. But is there a safe way to copy the whole system? Or it's a bad idea?










share|improve this question























  • Is anything stopping you from swapping the old drive to the new system, or the image of it to a new drive? I got a new laptop and just put the drive from the old one in the new one and that was it.

    – Bert
    Mar 27 '13 at 1:24














28












28








28


17






I use ubuntu to deal with daily job. Now I buy a new laptop, and I want to migrate my whole system(programs, packages, data, settings, etc) to the new machine.



I know I can copy my home folder to new machine and I will get (almost) all data and settings. But is there a safe way to copy the whole system? Or it's a bad idea?










share|improve this question














I use ubuntu to deal with daily job. Now I buy a new laptop, and I want to migrate my whole system(programs, packages, data, settings, etc) to the new machine.



I know I can copy my home folder to new machine and I will get (almost) all data and settings. But is there a safe way to copy the whole system? Or it's a bad idea?







backup clipboard migration






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 8 '12 at 18:59









Lai Yu-HsuanLai Yu-Hsuan

3521513




3521513













  • Is anything stopping you from swapping the old drive to the new system, or the image of it to a new drive? I got a new laptop and just put the drive from the old one in the new one and that was it.

    – Bert
    Mar 27 '13 at 1:24



















  • Is anything stopping you from swapping the old drive to the new system, or the image of it to a new drive? I got a new laptop and just put the drive from the old one in the new one and that was it.

    – Bert
    Mar 27 '13 at 1:24

















Is anything stopping you from swapping the old drive to the new system, or the image of it to a new drive? I got a new laptop and just put the drive from the old one in the new one and that was it.

– Bert
Mar 27 '13 at 1:24





Is anything stopping you from swapping the old drive to the new system, or the image of it to a new drive? I got a new laptop and just put the drive from the old one in the new one and that was it.

– Bert
Mar 27 '13 at 1:24










6 Answers
6






active

oldest

votes


















22














Prerequisites:



The same version of Ubuntu is installed on both machines. The architecture (32/64 bit) can be different.



Step 1: Store the list of installed packages



Run the following command on the source machine to store the installed packages names in ~/pkglist:



sudo dpkg --get-selections | sed "s/.*deinstall//" | sed "s/install$//g" > ~/pkglist


Step 2: Transfer your config



Use scp or rsync or even a flash drive to transfer your home directory (~/, ~/.), the source list (/etc/apt/sources.list) and any other files you customized or installed (like apache config under /etc or softwares on /opt) from the source machine to the target one.



Step 3: Install packages



On the target machine run the following command in a failsafe terminal session to install your packages:



sudo aptitude update && cat pkglist | xargs sudo aptitude install -y


Extract from:



http://eggsonbread.com/2010/01/28/move-ubuntu-to-another-computer-in-3-simple-steps/






share|improve this answer





















  • 7





    Step 2 is still rather vague

    – Adonis K. Kakoulidis
    Oct 26 '13 at 12:28






  • 1





    There may be a change to Ubuntu's setup because following these instructions will cause system failure - necessitating a re-installation of the operating system. Best option is to just start from scratch on the new machine.

    – mjp
    Jan 18 '17 at 17:12











  • @mjp True. This rendered my freshly installed ubuntu 16.04 unusable. After running the install package commands System Settings went missing. I restarted. The machine then rebooted into a blank desktop. I tried to reinstall unity desktop from command but no result. Going to re-install ubuntu

    – Mohammed Joraid
    Jul 19 '17 at 11:56





















11














First off, How to list all installed packages this question covers exporting (then installing) your exact set of packages.



As you noted, most of your configuration will be in /home.



That being said, each time I do this, I start from scratch so to speak. I'll install ubuntu and manually add packages that I know I use, configuring them one at a time. The list of packages installed on your old computer is a good starting place to find different pieces. Once stuff is more or less set up, I'll then copy over just the data files (but not the config files) from my old computer. This does take more time to do, but it's worth it to switch to the newest version. (My old desktop runs 10.04, my new on currently runs 11.10, although I plan on updating that to 12.04 when it has been around for a month to work off any remaining rough edges) But this plan is for if you're ok with a few things working slightly differently than before. If you need things to be exactly the same, go ahead and do the above.






share|improve this answer

































    0














    Most configs and personal files will be in /home. For example by default my GNOME theme, shell settings, Chromium history/bookmarks/etc., vimrc, bash_profile, and most settings carried over nicely.



    An important thing is to preserve permissions and timestamps. See Copy files without losing file/folder permissions The -a flag for rsync is ideal for this. Rsync is recommended for large file transfers.



    Also consider installing /home on a separate partition if you are just reinstalling the system on the same hard drive. What are the pros and cons of having a separate home partition?






    share|improve this answer































      0














      I was looking for an easier way of doing this and I found Aptik:




      Aptik is a tool for migrating settings and data from one Linux
      installation to another. It can be used while re-installing the
      operating system, and when moving to next release of a Linux
      distribution.




      I just used it to migrate from an old laptop to a new one, both running Ubuntu 18.04. Seemed to work pretty well.






      share|improve this answer































        -1














        There are several utilities that can make direct copies of your file system and some (Norton Ghost for example) can adjust your partitions to adapt to the new disk. Software like this allows you to not only copy from disk to disk but also keep a separate, compressed backup for yourself in the future.



        There's also the tool dd to do this, however it takes a bit more knowledge and research to produce the results that you would like.






        share|improve this answer
























        • There's also filezilla which works well.

          – ShadowMitia
          Mar 18 '15 at 17:02






        • 1





          @ShadowMitia Clonezilla I guess you meant?

          – Mohammed Joraid
          Jul 16 '17 at 8:52











        • Norton Ghost? No thanks we have rsync and gParted...

          – qwr
          Mar 23 at 23:28



















        -2














        Remember that you can easily remove your hard disk from one machine to another without any problem.






        share|improve this answer


























        • Not necessarily, if the new system is a laptop and 1) the drive has a 3.5" form factor or 2) even with the right form factor all drive bays of the laptop are full.

          – David Foerster
          Mar 18 '15 at 18:06












        Your Answer








        StackExchange.ready(function() {
        var channelOptions = {
        tags: "".split(" "),
        id: "89"
        };
        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: true,
        noModals: true,
        showLowRepImageUploadWarning: true,
        reputationToPostImages: 10,
        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%2faskubuntu.com%2fquestions%2f111236%2fhow-to-migrate-the-whole-system-to-a-new-machine%23new-answer', 'question_page');
        }
        );

        Post as a guest















        Required, but never shown

























        6 Answers
        6






        active

        oldest

        votes








        6 Answers
        6






        active

        oldest

        votes









        active

        oldest

        votes






        active

        oldest

        votes









        22














        Prerequisites:



        The same version of Ubuntu is installed on both machines. The architecture (32/64 bit) can be different.



        Step 1: Store the list of installed packages



        Run the following command on the source machine to store the installed packages names in ~/pkglist:



        sudo dpkg --get-selections | sed "s/.*deinstall//" | sed "s/install$//g" > ~/pkglist


        Step 2: Transfer your config



        Use scp or rsync or even a flash drive to transfer your home directory (~/, ~/.), the source list (/etc/apt/sources.list) and any other files you customized or installed (like apache config under /etc or softwares on /opt) from the source machine to the target one.



        Step 3: Install packages



        On the target machine run the following command in a failsafe terminal session to install your packages:



        sudo aptitude update && cat pkglist | xargs sudo aptitude install -y


        Extract from:



        http://eggsonbread.com/2010/01/28/move-ubuntu-to-another-computer-in-3-simple-steps/






        share|improve this answer





















        • 7





          Step 2 is still rather vague

          – Adonis K. Kakoulidis
          Oct 26 '13 at 12:28






        • 1





          There may be a change to Ubuntu's setup because following these instructions will cause system failure - necessitating a re-installation of the operating system. Best option is to just start from scratch on the new machine.

          – mjp
          Jan 18 '17 at 17:12











        • @mjp True. This rendered my freshly installed ubuntu 16.04 unusable. After running the install package commands System Settings went missing. I restarted. The machine then rebooted into a blank desktop. I tried to reinstall unity desktop from command but no result. Going to re-install ubuntu

          – Mohammed Joraid
          Jul 19 '17 at 11:56


















        22














        Prerequisites:



        The same version of Ubuntu is installed on both machines. The architecture (32/64 bit) can be different.



        Step 1: Store the list of installed packages



        Run the following command on the source machine to store the installed packages names in ~/pkglist:



        sudo dpkg --get-selections | sed "s/.*deinstall//" | sed "s/install$//g" > ~/pkglist


        Step 2: Transfer your config



        Use scp or rsync or even a flash drive to transfer your home directory (~/, ~/.), the source list (/etc/apt/sources.list) and any other files you customized or installed (like apache config under /etc or softwares on /opt) from the source machine to the target one.



        Step 3: Install packages



        On the target machine run the following command in a failsafe terminal session to install your packages:



        sudo aptitude update && cat pkglist | xargs sudo aptitude install -y


        Extract from:



        http://eggsonbread.com/2010/01/28/move-ubuntu-to-another-computer-in-3-simple-steps/






        share|improve this answer





















        • 7





          Step 2 is still rather vague

          – Adonis K. Kakoulidis
          Oct 26 '13 at 12:28






        • 1





          There may be a change to Ubuntu's setup because following these instructions will cause system failure - necessitating a re-installation of the operating system. Best option is to just start from scratch on the new machine.

          – mjp
          Jan 18 '17 at 17:12











        • @mjp True. This rendered my freshly installed ubuntu 16.04 unusable. After running the install package commands System Settings went missing. I restarted. The machine then rebooted into a blank desktop. I tried to reinstall unity desktop from command but no result. Going to re-install ubuntu

          – Mohammed Joraid
          Jul 19 '17 at 11:56
















        22












        22








        22







        Prerequisites:



        The same version of Ubuntu is installed on both machines. The architecture (32/64 bit) can be different.



        Step 1: Store the list of installed packages



        Run the following command on the source machine to store the installed packages names in ~/pkglist:



        sudo dpkg --get-selections | sed "s/.*deinstall//" | sed "s/install$//g" > ~/pkglist


        Step 2: Transfer your config



        Use scp or rsync or even a flash drive to transfer your home directory (~/, ~/.), the source list (/etc/apt/sources.list) and any other files you customized or installed (like apache config under /etc or softwares on /opt) from the source machine to the target one.



        Step 3: Install packages



        On the target machine run the following command in a failsafe terminal session to install your packages:



        sudo aptitude update && cat pkglist | xargs sudo aptitude install -y


        Extract from:



        http://eggsonbread.com/2010/01/28/move-ubuntu-to-another-computer-in-3-simple-steps/






        share|improve this answer















        Prerequisites:



        The same version of Ubuntu is installed on both machines. The architecture (32/64 bit) can be different.



        Step 1: Store the list of installed packages



        Run the following command on the source machine to store the installed packages names in ~/pkglist:



        sudo dpkg --get-selections | sed "s/.*deinstall//" | sed "s/install$//g" > ~/pkglist


        Step 2: Transfer your config



        Use scp or rsync or even a flash drive to transfer your home directory (~/, ~/.), the source list (/etc/apt/sources.list) and any other files you customized or installed (like apache config under /etc or softwares on /opt) from the source machine to the target one.



        Step 3: Install packages



        On the target machine run the following command in a failsafe terminal session to install your packages:



        sudo aptitude update && cat pkglist | xargs sudo aptitude install -y


        Extract from:



        http://eggsonbread.com/2010/01/28/move-ubuntu-to-another-computer-in-3-simple-steps/







        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited Mar 27 '13 at 13:16

























        answered Mar 27 '13 at 0:51









        Ricardo BouRicardo Bou

        33726




        33726








        • 7





          Step 2 is still rather vague

          – Adonis K. Kakoulidis
          Oct 26 '13 at 12:28






        • 1





          There may be a change to Ubuntu's setup because following these instructions will cause system failure - necessitating a re-installation of the operating system. Best option is to just start from scratch on the new machine.

          – mjp
          Jan 18 '17 at 17:12











        • @mjp True. This rendered my freshly installed ubuntu 16.04 unusable. After running the install package commands System Settings went missing. I restarted. The machine then rebooted into a blank desktop. I tried to reinstall unity desktop from command but no result. Going to re-install ubuntu

          – Mohammed Joraid
          Jul 19 '17 at 11:56
















        • 7





          Step 2 is still rather vague

          – Adonis K. Kakoulidis
          Oct 26 '13 at 12:28






        • 1





          There may be a change to Ubuntu's setup because following these instructions will cause system failure - necessitating a re-installation of the operating system. Best option is to just start from scratch on the new machine.

          – mjp
          Jan 18 '17 at 17:12











        • @mjp True. This rendered my freshly installed ubuntu 16.04 unusable. After running the install package commands System Settings went missing. I restarted. The machine then rebooted into a blank desktop. I tried to reinstall unity desktop from command but no result. Going to re-install ubuntu

          – Mohammed Joraid
          Jul 19 '17 at 11:56










        7




        7





        Step 2 is still rather vague

        – Adonis K. Kakoulidis
        Oct 26 '13 at 12:28





        Step 2 is still rather vague

        – Adonis K. Kakoulidis
        Oct 26 '13 at 12:28




        1




        1





        There may be a change to Ubuntu's setup because following these instructions will cause system failure - necessitating a re-installation of the operating system. Best option is to just start from scratch on the new machine.

        – mjp
        Jan 18 '17 at 17:12





        There may be a change to Ubuntu's setup because following these instructions will cause system failure - necessitating a re-installation of the operating system. Best option is to just start from scratch on the new machine.

        – mjp
        Jan 18 '17 at 17:12













        @mjp True. This rendered my freshly installed ubuntu 16.04 unusable. After running the install package commands System Settings went missing. I restarted. The machine then rebooted into a blank desktop. I tried to reinstall unity desktop from command but no result. Going to re-install ubuntu

        – Mohammed Joraid
        Jul 19 '17 at 11:56







        @mjp True. This rendered my freshly installed ubuntu 16.04 unusable. After running the install package commands System Settings went missing. I restarted. The machine then rebooted into a blank desktop. I tried to reinstall unity desktop from command but no result. Going to re-install ubuntu

        – Mohammed Joraid
        Jul 19 '17 at 11:56















        11














        First off, How to list all installed packages this question covers exporting (then installing) your exact set of packages.



        As you noted, most of your configuration will be in /home.



        That being said, each time I do this, I start from scratch so to speak. I'll install ubuntu and manually add packages that I know I use, configuring them one at a time. The list of packages installed on your old computer is a good starting place to find different pieces. Once stuff is more or less set up, I'll then copy over just the data files (but not the config files) from my old computer. This does take more time to do, but it's worth it to switch to the newest version. (My old desktop runs 10.04, my new on currently runs 11.10, although I plan on updating that to 12.04 when it has been around for a month to work off any remaining rough edges) But this plan is for if you're ok with a few things working slightly differently than before. If you need things to be exactly the same, go ahead and do the above.






        share|improve this answer






























          11














          First off, How to list all installed packages this question covers exporting (then installing) your exact set of packages.



          As you noted, most of your configuration will be in /home.



          That being said, each time I do this, I start from scratch so to speak. I'll install ubuntu and manually add packages that I know I use, configuring them one at a time. The list of packages installed on your old computer is a good starting place to find different pieces. Once stuff is more or less set up, I'll then copy over just the data files (but not the config files) from my old computer. This does take more time to do, but it's worth it to switch to the newest version. (My old desktop runs 10.04, my new on currently runs 11.10, although I plan on updating that to 12.04 when it has been around for a month to work off any remaining rough edges) But this plan is for if you're ok with a few things working slightly differently than before. If you need things to be exactly the same, go ahead and do the above.






          share|improve this answer




























            11












            11








            11







            First off, How to list all installed packages this question covers exporting (then installing) your exact set of packages.



            As you noted, most of your configuration will be in /home.



            That being said, each time I do this, I start from scratch so to speak. I'll install ubuntu and manually add packages that I know I use, configuring them one at a time. The list of packages installed on your old computer is a good starting place to find different pieces. Once stuff is more or less set up, I'll then copy over just the data files (but not the config files) from my old computer. This does take more time to do, but it's worth it to switch to the newest version. (My old desktop runs 10.04, my new on currently runs 11.10, although I plan on updating that to 12.04 when it has been around for a month to work off any remaining rough edges) But this plan is for if you're ok with a few things working slightly differently than before. If you need things to be exactly the same, go ahead and do the above.






            share|improve this answer















            First off, How to list all installed packages this question covers exporting (then installing) your exact set of packages.



            As you noted, most of your configuration will be in /home.



            That being said, each time I do this, I start from scratch so to speak. I'll install ubuntu and manually add packages that I know I use, configuring them one at a time. The list of packages installed on your old computer is a good starting place to find different pieces. Once stuff is more or less set up, I'll then copy over just the data files (but not the config files) from my old computer. This does take more time to do, but it's worth it to switch to the newest version. (My old desktop runs 10.04, my new on currently runs 11.10, although I plan on updating that to 12.04 when it has been around for a month to work off any remaining rough edges) But this plan is for if you're ok with a few things working slightly differently than before. If you need things to be exactly the same, go ahead and do the above.







            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited Apr 13 '17 at 12:23









            Community

            1




            1










            answered Mar 8 '12 at 19:22









            David OneillDavid Oneill

            5,874114366




            5,874114366























                0














                Most configs and personal files will be in /home. For example by default my GNOME theme, shell settings, Chromium history/bookmarks/etc., vimrc, bash_profile, and most settings carried over nicely.



                An important thing is to preserve permissions and timestamps. See Copy files without losing file/folder permissions The -a flag for rsync is ideal for this. Rsync is recommended for large file transfers.



                Also consider installing /home on a separate partition if you are just reinstalling the system on the same hard drive. What are the pros and cons of having a separate home partition?






                share|improve this answer




























                  0














                  Most configs and personal files will be in /home. For example by default my GNOME theme, shell settings, Chromium history/bookmarks/etc., vimrc, bash_profile, and most settings carried over nicely.



                  An important thing is to preserve permissions and timestamps. See Copy files without losing file/folder permissions The -a flag for rsync is ideal for this. Rsync is recommended for large file transfers.



                  Also consider installing /home on a separate partition if you are just reinstalling the system on the same hard drive. What are the pros and cons of having a separate home partition?






                  share|improve this answer


























                    0












                    0








                    0







                    Most configs and personal files will be in /home. For example by default my GNOME theme, shell settings, Chromium history/bookmarks/etc., vimrc, bash_profile, and most settings carried over nicely.



                    An important thing is to preserve permissions and timestamps. See Copy files without losing file/folder permissions The -a flag for rsync is ideal for this. Rsync is recommended for large file transfers.



                    Also consider installing /home on a separate partition if you are just reinstalling the system on the same hard drive. What are the pros and cons of having a separate home partition?






                    share|improve this answer













                    Most configs and personal files will be in /home. For example by default my GNOME theme, shell settings, Chromium history/bookmarks/etc., vimrc, bash_profile, and most settings carried over nicely.



                    An important thing is to preserve permissions and timestamps. See Copy files without losing file/folder permissions The -a flag for rsync is ideal for this. Rsync is recommended for large file transfers.



                    Also consider installing /home on a separate partition if you are just reinstalling the system on the same hard drive. What are the pros and cons of having a separate home partition?







                    share|improve this answer












                    share|improve this answer



                    share|improve this answer










                    answered Mar 25 at 1:02









                    qwrqwr

                    622719




                    622719























                        0














                        I was looking for an easier way of doing this and I found Aptik:




                        Aptik is a tool for migrating settings and data from one Linux
                        installation to another. It can be used while re-installing the
                        operating system, and when moving to next release of a Linux
                        distribution.




                        I just used it to migrate from an old laptop to a new one, both running Ubuntu 18.04. Seemed to work pretty well.






                        share|improve this answer




























                          0














                          I was looking for an easier way of doing this and I found Aptik:




                          Aptik is a tool for migrating settings and data from one Linux
                          installation to another. It can be used while re-installing the
                          operating system, and when moving to next release of a Linux
                          distribution.




                          I just used it to migrate from an old laptop to a new one, both running Ubuntu 18.04. Seemed to work pretty well.






                          share|improve this answer


























                            0












                            0








                            0







                            I was looking for an easier way of doing this and I found Aptik:




                            Aptik is a tool for migrating settings and data from one Linux
                            installation to another. It can be used while re-installing the
                            operating system, and when moving to next release of a Linux
                            distribution.




                            I just used it to migrate from an old laptop to a new one, both running Ubuntu 18.04. Seemed to work pretty well.






                            share|improve this answer













                            I was looking for an easier way of doing this and I found Aptik:




                            Aptik is a tool for migrating settings and data from one Linux
                            installation to another. It can be used while re-installing the
                            operating system, and when moving to next release of a Linux
                            distribution.




                            I just used it to migrate from an old laptop to a new one, both running Ubuntu 18.04. Seemed to work pretty well.







                            share|improve this answer












                            share|improve this answer



                            share|improve this answer










                            answered Mar 31 at 5:36









                            parsley72parsley72

                            125129




                            125129























                                -1














                                There are several utilities that can make direct copies of your file system and some (Norton Ghost for example) can adjust your partitions to adapt to the new disk. Software like this allows you to not only copy from disk to disk but also keep a separate, compressed backup for yourself in the future.



                                There's also the tool dd to do this, however it takes a bit more knowledge and research to produce the results that you would like.






                                share|improve this answer
























                                • There's also filezilla which works well.

                                  – ShadowMitia
                                  Mar 18 '15 at 17:02






                                • 1





                                  @ShadowMitia Clonezilla I guess you meant?

                                  – Mohammed Joraid
                                  Jul 16 '17 at 8:52











                                • Norton Ghost? No thanks we have rsync and gParted...

                                  – qwr
                                  Mar 23 at 23:28
















                                -1














                                There are several utilities that can make direct copies of your file system and some (Norton Ghost for example) can adjust your partitions to adapt to the new disk. Software like this allows you to not only copy from disk to disk but also keep a separate, compressed backup for yourself in the future.



                                There's also the tool dd to do this, however it takes a bit more knowledge and research to produce the results that you would like.






                                share|improve this answer
























                                • There's also filezilla which works well.

                                  – ShadowMitia
                                  Mar 18 '15 at 17:02






                                • 1





                                  @ShadowMitia Clonezilla I guess you meant?

                                  – Mohammed Joraid
                                  Jul 16 '17 at 8:52











                                • Norton Ghost? No thanks we have rsync and gParted...

                                  – qwr
                                  Mar 23 at 23:28














                                -1












                                -1








                                -1







                                There are several utilities that can make direct copies of your file system and some (Norton Ghost for example) can adjust your partitions to adapt to the new disk. Software like this allows you to not only copy from disk to disk but also keep a separate, compressed backup for yourself in the future.



                                There's also the tool dd to do this, however it takes a bit more knowledge and research to produce the results that you would like.






                                share|improve this answer













                                There are several utilities that can make direct copies of your file system and some (Norton Ghost for example) can adjust your partitions to adapt to the new disk. Software like this allows you to not only copy from disk to disk but also keep a separate, compressed backup for yourself in the future.



                                There's also the tool dd to do this, however it takes a bit more knowledge and research to produce the results that you would like.







                                share|improve this answer












                                share|improve this answer



                                share|improve this answer










                                answered Mar 8 '12 at 20:59









                                LinztmLinztm

                                46537




                                46537













                                • There's also filezilla which works well.

                                  – ShadowMitia
                                  Mar 18 '15 at 17:02






                                • 1





                                  @ShadowMitia Clonezilla I guess you meant?

                                  – Mohammed Joraid
                                  Jul 16 '17 at 8:52











                                • Norton Ghost? No thanks we have rsync and gParted...

                                  – qwr
                                  Mar 23 at 23:28



















                                • There's also filezilla which works well.

                                  – ShadowMitia
                                  Mar 18 '15 at 17:02






                                • 1





                                  @ShadowMitia Clonezilla I guess you meant?

                                  – Mohammed Joraid
                                  Jul 16 '17 at 8:52











                                • Norton Ghost? No thanks we have rsync and gParted...

                                  – qwr
                                  Mar 23 at 23:28

















                                There's also filezilla which works well.

                                – ShadowMitia
                                Mar 18 '15 at 17:02





                                There's also filezilla which works well.

                                – ShadowMitia
                                Mar 18 '15 at 17:02




                                1




                                1





                                @ShadowMitia Clonezilla I guess you meant?

                                – Mohammed Joraid
                                Jul 16 '17 at 8:52





                                @ShadowMitia Clonezilla I guess you meant?

                                – Mohammed Joraid
                                Jul 16 '17 at 8:52













                                Norton Ghost? No thanks we have rsync and gParted...

                                – qwr
                                Mar 23 at 23:28





                                Norton Ghost? No thanks we have rsync and gParted...

                                – qwr
                                Mar 23 at 23:28











                                -2














                                Remember that you can easily remove your hard disk from one machine to another without any problem.






                                share|improve this answer


























                                • Not necessarily, if the new system is a laptop and 1) the drive has a 3.5" form factor or 2) even with the right form factor all drive bays of the laptop are full.

                                  – David Foerster
                                  Mar 18 '15 at 18:06
















                                -2














                                Remember that you can easily remove your hard disk from one machine to another without any problem.






                                share|improve this answer


























                                • Not necessarily, if the new system is a laptop and 1) the drive has a 3.5" form factor or 2) even with the right form factor all drive bays of the laptop are full.

                                  – David Foerster
                                  Mar 18 '15 at 18:06














                                -2












                                -2








                                -2







                                Remember that you can easily remove your hard disk from one machine to another without any problem.






                                share|improve this answer















                                Remember that you can easily remove your hard disk from one machine to another without any problem.







                                share|improve this answer














                                share|improve this answer



                                share|improve this answer








                                edited Mar 18 '15 at 23:17









                                Aibara

                                6,14763359




                                6,14763359










                                answered Mar 18 '15 at 14:56









                                lhenry2klhenry2k

                                7




                                7













                                • Not necessarily, if the new system is a laptop and 1) the drive has a 3.5" form factor or 2) even with the right form factor all drive bays of the laptop are full.

                                  – David Foerster
                                  Mar 18 '15 at 18:06



















                                • Not necessarily, if the new system is a laptop and 1) the drive has a 3.5" form factor or 2) even with the right form factor all drive bays of the laptop are full.

                                  – David Foerster
                                  Mar 18 '15 at 18:06

















                                Not necessarily, if the new system is a laptop and 1) the drive has a 3.5" form factor or 2) even with the right form factor all drive bays of the laptop are full.

                                – David Foerster
                                Mar 18 '15 at 18:06





                                Not necessarily, if the new system is a laptop and 1) the drive has a 3.5" form factor or 2) even with the right form factor all drive bays of the laptop are full.

                                – David Foerster
                                Mar 18 '15 at 18:06


















                                draft saved

                                draft discarded




















































                                Thanks for contributing an answer to Ask Ubuntu!


                                • 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%2faskubuntu.com%2fquestions%2f111236%2fhow-to-migrate-the-whole-system-to-a-new-machine%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

                                How did Captain America manage to do this?

                                迪纳利

                                南乌拉尔铁路局