yesterday I tried to install skype using the terminal, but I did something wrong because skype did not get installed and today, when I opened the pc, an error message appeared. It seems that while trying to update a package something went wrong. The message that appears says that I should update packages but when I try this appears(translated to english):
An irresolvable error has occured while initializing the packages information. Inform of thus error to the update-manager and include the following message:
'E:Malformed line 60 in the source list /etc/apt/sources.list (analazing dist)'
This is a link to the text I get when I issue gedit etc/apt/sources.list
When writting: sudo LANG=C apt-get update and sudo LANG=C apt-get check
appears the following:
sudo LANG=C apt-get update
E: Malformed line 60 in source list/etc/apt/sources.list (dist parse)
E: The list of sources could not be read.
sudo LANG=C apt-get check
Reading package lists... Done
Building dependency tree
Reading state information... Done
How to solve this?
gedit /etc/apt/sources.list
You should see a window containing some text. Please, edit your question including that text. – PeppeDAlterio Dec 26 '13 at 11:35sudo LANG=C apt-get update
andsudo LANG=C apt-get check
. Also, you can [edit] your question and include the list any time. – Braiam Dec 26 '13 at 13:59sources.list
file (lines 63-66 in your pastebin link). Those are the malformed lines. The actual correct lines are already present above them (lines 56 and 57); all you need to do is remove the#
at the beginning of those two lines. Save the file, and try to install Skype again. To edit yousources.list
file, dosudo gedit /etc/apt/sources.list
. – Alaa Ali Dec 27 '13 at 07:16