Copy files from a server via ssh to dropbox.












17















I have a user in a linux server (Debian) with ssh access, and have some files on it. I need to copy the files to my Dropbox. but I donot want to copy to my Dropbox in my PC and Laptop, I want to first copy to my Dropbox account directly then sync to my PC and Laptop. Is scp work?










share|improve this question


















  • 1





    I'm not totally sure I follow the question. Why not add Dropbox to the server? dropbox.com/install?os=lnx

    – wlraider70
    Apr 4 '13 at 20:14











  • @wlraider70 make an answer of your comment - it looks excellent.

    – guntbert
    Apr 4 '13 at 20:18
















17















I have a user in a linux server (Debian) with ssh access, and have some files on it. I need to copy the files to my Dropbox. but I donot want to copy to my Dropbox in my PC and Laptop, I want to first copy to my Dropbox account directly then sync to my PC and Laptop. Is scp work?










share|improve this question


















  • 1





    I'm not totally sure I follow the question. Why not add Dropbox to the server? dropbox.com/install?os=lnx

    – wlraider70
    Apr 4 '13 at 20:14











  • @wlraider70 make an answer of your comment - it looks excellent.

    – guntbert
    Apr 4 '13 at 20:18














17












17








17


8






I have a user in a linux server (Debian) with ssh access, and have some files on it. I need to copy the files to my Dropbox. but I donot want to copy to my Dropbox in my PC and Laptop, I want to first copy to my Dropbox account directly then sync to my PC and Laptop. Is scp work?










share|improve this question














I have a user in a linux server (Debian) with ssh access, and have some files on it. I need to copy the files to my Dropbox. but I donot want to copy to my Dropbox in my PC and Laptop, I want to first copy to my Dropbox account directly then sync to my PC and Laptop. Is scp work?







ssh dropbox scp






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Apr 4 '13 at 18:48









XbufferXbuffer

86114




86114








  • 1





    I'm not totally sure I follow the question. Why not add Dropbox to the server? dropbox.com/install?os=lnx

    – wlraider70
    Apr 4 '13 at 20:14











  • @wlraider70 make an answer of your comment - it looks excellent.

    – guntbert
    Apr 4 '13 at 20:18














  • 1





    I'm not totally sure I follow the question. Why not add Dropbox to the server? dropbox.com/install?os=lnx

    – wlraider70
    Apr 4 '13 at 20:14











  • @wlraider70 make an answer of your comment - it looks excellent.

    – guntbert
    Apr 4 '13 at 20:18








1




1





I'm not totally sure I follow the question. Why not add Dropbox to the server? dropbox.com/install?os=lnx

– wlraider70
Apr 4 '13 at 20:14





I'm not totally sure I follow the question. Why not add Dropbox to the server? dropbox.com/install?os=lnx

– wlraider70
Apr 4 '13 at 20:14













@wlraider70 make an answer of your comment - it looks excellent.

– guntbert
Apr 4 '13 at 20:18





@wlraider70 make an answer of your comment - it looks excellent.

– guntbert
Apr 4 '13 at 20:18










3 Answers
3






active

oldest

votes


















20














Here is a better option, a SHELL script that will allow you to upload/download/delete files from the terminal;



https://github.com/andreafabrizi/Dropbox-Uploader



Tested and works just great.






share|improve this answer



















  • 2





    Although it's a good option, I wouldn't like to install private stuff from someone else to rely my database backups on my server. The CLI looks like a better choice IMO.

    – mau
    Dec 16 '13 at 18:23



















4














Maybe
https://couchdrop.io/



The secure, easy to use Cloud scp and http upload server.



scp $filename $username@ssh.couchdrop.io:





