Ubuntu recovery path

Blank Ubuntu.
One known baseline.

Run one small bootstrap to install Ansible and apply the workstation baseline: developer tools, Docker, Python, Node.js, and Terraform.

Terminal — Ubuntu restore
$ sudo apt-get update && sudo apt-get install -y curl
$ read -rsp "Bootstrap password: " BOOTSTRAP_PASSWORD
$ echo
$ curl -fsSL --user "bootstrap:${BOOTSTRAP_PASSWORD}" \
    "https://dotfilesetup.netlify.app/bootstrap-linux.sh" \
    -o /tmp/bootstrap-linux.sh
$ unset BOOTSTRAP_PASSWORD
$ less /tmp/bootstrap-linux.sh
$ bash /tmp/bootstrap-linux.sh

On a fresh Ubuntu installation, this installs Omabuntu as the workstation foundation by default. To skip it and get a plain Ubuntu workstation instead:

$ LINUX_PROFILE=default bash /tmp/bootstrap-linux.sh

The bootstrap opens the official 1Password sign-in page immediately, then continues with the restore.

Download script
  1. UnlockEnter the dedicated password and inspect the downloaded script.
  2. VerifyThe script checks and extracts its embedded restore payload.
  3. ConfigureAnsible applies the complete workstation baseline in repeatable tasks.
  4. Re-enterLog out and back in once so Docker group membership becomes active.