LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Ubuntu
User Name
Password
Ubuntu This forum is for the discussion of Ubuntu Linux.

Notices


Reply
  Search this Thread
Old 11-12-2010, 05:52 AM   #1
Zyros Infinito
LQ Newbie
 
Registered: Nov 2010
Distribution: Ubuntu
Posts: 4

Rep: Reputation: 0
Maverick won't download packages


I just upgraded to Maverick Meerkat not too long ago. Was running just fine up until it stopped downloading packages. It won't download updates, new programs from the software center, synaptic packet manager, or the apt-get command in terminal.

It keeps telling me that I need to check my internet connection but I can't find anything wrong with it.

Everything else is working just fine. It would be greatly appreciated if someone could shed some light on this issue.
 
Old 11-12-2010, 07:58 AM   #2
symon1980
Member
 
Registered: Nov 2007
Posts: 57

Rep: Reputation: 16
Just go into Synaptic or software centre, find the package sources options (i don't use ubuntu, have a look, its in there) and change mirrors to a location near you and see if it works. Reload the package manager. Make sure the required Software sources are ticked etc


goodluck
 
Old 11-13-2010, 03:13 PM   #3
Zyros Infinito
LQ Newbie
 
Registered: Nov 2010
Distribution: Ubuntu
Posts: 4

Original Poster
Rep: Reputation: 0
I regretfully inform that it did not work. Still got nothing.
 
Old 11-13-2010, 04:01 PM   #4
impert
Member
 
Registered: Feb 2009
Posts: 282

Rep: Reputation: 54
Some suggestions:
What happens if you go into Software Sources, choose "Other" from the "Download from:" box, and then "Select Best Server" ; then try with that? Or is that what you did?
Can you ping www.archive.ubuntu.com ?
In Software Sources, if the box with "Installable from CD-ROM" is ticked, or checked if you prefer, try un-ticking it.
You haven't run out of room, have you? (du -h or disk usage analyser)
Try running sudo apt-get autoclean, and then trying to update.
What output does tail -30 /etc/apt/sources.list give?
Did you post from the machine that has the problem??

Last edited by impert; 11-13-2010 at 04:03 PM.
 
Old 11-13-2010, 11:59 PM   #5
Zyros Infinito
LQ Newbie
 
Registered: Nov 2010
Distribution: Ubuntu
Posts: 4

Original Poster
Rep: Reputation: 0
I can ping www.archive.ubuntu.com yes.

I have already checked the installable from cd option and that's not the problem.

And no I still have plenty of room.

The "sudo apt-get autoclean" did actually run it looks like but I still cannot update.

This is the output of the command:

deb-src http://mirror.anl.gov/pub/ubuntu/ maverick-updates multiverse

## Uncomment the following two lines to add software from the 'backports'
## repository.
## N.B. software from this repository may not have been tested as
## extensively as that contained in the main release, although it includes
## newer versions of some applications which may provide useful features.
## Also, please note that software in backports WILL NOT receive any review
## or updates from the Ubuntu security team.
# deb http://us.archive.ubuntu.com/ubuntu/ maverick-backports main restricted universe multiverse
# deb-src http://us.archive.ubuntu.com/ubuntu/ maverick-backports main restricted universe multiverse

## Uncomment the following two lines to add software from Canonical's
## 'partner' repository.
## This software is not part of Ubuntu, but is offered by Canonical and the
## respective vendors as a service to Ubuntu users.
# deb http://archive.canonical.com/ubuntu maverick partner
# deb-src http://archive.canonical.com/ubuntu maverick partner

## This software is not part of Ubuntu, but is offered by third-party
## developers who want to ship their latest software.
deb http://extras.ubuntu.com/ubuntu maverick main
deb-src http://extras.ubuntu.com/ubuntu maverick main

deb http://mirror.anl.gov/pub/ubuntu/ maverick-security main restricted
deb-src http://mirror.anl.gov/pub/ubuntu/ maverick-security main restricted
deb http://mirror.anl.gov/pub/ubuntu/ maverick-security universe
deb-src http://mirror.anl.gov/pub/ubuntu/ maverick-security universe
deb http://mirror.anl.gov/pub/ubuntu/ maverick-security multiverse
deb-src http://mirror.anl.gov/pub/ubuntu/ maverick-security multiverse


And yes my laptop is the machine I'm using. I have full functionality other than the update issue I'm having.
 
Old 11-14-2010, 10:40 AM   #6
Kenny_Strawn
Senior Member
 
Registered: Feb 2010
Location: /usa/ca/orange_county/lake_forest
Distribution: ArchBang, Google Android 2.1 + Motoblur (on Motortola Flipside), Google Chrome OS (on Cr-48)
Posts: 1,791
Blog Entries: 62

Rep: Reputation: 56
Please place any code (such as that inside the sources.list) inside [CODE] tags so that URLs don't show up as links.

As for the networking, there's been many issues with Atheros wireless adapters (especially the newer ones) and the fact that they have been automatically disconnecting on people. Please post the output of:

Code:
lspci -nn | grep Wireless
to see if the wireless is working okay (and if you even are connecting via Wi-Fi).
 
Old 11-14-2010, 03:14 PM   #7
impert
Member
 
Registered: Feb 2009
Posts: 282

Rep: Reputation: 54
Hi,
Sorry to be so long getting back to you.
Since your net connection seems to be ok, it would appear that apt is broken.
I suggest booting the live CD; don't click on install.
Go to Applications/Accessories and open a terminal.In the terminal type:
Code:
sudo mount /dev/sdXX /mnt
NOTE: replace sdXX with the partition where you have Ubuntu10.10 installed- eg sda2
Code:
sudo mount -o bind /dev /mnt/dev
sudo mount -t proc none /mnt/proc
sudo mount -t devpts -o rw none /dev/pts
sudo mount -o bind /sys /mnt/sys
cd /mnt
sudo chroot /mnt /bin/bash
apt-get update
apt-get install apt
apt-get upgrade
When it's finished,
Code:
exit
remove the CD and reboot into Maverick.
If the above fails you might consider a fresh install. It's not a great hassle if your home folder is on a separate partition; if it's not, now might be a good time to make another partition and copy /home to it.
Hope this helps
 
Old 11-15-2010, 12:46 AM   #8
Zyros Infinito
LQ Newbie
 
Registered: Nov 2010
Distribution: Ubuntu
Posts: 4

Original Poster
Rep: Reputation: 0
Well I've already re installed once. Originally I updated to 10.10 and ran into this problem so I did a clean install. After a few updates it caused this problem I have right now.
 
Old 11-15-2010, 03:41 AM   #9
impert
Member
 
Registered: Feb 2009
Posts: 282

Rep: Reputation: 54
If you use the commands above you won't do a fresh install. You're just using the version of apt in the lie CD to replace the apt in your installation.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Ubuntu: Maverick guide (Ubuntu 10.10 Maverick Meerkat) Documentation allu john sudhakar Linux - Newbie 1 11-14-2010 03:38 AM
APT bug in the Maverick Meerkat: Whatever you do, don't install/upgrade any packages! Kenny_Strawn Ubuntu 3 08-29-2010 01:12 PM
LXer: TestDrive - Download and test Ubuntu 10.10 Maverick Meerkat ISO in a Virtual Machine the easy LXer Syndicated Linux News 0 08-17-2010 08:50 PM
Where to Download Fedora 11 Packages? k_oudom Fedora 6 08-22-2009 09:23 AM
Necessary to Download all Packages? rtrahan Linux - Software 2 02-15-2009 04:02 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Ubuntu

All times are GMT -5. The time now is 07:03 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration