With Canonical’s decision to shutdown Ubuntu One cloud file services, you may be looking for other services to host your data. Although there are many cloud services, just few of the big players support Linux, including Ubuntu.

Dropbox fully supports Ubuntu. It has a Linux client that integrates well with Ubuntu desktop and other notification services. Box, formally Box.net also support Linux via WebDav protocol.

Here’s an excerpt from Canonical’s announcement about Ubuntu One:

As of today (April 2), it will no longer be possible to purchase storage or music from the Ubuntu One store. The Ubuntu One file services will not be included in the upcoming Ubuntu 14.04 LTS release, and the Ubuntu One apps in older version of Ubuntu and in the Ubuntu, Google and Apple stores will be updated appropriately.

It’s sad that we lost this useful service in Ubuntu. One the other hand, moving your data to a more stabled and reputable storage provider is the best decision you can make going forward.

This brief tutorial shows you how to starting using DropBox or Box cloud services in Ubuntu.

Installing DropBox Cloud storage in Ubuntu

We’ve written a lot on this topic. To install DropBox in Ubuntu, all you have to do is follow the steps in the tutorial. It provides a step by step guide in installing and using DropBox in Ubuntu.

To view the tutorial, click here. Or use the link below:

https://liberiangeek.net/2013/03/how-to-install-dropbox-in-ubuntu-13-04-raring-ringtail/

 

Using Box Cloud storage in Ubuntu

Since Box doesn’t have a full feature client for Linux systems, including Ubuntu, you must use WebDav protocol to access and store your content automatically to your account.

To do that, press Ctrl – Alt – T on your keyboard to open the terminal. When the terminal console opens, run the commands below to install these packages.

sudo apt-get install davfs2

 

Next, run the commands below to reconfigure davfs2 and choose Yes to allow unprivileged users to be allowed to mount WebDav resources.

sudo dpkg-reconfigure davfs2

 

Next, copy davfs2 folder to your home directory by running the commands below

sudo cp -r /etc/davfs2/ $HOME/.davfs2

 

Then take ownership of the content by running the commands below

sudo chown -R username $HOME/.davfs2/

 replace username with your account name.

 

Next, open the password file so you can enter your login credentials

 

gedit ~/.davfs2/secrets

 

Then type your username (email address) and password in the file as shown below. Add the line below at the end of the file and save.

https://dav.box.com/dav [email protected]  <box_password>

replace the the email address and password with your account info

 

Next, run the commands below to add your account to the davfs2 group

sudo adduser <username> davfs2

 

Next, open the /etc/fstab tab and add the line below in it.

sudo gedit /etc/fstab

 

Add this line at the end of the file and save.

 

https://dav.box.com/dav/ /home/<username>/box  davfs _netdev,rw,user 0 0 

 

Finally, create a mount point to mount Box’s content

mkdir ~/box

 

Restart your computer and your Box content should be mounted on the launcher.

Enjoy!

Frequently Asked Questions

How to switch from Ubuntu One to Dropbox on Ubuntu?

To switch from Ubuntu One to Dropbox on Ubuntu, you can follow a step-by-step guide provided in tutorials available online, such as the one on liberiangeek.net.

Is Dropbox fully compatible with Ubuntu for cloud storage?

Yes, Dropbox is fully compatible with Ubuntu and offers a Linux client that integrates seamlessly with Ubuntu desktop and notification services.

What is the alternative to Ubuntu One for cloud storage on Linux systems?

Dropbox and Box are popular alternatives to Ubuntu One for cloud storage on Linux systems, with Dropbox having a dedicated Linux client and Box supporting Linux via WebDav protocol.

How can I install Dropbox on Ubuntu 14.04 LTS?

To install Dropbox on Ubuntu 14.04 LTS, you can refer to tutorials and guides available online that provide detailed instructions for the installation process.

Does Box cloud storage have a full-featured client for Ubuntu?

Box cloud storage does not have a full-featured client for Ubuntu; instead, users can access and store content using the WebDav protocol on Linux systems.

What happened to Ubuntu One file services according to Canonical's announcement?

Canonical announced the shutdown of Ubuntu One file services, indicating that it will no longer be possible to purchase storage or music from the Ubuntu One store.

How do I access and store content on Box cloud storage from Ubuntu?

To access and store content on Box cloud storage from Ubuntu, users can utilize the WebDav protocol by following specific commands in the terminal on their Linux system.

Why should I consider switching to more stable cloud storage providers after Ubuntu One's shutdown?

Switching to more stable and reputable cloud storage providers after Ubuntu One's shutdown is recommended to ensure the security and accessibility of your data going forward.