Skip to content

Instantly share code, notes, and snippets.

@linuxbiekaisar
Last active May 5, 2020 10:20
Show Gist options
  • Save linuxbiekaisar/9d927c8e433160e5b35f61798ddac78e to your computer and use it in GitHub Desktop.
Save linuxbiekaisar/9d927c8e433160e5b35f61798ddac78e to your computer and use it in GitHub Desktop.
Thingstodo After instlalling Ubuntu 20.04 LTS
# !/bin/sh
# Automatically Import All Missing Launchpad PPA GPG Keys
sudo add-apt-repository ppa:nilarimogard/webupd8
sudo apt update
#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_5.5.5-1_amd64.deb
sudo gdebi anydesk_5.5.5-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 "linuxbiekaisar"
sudo git config --global user.email linuxbiekaisar@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