share|improve this answer































    3














    Why not add Dropbox to the server?
    There is a CLI option if you need it.



    http://dropbox.com/install?os=lnx



    Try this:



    scp somefile username@server:/home/username/






    share|improve this answer


























    • I have no sudo permission ...

      – Xbuffer
      Apr 4 '13 at 21:19











    • In fact, you don't need sudo permissions. I just have installed on a linux server and it's working like a charm.

      – mau
      Dec 16 '13 at 18:21






    • 5





      Why not add Dropbox to the server? Because it may not be a private server where I do not want to download and sync all my local files.

      – cnvzmxcvmcx
      Jun 30 '14 at 3:13






    • 6





      The question here is not about syncing, it's about pushing. Installing Dropbox implies making all the files public, while the idea I detect here is to use Dropbox to backup file, or as a one-way push.

      – Chop
      Sep 29 '15 at 9:11











    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%2f277939%2fcopy-files-from-a-server-via-ssh-to-dropbox%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









    20














    Here is a better option, a SHELL script that will allow you to upload/download/delete files from the terminal;



    https://github.com/andreafabrizi/Dropbox-Uploader



    Tested and works just great.






    share|improve this answer



















    • 2





      Although it's a good option, I wouldn't like to install private stuff from someone else to rely my database backups on my server. The CLI looks like a better choice IMO.

      – mau
      Dec 16 '13 at 18:23
















    20














    Here is a better option, a SHELL script that will allow you to upload/download/delete files from the terminal;



    https://github.com/andreafabrizi/Dropbox-Uploader



    Tested and works just great.






    share|improve this answer



















    • 2





      Although it's a good option, I wouldn't like to install private stuff from someone else to rely my database backups on my server. The CLI looks like a better choice IMO.

      – mau
      Dec 16 '13 at 18:23














    20












    20








    20







    Here is a better option, a SHELL script that will allow you to upload/download/delete files from the terminal;



    https://github.com/andreafabrizi/Dropbox-Uploader



    Tested and works just great.






    share|improve this answer













    Here is a better option, a SHELL script that will allow you to upload/download/delete files from the terminal;



    https://github.com/andreafabrizi/Dropbox-Uploader



    Tested and works just great.







    share|improve this answer












    share|improve this answer



    share|improve this answer










    answered Jul 15 '13 at 14:08









    infinityinfinity

    30124




    30124








    • 2





      Although it's a good option, I wouldn't like to install private stuff from someone else to rely my database backups on my server. The CLI looks like a better choice IMO.

      – mau
      Dec 16 '13 at 18:23














    • 2





      Although it's a good option, I wouldn't like to install private stuff from someone else to rely my database backups on my server. The CLI looks like a better choice IMO.

      – mau
      Dec 16 '13 at 18:23








    2




    2





    Although it's a good option, I wouldn't like to install private stuff from someone else to rely my database backups on my server. The CLI looks like a better choice IMO.

    – mau
    Dec 16 '13 at 18:23





    Although it's a good option, I wouldn't like to install private stuff from someone else to rely my database backups on my server. The CLI looks like a better choice IMO.

    – mau
    Dec 16 '13 at 18:23













    4














    Maybe
    https://couchdrop.io/



    The secure, easy to use Cloud scp and http upload server.



    scp $filename $username@ssh.couchdrop.io:





    share|improve this answer




























      4














      Maybe
      https://couchdrop.io/



      The secure, easy to use Cloud scp and http upload server.



      scp $filename $username@ssh.couchdrop.io:





      share|improve this answer


























        4












        4








        4







        Maybe
        https://couchdrop.io/



        The secure, easy to use Cloud scp and http upload server.



        scp $filename $username@ssh.couchdrop.io:





        share|improve this answer













        Maybe
        https://couchdrop.io/



        The secure, easy to use Cloud scp and http upload server.



        scp $filename $username@ssh.couchdrop.io:






        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Mar 11 '17 at 18:54









        rzrrzr

        30639




        30639























            3














            Why not add Dropbox to the server?
            There is a CLI option if you need it.



            http://dropbox.com/install?os=lnx



            Try this:



            scp somefile username@server:/home/username/






            share|improve this answer


























            • I have no sudo permission ...

              – Xbuffer
              Apr 4 '13 at 21:19











            • In fact, you don't need sudo permissions. I just have installed on a linux server and it's working like a charm.

              – mau
              Dec 16 '13 at 18:21






            • 5





              Why not add Dropbox to the server? Because it may not be a private server where I do not want to download and sync all my local files.

              – cnvzmxcvmcx
              Jun 30 '14 at 3:13






            • 6





              The question here is not about syncing, it's about pushing. Installing Dropbox implies making all the files public, while the idea I detect here is to use Dropbox to backup file, or as a one-way push.

              – Chop
              Sep 29 '15 at 9:11
















            3














            Why not add Dropbox to the server?
            There is a CLI option if you need it.



            http://dropbox.com/install?os=lnx



            Try this:



            scp somefile username@server:/home/username/






            share|improve this answer


























            • I have no sudo permission ...

              – Xbuffer
              Apr 4 '13 at 21:19











            • In fact, you don't need sudo permissions. I just have installed on a linux server and it's working like a charm.

              – mau
              Dec 16 '13 at 18:21






            • 5





              Why not add Dropbox to the server? Because it may not be a private server where I do not want to download and sync all my local files.

              – cnvzmxcvmcx
              Jun 30 '14 at 3:13






            • 6





              The question here is not about syncing, it's about pushing. Installing Dropbox implies making all the files public, while the idea I detect here is to use Dropbox to backup file, or as a one-way push.

              – Chop
              Sep 29 '15 at 9:11














            3












            3








            3







            Why not add Dropbox to the server?
            There is a CLI option if you need it.



            http://dropbox.com/install?os=lnx



            Try this:



            scp somefile username@server:/home/username/






            share|improve this answer















            Why not add Dropbox to the server?
            There is a CLI option if you need it.



            http://dropbox.com/install?os=lnx



            Try this:



            scp somefile username@server:/home/username/







            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited Jan 3 at 11:15









            Carlos Alberto Martínez Gadea

            1257




            1257










            answered Apr 4 '13 at 20:24









            wlraider70wlraider70

            1,3681023




            1,3681023













            • I have no sudo permission ...

              – Xbuffer
              Apr 4 '13 at 21:19











            • In fact, you don't need sudo permissions. I just have installed on a linux server and it's working like a charm.

              – mau
              Dec 16 '13 at 18:21






            • 5





              Why not add Dropbox to the server? Because it may not be a private server where I do not want to download and sync all my local files.

              – cnvzmxcvmcx
              Jun 30 '14 at 3:13






            • 6





              The question here is not about syncing, it's about pushing. Installing Dropbox implies making all the files public, while the idea I detect here is to use Dropbox to backup file, or as a one-way push.

              – Chop
              Sep 29 '15 at 9:11



















            • I have no sudo permission ...

              – Xbuffer
              Apr 4 '13 at 21:19











            • In fact, you don't need sudo permissions. I just have installed on a linux server and it's working like a charm.

              – mau
              Dec 16 '13 at 18:21






            • 5





              Why not add Dropbox to the server? Because it may not be a private server where I do not want to download and sync all my local files.

              – cnvzmxcvmcx
              Jun 30 '14 at 3:13






            • 6





              The question here is not about syncing, it's about pushing. Installing Dropbox implies making all the files public, while the idea I detect here is to use Dropbox to backup file, or as a one-way push.

              – Chop
              Sep 29 '15 at 9:11

















            I have no sudo permission ...

            – Xbuffer
            Apr 4 '13 at 21:19





            I have no sudo permission ...

            – Xbuffer
            Apr 4 '13 at 21:19













            In fact, you don't need sudo permissions. I just have installed on a linux server and it's working like a charm.

            – mau
            Dec 16 '13 at 18:21





            In fact, you don't need sudo permissions. I just have installed on a linux server and it's working like a charm.

            – mau
            Dec 16 '13 at 18:21




            5




            5





            Why not add Dropbox to the server? Because it may not be a private server where I do not want to download and sync all my local files.

            – cnvzmxcvmcx
            Jun 30 '14 at 3:13





            Why not add Dropbox to the server? Because it may not be a private server where I do not want to download and sync all my local files.

            – cnvzmxcvmcx
            Jun 30 '14 at 3:13




            6




            6





            The question here is not about syncing, it's about pushing. Installing Dropbox implies making all the files public, while the idea I detect here is to use Dropbox to backup file, or as a one-way push.

            – Chop
            Sep 29 '15 at 9:11





            The question here is not about syncing, it's about pushing. Installing Dropbox implies making all the files public, while the idea I detect here is to use Dropbox to backup file, or as a one-way push.

            – Chop
            Sep 29 '15 at 9:11


















            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%2f277939%2fcopy-files-from-a-server-via-ssh-to-dropbox%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

            Biblatex bibliography style without URLs when DOI exists (in Overleaf with Zotero bibliography)

            ComboBox Display Member on multiple fields

            Is it possible to collect Nectar points via Trainline?