Skip to content

Instantly share code, notes, and snippets.

@greenmind-sec
Created March 28, 2022 18:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save greenmind-sec/a295cf28000aeb06555a3e090260567b to your computer and use it in GitHub Desktop.
Save greenmind-sec/a295cf28000aeb06555a3e090260567b to your computer and use it in GitHub Desktop.
install lab
apt-get update
apt-get install apt-transport-https ca-certificates curl gnupg2 software-properties-common -y
curl -fsSL https://download.docker.com/linux/$(. /etc/os-release; echo "$ID")/gpg | sudo apt-key add -
apt-key fingerprint 0EBFCD88
add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/$(. /etc/os-release; echo "$ID") $(lsb_release -cs) stable"
apt-get update
apt-get install docker-ce -y
apt-get install docker-compose -y
## Permite Docker POST Install
usermod -aG docker $USER
# VMWARE
wget https://download3.vmware.com/software/WKST-1623-LX-New/VMware-Workstation-Full-16.2.3-19376536.x86_64.bundle
chmod +x VMware-Workstation-Full-16.2.3-19376536.x86_64.bundle
./VMware-Workstation-Full-16.2.3-19376536.x86_64.bundle
# Virtualbox
wget https://download.virtualbox.org/virtualbox/6.1.32/virtualbox-6.1_6.1.32-149290~Debian~buster_amd64.deb
dpkg -i virtualbox-6.1_6.1.32-149290~Debian~buster_amd64.deb
# Vagrant
wget https://releases.hashicorp.com/vagrant/2.2.19/vagrant_2.2.19_x86_64.deb
dpkg -i vagrant_2.2.19_x86_64.deb
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment