0

I installed vlc using tar.xz file, now I want to remove it but as I have deleted the source directory from which it was installed, I am unable to uninstall it.

I have tried these commands:

apt-get remove vlc
apt-get remove vlc-nox
apt-get remove vlc-data
sudo apt-get autoremove --purge vlc

without success

Zanna
  • 70,465
rock
  • 1
  • Close Voters: The Duplicate mentioned in the close vote has an accepted answer that involves runing make uninstall from the source tree. The OP has deleted this source so IMHO this is not an exact Duplicate... – andrew.46 Sep 30 '16 at 07:54
  • @andrew.46 the OP can download the same sources again and run make uninstall. – Andrea Lazzarotto Sep 30 '16 at 11:39

1 Answers1

1

One possible solution:

  1. Download the sources again (preferably with exactly the same version).
  2. Install it from sources again (overwriting the old install)
  3. Then follow the answer to this question mentioned in the comments: If I build a package from source how can I uninstall or remove completely?
Jan
  • 1,193
  • 11
  • 11