Solution to insufficient permissions when copying centos:
Recommended tutorial: centos tutorial
1. Execute with root account The chmod command modifies file permissions:
chmod -R 777 dirPath
The parameter -R indicates recursion. The permissions of dirPath and all folders and files within it are changed.
2. Use a file manager with administrator rights to copy
First, ctrl alt t opens a terminal.
Then run the command sudo nautilus.
You can open a file manager with administrator rights.
Then you can copy files without switching to the administrator.
Recommended related video tutorials: linux video tutorial
The above is the detailed content of How to solve the problem of insufficient permissions during centos replication. For more information, please follow other related articles on the PHP Chinese website!