Debian

Debian’mount’:相同的命令不同的錯誤

  • June 13, 2019

我正在嘗試將一個網路共享安裝到我的筆記型電腦上。我正在使用以下命令

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 地址而不是伺服器名稱時,命令有效。

sudo mount -t cifs //0.0.0.0/shared /mnt/myfolder -o user="username"

引用自:https://unix.stackexchange.com/questions/524384