From 132aa21f0820b47512000b6114d745442ec73444 Mon Sep 17 00:00:00 2001 From: Nicole Rappe Date: Mon, 4 May 2026 16:55:03 -0600 Subject: [PATCH] Update deployments/automation/FOG Project.md --- deployments/automation/FOG Project.md | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/deployments/automation/FOG Project.md b/deployments/automation/FOG Project.md index 9572351..bda8120 100644 --- a/deployments/automation/FOG Project.md +++ b/deployments/automation/FOG Project.md @@ -44,12 +44,20 @@ If you want to deploy the FOG Project software in your homelab environment to re Apply the configuration safely and temporarily with `sudo netplan try` and if connectivity still works, accept the changes permanently by running `sudo netplan apply`. Otherwise, Netplan will roll back the changes automatically. -### Update the Host +### Update & Snapshot the GuestVM Before we take a checkpoint/snapshot and install FOG Project, we want to ensure that the GuestVM is fully updated. After the updates are complete, shutdown the GuestVM, take a snapshot, and boot it back up. ```sh sudo apt update -y && sudo apt upgrade -y && sudo apt autoremove sudo poweroff - - -``` \ No newline at end of file +``` + +### Download FOG Project Tarball +Download the most recent FOG Project tarball from the [official website](https://fogproject.org/download.php) then extract it. + +```sh +curl -L https://api.github.com/repos/FOGProject/fogproject/tarball/1.5.10.1826 -o /tmp/FOGProject-fogproject-1.5.10.1826-0-g2309704.tar.gz +tar -xzvf FOGProject-fogproject-1.5.10.1826-0-g2309704.tar.gz +cd FOGProject-fogproject-1.5.10.1826-0-g2309704/bin +sudo ./installfog.sh + ``` \ No newline at end of file