使用主机名在 ubuntu 上安装 Nvidia card:Issues 的机器

Machine with Nvidia card:Issues with mount command on ubuntu using hostname

OS: Ubuntu14.04 64 位 我在使用 Nvidia 卡 运行 Ubuntu 14.04 64 位的机器上出现了一个奇怪的问题。 mount 命令在使用 IP 地址时有效,但在使用主机名时失败

无效命令:

sudo -S mount -t cifs //share.test.com/LAB/Testing/Path1/Path2/Requisite/ -o username=blabla,password=blabla /mnt/src_shar_lnx 

错误是

mount: wrong fs type, bad option, bad superblock on //share.test.com/LAB/Testing/Path1/Path2/Requisite/ ,
   missing codepage or helper program, or other error
   (for several filesystems (e.g. nfs, cifs) you might
   need a /sbin/mount.<type> helper program)
   In some cases useful info is found in syslog - try
   dmesg | tail  or so

上述命令可以在没有 Nvidia 卡的其他机器上无缝运行。

工作命令:

sudo -S mount -t cifs //192.168.200.1/LAB/Testing/Path1/Path2/Requisite/ -o username=blabla,password=blabla /mnt/src_shar_lnx

已解决。 安装 cifs-utils 解决了问题