sammlinux sammlinux
  • Ubuntu
    UbuntuShow More
    How To Install and Use Docker CE on Ubuntu 22.04
    26 Min Read
    How To Install and Secure phpMyAdmin on Ubuntu 22.04
    5 Min Read
    How To Secure SSH with Fail2Ban on Ubuntu 22.04
    8 Min Read
    How To Install Uptime Kuma on Ubuntu 22.04
    17 Min Read
    How To Install Ubuntu Server 22.04 LTS with Screenshots
    14 Min Read
  • Rocky Linux
    Rocky LinuxShow More
    How To Install phpMyAdmin on Rocky Linux 9
    15 Min Read
    How To Secure SSH with Fail2Ban on Rocky Linux 9
    12 Min Read
    How To Install Rocky Linux 9.2 Server with Screenshots
    12 Min Read
    How To Set Up a Firewall Using FirewallD on Rocky Linux 9
    8 Min Read
    How To Install Nginx on Rocky Linux 9: A Comprehensive Guide
    10 Min Read
  • Debian
    DebianShow More
    How To Secure SSH with Fail2Ban on Debian 11
    8 Min Read
    How To Install Debian 11 (Bullseye) Server with Pictures
    12 Min Read
    How To Install and Setup Node.js on Debian 11
    6 Min Read
    How To Install PHP 8.2 on Debian 11
    12 Min Read
    How To Install Nginx on Debian 11: A Comprehensive Guide
    9 Min Read
  • Linux
    LinuxShow More
    Best Practices Linux Server Security for System Administrator
    8 Min Read
    A Simple Guide: How To Manage Groups on Linux
    5 Min Read
    How To Manage Log Files Using Logrotate In Linux
    7 Min Read
    The Easy Ways to Check File Size in Linux
    7 Min Read
    How To Backup Files From Remote Linux VPS Using Rsync Script
    12 Min Read
  • CentOS
    CentOSShow More
    How To Secure SSH with Fail2Ban on CentOS 7
    9 Min Read
    How To Install PHP 8.2 on CentOS 7 / RHEL 7
    18 Min Read
    How To Install Apache Web Server on CentOS 7
    11 Min Read
    How To Set Up a Firewall Using FirewallD on CentOS 7
    5 Min Read
    Initial Setup CentOS 7 Server: Secure and Efficient
    9 Min Read
  • DevOps
    DevOpsShow More
    How To Create AWS CloudFront: A Step-by-Step Guide
    10 Min Read
Reading: How To Install Vagrant on Ubuntu 22.04
Share
Font ResizerAa
Linux for BeginnersLinux for Beginners
  • Ubuntu
  • Rocky Linux
  • Debian
  • Linux
  • CentOS
  • DevOps
Search
  • Ubuntu
  • Rocky Linux
  • Debian
  • Linux
  • CentOS
  • DevOps
Follow US
Copyright © 2014-2023 Ruby Theme Ltd. All Rights Reserved.

How To Install Vagrant on Ubuntu 22.04

Samuel Siahaan
By Samuel Siahaan
Last updated: April 1, 2023
SHARE

Introduction

Vagrant has revolutionized the way developers and system administrators create and manage virtualized development environments. With its easy-to-use configuration management and automation capabilities, Vagrant simplifies the process of setting up and sharing development environments. In this comprehensive guide, we’ll walk you through the step-by-step process of How To Install Vagrant on Ubuntu 22.04, enabling you to efficiently manage your development projects.

Contents
IntroductionTable of ContentsUnderstanding VagrantPrerequisitesStep-by-Step Install Vagrant on Ubuntu 22.04Step 1: System UpdateStep 2: Install VirtualBoxStep 3: Install Repository Addition DependenciesStep 4: Install Vagrant on Ubuntu 22.04.Step 5: Starting with the VagrantConclusion

Table of Contents

  • Introduction
  • Understanding Vagrant
  • Prerequisites
  • Step-by-Step Install Vagrant on Ubuntu 22.04
    • Step 1: System Update
    • Step 3: Install Repository Addition Dependencies
    • Step 4: Install Vagrant on Ubuntu 22.04.
    • Step 5: Starting with the Vagrant
  • Conclusion

Understanding Vagrant

