Coder Social home page Coder Social logo

oleksandryanchar / after-installing-debian-based-linux-distributions Goto Github PK

View Code? Open in Web Editor NEW

This project forked from yuriidorosh/after-installing-debian-based-linux-distributions

2.0 0.0 0.0 29 KB

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.

Shell 48.14% Python 51.86%

after-installing-debian-based-linux-distributions's Introduction

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

Add keyboard layout:

Open Settings.

Click Keyboard in the sidebar to open the panel.

Click the + button in the Input Sources section, select the language which is associated with the layout, then select a layout and press Add.


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 "[email protected]"

For Python:

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

Creating ssh key:

ssh-keygen -t rsa -b 4096 -C "[email protected]"
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 snap install spotify  

Installing Discord:

sudo snap install discord

Installing Node.Js:

sudo apt install nodejs 

Installing Postman:

  sudo snap install postman

after-installing-debian-based-linux-distributions's People

Contributors

oleksandryanchar avatar yuriidorosh avatar

Stargazers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.