Copy files from a server via ssh to dropbox.
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
add a comment |
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
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
add a comment |
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
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
ssh dropbox scp
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
add a comment |
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
add a comment |
3 Answers
3
active
oldest
votes
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.
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
add a comment |
Maybe
https://couchdrop.io/
The secure, easy to use Cloud scp and http upload server.
scp $filename $username@ssh.couchdrop.io:
add a comment |
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/
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
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%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
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.
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
add a comment |
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.
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
add a comment |
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.
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.
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
add a comment |
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
add a comment |
Maybe
https://couchdrop.io/
The secure, easy to use Cloud scp and http upload server.
scp $filename $username@ssh.couchdrop.io:
add a comment |
Maybe
https://couchdrop.io/
The secure, easy to use Cloud scp and http upload server.
scp $filename $username@ssh.couchdrop.io:
add a comment |
Maybe
https://couchdrop.io/
The secure, easy to use Cloud scp and http upload server.
scp $filename $username@ssh.couchdrop.io:
Maybe
https://couchdrop.io/
The secure, easy to use Cloud scp and http upload server.
scp $filename $username@ssh.couchdrop.io:
answered Mar 11 '17 at 18:54
rzrrzr
30639
30639
add a comment |
add a comment |
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/
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
add a comment |
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/
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
add a comment |
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/
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/
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
add a comment |
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
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%2f277939%2fcopy-files-from-a-server-via-ssh-to-dropbox%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
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