2016年7月27日星期三

MAC_043:下载和安装 wget

OS  X 版本:10.9.2。

为了学习OpenShift,看到官网提供了VM,于是准备下载下来研究一下。
没想到,下载时还遇到了一些小问题,记录下来,以备忘。

OpenShift VM 下载地址:
http://openshift.github.io/documentation/oo_deployment_guide_vm.html。

下载需要用wget,而我的MAC OS上没有wget,需要先安装wget。

1.  下载wget
下载地址:http://www.gnu.org/software/wget/ 
除了直接从网页下载,还可以使用curl命令下载:curl -O http://ftp.gnu.org/gnu/wget/wget-1.15.tar.gz

2. 解压、编译、安装wget
tar -zxvf wget-1.15.tar.gz
cd wget-1.15
./configure --with-ssl=openssl
make
sudo make install

运行which wget,应该输出:/usr/local/bin/wget。

3. 使用wget下载OpenShift虚机 
wget https://mirror.openshift.com/pub/origin-server/release/3/images/openshift-origin.zip --secure-protocol=SSLv3
如果你想给下载文件指定一个别的名称,可以增加-O参数:
wget -O openshift_origin_3.zip https://mirror.openshift.com/pub/origin-server/release/3/images/openshift-origin.zip --secure-protocol=SSLv3

好了,一切就绪,等着吧。

参考文献:
1. http://coolestguidesontheplanet.com/install-and-configure-wget-on-os-x/
2. https://thomashunter.name/blog/install-wget-on-os-x-lion/
3. http://whyjava.wordpress.com/2013/08/11/download-openshift-origin-virtual-image/

没有评论: