Tool | Backup Time (m:s) | Restore Time (m:s) | Backup space (G) | Backup space (%) | Backup (MB/s) | Restore (MB/s) |
---|---|---|---|---|---|---|
Tar | 4:42 | 5:19 | 11 | 9.6% | 404 | 357 |
Restic S3 local Upstream | 10:04 | 30:56 | 102 | 89.5% | 189 | 61 |
Restic S3 local Compress | 5:43 | 19:28 | 8.6 | 7.5% | 332 | 98 |
Restic Local Upstream | 8:33 | 26:06 | 102 | 89.5% | 222 | 73 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Unhandled exception: 0x20474343 in 64-bit code (0x000000007b00fdce). | |
Register dump: | |
rip:000000007b00fdce rsp:00000000005fe600 rbp:00000000005fea50 eflags:00000206 ( - -- I - -P- ) | |
rax:00000000005fe640 rbx:0000000000cc76f0 rcx:00000000005fe620 rdx:0000000000000000 | |
rsi:00000000005fe718 rdi:00000000005fe648 r8:0000000000000001 r9:00000000005fe710 r10:0000000000cc7730 | |
r11:0000000000000000 r12:0000000000cc76b0 r13:00000000005fe830 r14:00000000005fe860 r15:00000000005fe790 | |
Stack dump: | |
0x00000000005fe600: 00000000005fe620 000000006a5a6130 | |
0x00000000005fe610: 000000006a5a6600 000000006a438653 | |
0x00000000005fe620: 0000000020474343 0000000000000000 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# vagrant plugin install --plugin-clean-sources --plugin-source 'https://rcrs.rbinternational.com/artifactory/api/gems/gems/' vagrant-libvirt --debug | |
INFO global: Vagrant version: 1.9.7 | |
INFO global: Ruby version: 2.3.4 | |
INFO global: RubyGems version: 2.5.2 | |
INFO global: VAGRANT_OLD_ENV_HOSTNAME="sl1t0rci28" | |
INFO global: VAGRANT_OLD_ENV_MAIL="/var/spool/mail/root" | |
INFO global: VAGRANT_OLD_ENV_SUDO_COMMAND="/bin/bash" | |
INFO global: VAGRANT_OLD_ENV_SUDO_UID="10014" | |
INFO global: VAGRANT_OLD_ENV_USERNAME="root" | |
INFO global: VAGRANT_OLD_ENV_LANG="en_US.UTF-8" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
execute 'Notifier' do | |
command 'touch /tmp/notifier' | |
only_if 'test_condition_command' | |
notifies :touch, 'file[/tmp/notified]', :immediately | |
end | |
file '/tmp/notified' do | |
action :nothing | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
INSTANCE_NAME=$(curl http://metadata/computeMetadata/v1/instance/attributes/INSTANCE_NAME -H "Metadata-Flavor: Google") | |
echo "I am here" > /tmp/test | |
echo $INSTANCE_NAME >> /tmp/test |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -e | |
if [ $# -eq 0 ]; then | |
echo 'Usage: diskcheck.sh DEVICE...' >&2 | |
exit 1 | |
fi | |
function checkdeps { |