PDA

View Full Version : [howto] Mount your Box.Net account using WebDAV



pingflood
June 24th, 2006, 06:20 AM
Hello!

You can mount your Box.Net (http://www.box.net/signup/invitation/box@pingflood.cjb.net) account to easily upload/download files.

First, install davfs2:



# apt-get install davfs2


Now, create the mount directory:



# mkdir /media/box.net


and mount:



# mount -t davfs http://www.box.net/dav /media/box.net


Insert your username and password and it's done!

You can also put your username/password in /etc/davfs2/secrets



echo "http://www.box.net/dav username password" >> /etc/davfs2/secrets


So, mount will not ask for username/password.

Also, Konqueror can access Box.Net directly using the WebDAV protocol:



webdav://www.box.net/dav


(I think the protocol is just "dav://" in Nautilus)

If you want a Free Box.Net account,
Box.Net (http://www.box.net/signup/invitation/box@pingflood.cjb.net)

Tested in Kubuntu Dapper Drake 6.06

More info and options:


$ man mount.davfs


Regards,
Ping Fløød
#356111

patrick295767
July 3rd, 2006, 05:11 PM
Thank you !
Very nice

Btw, Is there somethg else than box.net
is there any good concurrents to this program ??

Pat'

-
I tried; works great !!
I added -o rw
but still cannot drag & drop (copy) from rox filer ... Is it normal ??

Thx

tcort
July 3rd, 2006, 07:31 PM
Wow, Box.net is really cool. Thanks for posting the howto.

joakim2
July 3rd, 2006, 10:55 PM
Hmm.... this seems to be doing some really strange things... Copying a picture into the /media/box.net/ folder seems to work, using mv to move the picture it has suddenly disappeared (though it's now showing in the web interface but without a name...) I would be careful with this service :)

naked
July 4th, 2006, 12:26 AM
I was trying to do this via "Connect to server" in the places menu and kept having trouble, how should I put the settings in there? I'd like the keyring to manager my password for this and also auto connect for me.

Is this possible?

L

patrick295767
July 4th, 2006, 12:34 PM
I was trying to do this via "Connect to server" in the places menu and kept having trouble, how should I put the settings in there? I'd like the keyring to manager my password for this and also auto connect for me.

Is this possible?

L

For the autoconnect, I guess the regular /etc/fstab would work ...
then, you can play with permissions.
:rolleyes:

And, to mount the google box, is it the same way ?

gThree
July 6th, 2006, 12:12 AM
@naked | anyone else:

Nautilus File Browser >> File >> Connect To Server
or
Start Menu >> Places >> Connect To Server

then



Service type = Secure WebDAV (HTTPS)
Server = www.box.net
Port = [leave blank]
Folder = dav
User Name = [optional, log-in will prompt for it]
Name To Use For Connection = ["boxnet" or whatever label you prefer]

note:
Like joakim2 had very mixed experience with above in Ubuntu Dapper/Power PC (G4). Had error with davfs2. Worked great with Kubuntu Dapper/Konqueror on same machine ... faster than Box.Net web access, split-pane interface, notifications ... suddenly a very useful service. Bookmarked. Used following to access:



webdavs://box.net/dav [certificate throws error]
or
webdav://box.net/dav

Haven't used Box.Net long enough to comment on quality of service itself, but so far so good.

@patrick295767:
When I checked around a month or so ago, Box.Net looked like best free option in terms of space, access and single upload size.

Hope that helps ....

gThree
July 7th, 2006, 05:15 AM
Add:

Had best results in Ubuntu with Cadaver, a command-line webDAV client. Fast, simple. Could only get it to work with HTTP access.

twelve17
September 28th, 2006, 05:20 PM
I was having trouble mounting dav shares as a local user:


/usr/lib/mount.davfs-2.6: Can't get root permissions, maybe program is not setuid

I verified that the folders I created for the local mount points are readable by the user. I would prefer to not have to make the program SUID, but I had to in order for it to allow normal users to mount:


foo@myhost:/$ sudo chmod u+s /usr/lib/mount.davfs-2.6


I couldn't think of any other ways to do this, as the man page states that the files are owned by the user who mounted the resource, which would mean that root would always own them. :(

PartickThistle
October 1st, 2006, 03:10 PM
Hello!

You can mount your Box.Net (http://www.box.net/signup/invitation/box@pingflood.cjb.net) account to easily upload/download files.


Are you donating the money from your referrals to Ubuntu/Open Source projects?

iamacarpetlicker
February 6th, 2007, 12:44 PM
Hey,
Every time I mount a WebDAV share it is only accessible as root, but I cant mount it as my normal user.
Is there any way to sort this out, am I just doing something wrong?

I have been doing....
sudo mount -t devfs http://<local_server_ip>/dav/sam/ /home/sam/dav
But then nothing will work on that folder, and I cant chmod it or anything. But it works with root fine.

Some help, please? :)

Thankyou lots,
Sam.

joshkidd
February 7th, 2007, 03:55 AM
I just spent most of today trying to figure this out on my own. So, here's my solution.

First, I assume you've installed the davfs2 package. If you haven't use the following command:


sudo apt-get install davfs2

By default this package is installed so that only root can mount davfs volumes. To mount as other users, you need to set the SUID bit for /sbin/mount.davfs and designate a group whose members can mount davfs volumes. To set the SUID bit, use this command:


sudo chmod u+s /sbin/mount.davfs

You then need to configure davfs so that only members of the group "users" can mount davfs volumes. The config file for davfs is: /etc/davfs/davfs.conf Edit however you like, but to use gedit:


gksudo gedit /etc/davfs2/davfs2.conf

There should be a line something like:


dav_group $group

This should be changed to:


dav_group users

Now, you should add your user to the users group:


sudo addgroup your-user users

Now add something like the following line to your /etc/fstab


http://<local_server_ip>/dav/sam/ /home/sam/dav davfs rw,user,noauto 0 0

Here, I used your examples for the webDAV server and the mountpoint. davfs is the filesystem type. rw,user,noauto are the options. user is the key option here. It allows users other than root to mount the volume. rw for read/write and noauto means it won't mount on startup.

At this point, I needed to restart my computer before anything would work.

When you get back to the prompt, all you need to do is:


mount /home/sam/dav

And you should be good to go. If you have any questions, please ask. I'm new to these forums too, but I hope I've explained well.

iamacarpetlicker
February 8th, 2007, 10:56 PM
Hey Joshkidd,

Thankyou loads!! That worked amazing! =]
You rock, and yes you explained it perfectly.

Thankyou again!
Sam.

Oulianov
February 12th, 2007, 10:04 PM
Hi,

Mount works great for me, but each time I try to write or read something (by nautilus or by a term), I get "I/O error" (nothing else....just "I/O error").

Does anybody have the same error ? Or a solution...

Thanks

Ouli

iamacarpetlicker
February 13th, 2007, 09:14 PM
Maybe the I/O Error is to do with either a server or connection error?
You can try http://test.webdav.org/ to see if its a server error.

Also you could try and recompile davfs2 to see its its a client error, or try cadaver which may give you a more detailed error message?

Thanks,
Sam.

Oulianov
February 13th, 2007, 10:08 PM
Maybe the I/O Error is to do with either a server or connection error?
You can try http://test.webdav.org/ to see if its a server error.

I can read and write on test server


Also you could try and recompile davfs2 to see its its a client error, or try cadaver which may give you a more detailed error message?

I tried the last version of davfs2, same problem.
But cadaver works fine, I'm able to put or get a file.

I discovered that with davfs I can create a folder. No file, only folders.

That's quite strange, I didn't find anything one the web about.

Thanks

Ouli

uglowp
September 11th, 2007, 09:49 AM
I have a similar problem.

I can mount boxnet ok, but I can't save any file to the folder. I followed all the instructions in the thread but can't get it to work.

Any ideas?

Thanks!

Phil.

euphrate_ylb
September 24th, 2007, 01:53 PM
Exactly, the same issue.

I can't add/manage files. Most of the time I am told that the "file already exists" (cp in command line). In nautilus, it looks like I don't have write privileges.However I can create folders???

The problem remains with davfs2 1.2.2...

Works fine with cadaver.

Any help?

euphrate_ylb
-------
http://www.fbollon.net

munkiepus
October 3rd, 2007, 06:09 AM
I'm having the same problem where i can create folders via a mounted webdav folder but if i try to create a file it says "file exists" (when it really doesn't) or i/o error.

Cadaver works fine.

Anyone else found this problem :confused:

aitorcalero
November 13th, 2007, 03:28 PM
I have the same issue (can create folders but no files). Does anyone find a solution or a workarround for this?

ulriks
January 27th, 2008, 05:29 PM
To remount without restarting:


sudo mount -a


I had to remove line 16 and line 18 in my .davfs2/davfs2.conf to get be able to mount box.net. As with most people, I can create folders using the command line, but cp and mv does not work.

Adding box.net as a Network Folder (Kubuntu) allows me to copy and stuff using Dolphin.

Botsinge
February 23rd, 2008, 11:29 PM
The problem with I/O Errors upon copying/moving files has to do with the webdav server not responding well to file locks.

Add 'nolocks' to the options in the fstab entry or add '-o nolocks' on the command line.

See this thread for more info http://sourceforge.net/forum/forum.php?thread_id=1619210&forum_id=82589

aitorcalero
March 3rd, 2008, 09:36 AM
Thank you very much! Finally I could use WebDAV!!! :)

beansbbq
March 31st, 2008, 04:32 AM
Hi everyone,


I recently signed up for Ubuntu 7.10 based hosting with VPSLink. I wanted to try mounting Box.net from the command line to get a little more disk. My plan was to place my photos and videos on Box.net, yet be able to access them 'locally'.


Unfortunately I am encountering some problems. I'm receiving the following three lines after I enter my username and password.

===
/sbin/mount.davfs: no free coda device to mount
/sbin/mount.davfs: trying fuse kernel file system
/sbin/mount.davfs: fuse device opened successfully.
===

Now, I'm not sure what to make of this. I see the mount point 'Box.net' on the file system. When I 'cd' onto the mount point and try to 'ls', I receive the following message.

"ls: .: Transport endpoint is not connected
===

Can anyone make any sense of this, and what should I do to fix or get around this? I opted for OpenVZ instead of Xen based hosting. Could this be the cause of my problems?

Thanks in advance...

allmycrud
May 19th, 2008, 03:06 PM
Did you ever get any answers?
I have the problem where I can mount box.net with my user and create folders and copy over files, but only the folders show up in box.net. Anyone have a solution to this?

Thanks

HappySpaceInvader
May 23rd, 2008, 03:03 PM
@naked | anyone else:

Nautilus File Browser >> File >> Connect To Server
or
Start Menu >> Places >> Connect To Server

then

[CODE]
Service type = Secure WebDAV (HTTPS)


Ah... there's a problem there, you see in Hardy Heron, I don't get the Secure WebDAV option - just the plain HTTP version.

EmilyRose
August 29th, 2008, 04:36 AM
Yeah, I'm thinking the reason I can't login with the server is because its not HTTPS but only HTTP. So the only way I can get in is through the CL and then I can't access it cause' its mounted as bloody root!!

ya-manickill
November 14th, 2008, 12:38 PM
Does anyone have any idea how to use a proxy through davfs? I would like to access my account when I am at uni, but it uses a proxy at uni, and I can't work out how to do that.

TheMacFactor
January 12th, 2009, 06:59 PM
Does anyone have any idea how to use a proxy through davfs? I would like to access my account when I am at uni, but it uses a proxy at uni, and I can't work out how to do that.

Set it up in /etc/davfs2/davfs2.conf

Read
man davfs2.conf for the full story.

alexei.colin
October 4th, 2009, 03:46 AM
Thank you for the great HowTo!

For me, mount, cp, mv, rm all work, and I can create directories, but the directories are not recognized as directories: cd says: "Not a directory."

Any thoughts on how to make davfs see that the directories are in fact directories? Thank you in advance!

xxilus
May 23rd, 2010, 08:37 PM
add this to /etc/fstab

https://box.net/dav /media/box.net davfs defaults 0 0

covert
July 19th, 2010, 08:00 AM
I got a error

"Input/output error"

When I tried to create a file on the box.net mount. I found this fix.

Put use_locks 0 to your davfs2.conf file

DrPotoroo
September 16th, 2011, 01:42 PM
I got a error

"Input/output error"

When I tried to create a file on the box.net mount. I found this fix.

Put use_locks 0 to your davfs2.conf file

That was very handy when I finally found this post. However, I'm still getting some input/output errors, both reading and writing files. Any ideas why?

Also, has anyone had any success using rsync or unison with a box.net mount? I tried rsync and it would do okay for a while then fail with input/output errors.

rudametkin
September 17th, 2011, 04:14 AM
I just setup my box.net and wanted to share the steps with anybody having trouble. I suppose you've installed davfs already.

Create a mount point:


mkdir ~/box.net

Add this to /etc/fstab (correct the details for your user):

http://www.box.net/dav /home/user/box.net davfs rw,user,noauto 0 0

(Just as a note, https didn't work for me. It mounts but copied files never showed up. I saw something on their site about 256bit SSL encryption being available when you upgrade to business.)

To allow your your user to mount without being root you want to say yes to this:

sudo dpkg-reconfigure davfs2

Then add user to davfs2 group

sudo adduser $USER davfs2

Let's configure davfs in your home directory

mkdir ~/.davfs2
cp /etc/davfs2/davfs2.conf ~/.davfs2

Add this to ~/.davfs2/davfs2.conf:

use_locks 0

To avoid typing your login and password every time:

sudo cp /etc/davfs2/secrets ~/.davfs2
sudo chown $USER ~/.davfs2/secrets

Add your login and pass to ~/.davfs2/secrets:

http://www.box.net/dav username@mail.com password

And finally mount:

mount ~/box.net

I hope I didn't miss anything. I used some stuff originally found in french here: http://doc.ubuntu-fr.org/davfs2



Also, has anyone had any success using rsync or unison with a box.net mount? I tried rsync and it would do okay for a while then fail with input/output errors.

I've been running rsync for a little while and ever since I got the configuration correct (i.e., nolocks, http) I haven't had any trouble.

On the other hand, I want better synchronization so instead of rsync (or even Unison) I'm thinking of using something like dvcs-autosync or SparkleShare because they use a git backend and provide version control (among other features), but I haven't figured out how to set it up so that I can put the "central" .git repo on my box.net. (Maybe it's really simple.) Also, lots of my files are photos & music and I'm not sure if using git on them is a good idea.

http://www.syncany.org/ might be an interesting option, they say they provide synchronization for local folders (including nfs and fuse mounts) out of the box, but the project doesn't seem very mature yet.

Any ideas?

HuntMike79
November 16th, 2011, 12:44 AM
Add:

Had best results in Ubuntu with Cadaver, a command-line webDAV client. Fast, simple. Could only get it to work with HTTP access.

HI, would you mind telling me how you managed to connect to box.net using Cadaver?

I've tried many many times and get this error:


Could not access /dav/ (not WebDAV-enabled?):
207 Multi-Status
Connection to `www.box.net' closed.


What am I doing wrong?

purplemonk
November 16th, 2011, 11:51 AM
EDIT:

Just figured out you have to pass the -t option to cadaver:



cadaver -t https://www.box.net/dav

and everything works perfectly. =)



Could not access /dav/ (not WebDAV-enabled?):
207 Multi-Status
Connection to `www.box.net' closed.



Hello,

I'm getting the same error too here. Accessing to my box.net account through webdav on macos worked well a few days ago.

jat255
December 21st, 2011, 07:10 PM
EDIT:

Just figured out you have to pass the -t option to cadaver:



cadaver -t https://www.box.net/dav

and everything works perfectly. =)



Hello,

I'm getting the same error too here. Accessing to my box.net account through webdav on macos worked well a few days ago.


Try switching the address to
https://www.box.com/dav

Box.net is undergoing a transition to Box.com (as I understand it) and I believe they deactivated access to the box.net domain via webDAV.

paperclip
December 21st, 2011, 07:39 PM
Thanks.. I was able to connect with Nautilus using www.box.com/dav

treesurf
December 27th, 2011, 03:29 AM
Thanks.. I was able to connect with Nautilus using www.box.com/dav


thanks, this worked great for me as well.

Cicer
February 21st, 2012, 08:31 PM
I kept getting this error:


/sbin/mount.davfs: Mounting failed.
302 Found

and solved it by changing my fstab from http://www.box.net to https://www.box.com after reading this thread (http://ubuntuforums.org/showthread.php?t=1807481).

I think the problem is that box.net redirects to box.com.

grana
March 8th, 2012, 09:13 AM
I have a strange problem with mounted box.com + rsync.
Apparently, I succesfully uploaded (rsync'ed) 25GB of photos, but when I go to the web frontend (box.com), I see all the folder trees, some images, but most folders (the most recently uploaded) are empty.
Even stranger, on my local machine I can open and view the images in the mounted (/media/box.com) device.

I'm not a rsync expert, so maybe there's something I'm missing... can you help me?

Thanks
Federico

grana
March 9th, 2012, 12:50 AM
I have a strange problem with mounted box.com + rsync.
Apparently, I succesfully uploaded (rsync'ed) 25GB of photos, but when I go to the web frontend (box.com), I see all the folder trees, some images, but most folders (the most recently uploaded) are empty.
Even stranger, on my local machine I can open and view the images in the mounted (/media/box.com) device.

I'm not a rsync expert, so maybe there's something I'm missing... can you help me?

Thanks
Federico
edit: solved... Too stupid to be true!

AllGamer
May 18th, 2012, 04:07 PM
Thank you! :KS

works like a charm

unfortunately, the Box.Net service is forever slow as it has always been, but that's a discussion for another topic




I just setup my box.net and wanted to share the steps with anybody having trouble. I suppose you've installed davfs already.

Create a mount point:


mkdir ~/box.net

Add this to /etc/fstab (correct the details for your user):

http://www.box.net/dav /home/user/box.net davfs rw,user,noauto 0 0

(Just as a note, https didn't work for me. It mounts but copied files never showed up. I saw something on their site about 256bit SSL encryption being available when you upgrade to business.)

To allow your your user to mount without being root you want to say yes to this:

sudo dpkg-reconfigure davfs2

Then add user to davfs2 group

sudo adduser $USER davfs2

Let's configure davfs in your home directory

mkdir ~/.davfs2
cp /etc/davfs2/davfs2.conf ~/.davfs2

Add this to ~/.davfs2/davfs2.conf:

use_locks 0

To avoid typing your login and password every time:

sudo cp /etc/davfs2/secrets ~/.davfs2
sudo chown $USER ~/.davfs2/secrets

Add your login and pass to ~/.davfs2/secrets:

http://www.box.net/dav username@mail.com password

And finally mount:

mount ~/box.net

I hope I didn't miss anything. I used some stuff originally found in french here: http://doc.ubuntu-fr.org/davfs2




I've been running rsync for a little while and ever since I got the configuration correct (i.e., nolocks, http) I haven't had any trouble.

On the other hand, I want better synchronization so instead of rsync (or even Unison) I'm thinking of using something like dvcs-autosync or SparkleShare because they use a git backend and provide version control (among other features), but I haven't figured out how to set it up so that I can put the "central" .git repo on my box.net. (Maybe it's really simple.) Also, lots of my files are photos & music and I'm not sure if using git on them is a good idea.

http://www.syncany.org/ might be an interesting option, they say they provide synchronization for local folders (including nfs and fuse mounts) out of the box, but the project doesn't seem very mature yet.

Any ideas?

Gaurne
June 7th, 2012, 06:32 PM
Thank you! works like a charm unfortunately, the Box.Net service is forever slow as it has always been, but that's a discussion for another topic Quote: Originally Posted by rudametkin I just setup my box.net and wanted to share the steps with anybody having trouble. I suppose you've installed davfs already. Create a mount point: Code: mkdir ~/box.net Add this to /etc/fstab (correct the details for your user): Code: http://www.box.net/dav /home/user/box.net davfs rw,user,noauto 0 0 (Just as a note, https didn't work for me. It mounts but copied files never showed up. I saw something on their site about 256bit SSL encryption being available when you upgrade to business.) To allow your your user to mount without being root you want to say yes to this: Code: sudo dpkg-reconfigure davfs2 Then add user to davfs2 group Code: sudo adduser $USER davfs2 Let's configure davfs in your home directory Code: mkdir ~/.davfs2 cp /etc/davfs2/davfs2.conf ~/.davfs2 Add this to ~/.davfs2/davfs2.conf: Code: use_locks 0 To avoid typing your login and password every time: Code: sudo cp /etc/davfs2/secrets ~/.davfs2 sudo chown $USER ~/.davfs2/secrets Add your login and pass to ~/.davfs2/secrets: Code: http://www.box.net/dav username@mail.com password And finally mount: Code: mount ~/box.net I hope I didn't miss anything. I used some stuff originally found in french here: http://doc.ubuntu-fr.org/davfs2 I've been running rsync for a little while and ever since I got the configuration correct (i.e., nolocks, http) I haven't had any trouble. On the other hand, I want better synchronization so instead of rsync (or even Unison) I'm thinking of using something like dvcs-autosync or SparkleShare because they use a git backend and provide version control (among other features), but I haven't figured out how to set it up so that I can put the &quot;central&quot; .git repo on my box.net. (Maybe it's really simple.) Also, lots of my files are photos &amp; music and I'm not sure if using git on them is a good idea. http://www.syncany.org/ might be an interesting option, they say they provide synchronization for local folders (including nfs and fuse mounts) out of the box, but the project doesn't seem very mature yet. Any ideas?
Hey guys,

I couldn't agree more. I really don' (http://bestelectricshaverhq.org)t get why more people just don't get it.

Great post, keep it up.

Cheers!

Gaurne
June 7th, 2012, 06:32 PM
Thank you ! Very nice Btw, Is there somethg else than box.net is there any good concurrents to this program ?? Pat' - I tried; works great !! I added -o rw but still cannot drag &amp; drop (copy) from rox filer ... Is it normal ?? Thx
Hey guys,

I couldn't agree more. I really don' (http://bestelectricshaverhq.org)t get why more people just don't get it.

Great post, keep it up.

Cheers!

Gaurne
June 7th, 2012, 06:33 PM
is this script safe? (sorry, I'm newbish).
Hey guys,

I couldn't agree more. I really don' (http://bestelectricshaverhq.org)t get why more people just don't get it.

Great post, keep it up.

Cheers!

Gaurne
June 7th, 2012, 06:33 PM
Quote: Thank you ! Very nice Btw, Is there somethg else than box.net is there any good concurrents to this program ?? Pat' - I tried; works great !! I added -o rw but still cannot drag &amp;amp; drop (copy) from rox filer ... Is it normal ?? Thx Hey guys, I couldn't agree more. I really don't get why more people just don't get it. Great post, keep it up. Cheers!
Hey guys,

I couldn't agree more. I really don' (http://bestelectricshaverhq.org)t get why more people just don't get it.

Great post, keep it up.

Cheers!

drumz
February 12th, 2013, 12:41 AM
Has anyone taken the extra step to use encfs with this? I'm trying, but apparently the davfs doesn't like filenames beginning with a period (i.e. ".foo"). Encfs uses a hidden file to store information and it fails silently when setting it up. I just happened to try creating a hidden file in my box.com directory and discovered this was the issue:


cd box.com
touch .foo
touch: cannot touch `.foo': No such file or directory

prokennexusa
March 18th, 2013, 04:22 AM
To All-

I wated to take a moment and post this solution since I was working on the problem for most of the day today.

When I would type:


mount box.com


I would get this response:


/sbin/mount.davfs: Mounting failed.
Could not authenticate to server: rejected Basic challenge


This was the solution:

gksudo gedit /etc/davfs2/davfs2.conf

Add the following to davfs2.conf:

dav_group users
use_locks 0

Then type:



sudo addgroup <yourusername> users

Then do:


sudo apt-get update
sudo apt-get install cadaver



Then do:


cadaver -t https://www.box.net/dav

Login with your Box.com Username and Password once you sucessfully authenticate type 'quit' to exit from the session.

Finally, you will be able to sucessfully do:


sudo mount box.com

That is it! The bottom line is that most of the toutorials miss adding your name to the user group and finally installing cadaver. I do not understand why davfs2 requires cadaver, I suspect it calls to the cadaver module in the backgroud and if it is missing davfs2 has no way to authenticate ssl.

My system is Kabuntu 12.10 32-bit just in case another user requires this informtion. Thank you for having this thread available to us!

narsaw
April 26th, 2013, 07:12 PM
Anyone notice that when box.net is mounted via webdav that it shows you have 26GB of storage with 13GB already used?

On their website it shows that I have 50GB on only 8.5MB in use

Why the difference?



% df -h
.
.
.
https://www.box.com/dav 26G 13G 13G 50% /media/box.net
.
.
.

guillemsola
September 1st, 2013, 01:05 AM
I saw this and don't understand why, it's a bit annoying


Anyone notice that when box.net is mounted via webdav that it shows you have 26GB of storage with 13GB already used?



% df -h
https://www.box.com/dav 26G 13G 13G 50% /media/box.net