执行目录树的备份并对文件应用某些操作

发布于 2024-11-27 02:38:29 字数 201 浏览 1 评论 0原文

我想做的是可能使用 rsync 来备份我的个人数据(在 Linux 上)。我只想包含某些文件(jpg,nb,pdf,..)并排除其他所有文件。使用 rsync 可以轻松实现这一点。我还想做的是对我备份的文件应用某些操作,因为我需要节省一些磁盘空间。所以我的想法是重新调整我的 jpg 的大小,压缩我的 pdf,... 您认为解决这个问题的最佳方法是什么(尽可能简单)? 亲切的问候,安德烈

What I want to do is to backup my personal data (on a Linux boy) possibly using rsync. I want to include only certain files (jpg,nb,pdf,..) and exclude everything else. This is easily possible with rsync. What I also want to do is to apply certain operation on those files I backup since I need to save some disk space. So my idea is re resize my jpg's, zip my pdf's,...
What do you think is the best approach to solve this (as easy as possible)?
Kind Regards, André

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

酸甜透明夹心 2024-12-04 02:38:29

第一个问题你到达目的地还有多少空间?

mkdir -p /storage/backups/`date +\%Y-\%m-\%d`-`date +\%A`/$host/$username
rsync -avz /storage/backups/`date --date=yesterday +\%Y-\%m-\%d`-`date--date=yesterday    +\%A`/$host/$username/ /storage/backups/`date +\%Y-\%m-\%d`-`date +\%A`/$host/$username/
rsync -avz -e ssh --delete --exclude='....' /home/username/ /storage/backups/`date +\%Y-\%m-\%d`-`date +\%A`/$host/$username/

这将使备份保持整洁,只需使用 rsync 的包含/排除选项来仅备份您想要备份的 sycn 文件类型,或使用我在这篇文章中描述的方式 本地 rsync 包含/排除

First question how much space do you have at the destination?

mkdir -p /storage/backups/`date +\%Y-\%m-\%d`-`date +\%A`/$host/$username
rsync -avz /storage/backups/`date --date=yesterday +\%Y-\%m-\%d`-`date--date=yesterday    +\%A`/$host/$username/ /storage/backups/`date +\%Y-\%m-\%d`-`date +\%A`/$host/$username/
rsync -avz -e ssh --delete --exclude='....' /home/username/ /storage/backups/`date +\%Y-\%m-\%d`-`date +\%A`/$host/$username/

This will keep the backups nice and neat just use the include/exclude option of rsync to only sycn file types you want to back up or use the way i described in this post Local rsync inclusion/exclusion

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文