Last active
August 29, 2015 13:57
-
-
Save michiomochi/9787008 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
検証環境: CentOS6.4 64bit | |
インストール先 | |
${HOME}/local/bin | |
perlソースファイル | |
http://www.cpan.org/src/5.0/perl-5.18.0.tar.gz | |
================================ | |
手順書 | |
================================ | |
-------------------------------- | |
下準備 | |
-------------------------------- | |
mkdir -p ~/local/src | |
-------------------------------- | |
perlインストール | |
-------------------------------- | |
# perlのコンパイル&インストール | |
cd ~/local/src | |
wget http://www.cpan.org/src/5.0/perl-5.18.0.tar.gz | |
tar xvf perl-5.18.0.tar.gz | |
cd ~/local/src/perl-5.18.0 | |
./configure.gnu –Dprefix=/home/vagrant/local | |
make -j8 | |
make install | |
-------------------------------- | |
確認 | |
-------------------------------- | |
perl --version |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment