Here is how to install Ansible on Ubuntu 24.04 LTS. Tested and verified.
Prerequisites
- Ubuntu 24.04 LTS installed and updated
- Root or sudo access
- Internet connection
Step 1: Update System
sudo apt update && sudo apt upgrade -yStep 2: Add Official Repository
Ansible should be installed from the official repository to get the latest stable version and security updates.
# Add the official Ansible repository
# Check Ansible documentation for the latest repo URL
sudo apt install -y curl gnupg2Step 3: Install Ansible
sudo apt install -y ansibleStep 4: Verify Installation
ansible versionExpected output should show the installed version.
Step 5: Post-Install Configuration
# Enable and start the service (if applicable)
sudo systemctl enable --now ansible
# Verify status
sudo systemctl status ansibleTroubleshooting
Package Not Found
Make sure the repository was added correctly:
# List configured repositories
apt repolistPermission Denied
Ensure your user has the correct group membership:
sudo usermod -aG ansible $USER
newgrp ansibleUninstall
sudo apt remove -y ansibleRelated Guides
About the Author
I am Luca Berton, AI and Cloud Advisor. Book a consultation to get help with your infrastructure setup.