Last active
March 23, 2020 14:45
-
-
Save nunorbatista/2f530425ea0a8e5af0124350244fb87d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#/!/bin/bash | |
# update system | |
yum update -y | |
# install bind-utils | |
sudo yum install bind-utils | |
# Bring repos in | |
rpm -Uvh https://mirror.webtatic.com/yum/el7/epel-release.rpm | |
rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm | |
rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm | |
# DEV Tools | |
yum groupinstall 'Development tools' -y | |
# Install NodeJS | |
sudo yum install nodejs -y | |
sudo yum install npm -y |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment