Tool to set up a Linux computer to hibernate
Перейти к файлу
Leandro Pereira bad888c69b Convert README to README.md 2021-06-29 12:56:51 -07:00
.github/workflows Build on Ubuntu 2021-04-27 14:39:26 -07:00
.clang-format Add "indent" Makefile target to indent code with clang-format 2021-06-29 12:56:51 -07:00
CONTRIBUTING.md Initial commit 2021-03-23 18:51:10 -07:00
LICENSE.TXT Initial commit 2021-03-23 18:51:10 -07:00
Makefile Respect CFLAGS and LDFLAGS passed to the make command line 2021-06-29 12:56:51 -07:00
README.md Convert README to README.md 2021-06-29 12:56:51 -07:00
SECURITY.md Add SECURITY.md 2021-03-24 09:46:44 -07:00
az-hibernate-agent.c Re-indent az-hibernate-agent.c according to .clang-format rules 2021-06-29 12:56:51 -07:00
az-hibernate-agent.service Fix path to agent in systemd service file 2021-03-23 21:12:41 -07:00

README.md

az-hibernate-agent

This agent sets up a VM for hibernation.

It accomplishes that by creating a swap file in the root directory that's slightly larger than the total amount of RAM available for the VM, ensuring it has no holes and isn't fragmented, and setting up parameters for the currently-running kernel (so the VM can be hibernated as soon as the set up is complete), and for next boots (so that the VM can be resumed).

No command-line parameters exist. The tool is fully automatic. It comes with a systemd unit file set up as a "simple" service, which can be started on every system boot. If the system has been properly set up, the tool will be completely finished almost instantaneously, not impacting boot time.

It currently only fully supports distributions with GRUB2 as the bootloader (e.g. those with /etc/default/grub as part of its configuration file), and those using initramfs-tools (e.g. Debian and Ubuntu). Use in systems where either of these aren't used is possible, however the tool won't be able to adjust the system in such a way that it'll resume from hibernation.

Installation can be performed either manually, by using the provided Makefile (e.g. by issuing make to build and make install with superuser privileges to install files in the correct locations), or by installing a .deb package. To build the .deb package, one can use the provided build.sh script in the debian-packaging branch of this repository, which, in a system where tools to build Debian packages have been installed, will perform all necessary steps to output a file that can be installed via dpkg.

Pull requests improving the tool are greatly appreciated. Please refer to the CONTRIBUTING.md file located in this repository for more information, including a link to the Microsoft Open Source Code of Conduct document.

Trademarks This project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft trademarks or logos is subject to and must follow Microsofts Trademark & Brand Guidelines. Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship. Any use of third-party trademarks or logos are subject to those third-partys policies.