Copy from Unix to Desktop without using any third party tool
I want to copy my DBServer (LINUX) to Desktop . i can access the same from putty. but i dont want to use a third party tool.
Is there any Command in Unix or linux to copy a file direct from Linux to Windows.
I want to copy a file from unix without using any third party tool. like winscp, Xftp
unix
migrated from stackoverflow.com Sep 22 '11 at 11:11
This question came from our site for professional and enthusiast programmers.
add a comment |
I want to copy my DBServer (LINUX) to Desktop . i can access the same from putty. but i dont want to use a third party tool.
Is there any Command in Unix or linux to copy a file direct from Linux to Windows.
I want to copy a file from unix without using any third party tool. like winscp, Xftp
unix
migrated from stackoverflow.com Sep 22 '11 at 11:11
This question came from our site for professional and enthusiast programmers.
Yes, there'scp
if you've got a shared mount.
– Fred Foo
Sep 22 '11 at 11:11
Linux to Windows where? Two different computers? Virtual machines? On the same hard drive?
– slhck
Sep 22 '11 at 11:35
add a comment |
I want to copy my DBServer (LINUX) to Desktop . i can access the same from putty. but i dont want to use a third party tool.
Is there any Command in Unix or linux to copy a file direct from Linux to Windows.
I want to copy a file from unix without using any third party tool. like winscp, Xftp
unix
I want to copy my DBServer (LINUX) to Desktop . i can access the same from putty. but i dont want to use a third party tool.
Is there any Command in Unix or linux to copy a file direct from Linux to Windows.
I want to copy a file from unix without using any third party tool. like winscp, Xftp
unix
unix
edited Sep 22 '11 at 12:17
Sunil Sahoo
asked Sep 22 '11 at 11:09
Sunil SahooSunil Sahoo
114
114
migrated from stackoverflow.com Sep 22 '11 at 11:11
This question came from our site for professional and enthusiast programmers.
migrated from stackoverflow.com Sep 22 '11 at 11:11
This question came from our site for professional and enthusiast programmers.
Yes, there'scp
if you've got a shared mount.
– Fred Foo
Sep 22 '11 at 11:11
Linux to Windows where? Two different computers? Virtual machines? On the same hard drive?
– slhck
Sep 22 '11 at 11:35
add a comment |
Yes, there'scp
if you've got a shared mount.
– Fred Foo
Sep 22 '11 at 11:11
Linux to Windows where? Two different computers? Virtual machines? On the same hard drive?
– slhck
Sep 22 '11 at 11:35
Yes, there's
cp
if you've got a shared mount.– Fred Foo
Sep 22 '11 at 11:11
Yes, there's
cp
if you've got a shared mount.– Fred Foo
Sep 22 '11 at 11:11
Linux to Windows where? Two different computers? Virtual machines? On the same hard drive?
– slhck
Sep 22 '11 at 11:35
Linux to Windows where? Two different computers? Virtual machines? On the same hard drive?
– slhck
Sep 22 '11 at 11:35
add a comment |
2 Answers
2
active
oldest
votes
You don't have to use ftp programs or software. A simple copy command
cp filename1 destination/of/file2/filename2
and you are done. If you mean from a virtual machine or something that is a different story. In that case we need to know what setup you run.
Hi i was tryed belo command in linux sheel#cp scr.sql 172.17.189.181:c:
– Sunil Sahoo
Sep 22 '11 at 11:38
Hi i was tryed belo command in linux sheel# cp scr.sql 172.17.189.181:c: But the file is not comming to my c:drive
– Sunil Sahoo
Sep 22 '11 at 11:41
add a comment |
Share a windows folder and then mount it over the network using samba. If you have gnome, or KDE you will have a network bro
I don't have GUI access i want this to my desktop to a Linux Server . i did this using winscp but how to do this with third party tool. i used CP filename ipofDesktop:c:sunil but the file is not showing in the sunil shared folder.....
– Sunil Sahoo
Sep 22 '11 at 12:29
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
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%2fsuperuser.com%2fquestions%2f338584%2fcopy-from-unix-to-desktop-without-using-any-third-party-tool%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
You don't have to use ftp programs or software. A simple copy command
cp filename1 destination/of/file2/filename2
and you are done. If you mean from a virtual machine or something that is a different story. In that case we need to know what setup you run.
Hi i was tryed belo command in linux sheel#cp scr.sql 172.17.189.181:c:
– Sunil Sahoo
Sep 22 '11 at 11:38
Hi i was tryed belo command in linux sheel# cp scr.sql 172.17.189.181:c: But the file is not comming to my c:drive
– Sunil Sahoo
Sep 22 '11 at 11:41
add a comment |
You don't have to use ftp programs or software. A simple copy command
cp filename1 destination/of/file2/filename2
and you are done. If you mean from a virtual machine or something that is a different story. In that case we need to know what setup you run.
Hi i was tryed belo command in linux sheel#cp scr.sql 172.17.189.181:c:
– Sunil Sahoo
Sep 22 '11 at 11:38
Hi i was tryed belo command in linux sheel# cp scr.sql 172.17.189.181:c: But the file is not comming to my c:drive
– Sunil Sahoo
Sep 22 '11 at 11:41
add a comment |
You don't have to use ftp programs or software. A simple copy command
cp filename1 destination/of/file2/filename2
and you are done. If you mean from a virtual machine or something that is a different story. In that case we need to know what setup you run.
You don't have to use ftp programs or software. A simple copy command
cp filename1 destination/of/file2/filename2
and you are done. If you mean from a virtual machine or something that is a different story. In that case we need to know what setup you run.
answered Sep 22 '11 at 11:17
FlorianFlorian
1011
1011
Hi i was tryed belo command in linux sheel#cp scr.sql 172.17.189.181:c:
– Sunil Sahoo
Sep 22 '11 at 11:38
Hi i was tryed belo command in linux sheel# cp scr.sql 172.17.189.181:c: But the file is not comming to my c:drive
– Sunil Sahoo
Sep 22 '11 at 11:41
add a comment |
Hi i was tryed belo command in linux sheel#cp scr.sql 172.17.189.181:c:
– Sunil Sahoo
Sep 22 '11 at 11:38
Hi i was tryed belo command in linux sheel# cp scr.sql 172.17.189.181:c: But the file is not comming to my c:drive
– Sunil Sahoo
Sep 22 '11 at 11:41
Hi i was tryed belo command in linux sheel#cp scr.sql 172.17.189.181:c:
– Sunil Sahoo
Sep 22 '11 at 11:38
Hi i was tryed belo command in linux sheel#cp scr.sql 172.17.189.181:c:
– Sunil Sahoo
Sep 22 '11 at 11:38
Hi i was tryed belo command in linux sheel# cp scr.sql 172.17.189.181:c: But the file is not comming to my c:drive
– Sunil Sahoo
Sep 22 '11 at 11:41
Hi i was tryed belo command in linux sheel# cp scr.sql 172.17.189.181:c: But the file is not comming to my c:drive
– Sunil Sahoo
Sep 22 '11 at 11:41
add a comment |
Share a windows folder and then mount it over the network using samba. If you have gnome, or KDE you will have a network bro
I don't have GUI access i want this to my desktop to a Linux Server . i did this using winscp but how to do this with third party tool. i used CP filename ipofDesktop:c:sunil but the file is not showing in the sunil shared folder.....
– Sunil Sahoo
Sep 22 '11 at 12:29
add a comment |
Share a windows folder and then mount it over the network using samba. If you have gnome, or KDE you will have a network bro
I don't have GUI access i want this to my desktop to a Linux Server . i did this using winscp but how to do this with third party tool. i used CP filename ipofDesktop:c:sunil but the file is not showing in the sunil shared folder.....
– Sunil Sahoo
Sep 22 '11 at 12:29
add a comment |
Share a windows folder and then mount it over the network using samba. If you have gnome, or KDE you will have a network bro
Share a windows folder and then mount it over the network using samba. If you have gnome, or KDE you will have a network bro
answered Sep 22 '11 at 11:17
crysmcrysm
1
1
I don't have GUI access i want this to my desktop to a Linux Server . i did this using winscp but how to do this with third party tool. i used CP filename ipofDesktop:c:sunil but the file is not showing in the sunil shared folder.....
– Sunil Sahoo
Sep 22 '11 at 12:29
add a comment |
I don't have GUI access i want this to my desktop to a Linux Server . i did this using winscp but how to do this with third party tool. i used CP filename ipofDesktop:c:sunil but the file is not showing in the sunil shared folder.....
– Sunil Sahoo
Sep 22 '11 at 12:29
I don't have GUI access i want this to my desktop to a Linux Server . i did this using winscp but how to do this with third party tool. i used CP filename ipofDesktop:c:sunil but the file is not showing in the sunil shared folder.....
– Sunil Sahoo
Sep 22 '11 at 12:29
I don't have GUI access i want this to my desktop to a Linux Server . i did this using winscp but how to do this with third party tool. i used CP filename ipofDesktop:c:sunil but the file is not showing in the sunil shared folder.....
– Sunil Sahoo
Sep 22 '11 at 12:29
add a comment |
Thanks for contributing an answer to Super User!
- 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%2fsuperuser.com%2fquestions%2f338584%2fcopy-from-unix-to-desktop-without-using-any-third-party-tool%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
Yes, there's
cp
if you've got a shared mount.– Fred Foo
Sep 22 '11 at 11:11
Linux to Windows where? Two different computers? Virtual machines? On the same hard drive?
– slhck
Sep 22 '11 at 11:35