Linux: Error: EACCES: permission denied Linux solution

Reason: The Linux terminal does not have permission to create a folder.

Solution: Enter the command sudo chmod -R 777 /工作目录
For example: sudo chmode -R 777 /home/HDD

  • sudo: is a Linux system management command. It is a tool that allows system administrators to let ordinary users execute some or all root commands.
  • -R: refers to all subdirectories and files in the directory used by Jilian Medical;
  • 777: refers to the highest permissions possessed by all users.

perfect solution

Reference: https://cloud.tencent.com/developer/article/1721836

Guess you like

Origin blog.csdn.net/summertime1234/article/details/133810206