Difference between revisions of "Mounting Cloud Storage on Linux"
Line 2: | Line 2: | ||
==Box.com== | ==Box.com== | ||
===Using WebDAV=== | ===Using WebDAV=== | ||
− | '''This will only work on personal machines! Not csee maintained systems!''' | + | ''''This will only work on personal machines! Not csee maintained systems!'''' |
====Installing davfs2==== | ====Installing davfs2==== | ||
=====Ubuntu, Debian, and Mint===== | =====Ubuntu, Debian, and Mint===== |
Revision as of 10:44, 29 March 2017
Mounting Cloud Storage on Linux
Box.com
Using WebDAV
'This will only work on personal machines! Not csee maintained systems!'
Installing davfs2
Ubuntu, Debian, and Mint
To install davfs2 on Ubuntu, Debian or Mint:
$ sudo apt-get install davfs2
CentOS, RHEL or Fedora
To install davfs2 on CentOS, RHEL or Fedora:
$ sudo yum install davfs2
Disable file locks
The WebDAV share exported by Box.com does not support file locks. Thus you need to disable file locks in the davfs2 configuration file located at /etc/davfs2/davfs2.conf. Otherwise, you will encounter "Input/output error" while attempting to create a file.
$ sudo vi /etc/davfs2/davfs2.conf
use_locks 0
Create a mount point
mkdir ~/box.com
replace "~/box.com" with your preferred mount point
Add yourself to usergroup
This step is optional if you only want to mount as root.
$ sudo usermod -a -G davfs2 USERNAME
where "USERNAME" is your username
Edit fstab
Add the following to /etc/fstab. The "user" option allows you to mount Box.com as an unprivileged non-root user.
https://dav.box.com/dav /home/user/box.com davfs rw,user,noauto 0 0
Replace "/home/user/box.com" with your own mount point.
Add external password to Box
Before you connect, you must create an external password through the Box web interface.
- Open an internet browser and log on to box.umbc.edu
- Click on your name in the upper right corner. In the drop down, click on “Account Settings”
- The bottom section bubble should say “Create External Password.” Click “Edit password”
- Create an external password.
Note: It is advisable for this password to be different from your email password
Run mount
The final step is to run mount.
$ mount box.com
replacing "box.com" with your mountpoint