Skip to content

Instantly share code, notes, and snippets.

@ConnorBaxter
Last active February 21, 2023 23:46
Show Gist options
  • Save ConnorBaxter/1a92feb16fe679be7fa4882a2b5cc49f to your computer and use it in GitHub Desktop.
Save ConnorBaxter/1a92feb16fe679be7fa4882a2b5cc49f to your computer and use it in GitHub Desktop.
Install useful linux tools
# Make sure system is fully up to date
sudo apt-get -y update
# Most important
sudo apt-get install -y curl
sudo apt-get install -y wget
sudo apt-get install -y tree
sudo apt-get install -y zip
sudo apt-get install -y unzip
sudo apt-get install -y tar
# Useful extras
sudo apt-get install -y aptitude
sudo apt-get install -y git
sudo apt-get install -y alien
sudo apt-get install -y batcat
sudo apt-get install -y apache2
sudo apt-get install -y screen
sudo apt-get install -y build-essential
# GUI only files
sudo apt-get install -y terminator
sudo apt-get install -y gparted
sudo apt-get install -y xfce4 xfce4-goodies tightvncserver
# Better shell
sudo apt-get install -y zsh
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install -y.sh)"
sudo chsh -s $(which zsh)
# Update everything
sudo apt-get -y upgrade
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment