web-dev-qa-db-ja.com

ホームディレクトリをrsyncでバックアップし、不要なフォルダーをスキップする

あなたは簡単に外付けハードドライブ上のホームフォルダをバックアップすることができます

rsync -a --exclude=.cache --progress /home/$USER /media/linuxbackup/home/$USER

このバックアップから再インストールする必要があるとき、私はそれを決して必要としないだろうと思うので、.cacheフォルダーを除外しました。

ここで、通常のバックアップで除外できるすべてのフォルダーのリストを見つけました。
ホームディレクトリのバックアップから除外できるファイルとディレクトリは?

このフォームにいくつかのコメントを含むこの回答のリストを作成しました。

#These directories may be excluded:

.gvfs                           # contains mounted file systems?
.local/share/gvfs-metadata
.Private                        # contains the actual encrypted home directory
.dbus                           # session-specific
.cache
.Trash                          # do I need to say more?
.local/share/Trash
.cddb                           # cached info about audio CDs
.aptitude                       # cached packages lists

#Flash-specific:

.Adobe                          # Cache for flash, maybe others?
.macromedia   # except for Flash persistence, there is no reason to keep this

#Files:

.xsession-errors            # contains errors from the current graphical session
.recently-used              # recently used files
.recently-used.xbel
.thumbnails

ここにGistの完全なリストがあります

このリストをrsyncコマンドに追加するにはどうすればよいですか?

22
rubo77

除外リストには、#で始まるファイル名、フォルダー名、および行のみを含めることができます。フォルダー名の後ろのコメントは許可されていません。不要なすべての既知のファイルとフォルダーでGitリポジトリを作成しました。

これをダウンロード ignorelist to/var/tmp/ignorelist

wget https://raw.githubusercontent.com/rubo77/rsync-homedir-excludes/master/rsync-homedir-excludes.txt -O /var/tmp/ignorelist

次に、rsyncを開始します

rsync -aP --exclude-from=/var/tmp/ignorelist /home/$USER/ /media/$USER/linuxbackup/home/

注意:

38
rubo77

man rsyncから:

 --exclude-from=FILE     read exclude patterns from FILE
          This option is related to the --exclude option, but it specifies
          a FILE that contains exclude patterns  (one  per  line).   Blank
          lines  in  the  file  and  lines  starting  with  ’;’ or ’#’ are
          ignored.  If FILE is -, the list  will  be  read  from  standard
          input.
4
muru

バックアップしたいディレクトリとファイルがすべてある場合、これを試すことができます。すべての隠しディレクトリを除外します。

rsync -aP --exclude=.* /home/$USER/ /media/$USER/folder

0
arth