我正在尝试将一个网络共享安装到我的笔记本电脑上。我正在使用以下命令
sudo mount -t cifs //server.name/shared /mnt/myfolder -o user="username"
但是,每次运行此命令时都会遇到非常不同的错误。见附图
dex@lina:/$ sudo mount -t cifs //server.name/shared /mnt/share -o user="username"
Password for username@//server.name/shared: ********
mount error(22): Invalid argument
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)
dex@lina:/$ sudo mount -t cifs //server.name/shared /mnt/share -o user="username"
Password for username@//server.name/shared: ********
mount error(115): Operation now in progress
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)
dex@lina:/$ sudo mount -t cifs //server.name/shared /mnt/share -o user="username"
Password for username@//server.name/shared: ********
Retrying with upper case share name
mount error(6): No such device or address
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)
dex@lina:/$
如果有人想看屏幕截图,可以在这里找到。
server.name
是服务器的名称,而不是 IP 地址。我知道这台服务器的存在是因为我旁边的人运行 Windows 10 并映射了该共享。但是,该人不知道是谁以及如何映射该驱动器。我们都在同一个网络上。
谁能告诉我发生了什么,我该如何解决?我也尝试过-o rw
但同样的错误。我正在使用 Debian 9 (stretch) 和xfce
.
我想到了。当我使用IP 地址而不是服务器名称时,命令有效。