Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save gigsforlinux/6215572c7b80980db5065c0691f245cc to your computer and use it in GitHub Desktop.
Save gigsforlinux/6215572c7b80980db5065c0691f245cc to your computer and use it in GitHub Desktop.
Ubuntu 20.04 LTS Desktop Linux Things To Do
#!/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
# Then follow Ubuntu Default settings https://youtu.be/IxmYFA9vneo
# Follow Workground 1 and Workground 2 as attached into this Gist comment section.
# Open your terminal by ctrl+alt+t and run all commands one by one. You can copy and paste into terminal too.
# Things To Do After Installing Ubuntu 20.10 LTS Desktop Linux
sudo -i
apt update -y && apt upgrade -y
nano +2 /etc/apt/sources.list
# ADD # TAG BEFORE LINE NO 2
# Save and exit ctrl+s and ctrl+x
nano +7 /etc/apt/sources.list
# ADD # TAG BEFORE LINE NO 7
# Save and exit ctrl+s and ctrl+x
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.04 LTS Desktop
apt install telegram-desktop
# AnyDesk Install Ubuntu 20.04 LTS 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
# Google Chrome Install & Configure Ubuntu 20.04 LTS Desktop
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
apt install kazam
# Google Remote Desktop Install & Configure Ubuntu 20.04 LTS Desktop
apt install --assume-yes wget tasksel
[[ $(/usr/bin/lsb_release --codename --short) == "stretch" ]] && \
sudo apt install --assume-yes libgbm1/stretch-backports
wget https://dl.google.com/linux/direct/chrome-remote-desktop_current_amd64.deb
apt install --assume-yes ./chrome-remote-desktop_current_amd64.deb
apt -f install
apt autoremove
# OBS Install
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment