tar cf - <files> -P | pv -s $(du -sb <files> | awk '{print $1}') | gzip > <some .tar.gz file>
where:
- `` is the root-mounted (i.e. starts with /) path to the files
DefinitionBlock ("", "SSDT", 1, "APPLE ", "Debug", 0x00001000) | |
{ | |
/* | |
* Many OEM ACPI implementations have a ADBG function which is used for | |
* debug logging. In almost all cases, this function calls MDBG, which is | |
* supposed to be defined in a ACPI debug SSDT (but is usually missing). | |
* This should make ADBG functional. | |
*/ | |
Method (MDBG, 1, NotSerialized) | |
{ |
[Unit] | |
Description=Disable GPE6F interrupts | |
[Service] | |
Type=oneshot | |
ExecStart=/bin/bash -c "echo disable > /sys/firmware/acpi/interrupts/gpe6F" | |
[Install] | |
WantedBy=multi-user.target |
https://wiki.archlinux.org/index.php/beginners'_guide
What I wanted:
###Connect to Wifi
wifi-menu -o
# Backup | |
docker exec CONTAINER /usr/bin/mysqldump -u root --password=root DATABASE > backup.sql | |
# Restore | |
cat backup.sql | docker exec -i CONTAINER /usr/bin/mysql -u root --password=root DATABASE | |