This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl -sL https://aka.ms/InstallAzureCLIDeb | sudo bash |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt-get install python-is-python3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo add-apt-repository universe | |
sudo apt-get update | |
sudo apt-get install -y putty | |
putty |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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] |