mount -t smbfs -o username=administrator,password=123456 //192.168.100.224/public /mnt/winkernel
mount -t cifs -o username=administrator,password=123456,codepage=cp936 //192.168.100.224/public /mnt/winkernel
[92615.408159] smbfs is deprecated and will be removed from the 2.6.27 kernel. Please migrate to cifs
参考
公司发存新程序由专人负责的。我需要讲war包上传到一个windws共享目录。由于现在换成Gentoo + xfce4环境了。Thunar又不支持 smb://协议。所以只有自己手动mount了。由于之前已经装过samba了。所以就直接mount一把。gentoo ~ # mount -t smbfs -o username=aaa,password=aaa //10.200.106.252/updatepack release
ERROR: smbfs filesystem not supported by the kernel
Please refer to the smbmnt(8) manual page
smbmnt failed: 255
发现内核不支持smbfs.就重新编译了一下内核。< > SMB file system support (OBSOLETE, please use CIFS)
<M> CIFS support (advanced network filesystem, SMBFS successor)
[*] CIFS statistics
[*] Extended statistics
[*] Support legacy servers which use weaker LANMAN security
[*] CIFS extended attributes
[*] CIFS POSIX Extensions
[*] Enable additional CIFS debugging routines
[ ] CIFS Experimental Features (EXPERIMENTAL)
当看到SMB file system的时候看到OBSOLETE了,看来不建议使用了。建议使用CIFS,所以就把CIFS选上了。看起来是 SMBFS的继承者。
编译替换内核重启,再mount一把。郁闷的是还提示不行。但是选择CIFS的时候自己想当然的以为CIFS肯定支持SMBFS的。没想到就不是这么回事。如果要mount -t smbfs就必须要选择 SMB file system support 才行。当时就只好用vbox里的windows去访问共享目录了。不过不知道为什么出奇的慢。100M的局域网拷贝十几M的包要20分钟(Orz)。
后来意识到自己的想法是错误的。又不想用废弃的SMB file system support。所以在gentoo-wiki.com中找到了答案。gentoo ~ # mount -t cifs //10.200.106.252/updatepack /home/rory/release -o "username=aaa,password=aaa,uid=1000,isocharset=cp936"
一切搞定。再把这命令写到启动脚本里。rory@gentoo ~ $ more /etc/conf.d/local.start
# /etc/conf.d/local.start
# This is a good place to load any misc programs
# on startup (use &>/dev/null to hide output)
############## smbmount release from dual ################
mount -t cifs //10.200.106.252/updatepack /home/rory/release -o "username=aaa,password=aaa,uid=1000,isocharset=
cp936"
##########################################################
如果你没有local.start 应该有 local 文件。