#!/bin/sh
#进行windows paths目录同步
cd /mnt str="//10.33.4.199/linux"
result=$(df | grep ${str} )
if [[ "$result" != "" ]]
then
echo "/mnt/patches 已成功挂载到//10.33.4.199/linux"
else
echo "正在进行/mnt/patches挂载//10.33.4.199/linux"
mount -t cifs -o username="administrator",password="hxsd@123" //10.33.4.199/linux /mnt/patches
fi
相关文章
- windows 挂载linux nfs
- 虚拟机中如何Linux系统如何访问PC硬盘中的文件(如何将windows下的文件夹挂载到linux虚拟机下)
- linux下使用mount命令挂载windows共享目录出错的解决办法
- openfiler作为文件服务器,windows、linux挂载NFS实现共享,以及windows、linux实现SMB/CIFS
- Centos中mount命令挂载windows7共享目录
- Linux 磁盘挂载和mount共享、NFS与防火墙配置
- Linux上mount 挂载windows共享文件权限问题
- 在linux挂载windows共享Mount CIFS
- linux挂载windows共享文件夹出错,提示mount error(13): Permission denied
- linux中使用cifs挂载windows 7的共享文件提示mount error(5): Input/output error