|
发表于 2010-1-11 22:20:29
|
显示全部楼层
可以在/etc/fstab中挂载 ,如
//192.168.1.11/myshare /mnt/share smbfs iocharset=utf8,username=syd168,password=syd168 0 0
上面的挂载方法,要求内核支持smbfs,而且拥有windows共享的帐号和密码。查看内核是否支持smbfs的方法是执行:
#cat /proc/filesystems
或者利用自动挂载功能,在/etc/auto.misc中添加如下行,
share -fstype=smbfs,iocharset=utf8,username=syd168,password=syd168 //192.168.1.11/myshare
我的内核不支持,很抱歉,没能尝试。 |
|