pyratelog

personal blog
git clone git://git.pyratebeard.net/pyratelog.git
Log | Files | Refs | README

commit b196bbc7f6ad355bca084c6f21cb84d510c6be3f
parent 6e4550a842db49dc9d099df2a0c3dffe032d5a35
Author: pyratebeard <root@pyratebeard.net>
Date:   Mon, 24 Oct 2022 17:34:42 +0100

smoke_me_a_kipper

Diffstat:
Mentry/smoke_me_a_kipper.md | 25+++++++++++++++++++++++--
1 file changed, 23 insertions(+), 2 deletions(-)

diff --git a/entry/smoke_me_a_kipper.md b/entry/smoke_me_a_kipper.md @@ -27,8 +27,8 @@ I decided I needed more regular backups of my $HOME, so I needed some more stora After installing `borg` I initialised a new repo and kicked off a full backup ``` - ──── ─ borg init -e repokey /media/backup/kinakuta - ──── ─ borg create -v --stats /media/backup/kinakuta::$(date +%Y%m%d) $HOME + ──── ─ borg init -e repokey /media/backup/borg-kinakuta + ──── ─ borg create -v --stats /media/backup/borg-kinakuta::$(date +%Y%m%d) $HOME ``` The first time this ran it froze my system after about an hour and a half. @@ -39,9 +39,30 @@ When I rebooted after the second freeze my system dropped into maintenance mode, I decided to give `borg` another shot so kicked of the backup again. This time it succeeded. ``` + ──── ─ borg create -v --stats /media/backup/borg-kinakuta::$(date +%Y%m%d) $HOME | tee var/borg.log ~ +Enter passphrase for key /media/backup/borg-kinakuta: +Creating archive at "/media/backup/borg-kinakuta::20221023" +------------------------------------------------------------------------------ +Repository: /media/backup/borg-kinakuta +Archive name: 20221023 +Archive fingerprint: 125d8f26a952dadb0053e17c8c73bb70852f509c3db4b340021c99f5f8daa8ff +Time (start): Sun, 2022-10-23 10:58:05 +Time (end): Sun, 2022-10-23 20:34:51 +Duration: 9 hours 36 minutes 46.09 seconds +Number of files: 1343775 +Utilization of max. archive size: 0% +------------------------------------------------------------------------------ + Original size Compressed size Deduplicated size +This archive: 2.36 TB 2.18 TB 1.98 TB +All archives: 2.36 TB 2.18 TB 1.98 TB + + Unique chunks Total chunks +Chunk index: 1620226 2214299 +------------------------------------------------------------------------------ ``` Nine and a half hours was quicker than I was expecting. Over the next few days I ran backups after I finished work. + ``` ```