This Mission Is Possible
#Prerequisite Enviroment Setup
-
Install Windows Subsystem for Linux (WSL):
- To enable Windows Subsystem for Linux, open PowerShell as an Administrator and execute the following command:
dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart
- Enable the Virtual Machine Platform feature with this command:
dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart
- Next, install a Linux distribution of your choice from the Microsoft Store (e.g., Ubuntu).
- Complete the setup of your Linux user account.
- To enable Windows Subsystem for Linux, open PowerShell as an Administrator and execute the following command:
-
Install Chocolatey:
- Open PowerShell as an Administrator and use this command to install Chocolatey:
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
- Open PowerShell as an Administrator and use this command to install Chocolatey:
-
Install Git, VSCode, and Terraform via Chocolatey:
- In PowerShell, running the following commands will install Git, VSCode, and Terraform using Chocolatey:
choco install git vscode terraform
- In PowerShell, running the following commands will install Git, VSCode, and Terraform using Chocolatey:
-
Install Azure CLI:
- Download and run the Azure CLI installer for Windows.
-
Install Git, VSCode, and Terraform:
- Utilize your distribution's package manager to install Git, VSCode, and Terraform. For instance:
- On Ubuntu/Debian:
sudo apt update sudo apt install git code terraform
- On CentOS/Fedora:
sudo dnf install git code terraform
- On Ubuntu/Debian:
- Utilize your distribution's package manager to install Git, VSCode, and Terraform. For instance:
-
Install Azure CLI:
- Refer to the official Azure CLI installation instructions for Linux.
-
Install Homebrew:
- Launch Terminal and execute this command to install Homebrew:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
- Launch Terminal and execute this command to install Homebrew:
-
Install Git, VSCode, and Terraform via Homebrew:
- In Terminal, run these commands to install Git, Visual Studio Code (VSCode), and Terraform using Homebrew:
brew install git visual-studio-code terraform
- In Terminal, run these commands to install Git, Visual Studio Code (VSCode), and Terraform using Homebrew:
-
Install Azure CLI:
Before you start using Git, configure your name and email. Open a terminal and run the following commands, replacing Your Name
and your.email@example.com
with your information:
git config --global user.name "Your Name"
git config --global user.email "your.email@example.com"