WSL 文件操作提示: Operation not permitted
在 Windows 子系统上 git clone 库到 /mnt/x/codes 时提示
failed: Operation not permitted
1 | git clone https://github.com/ehang-io/nps.git |
怀疑是文件权限问题,使用 sudo
命令能够 clone 成功
1 | sudo git clone https://github.com/ehang-io/nps.git |
但是查看其它文件发现权限全是 777,感觉有点奇怪,查阅文档后得知是由于文件权限问题导致的,添加配置 /etc/wsl.conf
内容如下,添加后重启可以发现文件权限正常了
1 | [automount] |
参考文章:
- 本文标题:WSL 文件操作提示: Operation not permitted
- 本文作者:akiya
- 本文链接:https://little-star.love/posts/c31d7731/
- 版权声明:本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明出处!