2

I entered sudo apt-get update in Terminal and got the following output

enter image description here

What to do now?

kos
  • 41,268
Rahul Raj
  • 620

1 Answers1

1

Execute

sudo sed -i '/playonlinux/d' /etc/apt/sources.list

to remove the wrong entry in sources.list and add the repository:

wget -q "http://deb.playonlinux.com/public.gpg" -O- | sudo apt-key add -
sudo wget http://deb.playonlinux.com/playonlinux_precise.list -O /etc/apt/sources.list.d/playonlinux.list
sudo apt-get update
A.B.
  • 92,125