我正在尝试通过我的 Ubuntu 机器(没有 xwindow)挂载我的 Windows 共享,但我继续得到
无法找到合适的地址
我尝试使用原始 IP 地址,检查了凭据,禁用了 Windows 防火墙,但仍未发现任何错误。
benny@backup:~$ sudo mount -t cifs //my-desk/j -o username=me,password=s)mePasss /mnt/sync
Unable to find suitable address.
benny@backup:~$ ping my-desk
PING my-desk (10.10.10.43) 56(84) bytes of data.
♥
--- my-desk ping statistics ---
2 packets transmitted, 0 received, 100% packet loss, time 1008ms
benny@backup:~$ sudo mount -t cifs //10.10.10.43/j -o username=me,password=s)mePasss /mnt/sync
Unable to find suitable address.
任何帮助将不胜感激!
答案1
您可能必须明确指定 IP 地址,例如:
sudo mount -t cifs //my-disk/j -o "username=me,password=s)mePasss,ip=10.10.10.43" /mnt/sync