TranslateProject/published/201412/20141030 rsync Command to Exclude a List of Files and Directories in Linux.md

44 lines
2.6 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

Linux中使用rsync——文件和目录排除列表
================================================================================
**rsync**是一个十分有用而且十分流行的linux工具。它用于备份和恢复文件也用于对比和同步文件。我们已经在前面的文章讲述了[如何在Linux下使用rsync][1]而今天我们将增加一些更为有用的rsync使用技巧。
### 排除文件和目录列表 ###
有时候,当我们做大量同步的时候,我们可能想要从同步的文件和目录中排除一个文件和目录的列表。一般来说,像设备文件和某些系统文件,或者像临时文件或者缓存文件这类占据不必要磁盘空间的文件是不合适同步的,这类文件是我们需要排除的。
首先让我们创建一个名为“excluded”的文件当然你想取什么名都可以然后将我们想要排除的文件夹或文件写入该文件一行一个。在我们的例子中如果你想要对根分区进行完整的备份你应该排除一些在启动时创建的设备目录和放置临时文件的目录列表看起来像下面这样
![rsync excluded](http://blog.linoxide.com/wp-content/uploads/2014/10/rsync-excluded.jpg)
然后,你可以运行以下命令来备份系统:
$ sudo rsync -aAXhv --exclude-from=excluded / /mnt/backup
![rsync exclude file](http://blog.linoxide.com/wp-content/uploads/2014/10/rsync-exclude-file.jpg)
### 从命令行排除文件 ###
你也可以从命令行直接排除文件该方法在你要排除的文件数量较少并且在你想要将它写成脚本或加到crontab中又不想脚本或cron依赖于另外一个文件运行时十分有用。
例如,如果你想要同步/var到一个备份目录但是你不想要包含cache和tmp这些通常不会有重要内容的文件夹你可以使用以下命令
$ sudo rsync -aAXhv --exclude={"/var/cache","/var/tmp"} /var /home/adrian/var
![rsync exclude](http://blog.linoxide.com/wp-content/uploads/2014/10/rsync-exclude.jpg)
该命令易于在脚本或cron中使用也不会依赖其它文件。
--------------------------------------------------------------------------------
via: http://linoxide.com/linux-command/exclude-files-rsync-examples/
作者:[Adrian Dinu][a]
译者:[GOLinux](https://github.com/GOLinux)
校对:[wxy](https://github.com/wxy)
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创翻译,[Linux中国](http://linux.cn/) 荣誉推出
[a]:http://linoxide.com/author/adriand/
[1]:http://linux.cn/article-4503-1.html