how to remove filezilla from ubuntu

I used the command to remove

sudo apt-get remove filezilla

But it is still in my machine. And I also used the following below command after using the first command

sudo apt-get autoremove
3

1 Answer

To remove just file zilla :

sudo apt-get remove filezilla

Remove filezilla and it's dependencies :

sudo apt-get remove --auto-remove filezilla

Remove all your config data and file :

sudo apt-get purge filezilla

Or

sudo apt-get purge --auto-remove filezilla

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