4

This is what I have tried so far:

$ sudo apt-cache search lightworks  
lightworks - Hollywood-strength editing for everyone  
$ sudo apt-get --purge remove "lightworks - Hollywood-strength editing for everyone"  
Reading package lists... Done  
Building dependency tree         
Reading state information... Done  
E: Unable to locate package lightworks - Hollywood-strength editing for everyone

Ubuntu Software Center can't find lightworks.

Kaz Wolfe
  • 34,122
  • 21
  • 114
  • 172
Alex
  • 2,099

2 Answers2

4

Syntax for removing a package with its configurations is:

sudo apt-get purge [Package name]

Or

sudo apt-get --purge autoremove [Package name]

So run :

sudo apt-get purge lightworks

Or

sudo apt-get --purge autoremove lightworks

The section, Hollywood-strength editing for everyone is a description about software. Not the package name.

  • it worked now. the "sudo apt-get purge lightworks" worked. i hope nothing else got effected. – Alex Dec 31 '13 at 05:31
1

I think you manually installed lightworks from .deb file.

How to uninstall a .deb package?

Avinash Raj
  • 78,556