报错:
The update cannot be installed because we will be unable to copy some files. This is usually due to inconsistent file permissions.
解决:
1 2 3 4 |
cd /x/x/rainingwalk/ find -type d -exec chmod 775 {} \; find -type f -exec chmod 664 {} \; chown -R www:www * |
0 Comments