美文网首页
linux-挂载Windows共享-拷贝-达到备份目的

linux-挂载Windows共享-拷贝-达到备份目的

作者: 李哈哈_2c85 | 来源:发表于2022-02-23 14:08 被阅读0次

1、Windows共享文件
查看共享路径目录

image.png
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

参考文章
https://www.cnblogs.com/pyng/p/10249957.html

相关文章

网友评论

      本文标题:linux-挂载Windows共享-拷贝-达到备份目的

      本文链接:https://www.haomeiwen.com/subject/ocnglrtx.html