Here’s a basic overview of how Vagrant works:

  1. Configuration: Vagrant uses a simple text file called a “Vagrantfile” to define the virtual machine’s settings, such as the operating system, resources (CPU, RAM), network settings, and provisioners (scripts that set up and configure the VM).
  2. Box: Vagrant uses “boxes” as base images to create virtual machines. A box is a pre-built and pre-configured VM template with a specific operating system and additional software installed.
  3. VM Management: Once the Vagrantfile is set up, developers can use Vagrant commands to create, start, stop, and destroy virtual machines based on the configuration defined in the file.
  4. Provisioning: Vagrant supports various provisioners like shell scripts, Ansible, Puppet, or Chef, which can be used to automatically set up and configure software and services within the VM.
  5. Providers: Vagrant can work with different virtualization providers like VirtualBox, VMware, Hyper-V, or cloud platforms like AWS and Azure, allowing developers to choose the most suitable platform for their projects.

By using Vagrant, developers can avoid the need to install software dependencies directly on their host machines, which can lead to a cluttered environment and potential conflicts between projects. Instead, Vagrant abstracts the development environment within a virtual machine, providing isolation and consistency.

Overall, Vagrant simplifies the process of managing development environments, making it easier for teams to collaborate and share their projects across different platforms and operating systems.

- Advertisement -

Prerequisites

  • Ubuntu Server: Make sure you have a clean installation of Ubuntu Server. You can deploy this on a physical machine or a virtual environment like VMware or VirtualBox. To set this up, follow our guide Initial Setup Ubuntu Server 22.04.
  • The virtual machine is required to install Vagrant, we can use any virtual machine for this purpose, such as Hyper-V, Docker, VMware, etc, but we are going to use VirtualBox in this tutorial.

Step-by-Step Install Vagrant on Ubuntu 22.04

Installing Vagrant on Ubuntu 22.04 is a straightforward process. Let’s dive into the steps:

Step 1: System Update

Before installing any new software, it’s recommended to update your package repository to ensure you’re getting the latest package information. Open a terminal and run the following commands:

sammy@vagrant:~$ sudo apt update
sammy@vagrant:~$ sudo apt upgrade
sammy@vagrant:~$ sudo apt -y install apt-transport-https ca-certificates curl software-properties-common

Step 2: Install VirtualBox

Virtual Box is a virtualization tool to create and manage multiple operating systems as virtual machines. The main reason behind installing VirtualBox is that vagrant needs virtualization support. We will install a Virtual box for the installation of Vagrant.

You will provision the machines on top of VirtualBox. So, first install the VirtualBox package. It is available in the Ubuntu’s repositories:

To install the latest VirtualBox on Ubuntu, tou can follow this guide :

- Advertisement -
  • How To Install VirtualBox 7.0 on Ubuntu 22.04

Step 3: Install Repository Addition Dependencies

By default, the Vagrant is not available on Ubuntu 22.04 base repository. Now run the following command below to add the Vagrant repository and GPG keys to your Ubuntu system:

sammy@vagrant:~$ wget -O- https://apt.releases.hashicorp.com/gpg | gpg --dearmor | sudo tee /usr/share/keyrings/hashicorp-archive-keyring.gpg

Add the official Vagrant APT repository to your system:

sammy@vagrant:~$ echo "deb [signed-by=/usr/share/keyrings/hashicorp-archive-keyring.gpg] https://apt.releases.hashicorp.com $(lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/hashicorp.list

Step 4: Install Vagrant on Ubuntu 22.04.

After the repository was added, now update apt packages and install the latest version of Vagrant using the following command below:

- Advertisement -
sammy@vagrant:~$ sudo apt update
sammy@vagrant:~$ sudo apt install vagrant

Installation should take few seconds to complete:

Install Vagrant on Ubuntu
Installing Vagrant on Ubuntu

We will run the check version command to ascertain whether or not we successfully installed Vagrant on our Ubuntu system, next verify the Vagrant installation :

sammy@vagrant:~$ vagrant --version
Vagrant 2.3.7

Step 5: Starting with the Vagrant

Once Vagrant is installed, you can use it to create and manage virtual development environments. Here is a simple example of how to create a Vagrant environment:

sammy@vagrant:~$ mkdir myvagrant_env
sammy@vagrant:~$ cd myvagrant_env/

In this example, we will use the centos/7 box. Next, initialize the Vagrant environment by running the following command:

sammy@vagrant:~/myvagrant_env$ vagrant init centos/7

The output will be similar to this:

