Skip to content

Instantly share code, notes, and snippets.

@henryvoorburg
Created August 3, 2022 02:41
Show Gist options
  • Save henryvoorburg/b082ea0e4d606305d8294abb7187a54e to your computer and use it in GitHub Desktop.
Save henryvoorburg/b082ea0e4d606305d8294abb7187a54e to your computer and use it in GitHub Desktop.
Useful packages to install after a new Ubuntu Server installation

Useful packages to install after a new Ubuntu Server installation:

  • vim: sudo apt-get install vim
  • curl: sudo apt-get install curl
  • git: sudo apt-get install git
  • wget: sudo apt-get install wget
  • htop: sudo apt-get install htop
  • unzip: sudo apt-get install unzip
  • tmux: sudo apt-get install tmux
  • nodejs: sudo apt-get install nodejs
  • npm: sudo apt-get install npm
  • rsync: sudo apt-get install rsync
  • tree: sudo apt-get install tree
  • jq: sudo apt-get install jq
  • postgresql: sudo apt-get install postgresql postgresql-contrib
  • mongodb: sudo apt-get install -y mongodb
  • redis: sudo apt-get install redis-server
  • nginx: sudo apt-get install nginx
  • docker: sudo apt-get install docker.io
  • docker-compose: sudo apt-get install docker-compose
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment