今天在linux上挂载windows共享的时候报错:
mount error: cifs filesystem not supported by the system
mount error(19): No such device
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)
出现此问题有两种可能,
一种是你升级内核后没有重新加载内核,这种情况只需要重启机器或者执行以下命令就行了
modprobe fuse
modprobe cifs
第二种情况是没有cifs命令模块,执行以下命令安装:
yum -y install cifs-utils
modprobe cifs
再次挂载。