-
-
Save LinuxFintech/f3d3f4bd2515cd8352fe6f15ab6dd06d to your computer and use it in GitHub Desktop.
Things To Do After Installing Ubuntu 20.04 LTS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 -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 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 [email protected] | |
# 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