前提
- windows 已设置好共享文件夹
- 有访问共享文件夹权限的用户
- Linux下已创建好挂载点,即用以挂载的文件夹
挂载文件夹
mount -t cifs -o username=用户名,password=密码 Windows共享文件夹路径 Linux挂载点路径
例如:
mount -t cifs -o username=zhangsan,password=12345678 //127.0.0.1/myfiles /mnt/myfiles
如果共享文件夹使用了域账户,例如 DATATEC\zhangsan
mount -t cifs -o domain=域名,username=用户名,password=密码 Windows共享文件夹路径 Linux挂载点路径
例如:
mount -t cifs -o domain=DATATEC,username=zhangsan,password=12345678 //127.0.0.1/myfiles /mnt/myfiles
解挂文件夹
umount -v Linux挂载点路径
例如:
umount -v /mnt/myfiles