Can Rsync be used to copy files in a ntfs partition to another ntfs partition?
I bought a new hard disk and wanted to copy all files in a ntfs partition to another ntfs partition. These files are pdf files and bak files used both by win7 and ubuntu.
Can Rsync be used to sync files in a ntfs partition to another ntfs partition?
Thanks
ntfs rsync
add a comment |
I bought a new hard disk and wanted to copy all files in a ntfs partition to another ntfs partition. These files are pdf files and bak files used both by win7 and ubuntu.
Can Rsync be used to sync files in a ntfs partition to another ntfs partition?
Thanks
ntfs rsync
What exactly do you mean by "sync"?
– Takkat
Aug 3 '13 at 5:42
If you mount both source and destination NTFS pertitions on your Ubuntu machine, I doubt thatrsync
will care about the underlying filesystems. Have you tried it and failed?
– Marios Zindilis
Aug 3 '13 at 5:54
add a comment |
I bought a new hard disk and wanted to copy all files in a ntfs partition to another ntfs partition. These files are pdf files and bak files used both by win7 and ubuntu.
Can Rsync be used to sync files in a ntfs partition to another ntfs partition?
Thanks
ntfs rsync
I bought a new hard disk and wanted to copy all files in a ntfs partition to another ntfs partition. These files are pdf files and bak files used both by win7 and ubuntu.
Can Rsync be used to sync files in a ntfs partition to another ntfs partition?
Thanks
ntfs rsync
ntfs rsync
edited Aug 3 '13 at 7:28
waterloo2005
asked Aug 3 '13 at 4:37
waterloo2005waterloo2005
88782040
88782040
What exactly do you mean by "sync"?
– Takkat
Aug 3 '13 at 5:42
If you mount both source and destination NTFS pertitions on your Ubuntu machine, I doubt thatrsync
will care about the underlying filesystems. Have you tried it and failed?
– Marios Zindilis
Aug 3 '13 at 5:54
add a comment |
What exactly do you mean by "sync"?
– Takkat
Aug 3 '13 at 5:42
If you mount both source and destination NTFS pertitions on your Ubuntu machine, I doubt thatrsync
will care about the underlying filesystems. Have you tried it and failed?
– Marios Zindilis
Aug 3 '13 at 5:54
What exactly do you mean by "sync"?
– Takkat
Aug 3 '13 at 5:42
What exactly do you mean by "sync"?
– Takkat
Aug 3 '13 at 5:42
If you mount both source and destination NTFS pertitions on your Ubuntu machine, I doubt that
rsync
will care about the underlying filesystems. Have you tried it and failed?– Marios Zindilis
Aug 3 '13 at 5:54
If you mount both source and destination NTFS pertitions on your Ubuntu machine, I doubt that
rsync
will care about the underlying filesystems. Have you tried it and failed?– Marios Zindilis
Aug 3 '13 at 5:54
add a comment |
3 Answers
3
active
oldest
votes
rsync is originally unix utility to sync source and destination. Now rsync is even ported to windows as well. You may need cygwin or mingw on windows machine for the same.
Only condition is that both operating system should see each other's filesystem and ssh should be enabled both side.
rsync -avz -e ssh /cygwin/c/song.mp3 root@192.168.56.101:/data
add a comment |
You can install rsync in cygwin on Windows and do the data copy. Just like you are in a *NIX terminal session.
The path naming is a bit different.
For example, if you want to copy all data from partition E:
to F:
=> rsync -av --progress --stats /cygdrive/e /cygdrive/f
BTW: Not sure if rsync for cygwin is capable of keeping all the NTFS properties/attributes. Most likely yes. But it loese attributes, permissions when copying from NTFS -> *NIX file systems.
add a comment |
You can also do the sync in Ubuntu. You do not need specific options. Just use the -a (or --archive) option like you would do for a mirror copy from linux file systems to linux file systems.
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%2f328095%2fcan-rsync-be-used-to-copy-files-in-a-ntfs-partition-to-another-ntfs-partition%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
rsync is originally unix utility to sync source and destination. Now rsync is even ported to windows as well. You may need cygwin or mingw on windows machine for the same.
Only condition is that both operating system should see each other's filesystem and ssh should be enabled both side.
rsync -avz -e ssh /cygwin/c/song.mp3 root@192.168.56.101:/data
add a comment |
rsync is originally unix utility to sync source and destination. Now rsync is even ported to windows as well. You may need cygwin or mingw on windows machine for the same.
Only condition is that both operating system should see each other's filesystem and ssh should be enabled both side.
rsync -avz -e ssh /cygwin/c/song.mp3 root@192.168.56.101:/data
add a comment |
rsync is originally unix utility to sync source and destination. Now rsync is even ported to windows as well. You may need cygwin or mingw on windows machine for the same.
Only condition is that both operating system should see each other's filesystem and ssh should be enabled both side.
rsync -avz -e ssh /cygwin/c/song.mp3 root@192.168.56.101:/data
rsync is originally unix utility to sync source and destination. Now rsync is even ported to windows as well. You may need cygwin or mingw on windows machine for the same.
Only condition is that both operating system should see each other's filesystem and ssh should be enabled both side.
rsync -avz -e ssh /cygwin/c/song.mp3 root@192.168.56.101:/data
answered Aug 3 '13 at 6:29
NitinNitin
562
562
add a comment |
add a comment |
You can install rsync in cygwin on Windows and do the data copy. Just like you are in a *NIX terminal session.
The path naming is a bit different.
For example, if you want to copy all data from partition E:
to F:
=> rsync -av --progress --stats /cygdrive/e /cygdrive/f
BTW: Not sure if rsync for cygwin is capable of keeping all the NTFS properties/attributes. Most likely yes. But it loese attributes, permissions when copying from NTFS -> *NIX file systems.
add a comment |
You can install rsync in cygwin on Windows and do the data copy. Just like you are in a *NIX terminal session.
The path naming is a bit different.
For example, if you want to copy all data from partition E:
to F:
=> rsync -av --progress --stats /cygdrive/e /cygdrive/f
BTW: Not sure if rsync for cygwin is capable of keeping all the NTFS properties/attributes. Most likely yes. But it loese attributes, permissions when copying from NTFS -> *NIX file systems.
add a comment |
You can install rsync in cygwin on Windows and do the data copy. Just like you are in a *NIX terminal session.
The path naming is a bit different.
For example, if you want to copy all data from partition E:
to F:
=> rsync -av --progress --stats /cygdrive/e /cygdrive/f
BTW: Not sure if rsync for cygwin is capable of keeping all the NTFS properties/attributes. Most likely yes. But it loese attributes, permissions when copying from NTFS -> *NIX file systems.
You can install rsync in cygwin on Windows and do the data copy. Just like you are in a *NIX terminal session.
The path naming is a bit different.
For example, if you want to copy all data from partition E:
to F:
=> rsync -av --progress --stats /cygdrive/e /cygdrive/f
BTW: Not sure if rsync for cygwin is capable of keeping all the NTFS properties/attributes. Most likely yes. But it loese attributes, permissions when copying from NTFS -> *NIX file systems.
answered Aug 5 '13 at 23:17
Terry WangTerry Wang
6,33932224
6,33932224
add a comment |
add a comment |
You can also do the sync in Ubuntu. You do not need specific options. Just use the -a (or --archive) option like you would do for a mirror copy from linux file systems to linux file systems.
add a comment |
You can also do the sync in Ubuntu. You do not need specific options. Just use the -a (or --archive) option like you would do for a mirror copy from linux file systems to linux file systems.
add a comment |
You can also do the sync in Ubuntu. You do not need specific options. Just use the -a (or --archive) option like you would do for a mirror copy from linux file systems to linux file systems.
You can also do the sync in Ubuntu. You do not need specific options. Just use the -a (or --archive) option like you would do for a mirror copy from linux file systems to linux file systems.
answered Aug 31 '18 at 8:45
vanadiumvanadium
5,50011229
5,50011229
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%2f328095%2fcan-rsync-be-used-to-copy-files-in-a-ntfs-partition-to-another-ntfs-partition%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
What exactly do you mean by "sync"?
– Takkat
Aug 3 '13 at 5:42
If you mount both source and destination NTFS pertitions on your Ubuntu machine, I doubt that
rsync
will care about the underlying filesystems. Have you tried it and failed?– Marios Zindilis
Aug 3 '13 at 5:54