rsync not quitting and running next rsync
Clash Royale CLAN TAG#URR8PPP
I have a shell script that has 6 rsync commands. What it should do is run the first and then move on to the next. However, what it does right now is do the first once it is finished it'll hang and just say: receiving incremental file list
This is what the command looks like:
rsync -avzhe ssh user@sever.name.net:/dir/dir/dir/dir/dir/dir/* /dir/dir/dir/dir/
Why is it that the command just hangs like this instead of going to the next rsync command?
shell-script shell rsync
add a comment |
I have a shell script that has 6 rsync commands. What it should do is run the first and then move on to the next. However, what it does right now is do the first once it is finished it'll hang and just say: receiving incremental file list
This is what the command looks like:
rsync -avzhe ssh user@sever.name.net:/dir/dir/dir/dir/dir/dir/* /dir/dir/dir/dir/
Why is it that the command just hangs like this instead of going to the next rsync command?
shell-script shell rsync
Why do you have*
at the end of the source directory? What will that*
match, files or directories? Are there thousands of things in there that the*
will match? What happens if you remove the*
. Also, drop the-z
unless you have a very slow connection, and-e ssh
too (it's the default).
– Kusalananda
Jan 16 at 6:43
add a comment |
I have a shell script that has 6 rsync commands. What it should do is run the first and then move on to the next. However, what it does right now is do the first once it is finished it'll hang and just say: receiving incremental file list
This is what the command looks like:
rsync -avzhe ssh user@sever.name.net:/dir/dir/dir/dir/dir/dir/* /dir/dir/dir/dir/
Why is it that the command just hangs like this instead of going to the next rsync command?
shell-script shell rsync
I have a shell script that has 6 rsync commands. What it should do is run the first and then move on to the next. However, what it does right now is do the first once it is finished it'll hang and just say: receiving incremental file list
This is what the command looks like:
rsync -avzhe ssh user@sever.name.net:/dir/dir/dir/dir/dir/dir/* /dir/dir/dir/dir/
Why is it that the command just hangs like this instead of going to the next rsync command?
shell-script shell rsync
shell-script shell rsync
asked Jan 16 at 5:21
user2896120user2896120
1011
1011
Why do you have*
at the end of the source directory? What will that*
match, files or directories? Are there thousands of things in there that the*
will match? What happens if you remove the*
. Also, drop the-z
unless you have a very slow connection, and-e ssh
too (it's the default).
– Kusalananda
Jan 16 at 6:43
add a comment |
Why do you have*
at the end of the source directory? What will that*
match, files or directories? Are there thousands of things in there that the*
will match? What happens if you remove the*
. Also, drop the-z
unless you have a very slow connection, and-e ssh
too (it's the default).
– Kusalananda
Jan 16 at 6:43
Why do you have
*
at the end of the source directory? What will that *
match, files or directories? Are there thousands of things in there that the *
will match? What happens if you remove the *
. Also, drop the -z
unless you have a very slow connection, and -e ssh
too (it's the default).– Kusalananda
Jan 16 at 6:43
Why do you have
*
at the end of the source directory? What will that *
match, files or directories? Are there thousands of things in there that the *
will match? What happens if you remove the *
. Also, drop the -z
unless you have a very slow connection, and -e ssh
too (it's the default).– Kusalananda
Jan 16 at 6:43
add a comment |
1 Answer
1
active
oldest
votes
Drop the z perhaps its taking to long to compress if there are a lots of files.
Try rsync with just the options -avn see if there is any difference.
This of course assumes the normal things like being able to scp the files from that location to your current location and permissions etc.
1
With just -avh it gives me this error:Unexpected remote arg: user@server.name.net:/dir/dir/dir/dir/dir/dir/* rsync error: syntax or usage error (code 1) at main.c(1214) [sender=3.0.9]
when I do -avhe I still get receiving incremental file list
– user2896120
Jan 16 at 6:02
Try this. I use it too keep remote folders backed up and it works flawlessly running on a cronjob. rsync -arWPb username@serveraddress:/path/required/ /destination/required/
– Mark Kidd
Jan 16 at 6:05
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "106"
;
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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%2funix.stackexchange.com%2fquestions%2f494730%2frsync-not-quitting-and-running-next-rsync%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
Drop the z perhaps its taking to long to compress if there are a lots of files.
Try rsync with just the options -avn see if there is any difference.
This of course assumes the normal things like being able to scp the files from that location to your current location and permissions etc.
1
With just -avh it gives me this error:Unexpected remote arg: user@server.name.net:/dir/dir/dir/dir/dir/dir/* rsync error: syntax or usage error (code 1) at main.c(1214) [sender=3.0.9]
when I do -avhe I still get receiving incremental file list
– user2896120
Jan 16 at 6:02
Try this. I use it too keep remote folders backed up and it works flawlessly running on a cronjob. rsync -arWPb username@serveraddress:/path/required/ /destination/required/
– Mark Kidd
Jan 16 at 6:05
add a comment |
Drop the z perhaps its taking to long to compress if there are a lots of files.
Try rsync with just the options -avn see if there is any difference.
This of course assumes the normal things like being able to scp the files from that location to your current location and permissions etc.
1
With just -avh it gives me this error:Unexpected remote arg: user@server.name.net:/dir/dir/dir/dir/dir/dir/* rsync error: syntax or usage error (code 1) at main.c(1214) [sender=3.0.9]
when I do -avhe I still get receiving incremental file list
– user2896120
Jan 16 at 6:02
Try this. I use it too keep remote folders backed up and it works flawlessly running on a cronjob. rsync -arWPb username@serveraddress:/path/required/ /destination/required/
– Mark Kidd
Jan 16 at 6:05
add a comment |
Drop the z perhaps its taking to long to compress if there are a lots of files.
Try rsync with just the options -avn see if there is any difference.
This of course assumes the normal things like being able to scp the files from that location to your current location and permissions etc.
Drop the z perhaps its taking to long to compress if there are a lots of files.
Try rsync with just the options -avn see if there is any difference.
This of course assumes the normal things like being able to scp the files from that location to your current location and permissions etc.
edited Jan 16 at 6:38
answered Jan 16 at 5:56
Mark KiddMark Kidd
262
262
1
With just -avh it gives me this error:Unexpected remote arg: user@server.name.net:/dir/dir/dir/dir/dir/dir/* rsync error: syntax or usage error (code 1) at main.c(1214) [sender=3.0.9]
when I do -avhe I still get receiving incremental file list
– user2896120
Jan 16 at 6:02
Try this. I use it too keep remote folders backed up and it works flawlessly running on a cronjob. rsync -arWPb username@serveraddress:/path/required/ /destination/required/
– Mark Kidd
Jan 16 at 6:05
add a comment |
1
With just -avh it gives me this error:Unexpected remote arg: user@server.name.net:/dir/dir/dir/dir/dir/dir/* rsync error: syntax or usage error (code 1) at main.c(1214) [sender=3.0.9]
when I do -avhe I still get receiving incremental file list
– user2896120
Jan 16 at 6:02
Try this. I use it too keep remote folders backed up and it works flawlessly running on a cronjob. rsync -arWPb username@serveraddress:/path/required/ /destination/required/
– Mark Kidd
Jan 16 at 6:05
1
1
With just -avh it gives me this error:
Unexpected remote arg: user@server.name.net:/dir/dir/dir/dir/dir/dir/* rsync error: syntax or usage error (code 1) at main.c(1214) [sender=3.0.9]
when I do -avhe I still get receiving incremental file list– user2896120
Jan 16 at 6:02
With just -avh it gives me this error:
Unexpected remote arg: user@server.name.net:/dir/dir/dir/dir/dir/dir/* rsync error: syntax or usage error (code 1) at main.c(1214) [sender=3.0.9]
when I do -avhe I still get receiving incremental file list– user2896120
Jan 16 at 6:02
Try this. I use it too keep remote folders backed up and it works flawlessly running on a cronjob. rsync -arWPb username@serveraddress:/path/required/ /destination/required/
– Mark Kidd
Jan 16 at 6:05
Try this. I use it too keep remote folders backed up and it works flawlessly running on a cronjob. rsync -arWPb username@serveraddress:/path/required/ /destination/required/
– Mark Kidd
Jan 16 at 6:05
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- 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%2funix.stackexchange.com%2fquestions%2f494730%2frsync-not-quitting-and-running-next-rsync%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
Why do you have
*
at the end of the source directory? What will that*
match, files or directories? Are there thousands of things in there that the*
will match? What happens if you remove the*
. Also, drop the-z
unless you have a very slow connection, and-e ssh
too (it's the default).– Kusalananda
Jan 16 at 6:43