This file contains hidden or 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
| #clone anyenv | |
| git clone https://github.com/riywo/anyenv ~/.anyenv | |
| echo 'export PATH="$HOME/.anyenv/bin:$PATH"' >> ~/.zshrc | |
| echo 'eval "$(anyenv init -)"' >> ~/.zshrc | |
| source ~/.zshrc | |
| # install *env | |
| #anyenv install rbenv |
This file contains hidden or 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
| #clone anyenv | |
| git clone https://github.com/riywo/anyenv ~/.anyenv | |
| echo 'export PATH="$HOME/.anyenv/bin:$PATH"' >> ~/.bashrc | |
| echo 'eval "$(anyenv init -)"' >> ~/.bashrc | |
| source ~/.bashrc | |
| # install *env | |
| #anyenv install rbenv |
This file contains hidden or 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
| sudo yum -v -y install java-1.7.0-openjdk.x86_64 | |
| java -version | |
| sudo yum -y -v install wget | |
| sudo wget -O /etc/yum.repos.d/jenkins.repo http://pkg.jenkins-ci.org/redhat/jenkins.repo | |
| sudo rpm --import http://pkg.jenkins-ci.org/redhat/jenkins-ci.org.key | |
| sudo yum install -y - v jenkins |
This file contains hidden or 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
| # | |
| echo installing zsh | |
| sudo yum -y install zsh | |
| #install oh-my-zsh | |
| #git clone git://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh | |
| #cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc | |
| #change login shell | |
| #chsh -s zsh |
This file contains hidden or 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
| # install | |
| sudo yum -y -v install php php-common php-cli php-pdo php-mbstring php-mcrypt php-mysql php-fpm | |
| # install xdebug | |
| #sudo yum -y -v install php-devel php-pear gcc gcc-c++ autoconf automake | |
| #sudo pecl install Xdebug | |
| #add below to /etc/php.d/xdebug.ini | |
| #zend_extension=/usr/lib64/php/modules/xdebug.so | |
| #xdebug.default_enable=1 |
This file contains hidden or 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
| # | |
| echo yum update | |
| sudo yum -y update | |
| # | |
| echo installing curl | |
| sudo yum -y install curl | |
| # | |
| echo installing vim |