24. Vagrant VM for beginners | Virtual Box | Virtual Machine | Install | init | up | ssh | Rajiv

Опубликовано: 19 Август 2026
на канале: The Python Gurukul
193
16

Vagrant
Vagrant installation
Initialize Vagrant
Start the Virtual Machine
Destroy the Virtual Machine
VirtualBox
Introduction
Installation
Management

Vagrant
Vagrant is a tool for building and managing virtual machine environments in a single workflow. With an easy-to-use workflow and focus on automation, Vagrant lowers development environment setup time, increases production parity, and makes the "works on my machine" excuse a relic of the past.


Vagrant VM introduction
Vagrant is an open-source software product for building and maintaining portable virtual software development environments; e.g., for VirtualBox, KVM, Hyper-V, Docker containers, VMware, and AWS. It tries to simplify the software configuration management of virtualization in order to increase development productivity.

Virtual Box
Oracle VM VirtualBox is a cross-platform virtualization application.
it installs on your existing Intel or AMD-based computers, whether they are running Windows, Mac OS X, Linux, or Oracle Solaris operating systems (OSes).
it extends the capabilities of our existing computer so that it can run multiple OSes, inside multiple virtual machines, at the same time.

The only practical limits are disk space and memory
Oracle VM VirtualBox is a type-2 hypervisor for x86 virtualization developed by Oracle Corporation. VirtualBox was originally created by Innotek GmbH, which was acquired by Sun Microsystems in 2008, which was in turn acquired by Oracle in 2010.

vagrant init hashicorp/bionic64
config.vm.box = "hashicorp/bionic64“
Vagrant up
Vagrant ssh
Logout
Vagrant destroy
Vagrant box list
Vagrant box remove hashicorp/bionic64