Copying from one filesystem to another while preserving file attributes












0















I am trying to copy the contents of one filesystem to another while preserving file ownership and permissions. I am currently trying



sudo cp -pR /media/myself/fs1/* /media/myself/fs2/


The copy job is still in progress but I am seeing that the first top-level dir on the target belongs to root, while the original belongs to my user account.



(Actually fs1 was from another computer but user IDs coincidentally match.)



fs1 is ext4 while fs2 is btrfs. Both are external hard disks, auto-mounted by Ubuntu after I plugged them in.



How can I ensure all numeric owner and group IDs (including those not found on the workstation used for the copy job), as well as permissions, are preserved?










share|improve this question



























    0















    I am trying to copy the contents of one filesystem to another while preserving file ownership and permissions. I am currently trying



    sudo cp -pR /media/myself/fs1/* /media/myself/fs2/


    The copy job is still in progress but I am seeing that the first top-level dir on the target belongs to root, while the original belongs to my user account.



    (Actually fs1 was from another computer but user IDs coincidentally match.)



    fs1 is ext4 while fs2 is btrfs. Both are external hard disks, auto-mounted by Ubuntu after I plugged them in.



    How can I ensure all numeric owner and group IDs (including those not found on the workstation used for the copy job), as well as permissions, are preserved?










    share|improve this question

























      0












      0








      0








      I am trying to copy the contents of one filesystem to another while preserving file ownership and permissions. I am currently trying



      sudo cp -pR /media/myself/fs1/* /media/myself/fs2/


      The copy job is still in progress but I am seeing that the first top-level dir on the target belongs to root, while the original belongs to my user account.



      (Actually fs1 was from another computer but user IDs coincidentally match.)



      fs1 is ext4 while fs2 is btrfs. Both are external hard disks, auto-mounted by Ubuntu after I plugged them in.



      How can I ensure all numeric owner and group IDs (including those not found on the workstation used for the copy job), as well as permissions, are preserved?










      share|improve this question














      I am trying to copy the contents of one filesystem to another while preserving file ownership and permissions. I am currently trying



      sudo cp -pR /media/myself/fs1/* /media/myself/fs2/


      The copy job is still in progress but I am seeing that the first top-level dir on the target belongs to root, while the original belongs to my user account.



      (Actually fs1 was from another computer but user IDs coincidentally match.)



      fs1 is ext4 while fs2 is btrfs. Both are external hard disks, auto-mounted by Ubuntu after I plugged them in.



      How can I ensure all numeric owner and group IDs (including those not found on the workstation used for the copy job), as well as permissions, are preserved?







      permissions filesystem copy






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Jan 15 at 17:20









      user149408user149408

      581715




      581715






















          1 Answer
          1






          active

          oldest

          votes


















          0














          As a workaround, since I am on a desktop system, I am now using Unison (with sudo) to do the copying, with the following profile:



          label = Disk content migration
          root = /media/myself/fs1
          root = /media/myself/fs2
          owner = true
          numericids = true
          group = true
          dontchmod = false
          noupdate = /media/myself/fs1
          perms = -1
          times = true


          owner and group are options to sync owner and group, respectively. numericids tells Unison to use numeric IDs rather than user names.



          dontchmod and perms instruct Unison to sync all permissions, including setuid/setgid (which is desired here, as I am preparing a replacement disk with a different filesystem).



          times tells Unison to sync timestamps.



          noupdate with the path to the original volume prevents Unison from accidentally modifying the original filesystem.






          share|improve this answer

























            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%2f1110008%2fcopying-from-one-filesystem-to-another-while-preserving-file-attributes%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0














            As a workaround, since I am on a desktop system, I am now using Unison (with sudo) to do the copying, with the following profile:



            label = Disk content migration
            root = /media/myself/fs1
            root = /media/myself/fs2
            owner = true
            numericids = true
            group = true
            dontchmod = false
            noupdate = /media/myself/fs1
            perms = -1
            times = true


            owner and group are options to sync owner and group, respectively. numericids tells Unison to use numeric IDs rather than user names.



            dontchmod and perms instruct Unison to sync all permissions, including setuid/setgid (which is desired here, as I am preparing a replacement disk with a different filesystem).



            times tells Unison to sync timestamps.



            noupdate with the path to the original volume prevents Unison from accidentally modifying the original filesystem.






            share|improve this answer






























              0














              As a workaround, since I am on a desktop system, I am now using Unison (with sudo) to do the copying, with the following profile:



              label = Disk content migration
              root = /media/myself/fs1
              root = /media/myself/fs2
              owner = true
              numericids = true
              group = true
              dontchmod = false
              noupdate = /media/myself/fs1
              perms = -1
              times = true


              owner and group are options to sync owner and group, respectively. numericids tells Unison to use numeric IDs rather than user names.



              dontchmod and perms instruct Unison to sync all permissions, including setuid/setgid (which is desired here, as I am preparing a replacement disk with a different filesystem).



              times tells Unison to sync timestamps.



              noupdate with the path to the original volume prevents Unison from accidentally modifying the original filesystem.






              share|improve this answer




























                0












                0








                0







                As a workaround, since I am on a desktop system, I am now using Unison (with sudo) to do the copying, with the following profile:



                label = Disk content migration
                root = /media/myself/fs1
                root = /media/myself/fs2
                owner = true
                numericids = true
                group = true
                dontchmod = false
                noupdate = /media/myself/fs1
                perms = -1
                times = true


                owner and group are options to sync owner and group, respectively. numericids tells Unison to use numeric IDs rather than user names.



                dontchmod and perms instruct Unison to sync all permissions, including setuid/setgid (which is desired here, as I am preparing a replacement disk with a different filesystem).



                times tells Unison to sync timestamps.



                noupdate with the path to the original volume prevents Unison from accidentally modifying the original filesystem.






                share|improve this answer















                As a workaround, since I am on a desktop system, I am now using Unison (with sudo) to do the copying, with the following profile:



                label = Disk content migration
                root = /media/myself/fs1
                root = /media/myself/fs2
                owner = true
                numericids = true
                group = true
                dontchmod = false
                noupdate = /media/myself/fs1
                perms = -1
                times = true


                owner and group are options to sync owner and group, respectively. numericids tells Unison to use numeric IDs rather than user names.



                dontchmod and perms instruct Unison to sync all permissions, including setuid/setgid (which is desired here, as I am preparing a replacement disk with a different filesystem).



                times tells Unison to sync timestamps.



                noupdate with the path to the original volume prevents Unison from accidentally modifying the original filesystem.







                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited Jan 15 at 17:58

























                answered Jan 15 at 17:20









                user149408user149408

                581715




                581715






























                    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%2f1110008%2fcopying-from-one-filesystem-to-another-while-preserving-file-attributes%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

                    Biblatex bibliography style without URLs when DOI exists (in Overleaf with Zotero bibliography)

                    ComboBox Display Member on multiple fields

                    Is it possible to collect Nectar points via Trainline?