rsync to remote directory












2















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?










share|improve this question




















  • 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


















2















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?










share|improve this question




















  • 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
















2












2








2








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?










share|improve this question
















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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. 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
















  • 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










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












2 Answers
2






active

oldest

votes


















6














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/





share|improve this answer





















  • 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














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?






share|improve this answer























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


    }
    });














    draft saved

    draft discarded


















    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









    6














    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/





    share|improve this answer





















    • 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
















    6














    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/





    share|improve this answer





















    • 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














    6












    6








    6







    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/





    share|improve this answer















    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/






    share|improve this answer














    share|improve this answer



    share|improve this answer








    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














    • 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













    1














    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?






    share|improve this answer




























      1














      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?






      share|improve this answer


























        1












        1








        1







        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?






        share|improve this answer













        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?







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Jan 26 at 16:33









        JohnPJohnP

        53655




        53655






























            draft saved

            draft discarded




















































            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.




            draft saved


            draft discarded














            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





















































            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

            MongoDB - Not Authorized To Execute Command

            How to fix TextFormField cause rebuild widget in Flutter

            in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith