Forked from AnythingLinux/Things To Do After Installing Ubuntu 24.10 Desktop Linux
Created
January 31, 2022 14:30
-
-
Save cloudybdone/001452cb18cdf258784cb6a772078353 to your computer and use it in GitHub Desktop.
Things To Do After Installing Ubuntu 20.10 LTS Desktop Linux
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 | |
| # FORK THIS GIST THEN RUN ALL COMMANDS ONE BY ONE | |
| # Select The Fastest Apt Mirror and Adjust Ubuntu Default Setting: https://youtu.be/lWHOECQ7t9Q | |
| # Open your terminal by ctrl+alt+t and run all commands one by one. You can copy and paste into terminal too. | |
| sudo -i | |
| apt update -y && apt upgrade -y | |
| apt install build-essential checkinstall | |
| apt install ubuntu-restricted-extras | |
| apt install software-properties-common | |
| apt upgrade -o APT::Get::Show-Upgraded=true | |
| apt install apt-show-versions | |
| apt update -y && apt upgrade -y | |
| apt install telegram-desktop | |
| 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 -y && apt upgrade -y | |
| apt install anydesk | |
| exit | |
| apt install git | |
| git config --global user.name "name" | |
| git config --global user.email mail@gmail.com | |
| apt install libxss1 | |
| wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb | |
| apt install ./google-chrome-stable_current_amd64.deb | |
| apt -f install | |
| apt autoremove | |
| apt -y autoclean | |
| apt -y clean | |
| apt update -y && apt upgrade -y | |
| reboot | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment