Not sure what I’m doing wrong here. Tested on several linux machines, all get the same error.
I run the following:
od="$HOME/.odrive-agent/bin" && curl -L "http://dl.odrive.com/odrive-py" --create-dirs -o "$od/odrive.py" && curl -L "http://dl.odrive.com/odriveagent-lnx-64" | tar -xvzf- -C "$od/" && curl -L "http://dl.odrive.com/odrivecli-lnx-64" | tar -xvzf- -C "$od/"
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 183 100 183 0 0 2044 0 --:--:-- --:--:-- --:--:-- 2056
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
100 51757 100 51757 0 0 81872 0 --:--:-- --:--:-- --:--:-- 608k
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 183 100 183 0 0 5938 0 --:--:-- --:--:-- --:--:-- 6100
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
odriveagent
100 10.6M 100 10.6M 0 0 2255k 0 0:00:04 0:00:04 --:--:-- 2649k
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 183 100 183 0 0 5210 0 --:--:-- --:--:-- --:--:-- 5228
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
100 243 0 243 0 0 490 0 --:--:-- --:--:-- --:--:-- 490
gzip: stdin: not in gzip format
tar: Child returned status 1
tar: Error is not recoverable: exiting now
I apologize for the poor table formatting.
If I just do a wget, I get:
root@home:~# wget "http://dl.odrive.com/odrivecli-lnx-64"
--2017-05-23 15:58:02-- http://dl.odrive.com/odrivecli-lnx-64
Resolving dl.odrive.com (dl.odrive.com)... 52.84.243.42, 52.84.243.224, 52.84.243.192, ...
Connecting to dl.odrive.com (dl.odrive.com)|52.84.243.42|:80... connected.
HTTP request sent, awaiting response... 301 Moved Permanently
Location: https://dl.odrive.com/odrivecli-lnx-64 [following]
--2017-05-23 15:58:02-- https://dl.odrive.com/odrivecli-lnx-64
Connecting to dl.odrive.com (dl.odrive.com)|52.84.243.42|:443... connected.
HTTP request sent, awaiting response... 301 Moved Permanently
Location: https://s3.amazonaws.com/cdn-agent.odrive.com/preview5/odriveagent-client-linux-64bit-920.tar.gz [following]
--2017-05-23 15:58:02-- https://s3.amazonaws.com/cdn-agent.odrive.com/preview5/odriveagent-client-linux-64bit-920.tar.gz
Resolving s3.amazonaws.com (s3.amazonaws.com)... 52.216.0.91
Connecting to s3.amazonaws.com (s3.amazonaws.com)|52.216.0.91|:443... connected.
HTTP request sent, awaiting response... 403 Forbidden
2017-05-23 15:58:03 ERROR 403: Forbidden.
If I try the URL directly,
root@home:~# wget https://s3.amazonaws.com/cdn-agent.odrive.com/preview5/odriveagent-client-linux-64bit-920.tar.gz
--2017-05-23 15:58:34-- https://s3.amazonaws.com/cdn-agent.odrive.com/preview5/odriveagent-client-linux-64bit-920.tar.gz
Resolving s3.amazonaws.com (s3.amazonaws.com)... 52.216.16.195
Connecting to s3.amazonaws.com (s3.amazonaws.com)|52.216.16.195|:443... connected.
HTTP request sent, awaiting response... 403 Forbidden
2017-05-23 15:58:34 ERROR 403: Forbidden.
Not sure what I’m doing wrong here. If I go to https://odrive.readme.io/v1.0/docs/odrive-sync-agent#section--download-cli-sync-client- , the only link that works is the python one. The other ones give “Access Denied” errors.
Any suggestions are appreciated.