Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save cloudybdone/001452cb18cdf258784cb6a772078353 to your computer and use it in GitHub Desktop.

Select an option

Save cloudybdone/001452cb18cdf258784cb6a772078353 to your computer and use it in GitHub Desktop.
Things To Do After Installing Ubuntu 20.10 LTS Desktop Linux
#!/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