Skip to content

Instantly share code, notes, and snippets.

@rakibulinux
Last active June 2, 2020 12:14
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 rakibulinux/c534af5c0cabcd055793ae3a5471da68 to your computer and use it in GitHub Desktop.
Save rakibulinux/c534af5c0cabcd055793ae3a5471da68 to your computer and use it in GitHub Desktop.
Things To Do After Installing Ubuntu 18.04 LTS
#!/bin/sh
# This command will update & upgrade your system
sudo apt update && sudo apt-get upgrade --fix-missing -y
# Install the package build-essential for making the package and checkinstall for putting it into your package manager
sudo apt install build-essential checkinstall -y
# Install Ubuntu Restricted Extras
sudo apt install ubuntu-restricted-extras -y
# Automatically Import All Missing Launchpad PPA GPG Keys
sudo add-apt-repository ppa:nilarimogard/webupd8
sudo apt update -y
sudo apt install launchpad-getkeys -y
sudo launchpad-getkeys
# Install kazam
sudo apt install kazam -y
# Install anydesk
wget https://download.anydesk.com/linux/anydesk_5.5.6-1_amd64.deb
sudo dpkg -i anydesk_5.5.6-1_amd64.deb
sudo apt install -f -y
# Install latest Git & Git Configure
sudo add-apt-repository ppa:git-core/ppa
sudo apt update -y
sudo apt install git -y
sudo git config --global user.name "YourName"
sudo git config --global user.email youremail@gmail.com
# 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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment