1

When I run sudo apt-get update I get this error:

W: Failed to fetch http://repo.mysql.com/apt/ubuntu/dists/trusty/InRelease  Unable to find expected entry 'utilities-1.4/binary-amd64/Packages' 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.

What can I do?

Ron
  • 20,638

1 Answers1

0

The problem is that there are no utilities-1.4 package in MySQL repo. There is only utilities-1.5.

I can only assume that you might be having utilities-1.4in your mysql.list. The solution is to reconfigure mysql by:

dpkg-reconfigure mysql-apt-config

Select 'Utilities'-> OK -> mysql-utilities-1.5 -> OK -> Apply

Then run:

sudo apt-get update
sudo apt-get upgrade
Ron
  • 20,638
  • @Ankit_Chaudhary If you find the post useful you can accept this as the answer to your question ;) – Ron Aug 24 '15 at 13:01