03-06-2019, 05:42 PM
I earlier had this issue too. But you can refer to this answer for a possible solution to your problem because this helped me. Maybe it would help you too?
Additionally, here is what I did(with reference to the above-mentioned answer).
I copied old source.list to '/' directory as a backup.
Now downloading new source.list and directly making it edited to original file.
Now updating with new lists.
Removing extras which had an impact/conflict with another file of the same, so we removed it to avoid the error.
Now updating again for the last time.
This should work as it did for me.Â
Credits are mentioned.
Additionally, here is what I did(with reference to the above-mentioned answer).
I copied old source.list to '/' directory as a backup.
Code: (Select All)
sudo cp /etc/apt/sources.list ~/Now downloading new source.list and directly making it edited to original file.
Code: (Select All)
sudo wget "http://pastebin.com/raw.php?i=uzhrtg5M" -O /etc/apt/sources.listNow updating with new lists.
Code: (Select All)
sudo apt-get updateRemoving extras which had an impact/conflict with another file of the same, so we removed it to avoid the error.
Code: (Select All)
sudo rm /etc/apt/sources.list.d/ubuntu-extras.listNow updating again for the last time.
Code: (Select All)
sudo apt-get updateThis should work as it did for me.Â
Credits are mentioned.
