What is the default location for rsync uploads? [duplicate]
Clash Royale CLAN TAG#URR8PPP
up vote
5
down vote
favorite
This question already has an answer here:
Where do files rsynced to a host go?
1 answer
I uploaded a local text file omitting the remote location and can't find the file (Ubuntu 16.04).
rsync -chavzP dump.sql user@ip-address
It's not in my home directory or anywhere else that I can tell:
find / -name dump.sql -print
I can re-upload with a remote location, but would like to at least find and remove that 6GB dump that I'm not using.
command-line rsync
marked as duplicate by muru, Thomas, Fabby, David Foerster, Zanna
StackExchange.ready(function()
if (StackExchange.options.isMobile) return;
$('.dupe-hammer-message-hover:not(.hover-bound)').each(function()
var $hover = $(this).addClass('hover-bound'),
$msg = $hover.siblings('.dupe-hammer-message');
$hover.hover(
function()
$hover.showInfoMessage('',
messageElement: $msg.clone().show(),
transient: false,
position: my: 'bottom left', at: 'top center', offsetTop: -7 ,
dismissable: false,
relativeToBody: true
);
,
function()
StackExchange.helpers.removeMessages();
);
);
);
Aug 17 at 17:08
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
 |Â
show 1 more comment
up vote
5
down vote
favorite
This question already has an answer here:
Where do files rsynced to a host go?
1 answer
I uploaded a local text file omitting the remote location and can't find the file (Ubuntu 16.04).
rsync -chavzP dump.sql user@ip-address
It's not in my home directory or anywhere else that I can tell:
find / -name dump.sql -print
I can re-upload with a remote location, but would like to at least find and remove that 6GB dump that I'm not using.
command-line rsync
marked as duplicate by muru, Thomas, Fabby, David Foerster, Zanna
StackExchange.ready(function()
if (StackExchange.options.isMobile) return;
$('.dupe-hammer-message-hover:not(.hover-bound)').each(function()
var $hover = $(this).addClass('hover-bound'),
$msg = $hover.siblings('.dupe-hammer-message');
$hover.hover(
function()
$hover.showInfoMessage('',
messageElement: $msg.clone().show(),
transient: false,
position: my: 'bottom left', at: 'top center', offsetTop: -7 ,
dismissable: false,
relativeToBody: true
);
,
function()
StackExchange.helpers.removeMessages();
);
);
);
Aug 17 at 17:08
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
You miss:
afteruser@ip-address
.
– Arkadiusz Drabczyk
Aug 16 at 19:50
Yeah, I usedrsync -chavzP dump.sql user@ip-address:/home/user
to fix it. So what happened to my first file? According to my terminal it uploaded.
– ow3n
Aug 16 at 19:52
You should haveuser@ip-address
file in the directory where you ran rsync.
– Arkadiusz Drabczyk
Aug 16 at 19:53
1
Ah! There it is, on my local. Without that:
rsync assumed remote credentials was a filename. Thanks @ArkadiuszDrabczyk :-)
– ow3n
Aug 16 at 19:55
1
@ArkadiuszDrabczyk can you please formulate this as an answer and post it? :)
– Videonauth
Aug 16 at 19:56
 |Â
show 1 more comment
up vote
5
down vote
favorite
up vote
5
down vote
favorite
This question already has an answer here:
Where do files rsynced to a host go?
1 answer
I uploaded a local text file omitting the remote location and can't find the file (Ubuntu 16.04).
rsync -chavzP dump.sql user@ip-address
It's not in my home directory or anywhere else that I can tell:
find / -name dump.sql -print
I can re-upload with a remote location, but would like to at least find and remove that 6GB dump that I'm not using.
command-line rsync
This question already has an answer here:
Where do files rsynced to a host go?
1 answer
I uploaded a local text file omitting the remote location and can't find the file (Ubuntu 16.04).
rsync -chavzP dump.sql user@ip-address
It's not in my home directory or anywhere else that I can tell:
find / -name dump.sql -print
I can re-upload with a remote location, but would like to at least find and remove that 6GB dump that I'm not using.
This question already has an answer here:
Where do files rsynced to a host go?
1 answer
command-line rsync
edited Aug 17 at 3:39
muru
129k19271462
129k19271462
asked Aug 16 at 19:47
ow3n
20017
20017
marked as duplicate by muru, Thomas, Fabby, David Foerster, Zanna
StackExchange.ready(function()
if (StackExchange.options.isMobile) return;
$('.dupe-hammer-message-hover:not(.hover-bound)').each(function()
var $hover = $(this).addClass('hover-bound'),
$msg = $hover.siblings('.dupe-hammer-message');
$hover.hover(
function()
$hover.showInfoMessage('',
messageElement: $msg.clone().show(),
transient: false,
position: my: 'bottom left', at: 'top center', offsetTop: -7 ,
dismissable: false,
relativeToBody: true
);
,
function()
StackExchange.helpers.removeMessages();
);
);
);
Aug 17 at 17:08
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
marked as duplicate by muru, Thomas, Fabby, David Foerster, Zanna
StackExchange.ready(function()
if (StackExchange.options.isMobile) return;
$('.dupe-hammer-message-hover:not(.hover-bound)').each(function()
var $hover = $(this).addClass('hover-bound'),
$msg = $hover.siblings('.dupe-hammer-message');
$hover.hover(
function()
$hover.showInfoMessage('',
messageElement: $msg.clone().show(),
transient: false,
position: my: 'bottom left', at: 'top center', offsetTop: -7 ,
dismissable: false,
relativeToBody: true
);
,
function()
StackExchange.helpers.removeMessages();
);
);
);
Aug 17 at 17:08
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
You miss:
afteruser@ip-address
.
– Arkadiusz Drabczyk
Aug 16 at 19:50
Yeah, I usedrsync -chavzP dump.sql user@ip-address:/home/user
to fix it. So what happened to my first file? According to my terminal it uploaded.
– ow3n
Aug 16 at 19:52
You should haveuser@ip-address
file in the directory where you ran rsync.
– Arkadiusz Drabczyk
Aug 16 at 19:53
1
Ah! There it is, on my local. Without that:
rsync assumed remote credentials was a filename. Thanks @ArkadiuszDrabczyk :-)
– ow3n
Aug 16 at 19:55
1
@ArkadiuszDrabczyk can you please formulate this as an answer and post it? :)
– Videonauth
Aug 16 at 19:56
 |Â
