3

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

1 Answers1

14

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
Liso
  • 15,377
  • 3
  • 51
  • 80