Linux Packages

this is list of packages which mostly needed.

Install Packages

Packages are like drivers of your linux system

You must have specific packages installed to be able to run specific commands

Update server packages

Before any installation, you must update your packages

sudo apt-get update && sudo apt-get upgrade -y

Main Packages

sudo apt install curl iptables build-essential git wget lz4 jq make gcc nano automake autoconf tmux htop nvme-cli libgbm1 pkg-config libssl-dev libleveldb-dev tar clang bsdmainutils ncdu unzip libleveldb-dev ca-certificates  -y

Python3, pip

## Python 3.8 Pip, Python3 Install
sudo apt install -y python3-pip
sudo apt install pip
sudo apt install -y build-essential libssl-dev libffi-dev python3-dev

Go

sudo rm -rf /usr/local/go
curl -L https://go.dev/dl/go1.22.3.linux-amd64.tar.gz | sudo tar -xzf - -C /usr/local
echo 'export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin' >> $HOME/.bash_profile
source .bash_profile
go version

NodeJS , npm, yarn

Docker, Docker-Compose Plugin

lsof, ufw

htop

Manage your linux components (CPU, Memory, Swap, Tasks, ..)

bench

See your machine benchmark

**this pages based on 0xmoei postarrow-up-right.

Last updated