optional webdav cloud storage besides google:
box.com
http://www.4shared.com/  – 2012-12-24
http://adrive.com – 2013-01-09
how to interface webdav/davfs2 into google-drive:
0) yum  —assume-yes   install  openssl-devel  ;  ## might need this
1) sign up for http://dav-pocket.appspot.com
and observe the login information:
Server Address: https://dav-pocket.appspot.com/docso Login: edwardsmarkf Password: password for this account.
— to test on cyberduck ——
1) download and install cyberduck
2) create new bookmarks
box.com:

google-dav-pocket:

— to test on BitKinex  (cant get box.com working…..:-) —
2) download and install BitKinex 3.2.3
3) set the server information:

4) set the directory name “/docso? into the sitemap:

5) observe the results:

GETTING webdav/davfs2 WORKING ON THE SERVER:
yum  install libtool ;
make distclean;
wget  http://sourceforge.net/projects/expat/files/expat/2.1.0/expat-2.1.0.tar.gz/download;  
gzip, tar, ./configure,  make install;
wget  http://www.webdav.org/neon/neon-0.29.6.tar.gz;  gzip, tar,;   
./configure  —with-ssl   ;   make check ;  make install;
make distclean;
wget  http://savannah.spinellicreations.com//davfs2/davfs2-1.4.7.tar.gz ;  gzip, tar, ./configure, make check ;  make install;
groupadd  davfs2 ;
useradd -g   davfs2   davfs2 ;
mount -t davfs https://www.box.net/dav /media/box.net ;   
      # this should prompt for username/password
yum install fuse fuse-ntfs-3g dkms dkms-fuse   ;
sources:
http://howto.wikispaces.umb.edu/Bitkinex+Setup
http://www.howtoforge.com/how-to-set-up-webdav-with-apache2-on-centos-5.5
http://www.howtoforge.com/how-to-set-up-webdav-with-lighttpd-on-fedora-11
http://blog.secaserver.com/2011/08/linux-setup-and-enable-webdav-in-apache/
http://how-to.linuxcareer.com/how-to-configure-nfs-on-linux

