Last active
April 22, 2020 19:15
-
-
Save badhonhitech/5df8ffaaa2dabc0baeea1df96e5756a9 to your computer and use it in GitHub Desktop.
Things To Do After Installing Ubuntu 18.04 LTS Desktop
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 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 | |
sudo -i | |
wget -qO - https://keys.anydesk.com/repos/DEB-GPG-KEY | sudo apt-key add - | |
echo "deb http://deb.anydesk.com/ all main" > /etc/apt/sources.list.d/anydesk-stable.list | |
apt update | |
apt install anydesk | |
exit | |
# 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 [email protected] | |
# 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