Skip to content

Instantly share code, notes, and snippets.

View atulkamble's full-sized avatar
☁️
AWS/Azure/DevOps/RHEL Training & Certifications

Atul Kamble atulkamble

☁️
AWS/Azure/DevOps/RHEL Training & Certifications
View GitHub Profile
@atulkamble
atulkamble / scoop.sh
Created September 1, 2023 13:26
Scoop on Powershell | Windows
Set-ExecutionPolicy RemoteSigned -Scope CurrentUser
irm get.scoop.sh | iex
@atulkamble
atulkamble / Azure_Storage_Explorer.txt
Last active July 22, 2023 07:49
Snap & then Azure Storage Explorer INstallation on Redhat
sudo dnf install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm
sudo dnf upgrade
sudo yum install snapd
sudo systemctl enable --now snapd.socket
sudo ln -s /var/lib/snapd/snap /snap
sudo snap install storage-explorer
@atulkamble
atulkamble / awscli.sh
Last active August 24, 2022 07:08
Install AWS CLI to Linux
sudo curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
ls
unzip awscliv2.zip
sudo ./aws/install
sudo ./aws/install --update
aws --version
@atulkamble
atulkamble / inkscape.sh
Created August 18, 2022 04:47
Inkscape Installation on Ubuntu
sudo add-apt-repository ppa:inkscape.dev/stable
sudo apt update
sudo apt install inkscape
@atulkamble
atulkamble / win_terminal.sh
Created July 11, 2022 12:46
Install Windows Terminal
winget install --id=Microsoft.WindowsTerminal -e
@atulkamble
atulkamble / aws_pwsh.sh
Created July 5, 2022 14:29
Install AWS Modules on Powershell
Install-Module -Name AWS.Tools.Installer
@atulkamble
atulkamble / pwsh_upgrade.sh
Created July 1, 2022 10:33
Upgrade Powershell on Windows
winget upgrade Microsoft.PowerShell
winget install Microsoft.PowerShell
@atulkamble
atulkamble / terraform.sh
Created June 29, 2022 07:25
Install Terraform on Ubuntu Terminal
curl -fsSL https://apt.releases.hashicorp.com/gpg | sudo apt-key add -
sudo apt-add-repository "deb [arch=amd64] https://apt.releases.hashicorp.com $(lsb_release -cs) main"
sudo apt-get update && sudo apt-get install terraform
@atulkamble
atulkamble / empty.pwsh
Last active June 20, 2022 12:45
Create Empty Resource Group | PowerShell ARM
New-AzResourceGroup -Name RG01 -Location "South Central US"
@atulkamble
atulkamble / az.pwsh
Created June 20, 2022 12:18
Connect-AzAccount : The term 'Connect-AzAccount' is not recognized as the name of a cmdlet, function, script file, or operable program
Install-Module Az
Import-Module Az