Skip to content

Instantly share code, notes, and snippets.

@LinauxTerminology
Created February 3, 2021 09:21
Show Gist options
  • Save LinauxTerminology/55f368e7ddb121e40ad6934e2075f45f to your computer and use it in GitHub Desktop.
Save LinauxTerminology/55f368e7ddb121e40ad6934e2075f45f to your computer and use it in GitHub Desktop.
Things To Do After Installing Ubuntu 20.04 LTS Cloud Linux
# !/bin/sh
adduser username
usermod -aG sudo username
su - username
sudo apt update && sudo apt-get upgrade --fix-missing
sudo apt install build-essential checkinstall
sudo apt install ubuntu-restricted-extras
sudo apt install software-properties-common
sudo nano +2 /etc/apt/sources.list
# comment ( # ) before line no: 2
ctrl+s and ctrl+x
sudo apt update
sudo add-apt-repository ppa:nilarimogard/webupd8
sudo apt update
sudo apt install launchpad-getkeys
sudo launchpad-getkeys
sudo add-apt-repository ppa:git-core/ppa
sudo apt update
sudo apt install git
sudo git config --global user.name "masum"
sudo git config --global user.email [email protected]
sudo apt upgrade -y
sudo apt -f install
sudo apt autoremove
sudo apt -y autoclean
sudo apt -y clean
sudo apt update
sudo reboot
#things #to #do #after #installing ubuntu_20.04 #LTS #cloud #linux
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment