0

Why does this error appear when I try to copy files from my Ubuntu partition to my Windows partition?

Jeremy
  • 2,846
Waziri
  • 1

1 Answers1

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