mount: unknown filesystem type "smbfs’
今天在使用FC6时,发现mount不了windows的共享盘
sudo mount -t smbfs -o username=xxx,password=xxx //hostname/dir /mnt/tmp
sudo mount: unknown filesystem type ’smbfs’
系统已经不能识别smbfs文件系统了
查资料说RHE5的kernel已经不再支持smbfs,而改用Common Internet File Systemcifs(cifs)取代了原有的smbfs,猜想fc6也做了这个改动,所以命令就改为:
sudo mount -t cifs -o username=xxx,password=xxx ,codepage=936,iocharset=cp936 //hostname/dir /mnt/tmp
很顺利地mount上了