共计 788 个字符,预计需要花费 2 分钟才能阅读完成。
假设 Windows 的 IP 为 192.168.1.106 共享目录为 C://Intel,则其共享地址为 192.168.1.106/Intel。
挂在方法:
mount -t cifs //192.168.1.106/intel /mnt -o username=’jsme’,password=’312′
此处 username 和 password 都是 Windows 主机的用户名和密码,该方法为 root 用户使用,挂载后 owner 和 group 都为 root 且挂在后目录不能用 chmod 修改目录权限
mount -t cifs //192.168.2.26/device /mnt/share -o username=share,password=share,rw,file_mode=0777,dir_mode=0777,setuid=509,setgid=101
其中,uid=509, gid=101 是一个普通用户 dba /mnt/share 权限位是 0777, 所有用户有完全访问权限
卸载方法:
umount /mnt
——————————————————————————————
以上方法立即生效但是在 Linux 主机重启后失效,永久生效方法为
修改 /etc/fstab 文件,文件最后加入:
//192.168.1.106/Inetl /mnt cifs username=‘jsme’,password=‘312’,rw 0 0
或在文件 /etc/rc.local 添加
mount -t cifs //192.168.1.106/intel /mnt -o username=’jsme’,password=’312′
本文永久更新链接地址 :http://www.linuxidc.com/Linux/2017-04/142822.htm