工具:
1.windows系统下可以访问的共享文件夹 \\192.168.1.166\share
2.一台ip为192.168.1.82的Centos7系统的虚拟机
任务:
将
\\192.168.1.166\share
挂载到192.168.1.82:/data/website/share
目录下
1.首先安装cifs-utils安装包
1 | yum install cifs-utils -y |
2.挂载目录(挂载前确定好要挂载的目录是为空的,不然非空的文件夹挂在后会被清空的)
1 | mount -t cifs //192.168.1.166/share /data/website/share -o username=root,password=123456 |
3.添加开机自动挂载的任务
1 | echo "mount -t cifs //192.168.1.166/share /data/website/share -o username=root,password=123456" >> /etc/rc.local && chmod 777 /etc/rc.local && chmod -R 777 /etc/rc.d |