How do I completely remove mega sync client

I'm using mega service (). I installed the sync client on my Ubuntu 14.10 and it works well. But now I'm trying to configure a new account. I did a purge to the mega sync pakckage :

sudo apt-get --purge remove megasync

and I deleted the associated folder. But after the new install, mega detect my old mega account and it did'nt even create the folder! I disconnected the old one but don't work!

Any help is welcome.

2 Answers

You have in your home directory a megasync configuration ~/.local/share/data/Mega Limited. Configurations in your home directory are not deleted by simply uninstalling a package.

Remove this folder with:

rm -rf ~/.local/share/data/Mega\ Limited

For the future use purge instead of remove when you want config files to be gone as well.

3

To clear the mega client configuration must be eliminated.

sudo apt-get --purge remove megasync

and then delete the configuration

rm -rf ~/.local/share/data/Mega\ Limited
2

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like