Skip to content

Instantly share code, notes, and snippets.

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

Atul Kamble atulkamble

☁️
AWS/Azure/DevOps/RHEL Training & Consulting
View GitHub Profile
@atulkamble
atulkamble / WSL
Last active September 26, 2021 16:39
INSTALL Windows Subsystem for Linux Installation Guide for Windows 10 | Enable the Windows Subsystem for Linux
dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart
@atulkamble
atulkamble / az_cli
Created August 27, 2021 09:07
Install the Azure CLI on Linux with one command
curl -sL https://aka.ms/InstallAzureCLIDeb | sudo bash
@atulkamble
atulkamble / pwsh
Created December 13, 2021 07:17
install PowerShell on the Ubuntu 20.04.
# Update the list of packages
sudo apt-get update
# Install pre-requisite packages.
sudo apt-get install -y wget apt-transport-https software-properties-common
# Download the Microsoft repository GPG keys
wget -q https://packages.microsoft.com/config/ubuntu/20.04/packages-microsoft-prod.deb
# Register the Microsoft repository GPG keys
sudo dpkg -i packages-microsoft-prod.deb
# Update the list of packages after we added packages.microsoft.com
sudo apt-get update
@atulkamble
atulkamble / github_linux
Last active July 1, 2022 10:44
To Install GitHub Desktop on Ubuntu
# Download the latest release
sudo wget https://github.com/shiftkey/desktop/releases/download/release-2.6.3-linux1/GitHubDesktop-linux-2.6.3-linux1.deb
# If you don't already have gdebi-core installed, install it by running the following command:
sudo apt-get install gdebi-core
# then run the following command to finish the desktop installation:
sudo gdebi /home/username*/GitHubDesktop-linux-2.6.3-linux1.deb
@atulkamble
atulkamble / python
Created December 13, 2021 08:17
Install Python 3.8.10 and configure it as the default interpreter.
sudo apt-get install python-is-python3
@atulkamble
atulkamble / linux
Last active February 14, 2022 13:21
Basic Linux Commands | List
uname // check system os
list all shells - cat /etc/shells //list shell
startx //streamlines the process of starting an X session
uname --
uname --kernel-name
uname --operating-system
@atulkamble
atulkamble / kazam
Last active December 28, 2021 13:05
intstall kazam to Ubuntu | Linux Free Screen Recorder
You also need to install a few libraries in order to record the mouse clicks and keyboard presses.
$ sudo apt install python3-cairo python3-xlib
$ sudo apt install kazam
$ sudo apt-get update
@atulkamble
atulkamble / Tweaks
Last active December 19, 2021 02:00
Tweaks Tool on Ubuntu 20.04 LTS
sudo add-apt-repository universe
sudo apt install gnome-tweak-tool
gnome-tweaks
( optional ) You may now install additional extensions to further tweak your system. Search for available gnome shell extensions:
apt search gnome-shell-extension
Next, either install only selected extensions for example:
sudo apt install gnome-shell-extension-gsconnect
@atulkamble
atulkamble / putty
Created January 23, 2022 01:25
Putty Installation on Ubuntu 20.04.3 LTS
sudo add-apt-repository universe
sudo apt-get update
sudo apt-get install -y putty
putty
@atulkamble
atulkamble / PuTTYgen
Last active January 23, 2022 01:33
PuTTYgen for Ubuntu/Linux
sudo apt install putty-tools
Generate Key Pair for Authentication in Linux:
puttygen -t rsa -b 2048 -C "user@host" -o keyfile.ppk
Various Command Line Options of PuTTY in Linux:
PuTTYgen [-t keytype [-b bits] [-q] | keyfile]
[-C new-comment] [-P]
[-O output-type | -p | -l | -L]
[-o output-file]