Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save UbuntuEvangelist/63613d122da455a5e743c3896b770f03 to your computer and use it in GitHub Desktop.
Save UbuntuEvangelist/63613d122da455a5e743c3896b770f03 to your computer and use it in GitHub Desktop.
Things To Do After Installing Ubuntu
#!/bin/sh
# This Gist specially design for School Of Freelancing remote training.
# FORK THIS GIST THEN RUN ALL COMMANDS ONE BY ONE
# Select The Fastest Apt Mirror and Adjust Ubuntu Default Setting: https://youtu.be/lWHOECQ7t9Q
# Then follow Ubuntu Default settings https://youtu.be/IxmYFA9vneo
# Follow Workground 1 and Workground 2 as attached into this Gist comment section then RUN ALL COMMANDS ONE BY ONE.
# 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 install apt-show-versions
apt upgrade -o APT::Get::Show-Upgraded=true
apt-show-versions | grep upgradeable
apt install git
git config --global user.name "name"
git config --global user.email mail@domain.com
ssh-keygen -t rsa -b 4096 -C "email@gmail.com"
eval "$(ssh-agent -s)"
ssh-add ~/.ssh/id_rsa
# Add SSH Key the GitHub
cat /root/.ssh/id_rsa.pub
apt upgrade -y && apt update
apt -f install && apt autoremove
apt -y autoclean && apt -y clean
apt upgrade -y && apt update
reboot
# Telegram Install Ubuntu 20.10+ LTS Desktop Linux using PPA
sudo add-apt-repository ppa:atareao/telegram
sudo apt-get update
sudo apt-get install telegram
# AnyDesk Install Ubuntu 20.10 LTS Desktop Linux
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
# Google Chrome Install & Configure Ubuntu 20.10 LTS Desktop Linux
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 update -y
# Install Kazam Ubuntu 20.10 LTS Desktop Linux
apt install kazam
# Install Brave Browser On Ubuntu 20.10 LTS Desktop Linux
apt install apt-transport-https curl
curl -fsSLo /usr/share/keyrings/brave-browser-archive-keyring.gpg https://brave-browser-apt-release.s3.brave.com/brave-browser-archive-keyring.gpg
echo "deb [signed-by=/usr/share/keyrings/brave-browser-archive-keyring.gpg arch=amd64] https://brave-browser-apt-release.s3.brave.com/ stable main"|sudo tee /etc/apt/sources.list.d/brave-browser-release.list
apt update
apt install brave-browser
# Install OBS On Ubuntu 20.10 LTS Desktop Linux
sudo apt install ffmpeg
apt update -y && apt upgrade
sudo add-apt-repository ppa:obsproject/obs-studio
sudo apt-get update
sudo apt-get install obs-studio
apt update -y && apt upgrade
apt -y autoclean
apt -y clean
apt update -y && apt upgrade -y
reboot
@UbuntuEvangelist
Copy link
Author

UbuntuEvangelist commented Mar 11, 2022

Workground 1: From Show Application > Settings Then Setup This Same On Your Ubuntu Desktop PC.

Screenshot from 2022-03-12 05-19-29
Screenshot from 2022-03-12 05-19-32
Screenshot from 2022-03-12 05-19-48
Screenshot from 2022-03-12 05-20-07
Screenshot from 2022-03-12 05-20-09
Screenshot from 2022-03-12 05-20-24
Screenshot from 2022-03-12 05-20-33
Screenshot from 2022-03-12 05-20-36

@UbuntuEvangelist
Copy link
Author

UbuntuEvangelist commented Mar 11, 2022

Workground 2: From Show Application > Software & Updates Then Setup This Same On Your Ubuntu Desktop PC.

Screenshot from 2022-03-12 05-22-41
Screenshot from 2022-03-12 05-22-32

@UbuntuEvangelist
Copy link
Author

Screenshot from 2022-04-16 22-10-17
Screenshot from 2022-04-16 22-10-23

@UbuntuEvangelist
Copy link
Author

UbuntuEvangelist commented Apr 2, 2023

nano +2 /etc/apt/sources.list

Screenshot from 2023-04-02 22-36-13
Screenshot from 2023-04-02 22-36-16
Screenshot from 2023-04-02 22-36-11

@UbuntuEvangelist
Copy link
Author

nano +7 /etc/apt/sources.list

Screenshot from 2023-04-02 22-38-00
Screenshot from 2023-04-02 22-38-02
Screenshot from 2023-04-02 22-38-06

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment