我的主要主机是 Windows,我在虚拟客户操作系统上运行 ubuntu,我当前正在 Windows 和 ubuntu 中安装一个文件夹,但出现此错误:
在/etc/fstab
//Windows-PC/shared /home/user/shared`
----------------------------------------
mount -a
mount error: could not resolve address for Windows-PC: Unknown error
如何在 ubuntu 中解析 Windows 主机名?
答案1
安装以下软件包:
sudo apt-get install winbind
编辑文件/etc/nsswitch.conf
并添加wins
以下行
hosts: files mdns4_minimal [NOTFOUND=return] dns mdns4
-->
hosts: files mdns4_minimal wins [NOTFOUND=return] dns mdns4
现在您应该能够使用 netbios 名称 ping 您的 windows 主机。