在XAMPP中尝试在/opt/lampp/htdocs/目录中创建文件时遇到问题。我想更改目录的权限,但无法更改。错误消息:无法写入文件“/opt/lampp/htdocs/index.html”(Notificate(FileSystemError):错误:EACCES:权限被拒绝,打开“/opt/lampp/htdocs/index.html”)其他信息:
mkh04yzy1#
可能是个人问题。首先,尝试授予每个人对/opt/lampp/htdocs/文件夹的读、写和执行权限:chmod 777 /opt/lampp/htdocs/如果工作,看看XAMPP htdocs权限问题和修复在Ubuntu:https://www.computernetworkingnotes.com/linux-tutorials/xampp-htdocs-permission-issue-and-fix-in-ubuntu.html如果没有帮助,也许你有你的分区挂载只读选项?你能分享你的/etc/fstab文件内容或mount命令的输出?
chmod 777 /opt/lampp/htdocs/
/etc/fstab
mount
1条答案
按热度按时间mkh04yzy1#
可能是个人问题。
首先,尝试授予每个人对/opt/lampp/htdocs/文件夹的读、写和执行权限:
chmod 777 /opt/lampp/htdocs/
如果工作,看看XAMPP htdocs权限问题和修复在Ubuntu:https://www.computernetworkingnotes.com/linux-tutorials/xampp-htdocs-permission-issue-and-fix-in-ubuntu.html
如果没有帮助,也许你有你的分区挂载只读选项?你能分享你的
/etc/fstab
文件内容或mount
命令的输出?