show 1 more comment
You miss:
afteruser@ip-address
.
– Arkadiusz Drabczyk
Aug 16 at 19:50
Yeah, I usedrsync -chavzP dump.sql user@ip-address:/home/user
to fix it. So what happened to my first file? According to my terminal it uploaded.
– ow3n
Aug 16 at 19:52
You should haveuser@ip-address
file in the directory where you ran rsync.
– Arkadiusz Drabczyk
Aug 16 at 19:53
1
Ah! There it is, on my local. Without that:
rsync assumed remote credentials was a filename. Thanks @ArkadiuszDrabczyk :-)
– ow3n
Aug 16 at 19:55
1
@ArkadiuszDrabczyk can you please formulate this as an answer and post it? :)
– Videonauth
Aug 16 at 19:56
You miss
:
after user@ip-address
.– Arkadiusz Drabczyk
Aug 16 at 19:50
You miss
:
after user@ip-address
.– Arkadiusz Drabczyk
Aug 16 at 19:50
Yeah, I used
rsync -chavzP dump.sql user@ip-address:/home/user
to fix it. So what happened to my first file? According to my terminal it uploaded.– ow3n
Aug 16 at 19:52
Yeah, I used
rsync -chavzP dump.sql user@ip-address:/home/user
to fix it. So what happened to my first file? According to my terminal it uploaded.– ow3n
Aug 16 at 19:52
You should have
user@ip-address
file in the directory where you ran rsync.– Arkadiusz Drabczyk
Aug 16 at 19:53
You should have
user@ip-address
file in the directory where you ran rsync.– Arkadiusz Drabczyk
Aug 16 at 19:53
1
1
Ah! There it is, on my local. Without that
:
rsync assumed remote credentials was a filename. Thanks @ArkadiuszDrabczyk :-)– ow3n
Aug 16 at 19:55
Ah! There it is, on my local. Without that
:
rsync assumed remote credentials was a filename. Thanks @ArkadiuszDrabczyk :-)– ow3n
Aug 16 at 19:55
1
1
@ArkadiuszDrabczyk can you please formulate this as an answer and post it? :)
– Videonauth
Aug 16 at 19:56
@ArkadiuszDrabczyk can you please formulate this as an answer and post it? :)
– Videonauth
Aug 16 at 19:56
 |Â
show 1 more comment
1 Answer
1
active
oldest
votes
up vote
11
down vote
accepted
You miss :
after user@ip-address
. Without that you will createuser@ip-address
file in the directory where you ran rsync.
Thanks! I found the file (on my local machine) and removed it.
– ow3n
Aug 16 at 19:59
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
11
down vote
accepted
You miss :
after user@ip-address
. Without that you will createuser@ip-address
file in the directory where you ran rsync.
Thanks! I found the file (on my local machine) and removed it.
– ow3n
Aug 16 at 19:59
add a comment |Â
up vote
11
down vote
accepted
You miss :
after user@ip-address
. Without that you will createuser@ip-address
file in the directory where you ran rsync.
Thanks! I found the file (on my local machine) and removed it.
– ow3n
Aug 16 at 19:59
add a comment |Â
up vote
11
down vote
accepted
up vote
11
down vote
accepted
You miss :
after user@ip-address
. Without that you will createuser@ip-address
file in the directory where you ran rsync.
You miss :
after user@ip-address
. Without that you will createuser@ip-address
file in the directory where you ran rsync.
answered Aug 16 at 19:57


Arkadiusz Drabczyk
94949
94949
Thanks! I found the file (on my local machine) and removed it.
– ow3n
Aug 16 at 19:59
add a comment |Â
Thanks! I found the file (on my local machine) and removed it.
– ow3n
Aug 16 at 19:59
Thanks! I found the file (on my local machine) and removed it.
– ow3n
Aug 16 at 19:59
Thanks! I found the file (on my local machine) and removed it.
– ow3n
Aug 16 at 19:59
add a comment |Â
You miss
:
afteruser@ip-address
.– Arkadiusz Drabczyk
Aug 16 at 19:50
Yeah, I used
rsync -chavzP dump.sql user@ip-address:/home/user
to fix it. So what happened to my first file? According to my terminal it uploaded.– ow3n
Aug 16 at 19:52
You should have
user@ip-address
file in the directory where you ran rsync.– Arkadiusz Drabczyk
Aug 16 at 19:53
1
Ah! There it is, on my local. Without that
:
rsync assumed remote credentials was a filename. Thanks @ArkadiuszDrabczyk :-)– ow3n
Aug 16 at 19:55
1
@ArkadiuszDrabczyk can you please formulate this as an answer and post it? :)
– Videonauth
Aug 16 at 19:56