Skip to content

Instantly share code, notes, and snippets.

@AntoOnline
Last active April 29, 2023 19:40
Show Gist options
  • Save AntoOnline/ef996cdcdf389add904b2a2d0c6e1cb5 to your computer and use it in GitHub Desktop.
Save AntoOnline/ef996cdcdf389add904b2a2d0c6e1cb5 to your computer and use it in GitHub Desktop.

Ubuntu Installation Cheat Sheet

Update and Upgrade System

sudo apt update
sudo apt upgrade

Install Essential Packages

sudo apt install build-essential curl

Docker

Install Docker

curl -fsSL https://get.docker.com -o get-docker.sh
sudo sh get-docker.sh

Add User to Docker Group

sudo usermod -aG docker $USER

Docker Compose

Install 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
sudo chmod +x /usr/local/bin/docker-compose

Python

Install Python and pip

sudo apt install python3 python3-pip

Visual Studio Code (VSCode)

Install VSCode

sudo snap install --classic code

DBeaver

Install DBeaver

sudo snap install dbeaver-ce

Postman

Install Postman

sudo snap install postman

Slack

Install Slack

sudo snap install slack --classic
This cheat sheet should provide a quick reference for someone new to Ubuntu, covering the installation of Docker, Docker Compose, Python, Visual Studio Code, DBeaver, Postman, and Slack.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment