{"id":1355,"date":"2017-04-17T22:03:08","date_gmt":"2017-04-17T16:33:08","guid":{"rendered":"https:\/\/pheonixsolutions.com\/blog\/?p=1355"},"modified":"2026-08-21T15:56:18","modified_gmt":"2026-08-21T10:26:18","slug":"simple-guide-start-using-vagrant-virtualbox","status":"publish","type":"post","link":"https:\/\/pheonixsolutions.com\/blog\/simple-guide-start-using-vagrant-virtualbox\/","title":{"rendered":"Simple guide to start using Vagrant with VirtualBox"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">Introduction<\/h2>\n\n\n\n<p>Vagrant is an open-source tool used to create, configure, and manage virtual development environments using a simple command-line interface. It works with virtualization providers such as VirtualBox, VMware, Hyper-V, and Docker.<\/p>\n\n\n\n<p>Vagrant allows developers and system administrators to create reproducible and portable virtual environments with predefined configurations. Instead of manually installing and configuring a virtual machine each time, users can define the required configuration in a <code>Vagrantfile<\/code> and recreate the environment whenever required.<\/p>\n\n\n\n<p>In this guide, we will learn how to install Vagrant with VirtualBox and create, access, shut down, and delete a virtual machine.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Prerequisites<\/h2>\n\n\n\n<p>Before getting started with Vagrant, make sure you have:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>A system running Windows, macOS, or Linux.<\/li>\n\n\n\n<li>Basic knowledge of virtual machines.<\/li>\n\n\n\n<li>Basic knowledge of the command line or terminal.<\/li>\n\n\n\n<li>VirtualBox installed on the system.<\/li>\n\n\n\n<li>Vagrant installed on the system.<\/li>\n\n\n\n<li>Sufficient disk space and system resources for running virtual machines.<\/li>\n\n\n\n<li>Internet access to download Vagrant boxes.<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Implementation<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">1. Install VirtualBox<\/h3>\n\n\n\n<p>First, download and install VirtualBox for your operating system.<\/p>\n\n\n\n<p><a href=\"https:\/\/www.virtualbox.org\/wiki\/Downloads?utm_source=chatgpt.com\">Download VirtualBox<\/a><\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2017\/04\/image.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"464\" src=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2017\/04\/image-1024x464.png\" alt=\"\" class=\"wp-image-10891\" srcset=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2017\/04\/image-1024x464.png 1024w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2017\/04\/image-300x136.png 300w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2017\/04\/image-768x348.png 768w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2017\/04\/image-1536x696.png 1536w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2017\/04\/image-662x300.png 662w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2017\/04\/image.png 1919w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/a><\/figure>\n\n\n\n<p>After installation, verify that VirtualBox is available on your system.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">2. Install Vagrant<\/h3>\n\n\n\n<p>Download and install Vagrant based on your operating system.<\/p>\n\n\n\n<p><a href=\"https:\/\/developer.hashicorp.com\/vagrant\/downloads?utm_source=chatgpt.com\">Download Vagrant<\/a><\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2017\/04\/image-1.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"465\" src=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2017\/04\/image-1-1024x465.png\" alt=\"\" class=\"wp-image-10892\" srcset=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2017\/04\/image-1-1024x465.png 1024w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2017\/04\/image-1-300x136.png 300w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2017\/04\/image-1-768x349.png 768w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2017\/04\/image-1-1536x698.png 1536w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2017\/04\/image-1-660x300.png 660w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2017\/04\/image-1.png 1919w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/a><\/figure>\n\n\n\n<p>After installation, verify the installation:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">vagrant --version\n<\/pre>\n\n\n\n<p>The command should display the installed Vagrant version.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">3. Create a Directory for the VM<\/h3>\n\n\n\n<p>Create a separate directory for your Vagrant project:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">mkdir centos-vm\ncd centos-vm\n<\/pre>\n\n\n\n<p>Keeping each Vagrant environment in its own directory makes it easier to manage the associated <code>Vagrantfile<\/code> and configuration.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">4. Add a Vagrant Box<\/h3>\n\n\n\n<p>A Vagrant box is a packaged virtual machine image that Vagrant uses as the base for creating a VM.<\/p>\n\n\n\n<p>You can add a box using:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">vagrant box add &lt;box-name>\n<\/pre>\n\n\n\n<p>For example:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">vagrant box add centos &lt;box-url>\n<\/pre>\n\n\n\n<p>For new environments, it is recommended to use a currently supported and maintained CentOS-compatible box rather than the old CentOS 6.7 box referenced in the original article.<\/p>\n\n\n\n<p>You can also search available boxes through the official Vagrant Cloud.<\/p>\n\n\n\n<p><a href=\"https:\/\/portal.cloud.hashicorp.com\/vagrant\/discover?utm_source=chatgpt.com\">Vagrant Cloud<\/a><\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">5. Initialize the Vagrant Environment<\/h3>\n\n\n\n<p>After adding the box, initialize the Vagrant environment:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">vagrant init centos\n<\/pre>\n\n\n\n<p>This creates a file named:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">Vagrantfile\n<\/pre>\n\n\n\n<p>The <code>Vagrantfile<\/code> contains the configuration used by Vagrant to create and manage the virtual machine.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">6. Start the Virtual Machine<\/h3>\n\n\n\n<p>Start the VM using:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">vagrant up\n<\/pre>\n\n\n\n<p>Vagrant reads the configuration from the <code>Vagrantfile<\/code>, communicates with VirtualBox, and creates and starts the virtual machine.<\/p>\n\n\n\n<p>Once the process is completed, the VM is ready to use.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">7. Access the Virtual Machine<\/h3>\n\n\n\n<p>You can connect to the running VM using:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">vagrant ssh\n<\/pre>\n\n\n\n<p>After connecting, you can execute commands inside the virtual machine just as you would on a normal Linux system.<\/p>\n\n\n\n<p>For example:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">cat \/etc\/os-release\n<\/pre>\n\n\n\n<p>This displays information about the operating system running inside the VM.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">8. Check the VM Status<\/h3>\n\n\n\n<p>To check whether the Vagrant VM is running:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">vagrant status\n<\/pre>\n\n\n\n<p>This displays the current state of the virtual machine.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">9. Shut Down the Virtual Machine<\/h3>\n\n\n\n<p>When you no longer need the VM temporarily, you can shut it down gracefully:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">vagrant halt\n<\/pre>\n\n\n\n<p>This powers off the virtual machine without deleting it.<\/p>\n\n\n\n<p>You can start the same VM again later using:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">vagrant up\n<\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">10. Delete the Virtual Machine<\/h3>\n\n\n\n<p>If you no longer need the VM, you can remove it using:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">vagrant destroy\n<\/pre>\n\n\n\n<p>Vagrant will ask for confirmation before deleting the virtual machine.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">Are you sure you want to destroy the 'default' VM? [y\/N]\n<\/pre>\n\n\n\n<p>Enter <code>y<\/code> to confirm.<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p><strong>Note:<\/strong> <code>vagrant destroy<\/code> removes the virtual machine and its associated resources. Make sure you do not have important data stored only inside the VM before destroying it.<\/p>\n<\/blockquote>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Common Vagrant Commands<\/h2>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Command<\/th><th>Description<\/th><\/tr><\/thead><tbody><tr><td><code>vagrant init<\/code><\/td><td>Initializes a Vagrant environment<\/td><\/tr><tr><td><code>vagrant up<\/code><\/td><td>Creates and starts the VM<\/td><\/tr><tr><td><code>vagrant ssh<\/code><\/td><td>Connects to the VM through SSH<\/td><\/tr><tr><td><code>vagrant status<\/code><\/td><td>Displays the VM status<\/td><\/tr><tr><td><code>vagrant halt<\/code><\/td><td>Shuts down the VM<\/td><\/tr><tr><td><code>vagrant reload<\/code><\/td><td>Restarts the VM and reloads configuration<\/td><\/tr><tr><td><code>vagrant suspend<\/code><\/td><td>Suspends the VM<\/td><\/tr><tr><td><code>vagrant resume<\/code><\/td><td>Resumes a suspended VM<\/td><\/tr><tr><td><code>vagrant destroy<\/code><\/td><td>Removes the VM<\/td><\/tr><tr><td><code>vagrant box list<\/code><\/td><td>Lists installed Vagrant boxes<\/td><\/tr><tr><td><code>vagrant box remove<\/code><\/td><td>Removes an installed box<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>Vagrant simplifies the process of creating and managing virtual machines by providing a consistent command-line workflow. When used with VirtualBox, it allows developers and system administrators to quickly create reproducible environments without manually configuring each virtual machine.<\/p>\n\n\n\n<p>With basic commands such as <code>vagrant init<\/code>, <code>vagrant up<\/code>, <code>vagrant ssh<\/code>, <code>vagrant halt<\/code>, and <code>vagrant destroy<\/code>, users can efficiently manage the complete lifecycle of a Vagrant-based virtual environment.<\/p>\n\n\n\n<p>Vagrant is particularly useful for development, testing, learning, and creating consistent environments across multiple systems.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">FAQs<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">1. What is Vagrant?<\/h3>\n\n\n\n<p>Vagrant is a tool for creating and managing portable and reproducible virtual development environments. It simplifies VM setup by allowing the environment configuration to be defined in a&nbsp;<code>Vagrantfile<\/code>.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">2. What is a Vagrant Box?<\/h3>\n\n\n\n<p>A Vagrant box is a packaged base image used to create a virtual machine. It contains the operating system and other basic components required to initialize a Vagrant environment.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">3. What is the difference between&nbsp;<code>vagrant halt<\/code>&nbsp;and&nbsp;<code>vagrant destroy<\/code>?<\/h3>\n\n\n\n<p><code>vagrant halt<\/code>&nbsp;shuts down the virtual machine but keeps it available so that it can be started again with&nbsp;<code>vagrant up<\/code>.<\/p>\n\n\n\n<p><code>vagrant destroy<\/code>&nbsp;removes the virtual machine and its associated resources. Therefore, it should be used carefully when the VM contains data that has not been backed up.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Related Articles<\/h2>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>How to SSH Remote Server via Terminal<\/strong> \u2013 Learn how to connect to a remote Linux server using SSH from the terminal.<br><a href=\"https:\/\/pheonixsolutions.com\/blog\/how-to-ssh-remote-server-via-terminal\/?utm_source=chatgpt.com\">How to SSH Remote Server via Terminal<\/a><\/li>\n\n\n\n<li><strong>How to Reset Password on Ubuntu Linux<\/strong> \u2013 Learn the steps involved in resetting a forgotten Ubuntu Linux password.<br><a href=\"https:\/\/pheonixsolutions.com\/blog\/how-to-reset-password-on-ubuntu-linux\/?utm_source=chatgpt.com\">How to Reset Password on Ubuntu Linux<\/a><\/li>\n<\/ol>\n","protected":false},"excerpt":{"rendered":"<p>Introduction Vagrant is an open-source tool used to create, configure, and manage virtual development environments using a simple command-line interface. It works with virtualization providers such as VirtualBox, VMware, Hyper-V, and Docker. Vagrant allows developers and system administrators to create reproducible and portable virtual environments with predefined configurations. Instead of&hellip; <a href=\"https:\/\/pheonixsolutions.com\/blog\/simple-guide-start-using-vagrant-virtualbox\/\" class=\"more-link read-more\" rel=\"bookmark\">Continue Reading <span class=\"screen-reader-text\">Simple guide to start using Vagrant with VirtualBox<\/span><i class=\"fa fa-arrow-right\"><\/i><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_feature_clip_id":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_post_was_ever_published":false},"categories":[1],"tags":[161,325,326],"class_list":{"0":"post-1355","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"hentry","6":"category-uncategorized","7":"tag-centos","8":"tag-vagrant","9":"tag-virtualbox","10":"h-entry","12":"h-as-article"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Simple guide to start using Vagrant with VirtualBox<\/title>\n<meta name=\"description\" content=\"Learn how to use Vagrant with VirtualBox to create, configure, manage, access, and delete virtual machines with simple Vagrant commands.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/pheonixsolutions.com\/blog\/simple-guide-start-using-vagrant-virtualbox\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Simple guide to start using Vagrant with VirtualBox\" \/>\n<meta property=\"og:description\" content=\"Learn how to use Vagrant with VirtualBox to create, configure, manage, access, and delete virtual machines with simple Vagrant commands.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pheonixsolutions.com\/blog\/simple-guide-start-using-vagrant-virtualbox\/\" \/>\n<meta property=\"og:site_name\" content=\"PHEONIXSOLUTIONS\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/\" \/>\n<meta property=\"article:published_time\" content=\"2017-04-17T16:33:08+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-08-21T10:26:18+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2017\/04\/image.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1919\" \/>\n\t<meta property=\"og:image:height\" content=\"869\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:site\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/simple-guide-start-using-vagrant-virtualbox\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/simple-guide-start-using-vagrant-virtualbox\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/0ffa33d73c869faec2d50e79c24e3503\"},\"headline\":\"Simple guide to start using Vagrant with VirtualBox\",\"datePublished\":\"2017-04-17T16:33:08+00:00\",\"dateModified\":\"2026-08-21T10:26:18+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/simple-guide-start-using-vagrant-virtualbox\\\/\"},\"wordCount\":831,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/simple-guide-start-using-vagrant-virtualbox\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/04\\\/image-1024x464.png\",\"keywords\":[\"centOS\",\"vagrant\",\"virtualbox\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/simple-guide-start-using-vagrant-virtualbox\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/simple-guide-start-using-vagrant-virtualbox\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/simple-guide-start-using-vagrant-virtualbox\\\/\",\"name\":\"Simple guide to start using Vagrant with VirtualBox\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/simple-guide-start-using-vagrant-virtualbox\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/simple-guide-start-using-vagrant-virtualbox\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/04\\\/image-1024x464.png\",\"datePublished\":\"2017-04-17T16:33:08+00:00\",\"dateModified\":\"2026-08-21T10:26:18+00:00\",\"description\":\"Learn how to use Vagrant with VirtualBox to create, configure, manage, access, and delete virtual machines with simple Vagrant commands.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/simple-guide-start-using-vagrant-virtualbox\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/simple-guide-start-using-vagrant-virtualbox\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/simple-guide-start-using-vagrant-virtualbox\\\/#primaryimage\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/04\\\/image.png\",\"contentUrl\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/04\\\/image.png\",\"width\":1919,\"height\":869},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/simple-guide-start-using-vagrant-virtualbox\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Simple guide to start using Vagrant with VirtualBox\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"name\":\"Pheonix Solutions\",\"description\":\"We Empower Your Business Growth\",\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\",\"name\":\"PheonixSolutions\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"contentUrl\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"width\":454,\"height\":300,\"caption\":\"PheonixSolutions\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/PheonixSolutions-209942982759387\\\/\",\"https:\\\/\\\/x.com\\\/pheonixsolution\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/0ffa33d73c869faec2d50e79c24e3503\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"http:\\\/\\\/pheonixsolutions.com\\\/blog\"],\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/author\\\/admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Simple guide to start using Vagrant with VirtualBox","description":"Learn how to use Vagrant with VirtualBox to create, configure, manage, access, and delete virtual machines with simple Vagrant commands.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/pheonixsolutions.com\/blog\/simple-guide-start-using-vagrant-virtualbox\/","og_locale":"en_US","og_type":"article","og_title":"Simple guide to start using Vagrant with VirtualBox","og_description":"Learn how to use Vagrant with VirtualBox to create, configure, manage, access, and delete virtual machines with simple Vagrant commands.","og_url":"https:\/\/pheonixsolutions.com\/blog\/simple-guide-start-using-vagrant-virtualbox\/","og_site_name":"PHEONIXSOLUTIONS","article_publisher":"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","article_published_time":"2017-04-17T16:33:08+00:00","article_modified_time":"2026-08-21T10:26:18+00:00","og_image":[{"width":1919,"height":869,"url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2017\/04\/image.png","type":"image\/png"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@pheonixsolution","twitter_site":"@pheonixsolution","twitter_misc":{"Written by":"admin","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pheonixsolutions.com\/blog\/simple-guide-start-using-vagrant-virtualbox\/#article","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/simple-guide-start-using-vagrant-virtualbox\/"},"author":{"name":"admin","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/0ffa33d73c869faec2d50e79c24e3503"},"headline":"Simple guide to start using Vagrant with VirtualBox","datePublished":"2017-04-17T16:33:08+00:00","dateModified":"2026-08-21T10:26:18+00:00","mainEntityOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/simple-guide-start-using-vagrant-virtualbox\/"},"wordCount":831,"commentCount":0,"publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/simple-guide-start-using-vagrant-virtualbox\/#primaryimage"},"thumbnailUrl":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2017\/04\/image-1024x464.png","keywords":["centOS","vagrant","virtualbox"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/pheonixsolutions.com\/blog\/simple-guide-start-using-vagrant-virtualbox\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/pheonixsolutions.com\/blog\/simple-guide-start-using-vagrant-virtualbox\/","url":"https:\/\/pheonixsolutions.com\/blog\/simple-guide-start-using-vagrant-virtualbox\/","name":"Simple guide to start using Vagrant with VirtualBox","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/simple-guide-start-using-vagrant-virtualbox\/#primaryimage"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/simple-guide-start-using-vagrant-virtualbox\/#primaryimage"},"thumbnailUrl":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2017\/04\/image-1024x464.png","datePublished":"2017-04-17T16:33:08+00:00","dateModified":"2026-08-21T10:26:18+00:00","description":"Learn how to use Vagrant with VirtualBox to create, configure, manage, access, and delete virtual machines with simple Vagrant commands.","breadcrumb":{"@id":"https:\/\/pheonixsolutions.com\/blog\/simple-guide-start-using-vagrant-virtualbox\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pheonixsolutions.com\/blog\/simple-guide-start-using-vagrant-virtualbox\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pheonixsolutions.com\/blog\/simple-guide-start-using-vagrant-virtualbox\/#primaryimage","url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2017\/04\/image.png","contentUrl":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2017\/04\/image.png","width":1919,"height":869},{"@type":"BreadcrumbList","@id":"https:\/\/pheonixsolutions.com\/blog\/simple-guide-start-using-vagrant-virtualbox\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/pheonixsolutions.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Simple guide to start using Vagrant with VirtualBox"}]},{"@type":"WebSite","@id":"https:\/\/pheonixsolutions.com\/blog\/#website","url":"https:\/\/pheonixsolutions.com\/blog\/","name":"Pheonix Solutions","description":"We Empower Your Business Growth","publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/pheonixsolutions.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/pheonixsolutions.com\/blog\/#organization","name":"PheonixSolutions","url":"https:\/\/pheonixsolutions.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","contentUrl":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","width":454,"height":300,"caption":"PheonixSolutions"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","https:\/\/x.com\/pheonixsolution"]},{"@type":"Person","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/0ffa33d73c869faec2d50e79c24e3503","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","caption":"admin"},"sameAs":["http:\/\/pheonixsolutions.com\/blog"],"url":"https:\/\/pheonixsolutions.com\/blog\/author\/admin\/"}]}},"jetpack_shortlink":"https:\/\/wp.me\/p7F4uM-lR","jetpack_sharing_enabled":true,"jetpack_featured_media_url":"","_links":{"self":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/1355","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/comments?post=1355"}],"version-history":[{"count":3,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/1355\/revisions"}],"predecessor-version":[{"id":10966,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/1355\/revisions\/10966"}],"wp:attachment":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/media?parent=1355"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/categories?post=1355"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/tags?post=1355"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}