5

Yesterday I installed MegaSync with the Nautilus extension and when I restarted the computer (running Ubuntu Desktop 15.04) the MegaSync app doesn't start at all.

I tried running megasync in the terminal and nothing, System Monitor does not see MegaSync running. What can I do?

user.dz
  • 49,176
J. Doe
  • 53

2 Answers2

7

The answer of dadexix86 doesn't work all the time. At first, I did what he proposed and it worked.

But later on, when the issue reappeared, I found that I had to delete/rename the megasync.lock file inside "~/.local/share/data/Mega Limited/MEGAsync/":

Doing that, it worked like a charm.

Pablo Bianchi
  • 17,371
milia
  • 171
4

The problem is a wrong ownership of some files in the home directory.

Acquire again the property of all the files in that directory via

sudo chown -R $USER:$USER "/home/$USER/.local/share/data/Mega Limited"

Where $USER is an environment variable with your current username.

Pablo Bianchi
  • 17,371
dadexix86
  • 6,776