2017-01-01 22 views
-1

私はguideの後にドッカーマシンをインストールしようとしています。ドッカーをインストールできない - 許可が拒否されましたか?

$ curl -L https://github.com/docker/machine/releases/download/v0.8.2/docker-machine-`uname -s`-`uname -m` >/usr/local/bin/docker-machine && \ 
> chmod +x /usr/local/bin/docker-machine 

エラー:

bash: /usr/local/bin/docker-machine: Permission denied

なぜ?これをどのように解決できますか?

私はXubuntu 16.04です。

答えて

2

これはthis PR

Note: If you get a "Permission denied" error, your /usr/local/bin directory probably isn't writable and you'll need to install Compose as the superuser.
Run sudo -i , then the two commands above, then exit .

のように、 issue 652

どちらか、そのフォルダをchown

sudo chown -R $(whoami) /usr/local/bin 

または(より良い)で議論されています

関連する問題