Created
February 26, 2019 11:53
-
-
Save ariyanmorshed/927ac99d3ce4f45459cb876a0af93f66 to your computer and use it in GitHub Desktop.
Things To Do After Install Ubuntu 18.04
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 | |
| sudo apt update && sudo apt-get upgrade --fix-missing | |
| sudo apt install build-essential checkinstall | |
| sudo apt install ubuntu-restricted-extras | |
| sudo apt list --upgradable | |
| sudo apt upgrade | |
| sudo add-apt-repository -y ppa:videolan/stable-daily | |
| sudo add-apt-repository -y ppa:gnome3-team/gnome3 | |
| sudo add-apt-repository -y ppa:webupd8team/java | |
| sudo add-apt-repository -y ppa:webupd8team/y-ppa-manager | |
| sudo add-apt-repository ppa:nilarimogard/webupd8 | |
| sudo apt install kazam | |
| wget https://download.anydesk.com/linux/anydesk_4.0.0-1_amd64.deb | |
| sudo dpkg -i anydesk_4.0.0-1_amd64.deb | |
| sudo apt install -f | |
| sudo apt update | |
| sudo apt-get -s autoremove | |
| echo "Cleaning Up" && | |
| sudo apt-get -f install && | |
| sudo apt-get autoremove && | |
| sudo apt-get -y autoclean && | |
| sudo apt-get -y clean |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment