Linux mount -t cifs 失败

Linux 挂载共享文件夹失败

使用命令:
mount -t cifs -o username=“user”,password=“passwork”,vers=2.0 //10.1.1.1/test/ /mnt/
失败报错,报错信息
在这里插入图片描述
解决方式:
mount -v -t cifs //10.1.1.1/test/ mnt/ -o username=user,password=password
使用这个命令就可以解决mount失败问题

你可能感兴趣的:(Linux,linux,服务器,unix)