WSL2 error13 中的伺服器共用安裝錯誤

WSL2 error13 中的伺服器共用安裝錯誤

/etc/fstab的是:

//server-ip/path/share/ /mnt/d/wsl2/local/path cifs domain=my.domain.com,username="abc",password="123",rw,uid=1000,gid=1000 1 0

它在遠端 ubuntu 中工作正常,但在我的本機 WSL2 系統中,當sudo mount -a(與我在遠端 ubuntu 中所做的相同)出現錯誤時:

mount error(13): Permission denied
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs) and kernel log messages (dmesg

不熟悉 mount/cifs 的東西,但如何修復它?

非常感謝。

答案1

不知道為什麼,但是直接在 wsl2 終端機中使用 cmd 掛載它而不是在 config 中/etc/fstab可以工作:

sudo mount -t cifs //share /mout/path -o domain=domainname,username="user",password="pass"

相關內容