在ubuntu 16.04上显示权限被拒绝

时间:2017-04-17 19:37:23

标签: git ubuntu-16.04

我正在使用虚拟机上安装的Ubuntu 16.04。我已经成功安装了LAMP和git。我尝试使用终端克隆我的git存储库但是 它显示:

fatal: could not create work tree dir 'directory-name': Permission denied

我尝试使用以下命令授予目录权限:

sudo chmod 755 /var/www/html

但它不起作用。

1 个答案:

答案 0 :(得分:1)

这是全新安装,因此/var/www/html文件夹的所有者可能是root用户?如果是开发环境,请以root身份执行以下命令,它可能会修复权限问题:

groupadd www-data
usermod -a -G www-data yourUsername
chown -R root:www-data /var/www
find /var/www -type d -exec chmod 2775 {} +
find /var/www -type f -exec chmod 0664 {} +