57

I am using ubuntu 13.10 on evaluation board and my internet is not working. Also i need to install softwares and apt-get install is also not working.

Terminal says : E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?

source : http://www.howtoforge.com/installing-apache2-with-php5-and-mysql-support-on-ubuntu-13.04-lamp

mong cape
  • 579

2 Answers2

51

Run sudo apt-get update command.

If sudo apt-get update is also not working then follow the steps below:

  1. Open the /etc/apt/sources.list file.
  2. Check the word after http://security.ubuntu.com/ubuntu/ in the sources.list file, let the word be xyz.
  3. Go to the address http://security.ubuntu.com/ubuntu/ and then click on dists. Now check whether xyz is present at this path. If it is not present, then replace xyz with the element which is present in dists such as: saucy, lucid, trusty etc.
  4. Now run the sudo apt-get update command.
45

Just type

sudo apt-get clean 

(and re-install)

edwinksl
  • 24,109
Lucifer
  • 451