rsync to remote directory
I tried to update the home directory to a backup computer as
rsync -avru --exclude-from='/home/me/exclude-me.txt' /home/me/* assistant@assistant.local:/home/assistant/* -p 2222
but get an error
Unexpected remote arg: assistant@assistant.local:
rsync error: syntax or usage error (code 1) at main.c(1361) [sender=3.1.2]
What's the problem with my codes?
ssh rsync
add a comment |
I tried to update the home directory to a backup computer as
rsync -avru --exclude-from='/home/me/exclude-me.txt' /home/me/* assistant@assistant.local:/home/assistant/* -p 2222
but get an error
Unexpected remote arg: assistant@assistant.local:
rsync error: syntax or usage error (code 1) at main.c(1361) [sender=3.1.2]
What's the problem with my codes?
ssh rsync
2
I guess it is the-p 2222
which I think is intended to use port 2222 for SSH. inrsync
the option-p
is different and SSH arguments should bepassed as-e 'ssh -p 2234'
forrsync
.
– Thomas
Jan 26 at 10:45
add a comment |
I tried to update the home directory to a backup computer as
rsync -avru --exclude-from='/home/me/exclude-me.txt' /home/me/* assistant@assistant.local:/home/assistant/* -p 2222
but get an error
Unexpected remote arg: assistant@assistant.local:
rsync error: syntax or usage error (code 1) at main.c(1361) [sender=3.1.2]
What's the problem with my codes?
ssh rsync
I tried to update the home directory to a backup computer as
rsync -avru --exclude-from='/home/me/exclude-me.txt' /home/me/* assistant@assistant.local:/home/assistant/* -p 2222
but get an error
Unexpected remote arg: assistant@assistant.local:
rsync error: syntax or usage error (code 1) at main.c(1361) [sender=3.1.2]
What's the problem with my codes?
ssh rsync
ssh rsync
edited Jan 26 at 11:16


pa4080
14.6k52872
14.6k52872
asked Jan 26 at 9:26


AliceAlice
557111
557111
2
I guess it is the-p 2222
which I think is intended to use port 2222 for SSH. inrsync
the option-p
is different and SSH arguments should bepassed as-e 'ssh -p 2234'
forrsync
.
– Thomas
Jan 26 at 10:45
add a comment |
2
I guess it is the-p 2222
which I think is intended to use port 2222 for SSH. inrsync
the option-p
is different and SSH arguments should bepassed as-e 'ssh -p 2234'
forrsync
.
– Thomas
Jan 26 at 10:45
2
2
I guess it is the
-p 2222
which I think is intended to use port 2222 for SSH. in rsync
the option -p
is different and SSH arguments should bepassed as -e 'ssh -p 2234'
for rsync
.– Thomas
Jan 26 at 10:45
I guess it is the
-p 2222
which I think is intended to use port 2222 for SSH. in rsync
the option -p
is different and SSH arguments should bepassed as -e 'ssh -p 2234'
for rsync
.– Thomas
Jan 26 at 10:45
add a comment |
2 Answers
2
active
oldest
votes
For rsync
the -p
option means to preserve permissions and does not take an argument. Therefore your command cannot be parsed correctly and you get an error.
If you want to change the SSH port on which rsync
should connect, use the command as follows.
rsync -avru --exclude-from='/home/me/exclude-me.txt' -e 'ssh -p 2222'
/home/me/
assistant@assistant.local:/home/assistant/
1
To simplify my further work, I would create~/.ssh/config
file as it is shown here: askubuntu.com/a/1111996/566421.
– pa4080
Jan 26 at 11:21
add a comment |
The target shouldn't have any wildcards. Best to learn to use the trailing /, or not, as needed.
-p in rsync is permissions, not port. From the manpage:
-p, --perms preserve permissions
rsync has used ssh for remote connections by default for at least a decade. No need to specify -e anything. The port can be added to the URL - userid@remote-server:port/path/to/target/ . If the userid is the same as the source machine, it isn't needed.
Since ssh is used by default, using the ~/.ssh/config file to handle non-standard settings like alternate ports, different userids, or different keys makes rsync commands simpler. It is handy for using a name when either the DNS name is ugly or only IPs are possible too. I find the config file is a good way to document, in a useful, all the foreign systems where I have accounts, logins, and use non-standard ports.
There are two different ways for rsync to contact a remote system:
using a remote-shell program as the transport (such as ssh or rsh) or
contacting an rsync daemon directly via TCP. The remote-shell transâ
port is used whenever the source or destination path contains a single
colon (:) separator after a host specification.
But this is more about ssh-fu, than rsync-fu.
The rsync manpage is extremely comprehensive. Many people find that explainshell.com is helpful for complex commands like rsync or find. If you plug the original command into explainshell, the -p jumps out as an issue.
So, after the above simplifications (especially using the ~/.ssh/config file, the commands becomes:
$ rsync -avru --exclude-from='/home/me/exclude-me.txt' ~/* assistant@assistant.local:2222/home/assistant/
I would put the userid, unfriendly hostname, port into the config and do it this way:
$ rsync -avz --exclude-from='/home/me/exclude-me.txt' ~/ backsrv:
The ~/* or /home/me/* will miss anything that begins with a period, like config files and the ~/.config/ directory. If you want those, and you should, then a specific regex is needed OR just use /home/me as the source without any regex pattern. See above.
Note how I didn't specify any directory on the target? By default, the userid's HOME is used.
And don't forget about the --dry-run option:
-n, --dry-run perform a trial run with no
changes made
If the goal is for a daily backup, perhaps using a tool with versioned backups would make sense?
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%2f1113014%2frsync-to-remote-directory%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
For rsync
the -p
option means to preserve permissions and does not take an argument. Therefore your command cannot be parsed correctly and you get an error.
If you want to change the SSH port on which rsync
should connect, use the command as follows.
rsync -avru --exclude-from='/home/me/exclude-me.txt' -e 'ssh -p 2222'
/home/me/
assistant@assistant.local:/home/assistant/
1
To simplify my further work, I would create~/.ssh/config
file as it is shown here: askubuntu.com/a/1111996/566421.
– pa4080
Jan 26 at 11:21
add a comment |
For rsync
the -p
option means to preserve permissions and does not take an argument. Therefore your command cannot be parsed correctly and you get an error.
If you want to change the SSH port on which rsync
should connect, use the command as follows.
rsync -avru --exclude-from='/home/me/exclude-me.txt' -e 'ssh -p 2222'
/home/me/
assistant@assistant.local:/home/assistant/
1
To simplify my further work, I would create~/.ssh/config
file as it is shown here: askubuntu.com/a/1111996/566421.
– pa4080
Jan 26 at 11:21
add a comment |
For rsync
the -p
option means to preserve permissions and does not take an argument. Therefore your command cannot be parsed correctly and you get an error.
If you want to change the SSH port on which rsync
should connect, use the command as follows.
rsync -avru --exclude-from='/home/me/exclude-me.txt' -e 'ssh -p 2222'
/home/me/
assistant@assistant.local:/home/assistant/
For rsync
the -p
option means to preserve permissions and does not take an argument. Therefore your command cannot be parsed correctly and you get an error.
If you want to change the SSH port on which rsync
should connect, use the command as follows.
rsync -avru --exclude-from='/home/me/exclude-me.txt' -e 'ssh -p 2222'
/home/me/
assistant@assistant.local:/home/assistant/
edited Jan 26 at 11:16


pa4080
14.6k52872
14.6k52872
answered Jan 26 at 10:49
ThomasThomas
3,86481527
3,86481527
1
To simplify my further work, I would create~/.ssh/config
file as it is shown here: askubuntu.com/a/1111996/566421.
– pa4080
Jan 26 at 11:21
add a comment |
1
To simplify my further work, I would create~/.ssh/config
file as it is shown here: askubuntu.com/a/1111996/566421.
– pa4080
Jan 26 at 11:21
1
1
To simplify my further work, I would create
~/.ssh/config
file as it is shown here: askubuntu.com/a/1111996/566421.– pa4080
Jan 26 at 11:21
To simplify my further work, I would create
~/.ssh/config
file as it is shown here: askubuntu.com/a/1111996/566421.– pa4080
Jan 26 at 11:21
add a comment |
The target shouldn't have any wildcards. Best to learn to use the trailing /, or not, as needed.
-p in rsync is permissions, not port. From the manpage:
-p, --perms preserve permissions
rsync has used ssh for remote connections by default for at least a decade. No need to specify -e anything. The port can be added to the URL - userid@remote-server:port/path/to/target/ . If the userid is the same as the source machine, it isn't needed.
Since ssh is used by default, using the ~/.ssh/config file to handle non-standard settings like alternate ports, different userids, or different keys makes rsync commands simpler. It is handy for using a name when either the DNS name is ugly or only IPs are possible too. I find the config file is a good way to document, in a useful, all the foreign systems where I have accounts, logins, and use non-standard ports.
There are two different ways for rsync to contact a remote system:
using a remote-shell program as the transport (such as ssh or rsh) or
contacting an rsync daemon directly via TCP. The remote-shell transâ
port is used whenever the source or destination path contains a single
colon (:) separator after a host specification.
But this is more about ssh-fu, than rsync-fu.
The rsync manpage is extremely comprehensive. Many people find that explainshell.com is helpful for complex commands like rsync or find. If you plug the original command into explainshell, the -p jumps out as an issue.
So, after the above simplifications (especially using the ~/.ssh/config file, the commands becomes:
$ rsync -avru --exclude-from='/home/me/exclude-me.txt' ~/* assistant@assistant.local:2222/home/assistant/
I would put the userid, unfriendly hostname, port into the config and do it this way:
$ rsync -avz --exclude-from='/home/me/exclude-me.txt' ~/ backsrv:
The ~/* or /home/me/* will miss anything that begins with a period, like config files and the ~/.config/ directory. If you want those, and you should, then a specific regex is needed OR just use /home/me as the source without any regex pattern. See above.
Note how I didn't specify any directory on the target? By default, the userid's HOME is used.
And don't forget about the --dry-run option:
-n, --dry-run perform a trial run with no
changes made
If the goal is for a daily backup, perhaps using a tool with versioned backups would make sense?
add a comment |
The target shouldn't have any wildcards. Best to learn to use the trailing /, or not, as needed.
-p in rsync is permissions, not port. From the manpage:
-p, --perms preserve permissions
rsync has used ssh for remote connections by default for at least a decade. No need to specify -e anything. The port can be added to the URL - userid@remote-server:port/path/to/target/ . If the userid is the same as the source machine, it isn't needed.
Since ssh is used by default, using the ~/.ssh/config file to handle non-standard settings like alternate ports, different userids, or different keys makes rsync commands simpler. It is handy for using a name when either the DNS name is ugly or only IPs are possible too. I find the config file is a good way to document, in a useful, all the foreign systems where I have accounts, logins, and use non-standard ports.
There are two different ways for rsync to contact a remote system:
using a remote-shell program as the transport (such as ssh or rsh) or
contacting an rsync daemon directly via TCP. The remote-shell transâ
port is used whenever the source or destination path contains a single
colon (:) separator after a host specification.
But this is more about ssh-fu, than rsync-fu.
The rsync manpage is extremely comprehensive. Many people find that explainshell.com is helpful for complex commands like rsync or find. If you plug the original command into explainshell, the -p jumps out as an issue.
So, after the above simplifications (especially using the ~/.ssh/config file, the commands becomes:
$ rsync -avru --exclude-from='/home/me/exclude-me.txt' ~/* assistant@assistant.local:2222/home/assistant/
I would put the userid, unfriendly hostname, port into the config and do it this way:
$ rsync -avz --exclude-from='/home/me/exclude-me.txt' ~/ backsrv:
The ~/* or /home/me/* will miss anything that begins with a period, like config files and the ~/.config/ directory. If you want those, and you should, then a specific regex is needed OR just use /home/me as the source without any regex pattern. See above.
Note how I didn't specify any directory on the target? By default, the userid's HOME is used.
And don't forget about the --dry-run option:
-n, --dry-run perform a trial run with no
changes made
If the goal is for a daily backup, perhaps using a tool with versioned backups would make sense?
add a comment |
The target shouldn't have any wildcards. Best to learn to use the trailing /, or not, as needed.
-p in rsync is permissions, not port. From the manpage:
-p, --perms preserve permissions
rsync has used ssh for remote connections by default for at least a decade. No need to specify -e anything. The port can be added to the URL - userid@remote-server:port/path/to/target/ . If the userid is the same as the source machine, it isn't needed.
Since ssh is used by default, using the ~/.ssh/config file to handle non-standard settings like alternate ports, different userids, or different keys makes rsync commands simpler. It is handy for using a name when either the DNS name is ugly or only IPs are possible too. I find the config file is a good way to document, in a useful, all the foreign systems where I have accounts, logins, and use non-standard ports.
There are two different ways for rsync to contact a remote system:
using a remote-shell program as the transport (such as ssh or rsh) or
contacting an rsync daemon directly via TCP. The remote-shell transâ
port is used whenever the source or destination path contains a single
colon (:) separator after a host specification.
But this is more about ssh-fu, than rsync-fu.
The rsync manpage is extremely comprehensive. Many people find that explainshell.com is helpful for complex commands like rsync or find. If you plug the original command into explainshell, the -p jumps out as an issue.
So, after the above simplifications (especially using the ~/.ssh/config file, the commands becomes:
$ rsync -avru --exclude-from='/home/me/exclude-me.txt' ~/* assistant@assistant.local:2222/home/assistant/
I would put the userid, unfriendly hostname, port into the config and do it this way:
$ rsync -avz --exclude-from='/home/me/exclude-me.txt' ~/ backsrv:
The ~/* or /home/me/* will miss anything that begins with a period, like config files and the ~/.config/ directory. If you want those, and you should, then a specific regex is needed OR just use /home/me as the source without any regex pattern. See above.
Note how I didn't specify any directory on the target? By default, the userid's HOME is used.
And don't forget about the --dry-run option:
-n, --dry-run perform a trial run with no
changes made
If the goal is for a daily backup, perhaps using a tool with versioned backups would make sense?
The target shouldn't have any wildcards. Best to learn to use the trailing /, or not, as needed.
-p in rsync is permissions, not port. From the manpage:
-p, --perms preserve permissions
rsync has used ssh for remote connections by default for at least a decade. No need to specify -e anything. The port can be added to the URL - userid@remote-server:port/path/to/target/ . If the userid is the same as the source machine, it isn't needed.
Since ssh is used by default, using the ~/.ssh/config file to handle non-standard settings like alternate ports, different userids, or different keys makes rsync commands simpler. It is handy for using a name when either the DNS name is ugly or only IPs are possible too. I find the config file is a good way to document, in a useful, all the foreign systems where I have accounts, logins, and use non-standard ports.
There are two different ways for rsync to contact a remote system:
using a remote-shell program as the transport (such as ssh or rsh) or
contacting an rsync daemon directly via TCP. The remote-shell transâ
port is used whenever the source or destination path contains a single
colon (:) separator after a host specification.
But this is more about ssh-fu, than rsync-fu.
The rsync manpage is extremely comprehensive. Many people find that explainshell.com is helpful for complex commands like rsync or find. If you plug the original command into explainshell, the -p jumps out as an issue.
So, after the above simplifications (especially using the ~/.ssh/config file, the commands becomes:
$ rsync -avru --exclude-from='/home/me/exclude-me.txt' ~/* assistant@assistant.local:2222/home/assistant/
I would put the userid, unfriendly hostname, port into the config and do it this way:
$ rsync -avz --exclude-from='/home/me/exclude-me.txt' ~/ backsrv:
The ~/* or /home/me/* will miss anything that begins with a period, like config files and the ~/.config/ directory. If you want those, and you should, then a specific regex is needed OR just use /home/me as the source without any regex pattern. See above.
Note how I didn't specify any directory on the target? By default, the userid's HOME is used.
And don't forget about the --dry-run option:
-n, --dry-run perform a trial run with no
changes made
If the goal is for a daily backup, perhaps using a tool with versioned backups would make sense?
answered Jan 26 at 16:33
JohnPJohnP
53655
53655
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%2f1113014%2frsync-to-remote-directory%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
2
I guess it is the
-p 2222
which I think is intended to use port 2222 for SSH. inrsync
the option-p
is different and SSH arguments should bepassed as-e 'ssh -p 2234'
forrsync
.– Thomas
Jan 26 at 10:45