2 min read, 343 words
Setup Guide to start learning Devops
Excerpt : Tools and requirements to learn devops

Must Have Tools for Learning Devops
- Git
- VirtualBox
- Vagrant
- JDK8
- Maven
- Intellij
- AWS CLI
- Sublime Text Editor
- VS Code Editor
Devops Tools Setup
Install Chocalatey - Follow the link to install based on OS
https://chocolatey.org/install
Packages available to install :
https://community.chocolatey.org/packages
Windows
Using Windows, you need to have Admininstrator Permissions, and run Powershell as Administrator
After you have installed chocolatey, then you can install the below tools:
choco install virtualbox --version=7.0.8 -y
choco install vagrant --version=2.3.4 -y
choco install git -y
choco install corretto11jdk -y
choco install maven -y
choco install awscli -y
choco install intellijidea-community -y
choco install vscode -y
choco install sublimetext3.app -y
Ubuntu
Install virtualbox
$ sudo apt update
$ sudo apt install virtualbox
Install vagrant
$ curl -o https://releases.hashicorp.com/vagrant/2.2.9/vagrant_2.2.9_x86_64.deb
$ sudo apt install ./vagrant_2.2.9_x86_64.deb
Install Git
$ apt install git
Install jdk 8
$ sudo apt-get install openjdk-8-jdk
Install Maven
$ sudz apt-get install maven
Install AWS CLI
$ sudo apt-get install awscli
** Install Intellij Community **
$ sudo snap install intellij-idea-community --classic
** Install Sublime Text **
$ sudo apt update
$ sudo apt install dirmngr gnupg apt-transport-https ca-certificates software-properties-common
$ curl -fs SL https://download.sublimetext.com/sublimehq_pub.gpg | sudo apt-key add -
$ sudo add-apt-repository "deb https://download.sublimetext.com/apt/stable"
$ sudo apt install sublime-text
MacOS Tools
Install brew from the instructions given in the link below.
https://brew.sh/
After installing homebrew
Create a file in users home directory with name .curlrc with content “-k”
(-k without quotes and give a new line character after -k.)
Steps:
- Open Terminal
- echo -k > ~/.curlrc
- cat ~/.curlrc
Run all the below commands in Terminal :
brew install --cask virtualbox (Not For MacOs M1/M2)
brew install --cask vagrant
brew install --cask vagrant-manager
brew install git
brew install --cask homebrew/cask-versions/adoptopenjdk8
brew install maven
brew install --cask intellij-idea
brew install --cask intellij-idea-ce
brew install --cask sublime-text
brew install awscl