2

I am unable to view any screen in my ubuntu, Also, when i do apt-get update.

I get below errors :-

  1. Failed to download repository information. Check your internet connection

Details

W:Failed to fetch http://archive.ubuntu.com/ubuntu/dists/trusty/Release Unable to find expected entry 'restricted/source/Sources' in Release file (Wrong sources.list entry or malformed file),
E:Some index files failed to download. They have been ignored , or old ones used instead.

How can i solve the issue.

1 Answers1

-4

Please try,

echo "deb http://archive.ubuntu.com/ubuntu trusty main universe restricted multiverse | sudo tee /etc/apt/sources.list
echo "deb http://archive.ubuntu.com/ubuntu trusty-updates main universe restricted multiverse" | sudo tee -a /etc/apt/sources.list"
echo "deb http://archive.ubuntu.com/ubuntu trusty-security main universe restricted multiverse"  | sudo tee -a /etc/apt/sources.list"
echo "deb http://archive.ubuntu.com/ubuntu trusty-backports main universe restricted multiverse"  | sudo tee -a /etc/apt/sources.list"
sudo apt-get update
sudo apt-get upgrade

The first lines will reset your repository. Then the update might work.

mchid
  • 44,904
  • 8
  • 102
  • 162