linux下挂载windows共享文件夹

1.在windows下新建一用户test,密码为test

2.把D盘下把test文件夹共享,设置共享权限中添加用户test据需要指定,可以给予完全控制权限。

3.linux下用root用户执行mount -o username=test,password=test //192.168.10.100/test /mnt

4.检查挂载:

[root@test2 /]# mount
/dev/mapper/VolGroup00-LogVol00 on / type ext3 (rw)
proc on /proc type proc (rw)
sysfs on /sys type sysfs (rw)
devpts on /dev/pts type devpts (rw,gid=5,mode=620)
/dev/cciss/c0d0p1 on /boot type ext3 (rw)
tmpfs on /dev/shm type tmpfs (rw)
/dev/sda1 on /u01/oracle/oradata/orcl type ext3 (rw)
/dev/sda2 on /vbox type ext3 (rw)
none on /proc/sys/fs/binfmt_misc type binfmt_misc (rw)
sunrpc on /var/lib/nfs/rpc_pipefs type rpc_pipefs (rw)
//192.168.10.100/test on /mnt type cifs (rw,mand)

可以看到linux用户对test文件夹有读写权限。

5.测试结果:

linux用户确实可以在test文件夹中新建并删除文件,也可以读取windows用户在test文件夹中新建的文件,但不能删除。有点小瑕疵,但基本可以满足需要。

 

你可能感兴趣的:(linux)