有时候需要修改文件的权限,但是即使在root下使用chmod命令也不一定能成功更改,有时也会遇到Operation not permitted的问题。
chmod -R 777 php.ini
chmod: changing permissions of ‘php.ini’: Operation not permitted
找了几个方式都不可以
最终使用 sudo chmod 777 xxxx

有时候需要修改文件的权限,但是即使在root下使用chmod命令也不一定能成功更改,有时也会遇到Operation not permitted的问题。
chmod -R 777 php.ini
chmod: changing permissions of ‘php.ini’: Operation not permitted
找了几个方式都不可以
最终使用 sudo chmod 777 xxxx