Re: Vu+ Solo2
The key command ask Linux
that is, in other words:
--- more in details with a [tt] davfs2[/tt] file system
verbose recipy: --https://linuxacademy.com/blog/linux/cloud-storage-for-your-linux-platform/
other links:
enjoy
The key command ask Linux
- to mount an external disk, ie [tt] --http:////www.bigcloud.org/kalpikos [/tt]
- with a ppropriate filesystem, ie [tt] cifs [/tt]
- onto your local mounting dir, ie [tt] /medias/clouds/bigcloud[/tt]
- on behalf of your credentials, ie [tt] user=kalpikos,passwd=bigsecret[/tt]
that is, in other words:
Code:
sudo mount -t cifs --http://www.bigcloud.org/kalpikos /medias/clouds/bigcloud -o user=kalpikos,passwd=bigsecret
--- more in details with a [tt] davfs2[/tt] file system
Code:
sudo apt-get install davfs2 sudo /mnt/dumptruck sudo mkdir ~/.davfs2 && sudo cp /etc/davfs2/secrets ~/.davfs2 && sudo chown $USER:$USER ~/.davfs2/secrets sudo cp /etc/davfs2/davfs2.conf ~/.davfs2/davfs2.conf sudo chown $USER:$USER ~/.davfs2/davfs2.conf chmod 600 ~/.davfs2/secrets chmod 611 ~/.davfs2/davfs2.conf vim dumptruck login credentials https://dav.dumptruck.goldenfrog.com/dav USERNAME PASSWD sudo mount -t davfs2 https://dav.dumptruck.goldenfrog.com/dav /mnt/dumptruck
other links:
- --https://linuxacademy.com/blog/linux/cloud-storage-for-your-linux-platform/
- --http://xmodulo.com/how-to-mount-box-com-cloud-storage-on-linux.html
- --http://www.cyberciti.biz/cloud-computing/7-awesome-open-source-cloud-storage-software-for-your-privacy-and-security/
- --https://www.linux.com/learn/tutorials/769023-three-alternatives-to-ubuntu-one-cloud-service
enjoy
Comment