我是wsl1的ubuntu18.04,我现在有个需求是想挂载一个目录到远程的服务器上。目前服务器支持samba和ssh,但是我使用mount -t cifs会提示
$ sudo mount -t cifs //server/path /mnt/dir
mount error: cifs filesystem not supported by the system
mount error(19): No such device
使用sshfs则报
$ sshfs user@server:path /mnt/dir
fuse: device not found, try 'modprobe fuse' first
$ modprobe fuse
modprobe: FATAL: Module fuse not found in directory /lib/modules/4.4.0-18362-Microsoft
有何良策?