copy file from window to ubuntu

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP








up vote
0
down vote

favorite












I have a STL file in my c drive "Window", and I was trying to copy that file to the Ubuntu, however it shown error message, what should I do?



enter image description here










share|improve this question























  • I recommend access the file from Ubuntu instead of starting from Windows and copy to Ubuntu. From there you can cp the file.
    – An0n
    Apr 1 at 20:38










  • Please add screenshot to the question instead of as a link. Are you triSurface folder exist? Are you sure you want it there? Probably you want personal files on your home folder.
    – Pablo Bianchi
    Apr 1 at 20:41










  • @ Marco. dont use /TriSurface but use TriSurface/rest/of/the/path instead. That should solve your problem.
    – An0n
    Apr 1 at 20:43










  • On my drive I setup a separate 9 GB NTFS partition for files to be indirectly shared between Ubuntu (/mnt/e) and Windows 10 WSL (drive letter E:). I did this after exhausting all other methods of direct file sharing. This is something all dual-boot users might want to consider.
    – WinEunuuchs2Unix
    Apr 1 at 21:03















up vote
0
down vote

favorite












I have a STL file in my c drive "Window", and I was trying to copy that file to the Ubuntu, however it shown error message, what should I do?



enter image description here










share|improve this question























  • I recommend access the file from Ubuntu instead of starting from Windows and copy to Ubuntu. From there you can cp the file.
    – An0n
    Apr 1 at 20:38










  • Please add screenshot to the question instead of as a link. Are you triSurface folder exist? Are you sure you want it there? Probably you want personal files on your home folder.
    – Pablo Bianchi
    Apr 1 at 20:41










  • @ Marco. dont use /TriSurface but use TriSurface/rest/of/the/path instead. That should solve your problem.
    – An0n
    Apr 1 at 20:43










  • On my drive I setup a separate 9 GB NTFS partition for files to be indirectly shared between Ubuntu (/mnt/e) and Windows 10 WSL (drive letter E:). I did this after exhausting all other methods of direct file sharing. This is something all dual-boot users might want to consider.
    – WinEunuuchs2Unix
    Apr 1 at 21:03













up vote
0
down vote

favorite









up vote
0
down vote

favorite











I have a STL file in my c drive "Window", and I was trying to copy that file to the Ubuntu, however it shown error message, what should I do?



enter image description here










share|improve this question















I have a STL file in my c drive "Window", and I was trying to copy that file to the Ubuntu, however it shown error message, what should I do?



enter image description here







copy






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Apr 1 at 23:34









Byte Commander

59.4k26159267




59.4k26159267










asked Apr 1 at 19:42









Marco.L

1




1











  • I recommend access the file from Ubuntu instead of starting from Windows and copy to Ubuntu. From there you can cp the file.
    – An0n
    Apr 1 at 20:38










  • Please add screenshot to the question instead of as a link. Are you triSurface folder exist? Are you sure you want it there? Probably you want personal files on your home folder.
    – Pablo Bianchi
    Apr 1 at 20:41










  • @ Marco. dont use /TriSurface but use TriSurface/rest/of/the/path instead. That should solve your problem.
    – An0n
    Apr 1 at 20:43










  • On my drive I setup a separate 9 GB NTFS partition for files to be indirectly shared between Ubuntu (/mnt/e) and Windows 10 WSL (drive letter E:). I did this after exhausting all other methods of direct file sharing. This is something all dual-boot users might want to consider.
    – WinEunuuchs2Unix
    Apr 1 at 21:03

















  • I recommend access the file from Ubuntu instead of starting from Windows and copy to Ubuntu. From there you can cp the file.
    – An0n
    Apr 1 at 20:38










  • Please add screenshot to the question instead of as a link. Are you triSurface folder exist? Are you sure you want it there? Probably you want personal files on your home folder.
    – Pablo Bianchi
    Apr 1 at 20:41










  • @ Marco. dont use /TriSurface but use TriSurface/rest/of/the/path instead. That should solve your problem.
    – An0n
    Apr 1 at 20:43










  • On my drive I setup a separate 9 GB NTFS partition for files to be indirectly shared between Ubuntu (/mnt/e) and Windows 10 WSL (drive letter E:). I did this after exhausting all other methods of direct file sharing. This is something all dual-boot users might want to consider.
    – WinEunuuchs2Unix
    Apr 1 at 21:03
















I recommend access the file from Ubuntu instead of starting from Windows and copy to Ubuntu. From there you can cp the file.
– An0n
Apr 1 at 20:38




I recommend access the file from Ubuntu instead of starting from Windows and copy to Ubuntu. From there you can cp the file.
– An0n
Apr 1 at 20:38












Please add screenshot to the question instead of as a link. Are you triSurface folder exist? Are you sure you want it there? Probably you want personal files on your home folder.
– Pablo Bianchi
Apr 1 at 20:41




Please add screenshot to the question instead of as a link. Are you triSurface folder exist? Are you sure you want it there? Probably you want personal files on your home folder.
– Pablo Bianchi
Apr 1 at 20:41












@ Marco. dont use /TriSurface but use TriSurface/rest/of/the/path instead. That should solve your problem.
– An0n
Apr 1 at 20:43




@ Marco. dont use /TriSurface but use TriSurface/rest/of/the/path instead. That should solve your problem.
– An0n
Apr 1 at 20:43












On my drive I setup a separate 9 GB NTFS partition for files to be indirectly shared between Ubuntu (/mnt/e) and Windows 10 WSL (drive letter E:). I did this after exhausting all other methods of direct file sharing. This is something all dual-boot users might want to consider.
– WinEunuuchs2Unix
Apr 1 at 21:03





On my drive I setup a separate 9 GB NTFS partition for files to be indirectly shared between Ubuntu (/mnt/e) and Windows 10 WSL (drive letter E:). I did this after exhausting all other methods of direct file sharing. This is something all dual-boot users might want to consider.
– WinEunuuchs2Unix
Apr 1 at 21:03











2 Answers
2






active

oldest

votes

















up vote
2
down vote













First, please do not copy text as pictures.



Second, you're attempting to copy the file to /triSurface, which is probably not a directory that exists, nor should it exist.



Your users files are typically in /home/username/, often abbreviated ~.



You probably want to copy the file to ~/triSurface/, not /triSurface. If ~/triSurface does not exist, you can create the directory with mkdir ~/triSurface.



In general only root is able to modify files outside of /tmp and your home directory. /tmp is, as name indicates, used only for temporary files, and not intended for persistent storage.






share|improve this answer
















  • 1




    As i see his screenshot he is copying to his homefolder. He only got the path wrong.
    – An0n
    Apr 1 at 20:42

















up vote
0
down vote













Use :



cp /mnt/c/Users/leewp/Desktop/cylinder3.stl triSurface/


Because you are already on the path. And the triSurface already excist.
Except if you really want to make /triSurface. Which i would not recommend.






share|improve this answer




















  • Full PATH of the file would then be : "/home/marcolwp/OpenFOAM/marcolwp-5.0/run/mySim/EstaMesh/constant/triSurface/cylinder3.stl"
    – An0n
    Apr 1 at 20:48










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',
convertImagesToLinks: true,
noModals: false,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
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%2f1021138%2fcopy-file-from-window-to-ubuntu%23new-answer', 'question_page');

);

Post as a guest






























2 Answers
2






active

oldest

votes








2 Answers
2






active

oldest

votes









active

oldest

votes






active

oldest

votes








up vote
2
down vote













First, please do not copy text as pictures.



Second, you're attempting to copy the file to /triSurface, which is probably not a directory that exists, nor should it exist.



Your users files are typically in /home/username/, often abbreviated ~.



You probably want to copy the file to ~/triSurface/, not /triSurface. If ~/triSurface does not exist, you can create the directory with mkdir ~/triSurface.



In general only root is able to modify files outside of /tmp and your home directory. /tmp is, as name indicates, used only for temporary files, and not intended for persistent storage.






share|improve this answer
















  • 1




    As i see his screenshot he is copying to his homefolder. He only got the path wrong.
    – An0n
    Apr 1 at 20:42














up vote
2
down vote













First, please do not copy text as pictures.



Second, you're attempting to copy the file to /triSurface, which is probably not a directory that exists, nor should it exist.



Your users files are typically in /home/username/, often abbreviated ~.



You probably want to copy the file to ~/triSurface/, not /triSurface. If ~/triSurface does not exist, you can create the directory with mkdir ~/triSurface.



In general only root is able to modify files outside of /tmp and your home directory. /tmp is, as name indicates, used only for temporary files, and not intended for persistent storage.






share|improve this answer
















  • 1




    As i see his screenshot he is copying to his homefolder. He only got the path wrong.
    – An0n
    Apr 1 at 20:42












up vote
2
down vote










up vote
2
down vote









First, please do not copy text as pictures.



