Last active
February 19, 2025 20:24
-
-
Save UbuntuEvangelist/63613d122da455a5e743c3896b770f03 to your computer and use it in GitHub Desktop.
Things To Do After Installing Ubuntu 24.10 Desktop
This file contains 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 | |
# This Gist specially design for School Of Freelancing remote training. | |
# FORK THIS GIST 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. | |
apt update -y | |
apt upgrade -y | |
apt update -y | |
apt install build-essential checkinstall | |
apt install ubuntu-restricted-extras | |
apt install software-properties-common | |
apt install apt-show-versions | |
apt install git | |
git config --global user.name "name" | |
git config --global user.email [email protected] | |
ssh-keygen -t rsa -b 4096 -C "[email protected]" | |
eval "$(ssh-agent -s)" | |
ssh-add ~/.ssh/id_rsa | |
cat /root/.ssh/id_rsa.pub | |
# Add SSH Key the GitHub & GitLab | |
https://github.com/settings/keys | |
ssh -T [email protected] | |
https://gitlab.com/-/user_settings/ssh_keys | |
ssh -T [email protected] | |
apt update -y | |
apt upgrade -y | |
apt update -y | |
apt -f install | |
apt autoremove | |
apt -y autoclean | |
apt -y clean | |
apt update -y | |
apt upgrade -y | |
apt update -y | |
reboot | |
# Telegram Install Ubuntu 20.10+ LTS Desktop Linux using PPA | |
snap install telegram-desktop --edge --classic | |
# Install libreoffice | |
snap install libreoffice --classic | |
# AnyDesk Install Ubuntu 20.10 LTS Desktop Linux | |
# Add the AnyDesk GPG key | |
sudo apt update | |
sudo apt install ca-certificates curl | |
sudo install -m 0755 -d /etc/apt/keyrings | |
sudo curl -fsSL https://keys.anydesk.com/repos/DEB-GPG-KEY -o /etc/apt/keyrings/keys.anydesk.com.asc | |
sudo chmod a+r /etc/apt/keyrings/keys.anydesk.com.asc | |
# Add the AnyDesk apt repository | |
echo "deb [signed-by=/etc/apt/keyrings/keys.anydesk.com.asc] http://deb.anydesk.com all main" | sudo tee /etc/apt/sources.list.d/anydesk-stable.list > /dev/null | |
# Update apt caches and install the AnyDesk client | |
sudo apt update | |
sudo 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 kooha | |
sudo apt update | |
sudo apt install snapd | |
sudo snap install kooha | |
# 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 | |
# Android Studio Setup | |
snap install android-studio --classic | |
# Flutter install | |
snap install flutter --classic | |
# Startup disk creator setup | |
sudo apt install usb-creator-gtk | |
# Install OBS On Ubuntu 20.10 LTS Desktop Linux | |
apt install ffmpeg | |
apt update -y | |
apt install obs-studio | |
apt update -y | |
apt upgrade -y | |
apt update -y | |
apt -y autoclean | |
apt -y clean | |
reboot | |
Author
UbuntuEvangelist
commented
Nov 30, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment