mac s3cmd 安装使用方案

1、安装HomeBrew(http://brew.sh/):

ruby -e “$(curl -fsSL
https://raw.githubusercontent.com/Homebrew/install/master/install)”

我在安装过程中出现报错:
mac s3cmd 安装使用方案_第1张图片
解决方案(http://stackoverflow.com/questions/11025980/how-to-add-usr-local-bin-in-path-on-mac):

export PATH=$PATH:/usr/local/git/bin:/usr/local/bin

执行:

ruby -e “$(curl -fsSL
https://raw.githubusercontent.com/Homebrew/install/master/uninstall)”

来清理已安装。
过程如图:
mac s3cmd 安装使用方案_第2张图片
按照指示:sudo chmod 0755 /usr/local
sudo chgrp wheel /usr/local 需要手动执行

再次执行安装:

ruby -e “$(curl -fsSL
https://raw.githubusercontent.com/Homebrew/install/master/install)”

这回安装成功:
mac s3cmd 安装使用方案_第3张图片



2.安装wget(http://www.merenbach.com/software/wget/):
mac s3cmd 安装使用方案_第4张图片
mac s3cmd 安装使用方案_第5张图片



3、安装s3cmd
(参考:http://www.cnblogs.com/zhyg6516/archive/2011/09/02/2163933.html)
按照参考里边直接wget的话,在我电脑上总是报错,报Permission denied,所以,我用sudo wget http://…
mac s3cmd 安装使用方案_第6张图片

网速桶ls
执行:s3cmd –configure
填写Access Key:xxxxxxxxxxxxxxxxxxxxxxx
Secret Key:xxxxxxxxxxxxxxxxxxxxxxxxx
Use HTTPS protocol [No]:No
HTTP Proxy server name:s3.bj.xxxxxx.com
HTTP Proxy server port {3128]:80
如图:
mac s3cmd 安装使用方案_第7张图片
mac s3cmd 安装使用方案_第8张图片

需要去.s3cfg文件中将时长改长,并且将基本信息填写进去~详情看:
mac s3cmd 安装使用方案_第9张图片

以上,我们就可以在mac终端查看bucket里的东西啦~

你可能感兴趣的:(s3cmd安装)