O que você filtra / exclui quando faz backup com o rsync? [fechadas]

4

Estou tentando criar um arquivo de filtro / exclusão abrangente, para evitar backups que não façam sentido no backup, como dados temporários / de cache ou arquivos facilmente recuperáveis. Eu apreciaria se você pudesse compartilhar (parte de) sua lista de exclusão para backups rsync.

Aqui está o que eu tenho até agora:

## Universal excludes

lost+found
ld.so.cache

# backup text files (e.g. from Emacs)
- *~
- \#*\#

# Commonly distributed Mac OS X cache
- .DS_Store

# Commonly distributed Windows cache
- Thumbs.db

## Root file system
- /dev/
- /etc/modules.conf
- /media/
- /proc/
- /sys/
- /tmp/
- /usr/portage/
- /usr/src/
- /var/tmp/
- /var/log/

# Of the mounted stuff, whitelist only my two data partitions
- /mnt/
+ /mnt/data1
+ /mnt/data2

# Common package managers (apt, yum)
- /var/cache/apt/
- /var/cache/yum/

## Filters for home dirs (assumes /home/<user> dir structure)

# Cache
- /home/*/.cache/

# Downloads
- /home/*/Downloads/
+ /home/*/Downloads/src/

# Dropbox
- /home/*/Dropbox

# Temporary files / cache
- /home/*/.local/share/Trash
- /home/*/.cache
- /home/*/.Trash

# X Windows System
- /home/*/.xsession-errors*

# Gnome temp stuff
- /home/*/.compiz*/session
- /home/*/.gksu.lock
- /home/*/.gvfs

# Common Applications

# Adobe Reader
- /home/*/.adobe/**/AssetCache/
- /home/*/.adobe/**/Cache/
- /home/*/.adobe/**/Temp/
- /home/*/.adobe/**/UserCache.bin

# Dropbox temp stuff
- /home/*/.dropbox/
- /home/*/.dropbox-dist/

# Gimp
- /.gimp-*/tmp
- /.gimp-*/swap

# Mozilla Firefox
- /home/*/.mozilla/firefox/*/Cache/
- /home/*/.mozilla/firefox/*/lock
- /home/*/.mozilla/firefox/*/.parentlock

# Mozilla Thunderbird
- /home/*/.mozilla-thunderbird/*/lock
- /home/*/.mozilla-thunderbird/*/.parentlock

# Pidgin (accounts.xml contains passwords in clear text)
- /home/*/.purple/accounts.xml

O que mais você acha que seria útil adicionar a este arquivo de filtro, ou o que você usa e por quê?

    
por leden 16.09.2012 / 06:12

1 resposta

1

Eu geralmente também excluo:

  • /etc/mtab
  • /run/
  • /var/run/
  • /var/cache/pacman/pkg/ (em sistemas Arch Linux)
por 16.09.2012 / 12:50