Linux服务器挂载 windows的共享文件夹:
1.mount方式:关机失效
win主机IP192.168.1.100,共享目录workspace
mount -t cifs -o username='echo',password='123456' //192.168.1.100/workspace /mnt/share
2.通过修改fstab文件,支持开机自动挂载
修改/etc/fstab文件,文件最后加入:
//192.168.1.100/workspace /mnt/share cifs auto,username=‘echo’,password=‘123456’ 0 0