0

Ass official documentation says:

DEB Package: 
dpkg –purge oss-linux  

I need to run this command through tty console, but when I run it, it gives me error.

Erorr: unknown option -u

1 Answers1

1

You should execute the command on this way (man page):

dpkg –-purge oss-linux  

You miss one dash (-). Or you can use this way:

dpkg –P oss-linux  

--purge is other variant of -P

Romeo Ninov
  • 709
  • 7
  • 13