I know Box.com does not have a non-server client for Linux. Is there, then, a way to download my files to my PC using an unofficial client?
5 Answers
rclone is a command line client which also supports mounting a remote box.com location.
rclone mount ...
can mount any of Rclone’s cloud storage systems as a file system with FUSE, so it works without the expired WebDAV support.
Limitations
Without the use of “--vfs-cache-mode” this can only write files sequentially, it can only seek when reading. This means that many applications won’t work with their files on an rclone mount without “--vfs-cache-mode writes” or “--vfs-cache-mode full”. See the File Caching section of the docs for more info.
The bucket based remotes (eg Swift, S3, Google Compute Storage, B2, Hubic) do not support the concept of empty directories, so empty directories will have a tendency to disappear once they fall out of the directory cache.
It's available for download here
-
1Welcome to AskUbuntu! IMHO This answer could benefit from a bit more information. See if you agree? Cheers! – Elder Geek Dec 30 '19 at 14:47
I found box-linux-sync on github, but it's a command-line interface.

- 134
- 4
-
Thanks! Command line will work for me. I'm looking to move my Box files to Dropbox or Copy. – Phil Hobrla Mar 14 '14 at 20:31
-
1This no longer works now that their WebDAV is broken and no longer supported – Wolf Sep 01 '22 at 02:52
WebDav will become depricated as of January 31, 2019. https://community.box.com/t5/Box-Product-News/Deprecation-WebDAV-Support/ba-p/55684 As of this time there is no available client for Linux.

- 11
There also "BOXFS - A FUSE-based filesystem for box.com" but I don't know if it is usable.

- 87,389