There are several possibilities to deal with this issues:
You can either remove the file or move it to another place:
sudo mv /etc/apt/sources.list.d/playonlinux.list /var/tmp
Now the file lives in /var/tmp
and you can analyze it if you want.
I guess you wanted the contents like the download page at playonlinux.com it describes.
The file /etc/apt/sources.list.d/playonlinux.list
should contain the following line:
deb http://deb.playonlinux.com/ precise main
So you should edit the file and insert the line above (all other content should be removed). You can also do the following steps to regain the contents:
- Open a terminal
- Enter
wget http://deb.playonlinux.com/playonlinux_precise.list
- Enter
sudo mv playonlinux_precise.list /etc/apt/sources.list.d/playonlinux.list
Now you can run apt-get update
and the error has disappeared.
/etc/apt/sources.list.d/playonlinux.list
somewhere and give a link in your question? – qbi Nov 10 '13 at 13:55