Skip to content

Instantly share code, notes, and snippets.

@afahitech
Last active October 20, 2020 02:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save afahitech/84791fdf9850b365afd5b76498812a00 to your computer and use it in GitHub Desktop.
Save afahitech/84791fdf9850b365afd5b76498812a00 to your computer and use it in GitHub Desktop.
Things to to Do after install Ubuntu 20.04 LTS
If you need any help, contact with me:
Skype: aataur1
Telegram: @AutoDevOps
WhatsApp: +8801751643484
Email: afahitech@gmail.com
-------------------------------------------------------------
# !/bin/sh
This command will update & upgrade your system
sudo apt update && sudo apt-get upgrade --fix-missing
# Install the package build-essential for making the package and checkinstall for putting it into your package manager
sudo apt install build-essential checkinstall
# Install Ubuntu Restricted Extras
sudo apt install ubuntu-restricted-extras
# Automatically Import All Missing Launchpad PPA GPG Keys
sudo add-apt-repository ppa:nilarimogard/webupd8
sudo apt update
sudo apt install launchpad-getkeys
sudo launchpad-getkeys
# Install kazam
sudo apt install kazam
# Install anydesk
wget -qO - https://keys.anydesk.com/repos/DEB-GPG-KEY | sudo apt-key add -
echo "deb http://deb.anydesk.com/ all main" | sudo tee /etc/apt/sources.list.d/anydesk-stable.list
sudo apt update
sudo apt install anydesk
#Install OBS Studio
sudo add-apt-repository ppa:obsproject/obs-studio
sudo apt-get update
sudo apt-get install obs-studio
# Install Google Chrome
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
sudo dpkg -i google-chrome-stable_current_amd64.deb
# Install Brave
sudo apt update
sudo apt install snapd
sudo snap install brave
# Install Zoom
wget https://zoom.us/client/latest/zoom_amd64.deb
sudo dpkg -i zoom_amd64.deb
sudo apt -f install
sudo apt install ./zoom_amd64.deb
# Install latest Git & Git Configure
sudo add-apt-repository ppa:git-core/ppa
sudo apt update
sudo apt install git
sudo git config --global user.name "ataur"
sudo git config --global user.email afahitech@gmail.com
sudo git config --list
# Install Adobe flash
sudo add-apt-repository "deb http://archive.canonical.com/ $(lsb_release -sc) partner"
sudo apt update
sudo apt install adobe-flashplugin browser-plugin-freshplayer-pepperflash
# Check available upgrade & upgrade uubuntu
sudo apt list --upgradable
sudo apt upgrade -y
# 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
Youtube: https://youtu.be/xRBv1Ql1654
#thingstodo #afterinstall #afterubuntu #afterlixux
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment