linux-mount: unknown filesystem type 'smbfs'解决方法记录
Posted on 2010-03-05 12:34 清晨的风 阅读(5727) 评论(0) 编辑 收藏 举报mount -t smbfs -o username="administrator",password="" //192.168.1.100/cp /mnt/ntfs
提示出错:
mount: unknown filesystem type 'smbfs'
查资料后,说smbfs改为cifs了,所以要用下面的方法:
# mount -t cifs -o username="administrator",password="" //192.168.1.101/cp /mnt/ntfs
成功!!