Last active
February 2, 2018 09:24
-
-
Save adrienbrault/7948667 to your computer and use it in GitHub Desktop.
Snippets to quickly install stuff on centos
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 | |
sudo yum install -y python-pip | |
sudo pip install httpie | |
# |
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 | |
wget --no-cookies --header "Cookie: gpw_e24=http%3A%2F%2Fwww.oracle.com" "http://download.oracle.com/otn-pub/java/jdk/7/jdk-7-linux-x64.rpm" --no-check-certificate | |
sudo rpm -ivh jdk-7-* | |
rm jdk-7-* | |
sudo rpm -ivh https://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-1.0.0.Beta2.noarch.rpm | |
# |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment