From 3e4d69be875e90108a6cbad7e5825643ed3865fc Mon Sep 17 00:00:00 2001 From: Harshavardhana Date: Sat, 14 Nov 2015 02:39:02 -0800 Subject: [PATCH] doc: update download locations in Readme.md --- README.md | 44 +++++++++++++++++++++++++++++++++++++++++--- server-main.go | 4 ++-- 2 files changed, 43 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 0401cb788..c12e3f6d6 100644 --- a/README.md +++ b/README.md @@ -19,12 +19,50 @@ Micro services environment provisions one Minio server per application instance. ### Install [![Build Status](https://travis-ci.org/minio/minio.svg?branch=master)](https://travis-ci.org/minio/minio)[![Build status](https://ci.appveyor.com/api/projects/status/royh137dni8yevep/branch/master?svg=true)](https://ci.appveyor.com/project/harshavardhana/minio-qxbjq/branch/master) -#### Linux, OS X, Windows +#### GNU/Linux + +Download ``minio`` for: + +- ``64-bit Intel`` from https://dl.minio.io:9000/updates/minio/2015/Nov/linux-amd64/minio +- ``32-bit Intel`` from https://dl.minio.io:9000/updates/minio/2015/Nov/linux-386/minio +- ``32-bit ARM`` from https://dl.minio.io:9000/updates/minio/2015/Nov/linux-arm/minio ~~~ -$ go get -u github.com/minio/minio +$ chmod +x minio +$ ./minio help ~~~ +#### OS X + +Download ``minio`` from https://dl.minio.io:9000/updates/minio/2015/Nov/darwin-amd64/minio + +~~~ +$ chmod 755 minio +$ ./minio help +~~~ + +#### Microsoft Windows + +Download ``minio`` for: + +- ``64-bit`` from https://dl.minio.io:9000/updates/minio/2015/Nov/windows-amd64/minio.exe +- ``32-bit`` from https://dl.minio.io:9000/updates/minio/2015/Nov/windows-386/minio.exe + +~~~ +C:\Users\Username\Downloads> minio.exe help +~~~ + +#### Source +
+NOTE: Source installation is intended for only developers and advanced users. ‘minio update’ continous delivery mechanism is not supported for ‘go get’ based binary builds. Please download official releases from https://minio.io/#minio. +
+ +If you do not have a working Golang environment, please follow [Install Golang](./INSTALLGO.md). + +```sh +$ go get -u github.com/minio/minio +``` + ### How to use Minio? ``` @@ -62,7 +100,7 @@ AccessKey: G5GJRH51R2HSUWYPGIX5 SecretKey: uxhBC1Yscut3/u81l5L8Yp636ZUk32N4m/gF To configure Minio Client. - $ wget https://dl.minio.io:9000/updates/2015/Oct/linux-amd64/mc + $ wget https://dl.minio.io:9000/updates/2015/Nov/linux-amd64/mc $ chmod 755 mc $ ./mc config host add localhost:9000 G5GJRH51R2HSUWYPGIX5 uxhBC1Yscut3/u81l5L8Yp636ZUk32N4m/gFASuZ $ ./mc mb localhost/photobucket diff --git a/server-main.go b/server-main.go index afca8f0f8..b556ee775 100644 --- a/server-main.go +++ b/server-main.go @@ -253,12 +253,12 @@ func initServer() *probe.Error { if !globalJSONFlag { Println("\nTo configure Minio Client.") if runtime.GOOS == "windows" { - Println("\n\tDownload https://dl.minio.io:9000/updates/2015/Oct/" + runtime.GOOS + "-" + runtime.GOARCH + "/mc.exe") + Println("\n\tDownload https://dl.minio.io:9000/updates/2015/Nov/" + runtime.GOOS + "-" + runtime.GOARCH + "/mc.exe") Println("\t$ mc.exe config host add localhost:9000 " + conf.Credentials.AccessKeyID + " " + conf.Credentials.SecretAccessKey) Println("\t$ mc.exe mb localhost/photobucket") Println("\t$ mc.exe cp C:\\Photos... localhost/photobucket") } else { - Println("\n\t$ wget https://dl.minio.io:9000/updates/2015/Oct/" + runtime.GOOS + "-" + runtime.GOARCH + "/mc") + Println("\n\t$ wget https://dl.minio.io:9000/updates/2015/Nov/" + runtime.GOOS + "-" + runtime.GOARCH + "/mc") Println("\t$ chmod 755 mc") Println("\t$ ./mc config host add localhost:9000 " + conf.Credentials.AccessKeyID + " " + conf.Credentials.SecretAccessKey) Println("\t$ ./mc mb localhost/photobucket")