2017年9月18日月曜日

ubuntuにtimeshiftを入れてバックアップのメモ

Ubuntuデータのバックアップ用にtimeshiftを使っています。細かい説明は技術評論社の解説がよいです。

作者の解説


https://teejeetech.in/timeshift/

GUIで起動するには


$ sudo timeshift-gtk
-gtkがないとCLIになります。

入れたらappstreamcliの更新エラー

http://gihyo.jp/admin/serial/01/ubuntu-recipe/0399

$ sudo apt-get update

とやると、

*** Error in `appstreamcli': double free or corruption (fasttop):

となって更新が止まる。こことかここによるとappstreamcliのバグとのこと。

対策がありました。

一回killすれば良いそうです。
$ sudo kill -KILL $(pgrep appstreamcli)
または
$ sudo pkill -KILL appstreamcli
のあと、
$ wget -P /tmp  https://launchpad.net/ubuntu/+archive/primary/+files/appstream_0.9.4-1ubuntu1_amd64.deb   https://launchpad.net/ubuntu/+archive/primary/+files/libappstream3_0.9.4-1ubuntu1_amd64.deb 
$ sudo dpkg -i /tmp/appstream_0.9.4-1ubuntu1_amd64.deb /tmp/libappstream3_0.9.4-1ubuntu1_amd64.deb
$ sudo apt-get update

snapshotのリスト



timeshift --list でsnapshotのリストが見られるのですが、

8 snapshots, 708.4 GB free
Num     Name                 Tags  Description  
------------------------------------------------------------------------------
0    >  2017-09-27_21-00-01  B                  
1    >  2018-06-06_11-59-51  B                  
2    >  2018-06-12_07-17-56  B                  
3    >  2018-07-07_21-00-01  D                  
4    >  2018-07-08_21-00-01  D                  
5    >  2018-07-09_21-00-02  D                  
6    >  2018-07-10_21-00-01  D                  
7    >  2018-07-11_21-00-01  D

TagのBはbootのときのバックアップ、DはDailyバックアップです。バックアップには10分くらいかかっているとのこと。

0 件のコメント:

コメントを投稿