WSL无法删除文件,文件权限问题

近日从mac访问win10的nfs出了点问题,无法直接访问文件夹了,临时改用wsl的linux帐号通过scp传输文件。但是发现传输到wsl的文件无法删除,搜了一下发现是权限问题。
解决办法:
创建/etc/wsl.conf文件,然后添加如下内容:

[automount]
enabled = true
options = "metadata,umask=22,fmask=11"
mountFsTab = false

如果需要了解里面各个选项的详细含义,请阅读这篇文章:
Automatically Configuring WSL | Windows Command Line

参考资料:

  1. Unable to change file permissions on Ubuntu Bash for Windows 10 - Super User
  2. wsl文件权限问题
  3. Automatically Configuring WSL | Windows Command Line

你可能感兴趣的:(Windows,Linux)