1、Windows共享文件
查看共享路径目录
2、linux安装mount.cifs软件包和挂载
yum install cifs-utils -y
mkdir -p /root/lxt/hetong
#开始挂载
mount.cifs //192.168.6.227/1 /root/lxt/hetong -o user=administrator,pass=www.123
#开机自动挂载
echo "mount.cifs //192.168.6.227/1 /root/lxt/hetong -o user=administrator,pass=www.123">>/etc/rc.local
#压缩文件到相应备份目录(tar -P参数为使用绝对路径)
tar -zcvPf /home/hetong-6.227/hetong_`date +%F`.tgz /root/lxt/hetong
3、加脚本写入crontab
vim backup-hetong.sh
############################################################
#! /bin/bash
#压缩备份文件
#删除超过7天的备份
tar -zcvPf /home/hetong-6.227/hetong_`date +%F`.tgz /root/lxt/hetong
find /home/hetong-6.227/ -name "hetong_*" -type f -ctime +7 -delete
############################################################
执行以下命令加入计划任务,每天1:30执行一次脚本
(echo "30 01 * * * /usr/bin/bash /root/lxt/backup-hetong.sh";crontab -l)|crontab
chmod +x backup-hetong.sh
网友评论