mount error(115): 操作正在进行中。请参阅 mount.cifs(8) 手册页(例如 man mount.cifs)

mount error(115): 操作正在进行中。请参阅 mount.cifs(8) 手册页(例如 man mount.cifs)

我正在按照此处列出的步骤尝试让我的 WD Passport Wireless Pro 3TB HDD 与 Lubuntu 18.04 配合使用:http://tutodir.com/how-to-mount-wd-my-passport-wireless-pro-on-ubuntu/

我遇到以下标题错误:

owner@G700:~$ sudo mkdir /mnt/MyPassport
owner@G700:~$ sudo mount -t cifs -o guest //MyPassportIP/MyPassport /mnt/MyPassport
mount error: could not resolve address for MyPassportIP: Unknown error

owner@G700:~$ sudo mount -t cifs -o guest //192.168.60.1/MyPassport /mnt/MyPassport
mount error(115): Operation now in progress
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)

owner@G700:~$ sudo mount -t cifs -o guest //192.168.60.1/MyPassport /mnt/MyPassport
mount error(115): Operation now in progress
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)

owner@G700:~$ sudo nano /etc/fstab
owner@G700:~$ sudo mount -a
mount error(115): Operation now in progress
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)

我相信这是所引用的页面,但我不知道应该寻找什么。有人知道如何解决这个问题吗?https://linux.die.net/man/8/mount.cifs

答案1

该教程存在三个问题:

  1. 默认共享不是我的护照贮存
  2. 由于 SMB1 存在严重的漏洞,因此需要强制服务器仅使用 SMB2 协议,使用 ssh 访问并更改相关的 smb-global.conf
  3. 然后安装需要 -o guest,vers=2.0

相关内容