1

I was trying to connect my computer with box.com for have the cloud disk in my computer, I was following this tutorial.

The problem is, I did something wrong and now the device doesn't work and I can't umount it.

Now appears something like this:

enter image description here

Any form of umount it?

P.-H. Lin
  • 2,824

1 Answers1

1

Test this:

Open a terminal,

Press Ctrl+Alt+T

Run it:

sudo -i
nano /etc/fstab

In the open file,comment the following line with #

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

Like this:

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

Ctrl + O, save file. Ctrl + X, close nano.

Continue running:

reboot
kyodake
  • 15,401