As you probably know, Amazon did not release any Cloud Drive client for Linux. Is there any other option to access ACD from terminal?
5 Answers
At the time of asking the answer was unfortunately No, but no more! You can now easily access Amazon Cloud Drive from the terminal using an OpenSource client called acd_cli, which is written in Python (3) and runs under Windows / Linux / Mac. There was a list of authorised apps here: https://www.amazon.com/clouddrive/apps but it now only shows official Amazon clients for MacOS and Windows.
These are mostly "cloud-to-cloud-sync" services and absolutely not what you are looking for, though. Even the Amazon build app for Mac OS X, which actually is a stand-alone uploader, does not provide a command-line-interface and you can not upload files from the console.
The only hope is an open REST-based API that allows interaction with Amazon Cloud Drive, which is good news, as it essentially means, anybody could build a client for it.
One app called ExpanDrive also supports Amazon Cloud Drive by now due to user requests. That doesn't help much, though, since they also don't have a Linux version of their (commercial) app, yet, but they are also working on that apparently (originally to be released mid-summer 2015). There are a number of similar products such as Netdrive (only supports Windows). The (discontinued) DragonDisk already has linux command-line binaries and supports:
Amazon S3®, Google Cloud Storage®, and all cloud storage services that provides compatibility with Amazon S3 API
You could of course try to run either of those through wine.
There is also some software that lifehacker mentions to be used under Windows. I imagine you could use wine to run it (or any of the former tools) to see if you can make those work.
If all this doesn't make you happy right now:
There is another idea I thought about: Terminal-based web browsing. Install w3m or any alternative (lynx, links2, etc.) and try it out - I didn't get very far, but I haven't tested all of them and you can at least log into the website from your terminal-based browser. I also couldn't test the image-rendering capabilities (you need xterm for that). Here is a decent guide.
sudo apt-get install w3m w3m-img
w3m cloud.amazon.com
The problem is that it doesn't display any files and you will have trouble with the drag & drop upload functionality. So we are generally out of luck.
I've been using http://rclone.org/ with much success. I find it quite mature and robust. It also includes bandwidth throttling that works!
Edit: Please note that this is no longer the case. Amazon Drive has banned rclone and this appears to be permanent.
- 103
- 301
Apparently there's another newbie command line access project as well.
The ACD 3rd Party Tools page lists acd_cli, a command line access tool in the alpha stages.
- 161
There is a command line program called drivesink:
https://github.com/caseymrm/drivesink
https://drivesink.appspot.com/
For GUI there is now Boxcryptor:
https://www.boxcryptor.com/en/blog/boxcryptor-now-supports-amazon-cloud-drive
They have a portable Linux client here:
- 141
There is a FUSE driver for Amazon Cloud Drive which exists but the results of using it are (so far) inconsistent.
The driver is based on some earlier work done to allow using the Amazon Cloud Drive from python.
However, it appears the REST API for Amazon Cloud Drive has changed since the earlier work was done.
My results using it have been spotty. I could mount the ACD as a linux mount point and transfer data to it using command line tools (like midnight commander) but I couldn't see the transfer files locally on the linux mount point. Other times, I couldn't seem them on ACD.
It's a hopeful work in progress at this point.
- 161