mount: unknown filesystem type “smbfs” – 最实用的Linux博客 – 博客频道 – CSDN.NET

mount: unknown filesystem type “smbfs”

2008-11-05 19:03

mount: unknown filesystem type “smbfs’

今天在使用FC6时,发现mount不了windows的共享盘

mount -t smbfs -o username=xxx,password=xxx //hostname/dir /mnt/tmp

mount: unknown filesystem type ’smbfs’

系统已经不能识别smbfs文件系统了

查资料说RHE5的kernel已经不再支持smbfs,而改用Common Internet File Systemcifs(cifs)取代了原有的smbfs,猜想fc6也做了这个改动,所以命令就改为:

# mount -t cifs -o username=xxx,password=xxx //hostname/dir /mnt/tmp

很顺利地mount上了

来源URL:http://blog.csdn.net/chinalinuxzend/article/details/3460385