WSL2 linux权限问题 chmod(): Operation not permitted

…衆ロ難τιáo~ 提交于 2020-04-06 17:11:48

wsl在mount windows系统到linux系统文件列表时候,所以权限都是777,但是在php执行chmod函数的时候,会提示“ chmod(): Operation not permitted”;

解决方法

vim /etc/wsl.conf

# 添加下面内容
[automount]
enabled = true
root = /mnt/
options = "metadata,umask=22,fmask=111"
mountFsTab = true
[filesystem]
umask = 022

重启WSL

# 管理员权限启动windows cmd命令行
net.exe stop LxssManager

之后在进入wsl系统,mnt目录下的文件权限会恢复到正常的权限;

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!