PDA

View Full Version : [ubuntu] Synaptic missing tons of packages



noahsatellite
December 18th, 2008, 08:42 PM
I haven't been able to use Synaptic recently since it seems to be missing packages. For instance, if I run:


sudo apt-get install rar

Then rar gets installed on my machine. But if I search Synaptic for rar, it finds nothing. This is just one of many, many packages that I want to install and Synaptic doesn't "see". I've had to manually use apt-get instead. The weirdest part is that I have the exact same installation on my laptop and everything works fine there. I've tried running a Reload command in Synaptic (upper left hand corner) but that didn't help.

Any ideas?

Thanks,
Noah

jenkinbr
December 18th, 2008, 08:47 PM
How are you searching for 'rar' in synaptic.

I've found the search feature added to the toolbar to be slightly buggy. You may want to try using the more advanced search found by clicking the search button. Make sure you set this so it searches descriptions and package names.

taurus
December 18th, 2008, 09:00 PM
Which release are you running?


lsb_release -a

SunnyRabbiera
December 18th, 2008, 09:01 PM
also for rar you may need to add the universal repositories.

jenkinbr
December 18th, 2008, 09:05 PM
also for rar you may need to add the universal repositories.
rar is multiverse >>http://packages.ubuntu.com/intrepid/rar

noahsatellite
December 18th, 2008, 09:38 PM
jenkinbr - I've tried this to no avail

taurus - I'm running Ubuntu 8.10.

SunnyRabbiera - rar is just an example. Other examples include: filezilla, comipizconfig-settings-manager, and lots of other stuff that the Synaptic on my laptop has no trouble seeing (and apt-get on this machine sees too).

Noah

oldos2er
December 18th, 2008, 10:58 PM
Can you please post the output of "cat /etc/apt/sources.list"?

SuperSonic4
December 18th, 2008, 11:01 PM
apt and synaptic both refer to the same file.

I suspect it will be because Synpatic is set to show certain packages along due to a search filter

noahsatellite
December 18th, 2008, 11:51 PM
without the comments:


deb http://us.archive.ubuntu.com/ubuntu/ intrepid main restricted
deb-src http://us.archive.ubuntu.com/ubuntu/ intrepid main restricted

deb http://us.archive.ubuntu.com/ubuntu/ intrepid-updates main restricted
deb-src http://us.archive.ubuntu.com/ubuntu/ intrepid-updates main restricted

deb http://us.archive.ubuntu.com/ubuntu/ intrepid universe
deb-src http://us.archive.ubuntu.com/ubuntu/ intrepid universe
deb http://us.archive.ubuntu.com/ubuntu/ intrepid-updates universe
deb-src http://us.archive.ubuntu.com/ubuntu/ intrepid-updates universe

deb http://us.archive.ubuntu.com/ubuntu/ intrepid multiverse
deb-src http://us.archive.ubuntu.com/ubuntu/ intrepid multiverse
deb http://us.archive.ubuntu.com/ubuntu/ intrepid-updates multiverse
deb-src http://us.archive.ubuntu.com/ubuntu/ intrepid-updates multiverse

deb http://archive.canonical.com/ubuntu intrepid partner

deb http://us.archive.ubuntu.com/ubuntu/ intrepid-security main restricted
deb-src http://us.archive.ubuntu.com/ubuntu/ intrepid-security main restricted
deb http://us.archive.ubuntu.com/ubuntu/ intrepid-security universe
deb-src http://us.archive.ubuntu.com/ubuntu/ intrepid-security universe
deb http://us.archive.ubuntu.com/ubuntu/ intrepid-security multiverse
deb-src http://us.archive.ubuntu.com/ubuntu/ intrepid-security multiverse

jpeterse
January 11th, 2009, 08:40 PM
Hi

I have the same problem on my end.
I re-installed Ubuntu yesterday - a fresh install.
Before the reinstall Synaptic worked well, even the quick search worked well.

Now, it can't find a ton packages. Search for XEN (or "xen") comes back blank.

The problem is described in this bug report:
https://bugs.launchpad.net/ubuntu/+source/synaptic/+bug/288797

Run the command "sudo update-apt-xapian-index" in a terminal, and the index the quick search is using is updated. (you may need to run this command again, if you add new repositories)

raul999
January 31st, 2009, 04:14 PM
Hi,
I had the same problem with Synaptic search and i fixed it the command.
Thanks a lot

Hiker Hauk
February 20th, 2009, 09:13 PM
If

$ sudo update-apt-xapian-indexhas no effect,

completely update the package lists from a source, then


$ sudo rm -fr /var/lib/apt-xapian-index
$ sudo update-apt-xapian-index

chensamurai
April 15th, 2009, 08:54 PM
I haven't been able to use Synaptic recently since it seems to be missing packages. For instance, if I run:


sudo apt-get install rar

Then rar gets installed on my machine. But if I search Synaptic for rar, it finds nothing. This is just one of many, many packages that I want to install and Synaptic doesn't "see". I've had to manually use apt-get instead. The weirdest part is that I have the exact same installation on my laptop and everything works fine there. I've tried running a Reload command in Synaptic (upper left hand corner) but that didn't help.

Any ideas?

Thanks,
Noah

Hey I sorta had the same problem:
I had to resort to using apt-get and apt-cache search to find packages:

http://ubuntuforums.org/showthread.php?t=1125833

Dug.
April 26th, 2009, 08:26 AM
If

$ sudo update-apt-xapian-indexhas no effect,

completely update the package lists from a source, then


$ sudo rm -fr /var/lib/apt-xapian-index
$ sudo update-apt-xapian-index

Thanks. This worked for me.