Copying from one filesystem to another while preserving file attributes
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
add a comment |
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
add a comment |
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
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
permissions filesystem copy
asked Jan 15 at 17:20
user149408user149408
581715
581715
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
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.
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
add a comment |
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.
add a comment |
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.
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.
edited Jan 15 at 17:58
answered Jan 15 at 17:20
user149408user149408
581715
581715
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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