Skip to content

Instantly share code, notes, and snippets.

@victoriadrake
Created August 4, 2021 12:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save victoriadrake/0adcc0cae8b534ceea3eb31dddc1cfea to your computer and use it in GitHub Desktop.
Save victoriadrake/0adcc0cae8b534ceea3eb31dddc1cfea to your computer and use it in GitHub Desktop.
Minimal Machine

Minimal Machine

Quickly set up a new Linux (Debian, Ubuntu based) machine with minimal utilities for general work.

#!/bin/bash
sudo apt update
sudo apt install -y htop vim gimp tree jq
sudo apt full-upgrade -y
curl -sSL https://raw.githubusercontent.com/victoriadrake/dotfiles/master/.bashrc > ~/.bashrc
curl -sSL https://raw.githubusercontent.com/victoriadrake/dotfiles/master/.git-completion.bash > ~/.git-completion.bash
source ~/.bashrc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment