Why does this error appear when I try to copy files from my Ubuntu partition to my Windows partition?
Asked
Active
Viewed 1,707 times
1 Answers
0
It appears that you do not have permission to copy these files. Try running it as sudo.
Open Terminal, type sudo nautilus
then navigate the the directory with the files to copy, copy them. then paste them to the directory that you want to copy them to.
You can also do this from your command line. Open your terminal, cd
to the directory with the files that you want to copy in them, run sudo cp -v file1 file 2 file 3 ... directorytopastefilesto
The -v
attribute just makes it so that you can see the output of the copy command. In place of ...
put names of other files that you will copy.

Logan
- 472
-
Yes but I want to make it when i edit my files using vs code like laravel project but I can't make it – Waziri Mar 09 '23 at 20:51
sudo
. – user68186 Mar 07 '23 at 18:46