#mount -t cifs -o username=admin,password=123456 //192.168.2.3/share /mnt/soft
其中:
username,
password
是windows登录用户名密码
share就是新建的共享文件夹
/mnt/soft是希望挂载到的地方,可随意,也可以定在/home/xxx/xxx
3、开机启动就挂载文件夹
在/etc/fstab文件中添加下列代码
//192.168.2.3/share /mnt/soft cifs username=admin,password=123456 0 0
使用VMware Tools实现共享文件夹太恶心,折腾了好久,依旧没有解决,只好采用挂载的方式进行。挂载方法如下: 1、在Windows下,对某个文件夹进行共享,如share文件夹; 2、在CentOS下,执行命令:
#mount -t cifs -o username=admin,password=123456 //192.168.2.3/share /mnt/soft
其中:
username,
password
是windows登录用户名密码
share就是新建的共享文件夹
/mnt/soft是希望挂载到的地方,可随意,也可以定在/home/xxx/xxx
3、开机启动就挂载文件夹
在/etc/fstab文件中添加下列代码
//192.168.2.3/share /mnt/soft cifs username=admin,password=123456 0 0