linux-mount: unknown filesystem type 'smbfs'解决方法记录
今天在使用CentOS 7,mount其它服务器的文件目录时# mount -t smbfs -o username="administrator",password="" //192.168.1.100/cp /mnt/ntfs提示出错:mount: unknown filesystem type 'smbfs'查资料后,说smbfs改为cifs了,所以要用下面的方法:
·
今天在使用CentOS 7,mount其它服务器的文件目录时
# 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
# 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
更多推荐
已为社区贡献1条内容
所有评论(0)