Skip to content

Instantly share code, notes, and snippets.

@rakibulinux
Last active September 27, 2021 12:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save rakibulinux/c381828d18f6524eaae872e9d3691948 to your computer and use it in GitHub Desktop.
Save rakibulinux/c381828d18f6524eaae872e9d3691948 to your computer and use it in GitHub Desktop.
Things To Do After Installing Ubuntu 20.04 LTS
#!/bin/sh
# This command will update & upgrade your system
sudo apt update && sudo apt-get upgrade --fix-missing
#Or
sudo apt -y install build-essential checkinstall && sudo apt install gdebi-core wget -y && sudo apt -y install ubuntu-restricted-extras && sudo add-apt-repository ppa:nilarimogard/webupd8 -y && sudo apt update && sudo apt -y install kazam && sudo snap install vlc && sudo add-apt-repository ppa:git-core/ppa && sudo apt update && sudo apt -y install git
# Install the package build-essential for making the package and checkinstall for putting it into your package manager
sudo apt -y install build-essential checkinstall
# Install Ubuntu Restricted Extras
sudo apt -y install ubuntu-restricted-extras
# Automatically Import All Missing Launchpad PPA GPG Keys
sudo add-apt-repository ppa:nilarimogard/webupd8
sudo apt update
#Install from source
wget -qO - https://keys.anydesk.com/repos/DEB-GPG-KEY | apt-key add -
echo "deb http://deb.anydesk.com/ all main" > /etc/apt/sources.list.d/anydesk-stable.list
apt update
apt install anydesk
apt upgrade -y
wget -qO- https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > packages.microsoft.gpg
sudo install -o root -g root -m 644 packages.microsoft.gpg /etc/apt/trusted.gpg.d/
sudo sh -c 'echo "deb [arch=amd64,arm64,armhf signed-by=/etc/apt/trusted.gpg.d/packages.microsoft.gpg] https://packages.microsoft.com/repos/code stable main" > /etc/apt/sources.list.d/vscode.list'
rm -f packages.microsoft.gpg
sudo apt install apt-transport-https
sudo apt update
sudo apt install code
apt update
sudo snap install pycharm-community
sudo snap install pycharm-community --classic
apt update && apt-get upgrade --fix-missing -y
curl -sL https://deb.nodesource.com/setup_14.x | sudo -E bash -
apt install curl wget git
curl -sL https://deb.nodesource.com/setup_14.x | sudo -E bash -
sudo apt-get install -y nodejs
sudo apt-get install gcc g++ make
curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | gpg --dearmor | sudo tee /usr/share/keyrings/yarnkey.gpg >/dev/null
#Install Gdebi & Wget packages
sudo apt install gdebi-core wget
# Install kazam
sudo apt -y install kazam
#Download and Install Google Chrome browser
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
sudo gdebi google-chrome-stable_current_amd64.deb
# Install anydesk
wget https://download.anydesk.com/linux/anydesk_6.0.1-1_amd64.deb
sudo gdebi anydesk_6.0.1-1_amd64.deb
sudo apt install -f
#INstall Media Player VLC
sudo snap install vlc
#or
Open "apt://vlc" in a web browser
# Install latest Git & Git Configure
sudo add-apt-repository ppa:git-core/ppa
sudo apt update
sudo apt -y install git
sudo git config --global user.name "Rakib Linux"
sudo git config --global user.email rakibulinux@gmail.com
# Check available upgrade & upgrade uubuntu
sudo apt list --upgradable
sudo apt upgrade -y
#Check You Ubuntu 20.04 with NeoFatch
sudo apt install neofetch
neofetch
# Force any missing install, autoremove unused package, autoclean, clean update & reboot system
sudo apt -f install
sudo apt autoremove
sudo apt -y autoclean
sudo apt -y clean
sudo apt update
sudo reboot
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment