ubuntu 12.10上cifs取代了smbfs

 12.10之前的版本,是用smbmount命令把远程windows的共享目录mount到本机。

 在10.04上查找smbmount来自什么deb包:

 dpkg-query -S smbmount

 结果显示:

 smbfs: /usr/share/man/man8/smbmount.8.gz

 smbfs: /usr/bin/smbmount

 

这说明smbmount是来自smbfs包

在12.10上sudo apt-get install smbfs

你会看到“现在没有可用的软件包smbfs,但是它其它软件包引用了。这可能意味着这个缺失的软件包可能已经被废弃,或者只能在其他软件源中找到,可是下列软件包取代了它:cifs-utils:i386 cifs-utils”

那么就安装cifs-utils吧。

然后可以这样来mount windows的共享目录:

sudo mount -t cifs //url-to-windows/shared-directory local-mount-point -o user=user-in-windows,pass=password-for-user,iocharset=utf8,uid=linux-user-id

用sudo umount local-mount-point卸载。

 

你可能感兴趣的:(ubuntu,smbfs,CIFS,ubuntu12.10)