1

When I try to install missing plugins on terminal, the following output appears:

arif@arif-HP-Pavilion-15-Notebook-PC:~$ sudo apt-get purge ubuntu-restricted-extras
[sudo] password for arif: 
Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package ubuntu-restricted-extras
arif@arif-HP-Pavilion-15-Notebook-PC:~$ sudo apt-get install ubuntu-restricted-extras
Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package ubuntu-restricted-extras
arif@arif-HP-Pavilion-15-Notebook-PC:~$ 
xangua
  • 7,277

2 Answers2

0

Go to the software center -> edit -> software sources and check all boxes. I think the one you need is multiverse, but just to be sure, enable all. Then do sudo apt-get update (unless it updates automatically), now the package should be able to be located.

BIfrost
  • 56
  • 3
-1

purge command is used to remove the component with all its dependencies. If you want to install the package use the following command in terminal

sudo apt-get install ubuntu-restricted-extras
Anandu M Das
  • 2,303