lebogangolifant / zero_day

This is my first repository as a full-stack engineer

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Vagrant

a tool for building and managing virtual machine environments in a single workflow.

Concepts

  • Using Vagrant on your local computer

Installation

Ubuntu

  • Open the Terminal application:
    • Now you will execute command line in your Terminal (each of them start with $)
  • Install VirtualBox: $ sudo apt-get install virtualbox
  • Install Vagrant: $ sudo apt-get install vagrant
  • Add the Ubuntu 20.04 (Focal) image to your box list: $ vagrant box add ubuntu/focal64 Warning: this step can take time.
  • Create your first virtual machine:
    • $ vagrant init ubuntu/focal64 -> it will generate a Vagrantfile with base = "ubuntu/focal64" - you don’t have to execute this command line everyday, only once, to create a new virtual machine
    • $ vagrant up -> it will start your virtual machine
    • $ vagrant ssh -> now you are inside your virtual machine.

Project Directories

PROJECT DIRECTORY
1. vagrant 0x00-vagrant

Acknowledgements

ALX Africa

About

This is my first repository as a full-stack engineer