0

I was trying to install adobe flashplugin in my pc.But while installing it wasn't installed perfectly.I give a screenshot of the terminal while installing.Please help me by recognizing problem and solve it

enter image description here

deb archive.canonical.com/ubuntu trusty partner 
deb-src archive.canonical.com/ubuntu trusty partner 
deb archive.canonical.com trusty partner 
deb-src archive.canonical.com trusty partner 
deb archive.canonical.com/ubuntu yakkety partner 
# deb-src archive.canonical.com/ubuntu yakkety partner
Pilot6
  • 90,100
  • 91
  • 213
  • 324
  • What is the Ubuntu version? – Pilot6 Feb 12 '17 at 16:33
  • 14.04 LTS (32 bit) – tanvirhossain Feb 12 '17 at 16:34
  • It looks like you are installing the package from another release. How did you add the Partner repo? – Pilot6 Feb 12 '17 at 16:39
  • Please [edit] your question and add output of grep partner /etc/apt/sources.list terminal command. PLEASE ADD IT IS TEXT, NOT A SCREENSHOT!!! – Pilot6 Feb 12 '17 at 16:42
  • Here it is,

    'partner' repository.

    deb http://archive.canonical.com/ubuntu trusty partner deb-src http://archive.canonical.com/ubuntu trusty partner deb http://archive.canonical.com/ trusty partner deb-src http://archive.canonical.com/ trusty partner deb http://archive.canonical.com/ubuntu yakkety partner

    deb-src http://archive.canonical.com/ubuntu yakkety partner

    – tanvirhossain Feb 12 '17 at 16:46
  • PLEASE [edit] your question and add the output THERE!!! It is clear that yakkety is wrong for 14.04. But it is unreadable in the comments. – Pilot6 Feb 12 '17 at 16:51
  • but I do not have enough reputation to post more than 2 link in question – tanvirhossain Feb 12 '17 at 17:00
  • Do not post links. Post the text. – Pilot6 Feb 12 '17 at 17:00
  • OK. See the answer. I will do the edit for you. – Pilot6 Feb 12 '17 at 17:02

1 Answers1

2

You added a wrong repository for your Ubuntu release.

Run in a terminal

sudo -H gedit /etc/apt/sources.list

Then remove these lines

deb archive.canonical.com/ubuntu yakkety partner 
# deb-src archive.canonical.com/ubuntu yakkety partner 

Save the file and run

sudo apt-get update

The plugin should install by

sudo apt-get install adobe-flashplugin

The lines

deb archive.canonical.com trusty partner 
deb-src archive.canonical.com trusty partner

are also wrong and should be removed too.

Pilot6
  • 90,100
  • 91
  • 213
  • 324