将RedHat4换成redhat5之后发现以前的mount命令无法挂载了,怎么办?不用着急,作者在经过一番摸索之后终于找到了问题的解决办法,一起来看看吧!
以前的命令:
mount -t smbfs -o username=imgupload,password=imgupload //192.168.119.169/img /img
在RedHat5下执行会报如下错误:
mount: unknown filesystem type 'smbfs'
经过查询后得知:
系统已经不能识别smbfs文件系统了
查资料说RHE5的kernel已经不再支持smbfs,而改用Common Internet File Systemcifs(cifs)取代了原有的smbfs,所以命令就改为:
# mount -t cifs -o username=xxx,password=xxx //hostname/dir /mnt
所以新的挂载命令改为:
mount -t cifs -o username=imgupload,password=imgupload //192.168.119.169/imgnew /imgnew
【编辑推荐】