Skip to content

Instantly share code, notes, and snippets.

@linuxoracledev
Last active January 18, 2020 18: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 linuxoracledev/044986c825d3fcf64b91d7ed623f2957 to your computer and use it in GitHub Desktop.
Save linuxoracledev/044986c825d3fcf64b91d7ed623f2957 to your computer and use it in GitHub Desktop.
After installing ubuntu 18.04 LTS Desktop what is needed to do with ubuntu
#update and upgrade Ubuntu
sudo apt update && sudo apt-get upgrade --fix-missing
# Install the package build-essentia,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 Chrome
#Add Key:
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
#Set repository:
echo 'deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main' | sudo tee /etc/apt/sources.list.d/google-chrome.list
#Install package:
sudo apt-get update
sudo apt-get install google-chrome-stable
# Install kazam
sudo apt install kazam
# Install anydesk
wget https://download.anydesk.com/linux/anydesk_5.5.1-1_amd64.deb
sudo dpkg -i anydesk_5.5.1-1_amd64.deb
sudo apt install -f
# 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 "YourName"
sudo git config --global user.email youremail@gmail.com
# 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 ubuntu
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
#Read full article on CoderNote: http://codernote.azad.space/18/Increase-usability-of-Ubuntu
@linuxoracledev
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment