centos挂载windows共享文件夹,并自动备份。

Posted K98091518

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos挂载windows共享文件夹,并自动备份。相关的知识,希望对你有一定的参考价值。

#mkdir /mnt/airfreightdb
#mount -t cifs -o username=admin,password=XXXXXXXX //192.168.42.5/AppServ /mnt/airfreightdb
#ll /mnt/airfreightdb
#mkdir /mnt/sdb1/airfreightdb
#cd /mnt/sdb1/airfreightdb
#vi airfreightdb.sh
********************************************************************

DATE=`date +%Y-%m-%d`
tar -cvzf /mnt/sdb1/airfreightdb/airfreightdb.$DATE.tar.gz  /mnt/airfreightdb
********************************************************************
#sh airfreightdb.sh
ll -h   #使用“-h”参数时,会根据文件的大小选择显示的单位是“K”、“M”还是“G”。


共享192.168.42.5的AppServ,关闭windows防火墙
进入centos,
建立mount文件夹,挂载AppServer,
再sdb1建立airfreightdb文件夹,建立sh(设定自动删除7日前的备份),
执行sh
建立排程

****************************************************************
七天后测试

自动删除7日前的备份
rm -f /mnt/sdb1/airfreightdb/`date -d ‘-7 days‘ +%Y%m%d`.tar.gz
find /mnt/sdb1/airfreightdb/ -type d -mtime +7 -exec rm -f

以上是关于centos挂载windows共享文件夹,并自动备份。的主要内容,如果未能解决你的问题,请参考以下文章

centos 如何挂载 window共享文件夹

centos如何挂载Windows共享文件

CentOS虚拟机挂载Windows共享目录

[技术分享] centos如何挂载Windows共享文件

centos7挂载windows共享文件

centos 7 mount win共享文件夹 开机自动挂载