Second, you're attempting to copy the file to /triSurface, which is probably not a directory that exists, nor should it exist.



Your users files are typically in /home/username/, often abbreviated ~.



You probably want to copy the file to ~/triSurface/, not /triSurface. If ~/triSurface does not exist, you can create the directory with mkdir ~/triSurface.



In general only root is able to modify files outside of /tmp and your home directory. /tmp is, as name indicates, used only for temporary files, and not intended for persistent storage.






share|improve this answer












First, please do not copy text as pictures.



Second, you're attempting to copy the file to /triSurface, which is probably not a directory that exists, nor should it exist.



Your users files are typically in /home/username/, often abbreviated ~.



You probably want to copy the file to ~/triSurface/, not /triSurface. If ~/triSurface does not exist, you can create the directory with mkdir ~/triSurface.



In general only root is able to modify files outside of /tmp and your home directory. /tmp is, as name indicates, used only for temporary files, and not intended for persistent storage.







share|improve this answer












share|improve this answer



share|improve this answer










answered Apr 1 at 20:27









vidarlo

7,16342140




7,16342140







  • 1




    As i see his screenshot he is copying to his homefolder. He only got the path wrong.
    – An0n
    Apr 1 at 20:42












  • 1




    As i see his screenshot he is copying to his homefolder. He only got the path wrong.
    – An0n
    Apr 1 at 20:42







1




1




As i see his screenshot he is copying to his homefolder. He only got the path wrong.
– An0n
Apr 1 at 20:42




As i see his screenshot he is copying to his homefolder. He only got the path wrong.
– An0n
Apr 1 at 20:42












up vote
0
down vote













Use :



cp /mnt/c/Users/leewp/Desktop/cylinder3.stl triSurface/


Because you are already on the path. And the triSurface already excist.
Except if you really want to make /triSurface. Which i would not recommend.






share|improve this answer




















  • Full PATH of the file would then be : "/home/marcolwp/OpenFOAM/marcolwp-5.0/run/mySim/EstaMesh/constant/triSurface/cylinder3.stl"
    – An0n
    Apr 1 at 20:48














up vote
0
down vote













Use :



cp /mnt/c/Users/leewp/Desktop/cylinder3.stl triSurface/


Because you are already on the path. And the triSurface already excist.
Except if you really want to make /triSurface. Which i would not recommend.






share|improve this answer




















  • Full PATH of the file would then be : "/home/marcolwp/OpenFOAM/marcolwp-5.0/run/mySim/EstaMesh/constant/triSurface/cylinder3.stl"
    – An0n
    Apr 1 at 20:48












up vote
0
down vote










up vote
0
down vote









Use :



cp /mnt/c/Users/leewp/Desktop/cylinder3.stl triSurface/


Because you are already on the path. And the triSurface already excist.
Except if you really want to make /triSurface. Which i would not recommend.






share|improve this answer












Use :



cp /mnt/c/Users/leewp/Desktop/cylinder3.stl triSurface/


Because you are already on the path. And the triSurface already excist.
Except if you really want to make /triSurface. Which i would not recommend.







share|improve this answer












share|improve this answer



share|improve this answer










answered Apr 1 at 20:46









An0n

80418




80418











  • Full PATH of the file would then be : "/home/marcolwp/OpenFOAM/marcolwp-5.0/run/mySim/EstaMesh/constant/triSurface/cylinder3.stl"
    – An0n
    Apr 1 at 20:48
















  • Full PATH of the file would then be : "/home/marcolwp/OpenFOAM/marcolwp-5.0/run/mySim/EstaMesh/constant/triSurface/cylinder3.stl"
    – An0n
    Apr 1 at 20:48















Full PATH of the file would then be : "/home/marcolwp/OpenFOAM/marcolwp-5.0/run/mySim/EstaMesh/constant/triSurface/cylinder3.stl"
– An0n
Apr 1 at 20:48




Full PATH of the file would then be : "/home/marcolwp/OpenFOAM/marcolwp-5.0/run/mySim/EstaMesh/constant/triSurface/cylinder3.stl"
– An0n
Apr 1 at 20:48

















 

draft saved


draft discarded















































 


draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1021138%2fcopy-file-from-window-to-ubuntu%23new-answer', 'question_page');

);

Post as a guest













































































Popular posts from this blog

Which professions warranted travel in Medieval times?

How do so many people here on Academia.SE, and in general, afford lavish higher education programs?

Trouble downloading packages list due to a “Hash sum mismatch” error