Skip to content

Instantly share code, notes, and snippets.

@Sher-Chowdhury
Last active May 4, 2018 08:29
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 Sher-Chowdhury/0fb43ead9772bbca6bf7176bc591a671 to your computer and use it in GitHub Desktop.
Save Sher-Chowdhury/0fb43ead9772bbca6bf7176bc591a671 to your computer and use it in GitHub Desktop.
this is a list of general rpms that should be installed on all boxes
#!/usr/bin/env bash
set -ex
yum install -y bind-utils # contains the dig command for doing dns lookups.
yum install -y epel-release
yum install -y vim
yum install -y facter
yum install -y bash-completion
yum install -y man-pages
yum install -y tree
yum install -y gdisk # better alternative to fdisk. Works for >2TB block devices.
yum install -y nc
yum install -y jq
yum install -y unzip
yum install -y git
yum install -y htop
yum install -y wget
yum install -y bash-completion-extras
yum install -y mtr
yum install -y traceroute
yum install -y iputils
yum install -y strace
yum install -y lsof
yum install -y tcpdump
yum install -y ansible
yum install -y psmisc # contains the pstree command.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment