Skip to content

This repository was created for my needs, but I give access to anyone who wants to use it and adding something to it. Here you will not find 100% system setup, but only what I need when reinstalling the Ubuntu OS.

Notifications You must be signed in to change notification settings

asriughfopograh8jahoigar543/after-installing-Debian-based-Linux-distributions

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

This repository was created for my needs, but I give access to anyone who wants to use it and adding something to it. Here you will not find 100% system setup, but only what I need when reinstalling the Ubuntu OS.

Contents:


Update packages:

sudo apt update
sudo apt upgrade

Bind to change the keyboard layout to alt+shift:

gsettings set org.gnome.desktop.input-sources xkb-options "['grp:alt_shift_toggle']"

Installing and configuring git:

sudo apt install git
git config --global user.name "Your_Name"
git config --global user.email "your_email@example.com"

For Python:

sudo apt install pip
sudo apt install python3.10-venv

Creating ssh key:

ssh-keygen -t rsa -b 4096 -C "your_email@example.com"
cat ~/.ssh/id_rsa.pub

Google Chrome:

wget
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
sudo dpkg -i google-chrome-stable_current_amd64.deb
sudo apt update
sudo apt --only-upgrade install google-chrome-stable

PyCharm:

sudo apt update
sudo apt install snapd
sudo snap install pycharm-community --classic

Visual Studio Code:

sudo apt update
sudo apt install snapd
sudo snap install code --classic

Vim:

sudo apt update
sudo apt install vim

Installing Docker:

Updating APT packages:

sudo apt update

Installing packages to allow APT to work with HTTPS:

sudo apt install apt-transport-https ca-certificates curl software-properties-common

Adding the official Docker GPG key to your system:

curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -

Adding the Docker repository:

sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"

Update the APT packages again:

sudo apt update

Installing Docker:

sudo apt install docker-ce

Check that Docker is installed correctly:

sudo systemctl status docker

Installing Docker Compose:

Updating APT packages:

sudo apt update

Downloading the latest version of Docker Compose:

sudo curl -L "https://github.com/docker/compose/releases/download/1.29.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose

Giving the file executable rights:

sudo chmod +x /usr/local/bin/docker-compose

Check your Docker Compose installation:

docker-compose --version

Installing PostgreSQL:

Updating APT packages:

sudo apt update

Installing PostgreSQL and additional components:

sudo apt install postgresql postgresql-contrib

Switch to the postgres user:

sudo -i -u postgres

Login to the PostgreSQL command line:

psql

For exit:

\q

Additional steps:

If you need to set a password for the postgres user:

sudo -i -u postgres
psql

Set a password:

\password postgres

Installing GCC:

sudo apt update
sudo apt install build-essential

Installing OBS (Open Broadcaster Software):

sudo add-apt-repository ppa:obsproject/obs-studio
sudo apt update
sudo apt install obs-studio

Installing NVIDIA drivers:

Ubuntu

sudo ubuntu-drivers autoinstall

Debian

sudo apt install nvidia-driver

Installing Spotify:

sudo apt install spotify-client 

Installing Discord:

sudo snap install discord

Installing Node.Js:

sudo apt install nodejs 

About

This repository was created for my needs, but I give access to anyone who wants to use it and adding something to it. Here you will not find 100% system setup, but only what I need when reinstalling the Ubuntu OS.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 52.2%
  • Shell 47.8%