rsync not quitting and running next rsync

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP












0















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?










share|improve this question






















  • 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
















0















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?










share|improve this question






















  • 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














0












0








0








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?










share|improve this question














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






share|improve this question













share|improve this question











share|improve this question




share|improve this question










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


















  • 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











1 Answer
1






active

oldest

votes


















0














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.






share|improve this answer




















  • 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










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
);



);













draft saved

draft discarded


















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









0














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.






share|improve this answer




















  • 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















0














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.






share|improve this answer




















  • 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













0












0








0







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.






share|improve this answer















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.







share|improve this answer














share|improve this answer



share|improve this answer








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












  • 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

















draft saved

draft discarded
















































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.




draft saved


draft discarded














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





















































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

How to check contact read email or not when send email to Individual?

Bahrain

Postfix configuration issue with fips on centos 7; mailgun relay