A `Vagrantfile` has been placed in this directory. You are now
ready to `vagrant up` your first virtual environment! Please read
the comments in the Vagrantfile as well as documentation on
`vagrantup.com` for more information on using Vagrant.

Finally, start the Vagrant environment by running the following command below:

sammy@vagrant:~/myvagrant_env$ vagrant up

The output will be similar to this:

Output :

==> default: Configuring and enabling network interfaces...
    default: SSH address: 192.168.120.122:22
    default: SSH username: vagrant
    default: SSH auth method: private key
==> default: Rsyncing folder: /home/sammy/myvagrant_env/ => /vagrant

Vagrant further mounts the project directory at /vagrant in the virtual machine. It allows you to work on the project’s files on the host machine. So, to ssh into the virtual machine, run:

sammy@vagrant:~/myvagrant_env$ vagrant ssh

To stop the virtual machine, run:

sammy@vagrant:~/myvagrant_env$ vagrant halt

The above command will stop the machine if it is running. Also, will destroy all resources made during the creation of machine:

sammy@vagrant:~/myvagrant_env$ vagrant destroy

Conclusion

Vagrant brings simplicity and automation to the process of setting up and managing development environments. With its easy installation process and intuitive configuration management, developers and system administrators can quickly create isolated and reproducible environments for their projects. By following the steps outlined in this guide, you’ll have Vagrant up and running on your Ubuntu 22.04 system, ready to streamline your development workflows and enhance collaboration within your team.

For additional help or useful information, we recommend you check the official Vagrant website.

Also Read Our Other Guides :

  • How To Install VirtualBox 7.0 on Ubuntu 22.04
  • How To Install Java Using OpenJDK 17 on Ubuntu 22.04
  • How To Install Jenkins on Ubuntu Server 22.04
  • How To Install and Use TeamViewer on Ubuntu 22.04
  • How To Install Python 3.11 from Source on Ubuntu 22.04
  • How To Install Python 3.11 on Rocky Linux 9

Finally, now you have learned how to Install Vagrant on Ubuntu 22.04.

TAGGED:UbuntuVagrantVirtiualboxVirtual EnvironmentVM

Sign Up For Daily Newsletter

Be keep up! Get the latest breaking news delivered straight to your inbox.
[mc4wp_form]
By signing up, you agree to our Terms of Use and acknowledge the data practices in our Privacy Policy. You may unsubscribe at any time.
Share This Article
Facebook Copy Link Print
Previous Article How To Install and Config Git on Ubuntu 22.04
Next Article How To Install Java Using OpenJDK 17 on Ubuntu 22.04
Leave a Comment

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

How To Install and Secure phpMyAdmin on Ubuntu 22.04
Ubuntu
Install and Configure Docker Swarm Mode on Centos 7
CentOS
How To Install and Config Thumbor on Debian 10
Debian
How To Install MariaDB 10.6 on Debian 11 Server
Debian
How To Install MongoDB 6.0 on Debian 10 & 11
Debian

You Might Also Like

Ubuntu

How To Install Uptime Kuma on Ubuntu 22.04

17 Min Read
Ubuntu

How To Install Apache 2.4 on Ubuntu 22.04

10 Min Read
Ubuntu

How To Install and Use Docker CE on Ubuntu 22.04

26 Min Read
Ubuntu

How To Install and Config Git on Ubuntu 22.04

12 Min Read
Ubuntu

How To Build NGINX from Source (Compile) on Ubuntu Server 22.04

13 Min Read
Ubuntu

How To Install MariaDB 10.6 on Ubuntu Server 22.04

14 Min Read
Ubuntu

How To Install Ubuntu Server 22.04 LTS with Screenshots

14 Min Read
Ubuntu

How To Install Node.js on Ubuntu 22.04 With 3 Different Ways

20 Min Read
Show More

Always Stay Up to Date

Subscribe to our newsletter to get our newest articles instantly!

sammlinux sammlinux

Providing beginner-friendly Linux tutorials and open-source guides to simplify your digital infrastructure.

www.sammlinux.com © 2026 | All Rights Reserved

Join Us!
Subscribe to our newsletter and never miss our latest news, podcasts etc.

Subscribe to our newsletter to get our newest articles instantly!

Zero spam, Unsubscribe at any time.
Welcome Back!

Sign in to your account

Username or Email Address
Password

Lost your password?