shell - ubuntu server /opt/backups/目录中的文件每天如何以增量的方式自动备份到U盘
天蓬老师
天蓬老师 2017-04-22 08:55:41
0
1
647
我在ubuntu server14.04上用 docker 安装了个gitlab,然后docker中设置了gitlab 文件每天自动备份到/opt/backups中。但由于用的普通的电脑,不是server服务器,老大担心硬盘容易坏掉,所以,就买了个U盘。然后准备每天将/opt/backups目录中的文件,自动备份到U盘中,U盘已挂载到/mnt/usb 目录下面。由于我是做前端的,对shell这块不是很了解。想请教大家咋弄?

谢谢!

天蓬老师
天蓬老师

欢迎选择我的课程,让我们一起见证您的进步~~

reply all(1)
小葫芦

You can write a script for easy backup at any time
The first step is to write a script to back up files to a USB flash drive
For example: backups.sh

tar cvzf /mnt/usb/$(date +%Y%m%d%H%M%S).tar.gz /opt/backups

The second step is to use cron to automatically execute the backup script;

$ sudo crontab -e
0 17 * * * /bin/bash /where/is/your/backups.sh
#17点自动执行备份:

Or directly use crontab -e: #17 point to automatically perform backup:

0 17 * * * tar cvzf /mnt/usb/$(date +%Y%m%d%H%M%S).tar.gz /opt/backups

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template