Discussion:
[rabbitmq-discuss] getting started, broker runs; can't get status
Michael Steinfeld
2009-01-20 21:56:01 UTC
Permalink
Hi all,

I've installed erlang and rabbitmq from source on rhel4 (x86_64) and I
can start the broker without issue, but when I attempt to get 'status'
of the broker I fail with

Status of node rabbit at dbase2 ...
{badrpc,nodedown}
...done.

All I have done so far is install it and run the broker, I am using
the default config for now..
I don't see anything relevant in the logs as to what is/not happening..

Can someone tell me what I can do to provide myself and the list with
more information?

Thanks in advance,
-- Mike
Ben Hood
2009-01-20 22:04:19 UTC
Permalink
Michael,

On Tue, Jan 20, 2009 at 9:56 PM, Michael Steinfeld
Post by Michael Steinfeld
I've installed erlang and rabbitmq from source on rhel4 (x86_64) and I
can start the broker without issue, but when I attempt to get 'status'
of the broker I fail with
Status of node rabbit at dbase2 ...
{badrpc,nodedown}
...done.
This link might help:

http://lettuce.squarespace.com/faq/erlang/what-does-badrpcnodedown-mean.html
Post by Michael Steinfeld
All I have done so far is install it and run the broker, I am using
the default config for now..
I don't see anything relevant in the logs as to what is/not happening..
Can you post the rabbit.log?
Post by Michael Steinfeld
Can someone tell me what I can do to provide myself and the list with
more information?
How did you install Rabbit? From the RPMs or from a binary tarball?

Ben
Michael Steinfeld
2009-01-20 22:20:33 UTC
Permalink
Post by Ben Hood
Michael,
On Tue, Jan 20, 2009 at 9:56 PM, Michael Steinfeld
Post by Michael Steinfeld
I've installed erlang and rabbitmq from source on rhel4 (x86_64) and I
can start the broker without issue, but when I attempt to get 'status'
of the broker I fail with
Status of node rabbit at dbase2 ...
{badrpc,nodedown}
...done.
http://lettuce.squarespace.com/faq/erlang/what-does-badrpcnodedown-mean.html
Post by Michael Steinfeld
All I have done so far is install it and run the broker, I am using
the default config for now..
I don't see anything relevant in the logs as to what is/not happening..
Can you post the rabbit.log?
This is the entire log:

[root at carrots rabbitmq]# more rabbit.log

=INFO REPORT==== 20-Jan-2009::15:05:48 ===
disk_log: repairing "/var/lib/rabbitmq/mnesia/rabbit/rabbit_persister.LOG" ...

=INFO REPORT==== 20-Jan-2009::15:05:48 ===
Repaired persister log - 1 recovered, 0 bad

=INFO REPORT==== 20-Jan-2009::15:05:48 ===
Rolling persister log to
"/var/lib/rabbitmq/mnesia/rabbit/rabbit_persister.LOG.previous"

=INFO REPORT==== 20-Jan-2009::15:05:48 ===
started TCP listener on 0.0.0.0:5672
Post by Ben Hood
Post by Michael Steinfeld
Can someone tell me what I can do to provide myself and the list with
more information?
How did you install Rabbit? From the RPMs or from a binary tarball?
like this:

$ cd ~/<SRC>
$ mkdir rabbit (this will be <RABBIT> hereunder)
$ cd <RABBIT>
$ wget http://www.rabbitmq.com/releases/rabbitmq-server/v1.5.0/rabbitmq-server-1.5.0.tar.gz
$ tar -zxvf rabbitmq-server-1.5.0.tar.gz
$ cd /usr/local/lib/erlang/lib
$ sudo ln -s <SRC>/<RABBIT>/rabbitmq-server-1.5.0 ./rabbitmq-server-1.5.0
* Add the <SRC>/<RABBIT>/rabbitmq-server/scripts to your $PATH

However, I also attempted to use the generic-unix install and was unsuccessful.

extra info:

OS: RHEL 4 (x86_64)
KERNEL: 2.6.9-67.ELsmp
Post by Ben Hood
Ben
Ben Hood
2009-01-20 22:33:39 UTC
Permalink
Michael,

On Tue, Jan 20, 2009 at 10:20 PM, Michael Steinfeld
Post by Michael Steinfeld
Status of node rabbit at dbase2 ...
{badrpc,nodedown}
Are you able to connect to the server with an AMQP client or even via
something like netcat?

Ben
Valentino Volonghi
2009-01-20 22:43:50 UTC
Permalink
Post by Ben Hood
Are you able to connect to the server with an AMQP client or even via
something like netcat?
That also happened to me, for me the answer to this question is yes.
When installing from the rpm everything works fine, when installing from
source instead (on ubuntu) nothing actually works and rabbitmq-multi
hangs instead of completing (basically because rabbitmq-server doesn't
detach I would say).
--
Valentino Volonghi aka Dialtone
Now running MacOS X 10.5
Home Page: http://www.twisted.it
Matthias Radestock
2009-01-20 23:30:14 UTC
Permalink
Valentino,
when installing from source instead (on ubuntu) nothing actually
works
Is this reproducible? If so please, please send us a *complete*
transcript of what you were doing, i.e. covering the build,
installation, how you started rabbitmq, etc, up to the point where you
observe something not working.


Regards,

Matthias.
Valentino Volonghi
2009-01-22 21:02:32 UTC
Permalink
Post by Matthias Radestock
Valentino,
when installing from source instead (on ubuntu) nothing actually
works
Is this reproducible? If so please, please send us a *complete*
transcript of what you were doing, i.e. covering the build,
installation, how you started rabbitmq, etc, up to the point where
you observe something not working.
I think I get it now. The reason is how the script is written using
`dirname $0`

it basically means that if you move the script to /usr/local/bin/ and
run from it
it has the badrpc error for some reason that I cannot understand but
if you
run it from its own directory there's no issue.
--
Valentino Volonghi aka Dialtone
Now running MacOS X 10.5
Home Page: http://www.twisted.it
http://www.adroll.com

-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.rabbitmq.com/pipermail/rabbitmq-discuss/attachments/20090122/8b7e34e4/attachment.htm
-------------- next part --------------
A non-text attachment was scrubbed...
Name: PGP.sig
Type: application/pgp-signature
Size: 194 bytes
Desc: This is a digitally signed message part
Url : http://lists.rabbitmq.com/pipermail/rabbitmq-discuss/attachments/20090122/8b7e34e4/attachment.pgp
Michael Steinfeld
2009-01-22 22:07:46 UTC
Permalink
Post by Matthias Radestock
Valentino,
when installing from source instead (on ubuntu) nothing actually
works
Well, for the life of me I could not get it to work on RHEL4 x86_64.
Oddly enough the broker would run.

I tried source and binary.
Post by Matthias Radestock
Is this reproducible? If so please, please send us a *complete* transcript
of what you were doing, i.e. covering the build, installation, how you
started rabbitmq, etc, up to the point where you observe something not
working.
I think I get it now. The reason is how the script is written using
`dirname $0`
it basically means that if you move the script to /usr/local/bin/ and run
from it
it has the badrpc error for some reason that I cannot understand but if you
run it from its own directory there's no issue.
I finally gave up on RHEL4. However, I have a RHEL5 box that I
installed it on and everything seems to be fine. I followed the same
procedure I did on teh initial box.
I'll have more to say when I get a moment to do so..

-- Mike
Post by Matthias Radestock
--
Valentino Volonghi aka Dialtone
Now running MacOS X 10.5
Home Page: http://www.twisted.it
http://www.adroll.com
_______________________________________________
rabbitmq-discuss mailing list
rabbitmq-discuss at lists.rabbitmq.com
http://lists.rabbitmq.com/cgi-bin/mailman/listinfo/rabbitmq-discuss
Matthias Radestock
2009-01-23 18:10:01 UTC
Permalink
Michael,
Post by Michael Steinfeld
Well, for the life of me I could not get it to work on RHEL4 x86_64.
Oddly enough the broker would run.
I tried source and binary.
Can you send us a transcript of the installation and your subsequent
attempts to access the broker?


Matthias.
dave farkas
2009-01-31 02:31:07 UTC
Permalink
I'm seeing a similar problem on RHE 5 (64 bit). I've installed verision
1.5.1-1 from the fedora linux (64-bit) rpm. When I start the server, I
get the following:

[root at db1 init.d]# ./rabbitmq-server start
Starting rabbitmq-server: FAILED - check /var/log/rabbitmq/startup_log, _err
rabbitmq-server.

This script hangs for a long time eventually giving the failed message.
The process are still running and i can connect with an amqp client.

[root at db1 init.d]# ./rabbitmq-server status
Status of all running nodes...
Error: no_nodes_running


Here are the logs:

root at db1 rabbitmq]# more startup_log
Starting all nodes...
Starting node rabbit at db1...
RabbitMQ 1.5.1 (AMQP 8-0)
Copyright (C) 2007-2009 LShift Ltd., Cohesive Financial Technologies
LLC., and Rabbit Technologies Ltd.
Licensed under the MPL. See http://www.rabbitmq.com/

Logging to "/var/log/rabbitmq/rabbit.log"
SASL logging to "/var/log/rabbitmq/rabbit-sasl.log"

starting database ...done
starting core processes ...done
starting recovery ...done
starting persister ...done
starting builtin applications ...done
starting TCP listeners ...done

broker running

[root at db1 rabbitmq]# more startup_err
Error: cannot_get_pid


The rabbit.log is (this is after i connect with an amqp client):

[root at db1 rabbitmq]# more rabbit.log

=INFO REPORT==== 30-Jan-2009::20:20:54 ===
disk_log: repairing
"/var/lib/rabbitmq/mnesia/rabbit/rabbit_persister.LOG" ...

=INFO REPORT==== 30-Jan-2009::20:20:54 ===
Repaired persister log - 1 recovered, 0 bad

=INFO REPORT==== 30-Jan-2009::20:20:54 ===
Rolling persister log to
"/var/lib/rabbitmq/mnesia/rabbit/rabbit_persister.LOG.previous"

=INFO REPORT==== 30-Jan-2009::20:20:54 ===
started TCP listener on 0.0.0.0:5672

=INFO REPORT==== 30-Jan-2009::20:21:47 ===
accepted TCP connection on 0.0.0.0:5672 from 127.0.0.1:49811

=INFO REPORT==== 30-Jan-2009::20:21:47 ===
starting TCP connection <0.202.0> from 127.0.0.1:49811

=ERROR REPORT==== 30-Jan-2009::20:21:47 ===
error on TCP connection <0.202.0> from 127.0.0.1:49811
connection_closed_abruptly

=INFO REPORT==== 30-Jan-2009::20:21:47 ===
closing TCP connection <0.202.0> from 127.0.0.1:49811

and here's info on how the processes are running:

[root at db1 bin]# ps -ef | grep rabbitmq
root 18666 18642 0 20:20 pts/2 00:00:00 /bin/sh
./rabbitmq-server start
root 18667 18666 0 20:20 pts/2 00:00:00 su rabbitmq -s /bin/sh
-c /usr/lib64/rabbitmq/bin/rabbitmq-multi start_all 1
rabbitmq 18668 18667 3 20:20 ? 00:00:00
/usr/lib64/erlang/erts-5.6.3/bin/beam.smp -- -root /usr/lib64/erlang
-progname erl -- -home /var/lib/rabbitmq -pa
/usr/lib64/rabbitmq/bin/../ebin -noshell -noinput -hidden -sname
rabbitmq_multi18668 -s rabbit_multi -extra start_all 1
rabbitmq 18676 1 0 20:20 ? 00:00:00
/usr/lib64/erlang/erts-5.6.3/bin/epmd -daemon
rabbitmq 18692 18668 0 20:20 ? 00:00:00 inet_gethost 4
rabbitmq 18693 18692 0 20:20 ? 00:00:00 inet_gethost 4
rabbitmq 18694 18668 40 20:20 ? 00:00:01
/usr/lib64/erlang/erts-5.6.3/bin/beam.smp -W w -K true -A30 -- -root
/usr/lib64/erlang -progname erl -- -home /var/lib/rabbitmq -pa
/usr/lib64/rabbitmq/bin/../ebin -noshell -noinput -s rabbit -sname
rabbit -boot start_sasl -kernel inet_default_listen_options
[{nodelay,true},{sndbuf,16384},{recbuf,4096}] -kernel
inet_default_connect_options [{nodelay,true}] -rabbit tcp_listeners
[{"0.0.0.0", 5672}] -sasl errlog_type error -kernel error_logger
{file,"/var/log/rabbitmq/rabbit.log"} -sasl sasl_error_logger
{file,"/var/log/rabbitmq/rabbit-sasl.log"} -os_mon start_cpu_sup true
-os_mon start_disksup false -os_mon start_memsup false -os_mon
start_os_sup false -os_mon memsup_system_only true -os_mon
system_memory_high_watermark 0.95 -mnesia dir
"/var/lib/rabbitmq/mnesia/rabbit" -noshell -noinput
rabbitmq 18749 18694 0 20:20 ? 00:00:00
/usr/lib64/erlang/lib/os_mon-2.1.6/priv/bin/cpu_sup
rabbitmq 18750 18694 0 20:20 ? 00:00:00 inet_gethost 4
rabbitmq 18751 18750 0 20:20 ? 00:00:00 inet_gethost 4


Please let me know if there is any other information that would be helpful.

Thanks,
Dave
Post by Ben Hood
Michael,
Post by Michael Steinfeld
Well, for the life of me I could not get it to work on RHEL4 x86_64.
Oddly enough the broker would run.
I tried source and binary.
Can you send us a transcript of the installation and your subsequent
attempts to access the broker?
Matthias.
_______________________________________________
rabbitmq-discuss mailing list
rabbitmq-discuss at lists.rabbitmq.com
http://lists.rabbitmq.com/cgi-bin/mailman/listinfo/rabbitmq-discuss
Matthias Radestock
2009-01-31 08:20:29 UTC
Permalink
Dave,
Post by dave farkas
I'm seeing a similar problem on RHE 5 (64 bit). I've installed verision
1.5.1-1 from the fedora linux (64-bit) rpm.
Thanks for the detailed report. I don't think this is quite the same
Post by dave farkas
[root at db1 rabbitmq]# more startup_err
Error: cannot_get_pid
...which I don't recall anybody reporting before.

As you observed, rabbitmq is indeed happily running. However, for some
reason the launcher program failed to communicate with it and obtain
(and record) its process id. The error
Post by dave farkas
[root at db1 init.d]# ./rabbitmq-server status
Status of all running nodes...
Error: no_nodes_running
is a consequence of that.

What happens when you run
rabbitmqctl status
(which should live in /usr/sbin, or /sbin or some such place - do *not*
run the one in /usr/lib64/rabbitmq/bin/)?


Regards,

Matthias.
Dave Farkas
2009-01-31 18:48:29 UTC
Permalink
Matthias,

Thanks for responding, I appreciate the help. Here is what i happens
when i run rabbitmqctl out of /user/sbin:

[root at db1 sbin]# ./rabbitmqctl status
Status of node rabbit at db1 ...
{badrpc,nodedown}
...done.

Is there anything else I should try?

Thanks again.
Dave
Dave,
Post by dave farkas
I'm seeing a similar problem on RHE 5 (64 bit). I've installed verision
1.5.1-1 from the fedora linux (64-bit) rpm.
Thanks for the detailed report. I don't think this is quite the same problem
Post by dave farkas
[root at db1 rabbitmq]# more startup_err
Error: cannot_get_pid
...which I don't recall anybody reporting before.
As you observed, rabbitmq is indeed happily running. However, for some
reason the launcher program failed to communicate with it and obtain (and
record) its process id. The error
Post by dave farkas
[root at db1 init.d]# ./rabbitmq-server status
Status of all running nodes...
Error: no_nodes_running
is a consequence of that.
What happens when you run
rabbitmqctl status
(which should live in /usr/sbin, or /sbin or some such place - do *not* run
the one in /usr/lib64/rabbitmq/bin/)?
Regards,
Matthias.
Ben Hood
2009-01-31 19:12:56 UTC
Permalink
Dave,

On Sat, Jan 31, 2009 at 6:48 PM, Dave Farkas
Post by Dave Farkas
Thanks for responding, I appreciate the help. Here is what i happens
[root at db1 sbin]# ./rabbitmqctl status
Status of node rabbit at db1 ...
{badrpc,nodedown}
...done.
Is there anything else I should try?
It's probably bad form to butt in, but is the server and rabbitmqctl
being run as the same user? I just want to exclude the possibility of
Erlang's cookie mechanism preventing you from connecting to a node
running as another user.

Ben
Dave Farkas
2009-01-31 19:34:01 UTC
Permalink
Hey Ben,
Post by Ben Hood
It's probably bad form to butt in, but is the server and rabbitmqctl
being run as the same user? I just want to exclude the possibility of
Erlang's cookie mechanism preventing you from connecting to a node
running as another user.
Ben
No worries, the more the merrier. :) I believe everything is being
run as the rabbitmq user.
I run the start script as root, and then it executes the server start
up as rabbitmq. Here's the relevant information from the
/etc/init.d/rabbitmq script

DAEMON_NAME=rabbitmq-multi
DAEMON=/usr/lib64/rabbitmq/bin/$DAEMON_NAME
NAME=rabbitmq-server
DESC=rabbitmq-server
USER=rabbitmq
NODE_COUNT=1

start_rabbitmq () {
set +e
su $USER -s /bin/sh -c "$DAEMON start_all ${NODE_COUNT}" >
/var/log/rabbitmq/startup_log 2> /var/log/rabbitmq/startup_err

I was running the /usr/sbin/rabbitmqctl command as root, but it looks
like it also executes the status check as rabbitmq.

if [ `id -u` = 0 ] ; then
su rabbitmq -s /bin/sh -c "/usr/lib64/rabbitmq/bin/rabbitmqctl
${CMDLINE}"
else
/usr/lib64/rabbitmq/bin/rabbitmqctl
echo -e "\nOnly root should run rabbitmqctl\n"
exit 1
fi

Thanks,
Dave
Matthias Radestock
2009-01-31 19:39:47 UTC
Permalink
Post by Dave Farkas
[root at db1 sbin]# ./rabbitmqctl status
Status of node rabbit at db1 ...
{badrpc,nodedown}
...done.
Is there anything else I should try?
The following may help us track down the problem:

1) stop rabbit (just kill the process if everything else fails)

2) kill the 'epmd' process

3) start epmd in non-daemon and debugging mode and capture its logs -
you can do that as any user:
epmd -d > /tmp/epmd.log 2>&1 &

4) start the rabbitmq server in the normal way, e.g.
sudo /etc/init.d/rabbitmq-server start

5) run the rabbitmqctl command in the normal way, e.g.
sudo rabbitmqctl status

6) stop epmd by killing the process

7) send me the /tmp/epmd.log file


Here's what the log file looks for me when I do the above:

epmd: Sat Jan 31 19:30:19 2009: epmd running - daemon = 0
epmd: Sat Jan 31 19:30:32 2009: ** got ALIVE2_REQ
epmd: Sat Jan 31 19:30:32 2009: registering 'rabbitmq_multi21852:3',
port 40125
epmd: Sat Jan 31 19:30:32 2009: type 77 proto 0 highvsn 5 lowvsn 5
epmd: Sat Jan 31 19:30:32 2009: ** sent ALIVE2_RESP for
"rabbitmq_multi21852"
epmd: Sat Jan 31 19:30:32 2009: ** got PORT2_REQ
epmd: Sat Jan 31 19:30:32 2009: ** sent PORT2_RESP (error) for "rabbit"
epmd: Sat Jan 31 19:30:32 2009: ** got PORT2_REQ
epmd: Sat Jan 31 19:30:32 2009: ** sent PORT2_RESP (error) for "rabbit"
epmd: Sat Jan 31 19:30:32 2009: ** got ALIVE2_REQ
epmd: Sat Jan 31 19:30:32 2009: registering 'rabbit:3', port 45735
epmd: Sat Jan 31 19:30:32 2009: type 77 proto 0 highvsn 5 lowvsn 5
epmd: Sat Jan 31 19:30:32 2009: ** sent ALIVE2_RESP for "rabbit"
epmd: Sat Jan 31 19:30:33 2009: ** got PORT2_REQ
epmd: Sat Jan 31 19:30:33 2009: ** sent PORT2_RESP (ok) for "rabbit"
epmd: Sat Jan 31 19:30:33 2009: unregistering 'rabbitmq_multi21852:3',
port 40125
epmd: Sat Jan 31 19:30:48 2009: ** got ALIVE2_REQ
epmd: Sat Jan 31 19:30:48 2009: registering 'rabbitmqctl21934:1', port 59932
epmd: Sat Jan 31 19:30:48 2009: type 77 proto 0 highvsn 5 lowvsn 5
epmd: Sat Jan 31 19:30:48 2009: ** sent ALIVE2_RESP for "rabbitmqctl21934"
epmd: Sat Jan 31 19:30:48 2009: ** got PORT2_REQ
epmd: Sat Jan 31 19:30:48 2009: ** sent PORT2_RESP (ok) for "rabbit"
epmd: Sat Jan 31 19:30:48 2009: unregistering 'rabbitmqctl21934:1', port
59932

I suspect your log file will look substantially different, unless the
above steps happen to coincidentally "fix" the problem.


Regards,

Matthias.
Dave Farkas
2009-01-31 20:13:05 UTC
Permalink
Matthias,
Post by Matthias Radestock
1) stop rabbit (just kill the process if everything else fails)
2) kill the 'epmd' process
3) start epmd in non-daemon and debugging mode and capture its logs - you
epmd -d > /tmp/epmd.log 2>&1 &
4) start the rabbitmq server in the normal way, e.g.
sudo /etc/init.d/rabbitmq-server start
5) run the rabbitmqctl command in the normal way, e.g.
sudo rabbitmqctl status
6) stop epmd by killing the process
7) send me the /tmp/epmd.log file
epmd: Sat Jan 31 19:30:19 2009: epmd running - daemon = 0
epmd: Sat Jan 31 19:30:32 2009: ** got ALIVE2_REQ
epmd: Sat Jan 31 19:30:32 2009: registering 'rabbitmq_multi21852:3', port
40125
epmd: Sat Jan 31 19:30:32 2009: type 77 proto 0 highvsn 5 lowvsn 5
epmd: Sat Jan 31 19:30:32 2009: ** sent ALIVE2_RESP for
"rabbitmq_multi21852"
epmd: Sat Jan 31 19:30:32 2009: ** got PORT2_REQ
epmd: Sat Jan 31 19:30:32 2009: ** sent PORT2_RESP (error) for "rabbit"
epmd: Sat Jan 31 19:30:32 2009: ** got PORT2_REQ
epmd: Sat Jan 31 19:30:32 2009: ** sent PORT2_RESP (error) for "rabbit"
epmd: Sat Jan 31 19:30:32 2009: ** got ALIVE2_REQ
epmd: Sat Jan 31 19:30:32 2009: registering 'rabbit:3', port 45735
epmd: Sat Jan 31 19:30:32 2009: type 77 proto 0 highvsn 5 lowvsn 5
epmd: Sat Jan 31 19:30:32 2009: ** sent ALIVE2_RESP for "rabbit"
epmd: Sat Jan 31 19:30:33 2009: ** got PORT2_REQ
epmd: Sat Jan 31 19:30:33 2009: ** sent PORT2_RESP (ok) for "rabbit"
epmd: Sat Jan 31 19:30:33 2009: unregistering 'rabbitmq_multi21852:3', port
40125
epmd: Sat Jan 31 19:30:48 2009: ** got ALIVE2_REQ
epmd: Sat Jan 31 19:30:48 2009: registering 'rabbitmqctl21934:1', port 59932
epmd: Sat Jan 31 19:30:48 2009: type 77 proto 0 highvsn 5 lowvsn 5
epmd: Sat Jan 31 19:30:48 2009: ** sent ALIVE2_RESP for "rabbitmqctl21934"
epmd: Sat Jan 31 19:30:48 2009: ** got PORT2_REQ
epmd: Sat Jan 31 19:30:48 2009: ** sent PORT2_RESP (ok) for "rabbit"
epmd: Sat Jan 31 19:30:48 2009: unregistering 'rabbitmqctl21934:1', port
59932
I suspect your log file will look substantially different, unless the above
steps happen to coincidentally "fix" the problem.
Regards,
Matthias.
Here is the epmd log:

epmd: Sat Jan 31 13:58:22 2009: epmd running - daemon = 0
epmd: Sat Jan 31 13:58:54 2009: ** got ALIVE2_REQ
epmd: Sat Jan 31 13:58:54 2009: registering 'rabbitmq_multi23327:1', port 58232
epmd: Sat Jan 31 13:58:54 2009: type 77 proto 0 highvsn 5 lowvsn 5
epmd: Sat Jan 31 13:58:54 2009: ** sent ALIVE2_RESP for "rabbitmq_multi23327"
epmd: Sat Jan 31 13:59:01 2009: ** got ALIVE2_REQ
epmd: Sat Jan 31 13:59:01 2009: registering 'rabbit:2', port 58362
epmd: Sat Jan 31 13:59:01 2009: type 77 proto 0 highvsn 5 lowvsn 5
epmd: Sat Jan 31 13:59:01 2009: ** sent ALIVE2_RESP for "rabbit"
epmd: Sat Jan 31 14:06:46 2009: unregistering 'rabbitmq_multi23327:1',
port 58232
epmd: Sat Jan 31 14:06:46 2009: ** got ALIVE2_REQ
epmd: Sat Jan 31 14:06:46 2009: registering 'rabbitmqctl23452:2', port 50042
epmd: Sat Jan 31 14:06:46 2009: type 77 proto 0 highvsn 5 lowvsn 5
epmd: Sat Jan 31 14:06:46 2009: ** sent ALIVE2_RESP for "rabbitmqctl23452"
epmd: Sat Jan 31 14:06:53 2009: unregistering 'rabbitmqctl23452:2', port 50042

Thanks,
Dave
Matthias Radestock
2009-01-31 20:51:50 UTC
Permalink
Dave,
Post by Dave Farkas
epmd: Sat Jan 31 13:58:22 2009: epmd running - daemon = 0
[...]
This does look remarkably similar to the problem Dmitriy identified last
year - see http://somic.org/2008/04/22/snoopy-fubars-erlang/

Specifically, your epmd log shows the node registration traffic
(ALIVE2_{REQ,RESP}) but no query traffic (PORT2_{REQ,RESP}), and the
other symptoms are the same too.

So my suggestion would be to check for the presence of a snoopy or
similar software on your machine.


Matthias.
Dmitriy Samovskiy
2009-01-31 21:07:57 UTC
Permalink
Post by Matthias Radestock
Dave,
Post by Dave Farkas
epmd: Sat Jan 31 13:58:22 2009: epmd running - daemon = 0
[...]
This does look remarkably similar to the problem Dmitriy identified last
year - see http://somic.org/2008/04/22/snoopy-fubars-erlang/
Specifically, your epmd log shows the node registration traffic
(ALIVE2_{REQ,RESP}) but no query traffic (PORT2_{REQ,RESP}), and the
other symptoms are the same too.
To add more context. The moment I saw a post from Matthias with output from his run of
epmd, I remembered the path how I got to snoopy.

It placed something in /etc/ld.preload or set LD_PRELOAD env var. Can you check if either
is set?

Also, can you check SELinux? I am not a SELinux expert, but check out these links:

http://www.revsys.com/writings/quicktips/turn-off-selinux.html
http://etbe.coker.com.au/2008/10/29/jabber/

Or search google for "epmd selinux."

I have been trying to reproduce it on Fedora 10 32 bit but couldn't (if anyone is
interested and has access to EC2, I tried public ami ami-2a5db943).

Like Matthias said above, it's got to be something that prevents epmd communications with
nodes.

HTH,
Dmitriy
Matthias Radestock
2009-01-31 21:11:57 UTC
Permalink
Dmitriy,
Post by Dmitriy Samovskiy
Like Matthias said above, it's got to be something that prevents epmd
communications with nodes.
Right, but curiously it doesn't prevent epmd communication completely,
i.e. the node registration traffic goes through but the query traffic
doesn't.


Matthias.
Dmitriy Samovskiy
2009-01-31 21:38:36 UTC
Permalink
Post by Matthias Radestock
Dmitriy,
Post by Dmitriy Samovskiy
Like Matthias said above, it's got to be something that prevents epmd
communications with nodes.
Right, but curiously it doesn't prevent epmd communication completely,
i.e. the node registration traffic goes through but the query traffic
doesn't.
Yep, the way I am reading this, ALIVE_REQ is alone on its connection, other commands use
their own connections. So looks like the second connection always fails (and I assume
ALIVE_REQ will always be the first one)?

http://github.com/mfoemmel/erlang-otp/blob/c6341282a575b4cdaa64c6f7013f9eab05fe0cf4/erts/epmd/src/epmd_srv.c


* In all but one case there is only one request for each connection made
* to this server so we can safely close the socket after sending the
* reply. The exception is ALIVE_REQ where we keep the connection
* open without sending any data. When we receive a "close" this is
* an indication that the Erlang node was terminated. The termination
* may have been "normal" or caused by a crash. The operating system
* ensure that the connection is closed either way.

* Incomplete packets are thrown away after a timout. The Erlang node
* doing the request is responsible for completing in it in a reasonable time.
*
* Note that if the server gets busy it may not have time to
* process all requests for connection. The "accept()" function
* will on most operating systems silently refuse to accept more
* than 5 outstanding requests. It is the client's responsibility
* to retry the request a number of times with random time interval.
* The "-debug" flag will insert a delay so you can test this
* behaviour.
*
* FIXME: In this code we assume that the packets we send on each
* socket is so small that a "write()" never block
*
* FIXME: We never restarts a read or write that was terminated
* by an interrupt. Do we need to?
Matthias Radestock
2009-01-31 23:48:33 UTC
Permalink
Dmitriy, Dave, Christopher,
Post by Dmitriy Samovskiy
Yep, the way I am reading this, ALIVE_REQ is alone on its connection,
other commands use their own connections. So looks like the second
connection always fails (and I assume ALIVE_REQ will always be the first
one)?
Hmmm. This particular FIXME in the epmd code caught my attention.
Post by Dmitriy Samovskiy
* FIXME: In this code we assume that the packets we send on each
* socket is so small that a "write()" never block
...and looking a the code I don't think it deals with partial packets on
read particularly well either. I could be wrong though.

I wonder whether the disabling of Nagle in 1.5.1 (which was enabled in
1.5.0 due to a bug) might cause the server to fragment packets and thus
upset epmd.

This might also explain the problems Christopher was seeing. So ...


Dave, Christopher, to test the above theory, please re-enable Nagle by
changing the following lines in the rabbitmq-server script from

[ "x" = "x$RABBITMQ_SERVER_ERL_ARGS" ] && RABBITMQ_SERVER_ERL_ARGS="+K
true +A30 \
-kernel inet_default_listen_options
[{nodelay,true},{sndbuf,16384},{recbuf,4096}] \
-kernel inet_default_connect_options [{nodelay,true}]"

to

[ "x" = "x$RABBITMQ_SERVER_ERL_ARGS" ] && RABBITMQ_SERVER_ERL_ARGS="+K
true +A30"

(Alternatively you can override the value by setting
RABBITMQ_SERVER_ERL_ARGS in your shell or SERVER_ERL_ARGS in
/etc/default/rabbitmq)


Then try starting the server and invoking rabbitmqctl.


Matthias.
christopher hoover
2009-02-01 01:09:28 UTC
Permalink
Post by Matthias Radestock
Dave, Christopher, to test the above theory, please re-enable Nagle by
changing the following lines in the rabbitmq-server script from
[ "x" = "x$RABBITMQ_SERVER_ERL_ARGS" ] && RABBITMQ_SERVER_ERL_ARGS="+K
true +A30 \
-kernel inet_default_listen_options
[{nodelay,true},{sndbuf,16384},{recbuf,4096}] \
-kernel inet_default_connect_options [{nodelay,true}]"
to
[ "x" = "x$RABBITMQ_SERVER_ERL_ARGS" ] && RABBITMQ_SERVER_ERL_ARGS="+K
true +A30"
(Alternatively you can override the value by setting
RABBITMQ_SERVER_ERL_ARGS in your shell or SERVER_ERL_ARGS in
/etc/default/rabbitmq)
The /etc/init.d script invokes rabbitmq-multi, not rabbitmq-server.

When I add those args to rabbitmq-multi (via RABBITMQ_MULTI_ERL_ARGS), I see
they get passed to erl. But if the cwd is "/" the startup still fails
(whereas if it is /var/lib/rabbitmq it works).

I have a clean ubuntu that I upgrade to jaunty, but I'm having trouble
reproducing the problem cleanly. I can't make it fail yet. I will
continue to try. I've spent a lot of time with strace so far without
getting a clue. I'm suspicious of the node name handling in the erlang
runtime/kernel, but even running all-but-identical /etc/hosts and identical
/etc/resolv.conf, /etc/nsswitch.conf, /etc/hosts.conf hasn't shed a clue.

-ch
Matthias Radestock
2009-02-01 08:52:50 UTC
Permalink
Christopher,
Post by christopher hoover
The /etc/init.d script invokes rabbitmq-multi, not rabbitmq-server.
When I add those args to rabbitmq-multi (via RABBITMQ_MULTI_ERL_ARGS), I see
they get passed to erl.
rabbitmq-multi invokes rabbitmq-server, so you do need to set the
RABBITMQ_SERVER_ERL_ARGS var in the way I described.
Post by christopher hoover
I have a clean ubuntu that I upgrade to jaunty, but I'm having trouble
reproducing the problem cleanly. I can't make it fail yet.
It might be worth comparing what packages you have installed.


Matthias.
Dave Farkas
2009-02-02 20:54:56 UTC
Permalink
Matthias, Dmitriy, Christopher
Post by Matthias Radestock
Dave, Christopher, to test the above theory, please re-enable Nagle by
changing the following lines in the rabbitmq-server script from
[ "x" = "x$RABBITMQ_SERVER_ERL_ARGS" ] && RABBITMQ_SERVER_ERL_ARGS="+K true
+A30 \
-kernel inet_default_listen_options
[{nodelay,true},{sndbuf,16384},{recbuf,4096}] \
-kernel inet_default_connect_options [{nodelay,true}]"
to
[ "x" = "x$RABBITMQ_SERVER_ERL_ARGS" ] && RABBITMQ_SERVER_ERL_ARGS="+K true
+A30"
(Alternatively you can override the value by setting
RABBITMQ_SERVER_ERL_ARGS in your shell or SERVER_ERL_ARGS in
/etc/default/rabbitmq)
Then try starting the server and invoking rabbitmqctl.
Matthias.
I don't have snoopy installed, anything in /etc/ld.so.preload or can
find a place where LD_PRELOAD is being set. SELinux is also disabled:

[root at db1 selinux]# more /etc/selinux/config
# This file controls the state of SELinux on the system.
# SELINUX= can take one of these three values:
# enforcing - SELinux security policy is enforced.
# permissive - SELinux prints warnings instead of enforcing.
# disabled - No SELinux policy is loaded.
SELINUX=disabled
# SELINUXTYPE= can take one of these two values:
# targeted - Only targeted network daemons are protected.
# strict - Full SELinux protection.
SELINUXTYPE=targeted


I've also tried to re-enable Nagle by changing the lines in the
rabbitmq-server script with the same results.

Thanks,
Dave
Matthias Radestock
2009-02-02 22:01:40 UTC
Permalink
Dave,
Post by Dave Farkas
I don't have snoopy installed, anything in /etc/ld.so.preload or can
[...]
I've also tried to re-enable Nagle by changing the lines in the
rabbitmq-server script with the same results.
Is there any way you could give me access to the machine or an image of it?


Matthias.
Dmitriy Samovskiy
2009-02-03 15:45:15 UTC
Permalink
Dave, Matthias, Christopher -
Post by Dave Farkas
I don't have snoopy installed, anything in /etc/ld.so.preload or can
I've also tried to re-enable Nagle by changing the lines in the
rabbitmq-server script with the same results.
Even though this is unlikely to help, I was wondering if you could find time to do the
following exercise. It may help determine if an issue has anything to do with rabbit in
the first place (to make sure we are on the right track).

Please run this:

# erl -sname foo -cookie coo
Erlang (BEAM) emulator version 5.6.5 [source] [async-threads:0] [kernel-poll:false]

Eshell V5.6.5 (abort with ^G)
(foo at myvm)1> net_adm:names().
{ok,[{"foo",1292}]}
(foo at myvm)2>

Exit from there with Ctrl+C Ctrl+C.


I suspect that your response from net_adm:names() will be {error,timeout} and it will
appear not immediately but after some time (within 30 seconds). Could you please confirm.

After you exit from erl, please do grep -r /usr/lib/erlang/erts-5.6.5/bin /var/log/*
(please replace 5.6.5 with emulator version that is displayed when you start erl).
Anything of interest in the output? I am particularly looking for something related to
auth, or access being denied. Interesting lines are likely to come from auth.log or its
equivalent on your system, and there should be many similar lines (unless your syslog
suppresses dup lines - mine didn't). If nothing shows up, maybe try similar greps -
erlang, erts.

And finally, if you have or can get strace on the target system, could you please run this:

% strace -e trace=write -o erl_strace.log erl -sname -cookie coo


and do the same net_adm:names() in erlang shell. When it times out, exit erlang shell and
take a look at erl_strace.log. I expect that at the end of that file you will see many
lines like this:

--- SIGCHLD (Child exited) @ 0 (0) ---
--- SIGPIPE (Broken pipe) @ 0 (0) ---
--- SIGPIPE (Broken pipe) @ 0 (0) ---
--- SIGPIPE (Broken pipe) @ 0 (0) ---
--- SIGCHLD (Child exited) @ 0 (0) ---
--- SIGPIPE (Broken pipe) @ 0 (0) ---
--- SIGCHLD (Child exited) @ 0 (0) ---
--- SIGPIPE (Broken pipe) @ 0 (0) ---
--- SIGCHLD (Child exited) @ 0 (0) ---
--- SIGPIPE (Broken pipe) @ 0 (0) ---

Feel free to do strace with -e trace=all or -e verbose=all.


That SIGPIPE corresponds to erlang's attempt to write PORT2_REQ command to empd in the
second connection. tcpdump shows no attempts to make a second connection either - not even
a single SYN. It tells me that either something suppresses the connection but still has
low-level C function return success, or something in erlang does not check return code (a
very wild guess on my part).

All in all, I can reliably recreate this problem with snoopy on Debian Etch (if you try
this at home, I recommend against having dpkg install snoopy in /etc/ld.so.preload - it
will ask at install, but answer NO and instead manually set LD_PRELOAD=/lib/snoopy.so when
you need to).

At least in scenario with snoopy, the problem has nothing to do with rabbitmq.

If there are strace or low-level OS experts on the list who would like to compare strace
output of a good run vs run under snoopy in order to get more info, I can provide strace
outputs.

I have also looked inside lib/erl_interface/src/epmd in erlang source for clues but did
not find any.

What Linux distro are you using? uname -a? Any particular details how you installed the
OS? If it's safe to share, maybe output of "rpm -qa" or "dpkg -l"?


And like Matthias said before, access to box or image of the box will be most helpful.


- Dmitriy
Doug Barth
2009-02-03 17:48:30 UTC
Permalink
Hey all,

This is Doug at Interactive Mediums. I work with Dave, so you may see
us alternate back and forth responding to this thread as we work
through this issue. Thanks a lot for the help so far.

On Feb 3, 9:45?am, Dmitriy Samovskiy
Post by Dmitriy Samovskiy
I suspect that your response from net_adm:names() will be {error,timeout} and it will
appear not immediately but after some time (within 30 seconds). Could you please confirm.
We don't get exactly that error. Instead we are getting
{error,address}.

[root at db1 home]# erl -sname foo -cookie coo
Erlang (BEAM) emulator version 5.6.3 [source] [64-bit] [smp:8]
[async-threads:0] [hipe] [kernel-poll:false]

Eshell V5.6.3 (abort with ^G)
(foo at db1)1> net_adm:names().

... long pause ...

{error,address}
(foo at db1)2>
BREAK: (a)bort (c)ontinue (p)roc info (i)nfo (l)oaded
(v)ersion (k)ill (D)b-tables (d)istribution
Post by Dmitriy Samovskiy
After you exit from erl, please do grep -r /usr/lib/erlang/erts-5.6.5/bin /var/log/*
(please replace 5.6.5 with emulator version that is displayed when you start erl).
Anything of interest in the output? I am particularly looking for something related to
auth, or access being denied. Interesting lines are likely to come from auth.log or its
equivalent on your system, and there should be many similar lines (unless your syslog
suppresses dup lines - mine didn't). If nothing shows up, maybe try similar greps -
erlang, erts.
grep didn't turn up anything in these directories. I grepped for
erlang, erts, and the absolute path to the erlang bin directory.
Post by Dmitriy Samovskiy
% strace -e trace=write -o erl_strace.log erl -sname -cookie coo
I'm assuming that there should have been a "foo" after -sname in the
command above. I added that when running the next commands.
Post by Dmitriy Samovskiy
and do the same net_adm:names() in erlang shell. When it times out, exit erlang shell and
take a look at erl_strace.log. I expect that at the end of that file you will see many
This is all we're getting:

--- SIGCHLD (Child exited) @ 0 (0) ---
--- SIGCHLD (Child exited) @ 0 (0) ---
write(6, "\0", 1) = 1
--- SIGINT (Interrupt) @ 0 (0) ---
write(6, "I", 1) = 1
--- SIGINT (Interrupt) @ 0 (0) ---
write(6, "I", 1) = 1
Post by Dmitriy Samovskiy
Feel free to do strace with -e trace=all or -e verbose=all.
We ran this test using strace -e trace=all on the machine that is
failing as well as on a different machine that is working fine. The
machine that is failing is running RHEL 5.2 (64-bit). The box that
works is running CentOS 5 (32-bit).
1) Calls to mmap have a MAP_32BIT flag set. I'm assuming this is
expected due to the fact that our new machine is running a 64bit OS.
-mmap2(NULL, 10489856, PROT_READ|PROT_WRITE|PROT_EXEC,
MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x68b4000
+mmap(NULL, 10489856, PROT_READ|PROT_WRITE|PROT_EXEC,
MAP_PRIVATE|MAP_ANONYMOUS|MAP_32BIT, -1, 0) = 0x471a4000

2) Erlang seems to drop into a loop waiting on a futex. On the 64bit
machine, its FUTEX_WAIT commands also fail with "EAGAIN (Resource
temporarily unavailable)". On the 32-bit machine, those same commands
always succeed, though the same number of repeats occur.

+futex(0x7fff9f5fdab0, FUTEX_WAKE, 1) = 1
+futex(0x7fff9f5fdad8, FUTEX_WAKE, 1) = 1
+futex(0x7fff9f5fdadc, FUTEX_WAIT, 1, NULL) = -1 EAGAIN (Resource
temporarily unavailable)
+futex(0x7fff9f5fdab0, FUTEX_WAKE, 1) = 0
Post by Dmitriy Samovskiy
What Linux distro are you using? uname -a? Any particular details how you installed the
OS? If it's safe to share, maybe output of "rpm -qa" or "dpkg -l"?
[textme at db1 ~]$ cat /etc/redhat-release
Red Hat Enterprise Linux Server release 5.2 (Tikanga)
[textme at db1 ~]$ uname -a
Linux db1.interactivemediums.com 2.6.18-92.1.6.el5 #1 SMP Fri Jun 20
02:36:06 EDT 2008 x86_64 x86_64 x86_64 GNU/Linux
Post by Dmitriy Samovskiy
And like Matthias said before, access to box or image of the box will be most helpful.
We'll get in touch with you guys off list to get you access so you can
poke around. Expect an email from Dave.

--
Doug Barth
Dmitriy Samovskiy
2009-02-03 19:19:16 UTC
Permalink
Hi all,
Post by Doug Barth
We don't get exactly that error. Instead we are getting
{error,address}.
[root at db1 home]# erl -sname foo -cookie coo
Erlang (BEAM) emulator version 5.6.3 [source] [64-bit] [smp:8]
[async-threads:0] [hipe] [kernel-poll:false]
Eshell V5.6.3 (abort with ^G)
(foo at db1)1> net_adm:names().
... long pause ...
{error,address}
(foo at db1)2>
BREAK: (a)bort (c)ontinue (p)roc info (i)nfo (l)oaded
(v)ersion (k)ill (D)b-tables (d)istribution
Fixed.

According to net_adm man page [1], names/0 returns {error, address} when node can't
communicate with epmd.

We did net_adm:localhost() to see the local host name that erlang sees. It was an FQDN
(a.example.com). In /etc/hosts however, a.example.com resolved to an Internet-facing IP on
ISP's frontend, not to a private IP of the local box. With tcpdump, we observed SYN
packets in response to net_adm:names() call going out to the network to ISP's IP address,
instead of going locally to our epmd.

Once we changed /etc/hosts and put something like "127.0.0.1 a.example.com" there,
net_adm:names() started working and erlang is happy now.

Please note that this turned out to be totally unrelated to what we observed with snoopy,
even though some (all?) symptoms looked very similar.


[1] http://erlang.org/doc/man/net_adm.html


- Dmitriy
Doug Barth
2009-02-03 19:44:03 UTC
Permalink
On Feb 3, 1:19?pm, Dmitriy Samovskiy
Post by Dmitriy Samovskiy
We did net_adm:localhost() to see the local host name that erlang sees. It was an FQDN
(a.example.com). In /etc/hosts however, a.example.com resolved to an Internet-facing IP on
ISP's frontend, not to a private IP of the local box. With tcpdump, we observed SYN
packets in response to net_adm:names() call going out to the network to ISP's IP address,
instead of going locally to our epmd.
Once we changed /etc/hosts and put something like "127.0.0.1 a.example.com" there,
net_adm:names() started working and erlang is happy now.
Hey Dmitriy,

Thanks again for the help.

Once we had a working configuration, we did a bit more digging to
fully understand how this issue was caused. I thought it would be
worth sharing what we believe was the root cause.

Our new machines have two NICs with separate IP addresses for each.
One one NIC has a publicly addressable IP, the other has a private IP
meant for server management traffic. When the erlang process was
attempting to contact the epmd process, it was using the private IP
interface to connect to the public IP interface. It did this because
the hostname for that box resolved to the public IP. The epmd-bound
traffic was stopped by the firewall for the public IP interface.
Modifying the hosts file to resolve the machine's hostname to
127.0.0.1 avoided the firewall and fixed the issue. Alternatively,
changing the hosts file to use the private IP address also fixed the
issue, since that traffic avoids the firewall as well because the
originating and destination addresses are identical.

In theory, I think another fix for this issue would be to instruct
Erlang to use the public IP address when generating outbound traffic.
Unfortunately, I do not know how to control that setting to test this
theory. Is there are startup flag that could be set?

--
Doug Barth
christopher hoover
2009-02-04 01:48:13 UTC
Permalink
Post by Dmitriy Samovskiy
# erl -sname foo -cookie coo
Erlang (BEAM) emulator version 5.6.5 [source] [async-threads:0] [kernel-poll:false]
Eshell V5.6.5 (abort with ^G)
(foo at myvm)1> net_adm:names().
{ok,[{"foo",1292}]}
(foo at myvm)2>
Exit from there with Ctrl+C Ctrl+C.
This works fine for me as rabbitmq in / (from which the rabbitmq startup
script fails). I started from scratch (no rabbitmq or epmd).

rabbitmq at gato:/$ id
uid=119(rabbitmq) gid=126(rabbitmq) groups=126(rabbitmq)
rabbitmq at gato:/$ pwd
/
rabbitmq at gato:/$ dpkg -l | grep erlang
ii erlang-base-hipe 1:12.b.3-dfsg-4ubuntu1
Concurrent, real-time, distributed functiona
ii erlang-dev 1:12.b.3-dfsg-4ubuntu1
Concurrent, real-time, distributed functiona
ii erlang-nox 1:12.b.3-dfsg-4ubuntu1
Concurrent, real-time, distributed functiona
ii erlang-src 1:12.b.3-dfsg-4ubuntu1
Concurrent, real-time, distributed functiona
ii rfc4627-erlang 1.1.1
A JSON (RFC4627) codec and JSON-RPC server f
rabbitmq at gato:/$ erl -sname foo -cookie coo
Erlang (BEAM) emulator version 5.6.3 [source] [async-threads:0] [hipe]
[kernel-poll:false]

Eshell V5.6.3 (abort with ^G)
(foo at gato)1> net_adm:names()
(foo at gato)1> .
{ok,[{"foo",43961}]}
(foo at gato)2>
BREAK: (a)bort (c)ontinue (p)roc info (i)nfo (l)oaded
(v)ersion (k)ill (D)b-tables (d)istribution
^Crabbitmq at gato:/$
Post by Dmitriy Samovskiy
If there are strace or low-level OS experts on the list who would like to compare strace
output of a good run vs run under snoopy in order to get more info, I can provide strace
outputs.
I'm happy to take a look.
Post by Dmitriy Samovskiy
What Linux distro are you using? uname -a? Any particular details how you installed the
OS? If it's safe to share, maybe output of "rpm -qa" or "dpkg -l"?
rabbitmq at gato:/$ uname -a
Linux gato 2.6.28-6-generic #17-Ubuntu SMP Fri Jan 30 15:34:36 UTC 2009 i686
GNU/Linux
rabbitmq at gato:/$ cat /etc/issue
Ubuntu jaunty (development branch) \n \l

rabbitmq at gato:/$ dpkg -l
Desired=Unknown/Install/Remove/Purge/Hold
|
Status=Not/Inst/Cfg-files/Unpacked/Failed-cfg/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Hold/Reinst-required/X=both-problems (Status,Err:
uppercase=bad)
||/ Name Version Description
+++-==============-==============-==========================================
==
ii acl 2.2.47-2 Access control list utilities
ii acpi 1.2-1ubuntu1 displays information on ACPI devices
ii acpi-support 0.119 scripts for handling many ACPI events
ii acpid 1.0.6-9ubuntu4 Utilities for using ACPI power management
ii adduser 3.110ubuntu2 add and remove users and groups
ii alacarte 0.11.8-0ubuntu easy GNOME menu editing tool
ii alien 8.73 convert and install rpm and other packages
ii alleyoop 0.9.3-2 Front-end to the Valgrind memory checker
ii alsa-base 1.0.18.dfsg-1u ALSA driver configuration files
ii alsa-utils 1.0.18-1ubuntu ALSA utilities
ii anacron 2.3-13.1ubuntu cron-like program that doesn't go by time
ii ant 1.7.1-0ubuntu2 Java based build tool like make
ii ant-optional 1.7.1-0ubuntu2 Java based build tool like make - optional
l
ii apmd 3.2.2-12ubuntu Utilities for Advanced Power Management
(APM
ii app-install-da 0.7.1 Ubuntu applications (data files)
ii app-install-da 11.9.04 Transitional package
ii app-install-da 11.9.04 Application Installer (data files for
commer
ii apparmor 2.3+1289-0ubun User-space parser utility for AppArmor
ii apparmor-utils 2.3+1289-0ubun Utilities for controlling AppArmor
ii apport 0.129 automatically generate crash reports for
deb
ii apport-gtk 0.129 GTK+ frontend for the apport crash report
sy
ii apt 0.7.19ubuntu1 Advanced front-end for dpkg
ii apt-utils 0.7.19ubuntu1 APT utility programs
ii aptitude 0.4.11.10-1len terminal-based package manager
ii apturl 0.3.2ubuntu2 install packages using the apt protocol
ii aspell 0.60.6-1 GNU Aspell spell-checker
ii aspell-en 6.0-0-5.1 English dictionary for GNU Aspell
ii astyle 1.22-2 Source code indenter for C++/C/Java/C#
sourc
ii at 3.1.10.2ubuntu Delayed job execution and batch processing
ii at-spi 1.25.5-0ubuntu Assistive Technology Service Provider
Interf
ii auto-apt 0.3.21+nmu1 package search by file and on-demand
package
ii autoconf 2.61-7ubuntu1 automatic configure script builder
ii automake 1:1.10.1-3 A tool for generating GNU
Standards-complian
ii autotools-dev 20080123.2 Update infrastructure for
config.{guess,sub}
ii avahi-autoipd 0.6.23-4ubuntu Avahi IPv4LL network address configuration
d
ii avahi-daemon 0.6.23-4ubuntu Avahi mDNS/DNS-SD daemon
ii avahi-utils 0.6.23-4ubuntu Avahi browsing, publishing and discovery
uti
ii base-files 5ubuntu1 Debian base system miscellaneous files
ii base-passwd 3.5.19 Debian base system master password and
group
ii bash 3.2-4ubuntu1 The GNU Bourne Again SHell
ii bash-completio 20080705ubuntu programmable completion for the bash shell
ii bash-doc 3.2-4ubuntu1 Documentation and examples for the The GNU
B
ii bc 1.06.94-3ubunt The GNU bc arbitrary precision calculator
la
ii beforelight 1.0.2-0ubuntu1 X client - beforelight
ii belocs-locales 2.4-4ubuntu2 tools for compiling locale data files
ii bicyclerepair 0.9-4.3 A refactoring tool for python
ii bind9-host 1:9.5.0.dfsg.P Version of 'host' bundled with BIND 9.X
ii binfmt-support 1.2.11 Support for extra binary formats
ii bing 1.1.3-1 Empirical stochastic bandwidth tester
ii binutils 2.19.0.2009011 The GNU assembler, linker and binary
utiliti
ii binutils-multi 2.19.0.2009011 Binary utilities that support multi-arch
tar
ii binutils-stati 2.19.0.2009011 statically linked binutils tools
ii bison 1:2.3.dfsg-5 A parser generator that is compatible with
Y
ii bison-doc 1:2.3-2 Documentation for the Bison parser
generator
ii bittorrent 3.4.2-11.1ubun Original BitTorent client and tracker -
cons
ii blender 2.46+dfsg-6ubu Very fast and versatile 3D
modeller/renderer
ii blt 2.4z-4ubuntu3 the BLT extension library for Tcl/Tk -
run-t
ii bluetooth 4.27-0ubuntu1 Bluetooth support
ii bluez 4.27-0ubuntu1 Bluetooth tools and daemons
ii bluez-alsa 4.27-0ubuntu1 Bluetooth audio support
ii bluez-cups 4.27-0ubuntu1 Bluetooth printer driver for CUPS
ii bluez-gnome 1.8-0ubuntu1 Bluetooth utilities for GNOME
ii bluez-gstreame 4.27-0ubuntu1 Bluetooth gstreamer support
ii bluez-utils 4.27-0ubuntu1 Transitional package
ii bmon 2.0.1-3 portable bandwidth monitor and rate
estimato
ii bogofilter 1.1.7-1ubuntu1 a fast Bayesian spam filter (dummy
package)
ii bogofilter-bdb 1.1.7-1ubuntu1 a fast Bayesian spam filter (Berkeley DB)
ii bogofilter-com 1.1.7-1ubuntu1 a fast Bayesian spam filter (common files)
ii brasero 0.9.1-0ubuntu2 CD/DVD burning application for GNOME
ii bridge-utils 1.4-5 Utilities for configuring the Linux
Ethernet
ii brltty 3.10-0ubuntu3 Access software for a blind person using a
b
ii brltty-x11 3.10-0ubuntu3 Access software for a blind person using a
b
ii bsdmainutils 6.1.10ubuntu3 collection of more utilities from FreeBSD
ii bsdutils 1:2.14-1ubuntu Basic utilities from 4.4BSD-Lite
ii bsh 2.0b4-8ubuntu3 Java scripting environment (BeanShell)
Versi
ii bug-buddy 2.24.1+dfsg-2u GNOME Desktop Environment bug reporting
tool
ii build-essentia 11.4 Informational list of build-essential
packag
ii busybox-initra 1:1.10.2-2ubun Standalone shell setup for initramfs
ii bzip2 1.0.5-1ubuntu1 high-quality block-sorting file compressor
-
ii bzr 1.9-1 easy to use distributed version control
syst
ii ca-certificate 20080809 Common CA certificates
ii cabextract 1.2-3 a program to extract Microsoft Cabinet
files
ii capplets-data 1:2.25.3-0ubun configuration applets for GNOME 2 - data
fil
ii cdbs 0.4.52ubuntu13 common build system for Debian packages
ii cdparanoia 3.10.2+debian- audio extraction tool for sampling CDs
ii cdrdao 1:1.2.2-17 records CDs in Disk-At-Once (DAO) mode
ii cdrecord 10:2.01.01a33- command line CD writing tool
ii checkbox 0.4 Checkbox System Testing
ii checkbox-gtk 0.4 Checkbox GTK Interface
ii cl-asdf 1.111-1 Another System Definition Facility
ii classpath-doc 2:0.97.2-1.1ub clean room standard Java libraries - free
Ja
ii cli-common 0.5.7 common files between all CLI packages
ii cmake 2.6.2-1ubuntu1 A cross-platform, open-source make system
ii cmucl 19a-release-20 The CMUCL lisp compiler and development
syst
ii colordiff 1.0.7-2 tool to colorize 'diff' output
ii comerr-dev 2.1-1.41.3-1ub common error description library - headers
a
ii command-not-fo 0.2.31ubuntu2 Suggest installation of packages in
interact
ii command-not-fo 0.2.31ubuntu2 Set of data files for command-not-found.
ii common-lisp-co 6.17 Common Lisp source and compiler manager
ii compiz 1:0.7.8-0ubunt OpenGL window and compositing manager
ii compiz-core 1:0.7.8-0ubunt OpenGL window and compositing manager
ii compiz-fusion- 0.7.8-0ubuntu2 Collection of extra plugins from
OpenComposi
ii compiz-fusion- 0.7.8-0ubuntu4 Collection of plugins from OpenCompositing
f
ii compiz-gnome 1:0.7.8-0ubunt OpenGL window and compositing manager -
GNOM
ii compiz-plugins 1:0.7.8-0ubunt OpenGL window and compositing manager -
plug
ii compiz-wrapper 1:0.7.8-0ubunt OpenGL window and compositing manager,
wrapp
ii compizconfig-b 0.7.8-0ubuntu2 Settings library for plugins -
OpenCompositi
ii conduit 0.3.15-1ubuntu synchronization tool for GNOME
ii console-setup 1.28ubuntu5 Set up the font and the keyboard on the
cons
ii console-termin 4.26-2.1 Fixed-width fonts for fast reading on the
Li
ii consolekit 0.3-0ubuntu3 framework for defining and tracking users,
s
ii contact-lookup 0.16-1build2 contact lookup applet for GNOME
ii coreutils 6.10-6ubuntu1 The GNU core utilities
ii cpio 2.9-14ubuntu1 GNU cpio -- a program to manage archives
of
ii cpp 4:4.3.2-2ubunt The GNU C preprocessor (cpp)
ii cpp-4.1 4.1.2-24ubuntu The GNU C preprocessor
ii cpp-4.2 4.2.4-5ubuntu1 The GNU C preprocessor
ii cpp-4.3 4.3.3-3ubuntu1 The GNU C preprocessor
ii cpp-4.3-doc 4.3.3-3ubuntu1 Documentation for the GNU C preprocessor
(cp
ii cpp-doc 4:4.3.2-2ubunt Documentation for the GNU C preprocessor
(cp
ii cron 3.0pl1-105ubun management of regular background
processing
ii csvtool 1.1.6-3build1 A handy command line tool for handling CSV
f
ii cups 1.3.9-12 Common UNIX Printing System(tm) - server
ii cups-bsd 1.3.9-12 Common UNIX Printing System(tm) - BSD
comman
ii cups-client 1.3.9-12 Common UNIX Printing System(tm) - client
pro
ii cups-common 1.3.9-12 Common UNIX Printing System(tm) - common
fil
ii cups-driver-gu 5.2.3-0ubuntu1 printer drivers for CUPS
ii cupsddk 1.2.3-5ubuntu1 CUPS Driver Development Kit
ii cupsddk-driver 1.2.3-5ubuntu1 CUPS Driver Development Kit - Driver files
ii cupsys 1.3.9-12 Common UNIX Printing System (transitional
pa
ii cupsys-bsd 1.3.9-12 Common UNIX Printing System (transitional
pa
ii cupsys-client 1.3.9-12 Common UNIX Printing System (transitional
pa
ii cupsys-common 1.3.9-12 Common UNIX Printing System (transitional
pa
ii cupsys-driver- 5.2.3-0ubuntu1 Transitional package
ii curl 7.18.2-8ubuntu Get a file from an HTTP, HTTPS or FTP
server
ii cvs 1:1.12.13-12ub Concurrent Versions System
ii dash 0.5.4-12ubuntu POSIX-compliant shell
ii db4.4-util 4.4.20-12 Berkeley v4.4 Database Utilities
ii dbishell 0.8.9-7.3 Interactive SQL shell with readline
support
ii dbus 1.2.12-0ubuntu simple interprocess messaging system
ii dbus-1-doc 1.2.12-0ubuntu simple interprocess messaging system
(docume
ii dbus-x11 1.2.12-0ubuntu simple interprocess messaging system (X11
de
ii dc 1.06.94-3ubunt The GNU dc arbitrary precision
reverse-polis
ii dcraw 8.86-1 decode raw digital camera images
ii dctrl-tools 2.13.0 Command-line tools to process Debian
package
ii ddrescue 1.13-3 copies data from one file or block device
to
ii debconf 1.5.24ubuntu3 Debian configuration management system
ii debconf-i18n 1.5.24ubuntu3 full internationalization support for
debcon
ii debconf-utils 1.5.24ubuntu3 debconf utilities
ii debfoster 2.7-1 Install only wanted Debian packages
ii debhelper 7.0.17ubuntu2 helper programs for debian/rules
ii debian-keyring 2008.11.30 GnuPG (and obsolete PGP) keys of Debian
Deve
ii debianutils 2.30ubuntu2 Miscellaneous utilities specific to Debian
ii debomatic 0.5-2 automatic build machine for Debian source
pa
ii debootstrap 1.0.10ubuntu3 Bootstrap a basic Debian system
ii deborphan 1.7.27 program that can find unused packages,
e.g.
ii debsums 2.0.40 verification of installed package files
agai
ii defoma 0.11.10-0.2ubu Debian Font Manager -- automatic font
config
ii deskbar-applet 2.25.90-0ubunt universal search and navigation bar for
GNOM
ii desktop-file-u 0.15-1ubuntu5 Utilities for .desktop files
ii devscripts 2.10.39ubuntu3 scripts to make the life of a Debian
Package
ii dh-make 0.47 tool that converts source archives into
Debi
ii dhcdbd 3.0-4ubuntu3 D-Bus interface to the ISC DHCP client
ii dhcp3-client 3.1.1-5ubuntu2 DHCP client
ii dhcp3-common 3.1.1-5ubuntu2 common files used by all the dhcp3*
packages
ii dialog 1.1-20080819-1 Displays user-friendly dialog boxes from
she
ii dictionaries-c 0.98.14ubuntu1 Common utilities for spelling dictionary
too
ii diff 2.8.1-12ubuntu File comparison utilities
ii diffstat 1.46-1 produces graph of changes introduced by a
di
ii discover 2.1.2-3 hardware identification system
ii discover-data 2.2008.06.25ub Data lists for Discover hardware detection
s
ii discover1 2.1.2-3 transitional package
ii displayconfig- 0.3.10 Simple tool to change xserver settings
ii diveintopython 5.4-2ubuntu2 free Python book for experienced
programmers
ii dmidecode 2.9-1ubuntu1 Dump Desktop Management Interface data
ii dmsetup 2:1.02.27-4ubu The Linux Kernel Device Mapper userspace
lib
ii dmz-cursor-the 0.4.1 Style neutral, scalable cursor theme
ii dnsutils 1:9.5.0.dfsg.P Clients provided with BIND
ii doc-base 0.8.18 utilities to manage online documentation
ii docbook-xml 4.5-6 standard XML documentation system, for
softw
ii docbook-xsl 1.73.2.dfsg.1- stylesheets for processing DocBook XML
files
ii docbook-xsl-do 1.73.2.dfsg.1- stylesheets for processing DocBook XML
files
ii dosfstools 3.0.1-1 utilities for making and checking MS-DOS
FAT
ii doxygen 1.5.8-1~exp1 Documentation system for C, C++, Java,
Pytho
ii dpatch 2.0.30 patch maintenance system for Debian source
p
ii dpkg 1.14.24ubuntu1 Debian package management system
ii dpkg-dev 1.14.24ubuntu1 Debian package development tools
ii dpkg-repack 1.30 puts an unpacked .deb file back together
ii dselect 1.14.24ubuntu1 Debian package management front-end
ii dvd+rw-tools 7.1-3ubuntu1 DVD+-RW/R tools
ii dvi2ps 4.1j-2 TeX DVI-driver for NTT JTeX, MulTeX and
ASCI
ii dvipdfmx 1:20080607-1 A DVI to PDF translator with CJK support
ii e2fslibs 1.41.3-1ubuntu ext2 filesystem libraries
ii e2fsprogs 1.41.3-1ubuntu ext2/ext3/ext4 file system utilities
ii eclipse 3.2.2-5ubuntu3 Extensible Tool Platform and Java IDE
ii eclipse-jdt 3.2.2-5ubuntu3 Java Development Tools plug-ins for
Eclipse
ii eclipse-pde 3.2.2-5ubuntu3 Plug-in Development Environment to develop
E
ii eclipse-platfo 3.2.2-5ubuntu3 Eclipse platform without plug-ins to
develop
ii eclipse-pydev 1.2.5-4 Python development plug-in for Eclipse
ii eclipse-rcp 3.2.2-5ubuntu3 Eclipse rich client platform
ii ed 0.7-3ubuntu1 The classic unix line editor
ii edit-json 1.1.2-1 JSON files editor
ii eject 2.1.5+deb1+cvs ejects CDs and operates CD-Changers under
Li
ii ekiga 3.0.1-1ubuntu1 H.323 and SIP compatible VoIP client
ii electric-fence 2.1.14.1 A malloc(3) debugger
ii emacs-snapshot 1:20081013-1 The GNU Emacs editor (development
snapshot)
ii emacs-snapshot 1:20081013-1 The GNU Emacs editor's shared,
architecture
ii emacs-snapshot 1:20081013-1 The GNU Emacs editor's common
infrastructure
ii emacs-snapshot 1:20081013-1 GNU Emacs LISP (.el) files
ii emacs-snapshot 1:20081013-1 The GNU Emacs editor (transitional
package)
ii emacs22 22.2-0ubuntu2 The GNU Emacs editor (Emacs 22)
ii emacs22-bin-co 22.2-0ubuntu2 The GNU Emacs editor's shared,
architecture
ii emacs22-common 22.2-0ubuntu2 The GNU Emacs editor's common
infrastructure
ii emacs22-gtk 22.2-0ubuntu2 The GNU Emacs editor (with GTK+ 2.x
support)
ii emacsen-common 1.4.17 Common facilities for all emacsen
ii emcast 0.3.2-6 multicast toolkit
ii enscript 1.6.4-13 Converts ASCII text to Postscript, HTML,
RTF
ii eog 2.25.5-0ubuntu Eye of GNOME graphics viewer program
ii epiphany-brows 2.24.3-0ubuntu Intuitive web browser - dummy package
ii epiphany-brows 2.24.3-0ubuntu Data files for the GNOME web browser
ii epiphany-exten 2.24.1-0ubuntu Extensions for Epiphany web browser
ii epiphany-gecko 2.24.3-0ubuntu Intuitive GNOME web browser - Gecko
version
ii erlang-base-hi 1:12.b.3-dfsg- Concurrent, real-time, distributed
functiona
ii erlang-dev 1:12.b.3-dfsg- Concurrent, real-time, distributed
functiona
ii erlang-nox 1:12.b.3-dfsg- Concurrent, real-time, distributed
functiona
ii erlang-src 1:12.b.3-dfsg- Concurrent, real-time, distributed
functiona
ii esound-common 0.2.40-0ubuntu Enlightened Sound Daemon - Common files
ii espeak 1.39-0ubuntu1 A multi-lingual software speech
synthesizer
ii espeak-data 1.39-0ubuntu1 A multi-lingual software speech
synthesizer:
ii ethtool 6+20080913-1 display or change Ethernet device settings
ii evince 2.25.5-0ubuntu Document (postscript, pdf) viewer
ii evolution 2.24.3-0ubuntu groupware suite with mail client and
organiz
ii evolution-comm 2.24.3-0ubuntu architecture independent files for
Evolution
ii evolution-data 2.24.3-0ubuntu evolution database backend server
ii evolution-data 2.24.3-0ubuntu architecture independent files for
Evolution
ii evolution-exch 2.24.3-0ubuntu Exchange plugin for the Evolution
groupware
ii evolution-plug 2.24.3-0ubuntu standard plugins for Evolution
ii evolution-webc 2.24.0-0ubuntu webcal: URL handler for GNOME and
Evolution
ii example-conten 35 Ubuntu example content
ii exiv2 0.17.1-1 EXIF/IPTC metadata manipulation tool
ii ext2resize 1.1.19-9 an ext2 filesystem resizer
ii extra-xdg-menu 1.0-4 Extra menu categories for applications
under
ii exuberant-ctag 1:5.7-4 build tag file indexes of source code
defini
ii f-spot 0.5.0.3-0ubunt personal photo management application
ii fakeroot 1.12.1ubuntu1 Gives a fake root environment
ii fast-user-swit 2.24.0-0ubuntu Applet for the GNOME panel providing a
menu
ii fdupes 1.50-PR2-1 identifies duplicate files within given
dire
ii fdutils 5.5-20060227-3 Linux floppy utilities
ii feisty-session 0.12 Feisty Session Splashes
ii feisty-wallpap 0.13 Feisty Wallpapers
ii feta 1.4.16+nmu1 simpler interface to APT, dpkg, and other
pa
ii fglrx-modalias 2:8.573-0ubunt Identifiers supported by the ATI graphics
dr
ii fhist 1.16-1 File history, comparison and merge
utilities
ii file 4.26-2 Determines file type using "magic" numbers
ii file-roller 2.25.90-0ubunt an archive manager for GNOME
ii findutils 4.4.0-2ubuntu3 utilities for finding files--find, xargs
ii finger 0.17-12 user information lookup program
ii firebird2.1-co 2.1.1.17910-re common files for firebird 2.1 servers and
cl
ii firebug 1.3.0-1ubuntu1 web development plugin for Firefox
ii firefox 3.0.5+nobinonl meta package for the popular mozilla web
bro
ii firefox-3.0 3.0.5+nobinonl safe and easy web browser from Mozilla
ii firefox-3.0-br 3.0.5+nobinonl Package that ships the firefox branding
ii firefox-3.0-gn 3.0.5+nobinonl Support for Gnome in Mozilla Firefox
ii firefox-gnome- 3.0.5+nobinonl meta package pointing to the latest
gnome-su
ii flashplugin-no 10.0.15.3ubunt Adobe Flash Player plugin installer
ii fldiff 1.1-1.1 A graphical diff program
ii flex 2.5.35-6ubuntu A fast lexical analyzer generator.
ii flex-doc 2.5.35-6ubuntu Documentation for flex (a fast lexical
analy
ii fontconfig 2.6.0-1ubuntu4 generic font configuration library -
support
ii fontconfig-con 2.6.0-1ubuntu4 generic font configuration library -
configu
ii foo2zjs 20080810-0ubun Support for printing to ZjStream-based
print
ii foomatic-db 20090115-0ubun OpenPrinting printer support - database
ii foomatic-db-en 4.0.0-0ubuntu2 OpenPrinting printer support - programs
ii foomatic-db-hp 20090115-0ubun OpenPrinting printer support - database
for
ii foomatic-filte 4.0.0-0ubuntu4 OpenPrinting printer support - filters
ii fortune-mod 1:1.99.1-3.1ub provides fortune cookies on demand
ii fortunes-min 1:1.99.1-3.1ub Data files containing fortune cookies
ii fping 2.4b2-to-ipv6- sends ICMP ECHO_REQUEST packets to network
h
ii freeglut3 2.4.0-6.1ubunt OpenGL Utility Toolkit
ii freemind 0.7.1-6ubuntu3 A Java Program for creating and viewing
Mind
ii freetds-common 0.82-4 configuration files for FreeTDS SQL client
l
ii freetds-dev 0.82-4 MS SQL and Sybase client library (static
lib
ii friendly-recov 0.2.8 Make recovery more user-friendly
ii ftp 0.17-18 The FTP client
ii fuse-utils 2.7.4-1.1ubunt Filesystem in USErspace (utilities)
ii g++ 4:4.3.2-2ubunt The GNU C++ compiler
ii g++-4.1 4.1.2-24ubuntu The GNU C++ compiler
ii g++-4.2 4.2.4-5ubuntu1 The GNU C++ compiler
ii g++-4.3 4.3.3-3ubuntu1 The GNU C++ compiler
ii gaim 1:2.4.1-1ubunt transitional package to Pidgin
ii gamin 0.1.9-2ubuntu3 File and directory monitoring system
ii gcalctool 5.25.5-0ubuntu A GTK2 desktop calculator
ii gcc 4:4.3.2-2ubunt The GNU C compiler
ii gcc-3.3-base 1:3.3.6-15ubun The GNU Compiler Collection (base package)
ii gcc-4.1 4.1.2-24ubuntu The GNU C compiler
ii gcc-4.1-base 4.1.2-24ubuntu The GNU Compiler Collection (base package)
ii gcc-4.2 4.2.4-5ubuntu1 The GNU C compiler
ii gcc-4.2-base 4.2.4-5ubuntu1 The GNU Compiler Collection (base package)
ii gcc-4.3 4.3.3-3ubuntu1 The GNU C compiler
ii gcc-4.3-base 4.3.3-3ubuntu1 The GNU Compiler Collection (base package)
ii gcc-4.3-doc 4.3.3-3ubuntu1 Documentation for the GNU compilers (gcc,
go
ii gcc-doc 4:4.3.2-2ubunt Documentation for the GNU C compilers
(gcc,
ii gcj-4.1-base 4.1.2-18ubuntu The GNU Compiler Collection (gcj base
packag
ii gcj-4.2-base 4.2.4-5ubuntu1 The GNU Compiler Collection (gcj base
packag
ii gcj-4.3-base 4.3.3-1ubuntu1 The GNU Compiler Collection (gcj base
packag
ii gconf-editor 2.24.1-2ubuntu An editor for the GConf configuration
system
ii gconf2 2.25.0-0ubuntu GNOME configuration database system
(support
ii gconf2-common 2.25.0-0ubuntu GNOME configuration database system
(common
ii gdb 6.8-3ubuntu2 The GNU Debugger
ii gdebi 0.4.0 Simple tool to install deb files
ii gdebi-core 0.4.0 Simple tool to install deb files
ii gdm 2.20.8-0ubuntu GNOME Display Manager
ii gdm-guest-sess 0.8 gdm extension for guest session
ii gedit 2.25.6-0ubuntu official text editor of the GNOME desktop
en
ii gedit-common 2.25.6-0ubuntu official text editor of the GNOME desktop
en
ii genisoimage 9:1.1.9-1ubunt Creates ISO-9660 CD-ROM filesystem images
ii gettext 0.17-6ubuntu1 GNU Internationalization utilities
ii gettext-base 0.17-6ubuntu1 GNU Internationalization utilities for the
b
ii ghostscript 8.64.dfsg.1-0u The GPL Ghostscript PostScript/PDF
interpret
ii ghostscript-x 8.64.dfsg.1-0u The GPL Ghostscript PostScript/PDF
interpret
ii gif2png 2.5.1-3 GIF -> PNG conversions
ii gij 4:4.3.2-2ubunt The GNU Java bytecode interpreter
ii gij-4.1 4.1.2-18ubuntu The GNU Java bytecode interpreter
ii gij-4.2 4.2.4-5ubuntu1 The GNU Java bytecode interpreter
ii gij-4.3 4.3.3-1ubuntu1 The GNU Java bytecode interpreter
ii gimp 2.6.3-1ubuntu1 The GNU Image Manipulation Program
ii gimp-data 2.6.3-1ubuntu1 Data files for GIMP
ii gimp-help-comm 2.4.1-1 Data files for the GIMP documentation
ii gimp-help-en 2.4.1-1 Documentation for the GIMP (English)
ii gksu 2.0.0-5ubuntu4 graphical frontend to su
ii glibc-doc 2.9-0ubuntu9 GNU C Library: Documentation
ii gnash 0.8.4-0ubuntu1 free SWF movie player
ii gnash-common 0.8.4-0ubuntu1 free SWF movie player - common
files/librari
ii gnome-about 1:2.25.5-0ubun The GNOME about box
ii gnome-accessib 2.25.5-0ubuntu accessibility themes for the GNOME 2
desktop
ii gnome-app-inst 0.5.12-0ubuntu GNOME Application Installer
ii gnome-applets 2.25.2-0ubuntu Various applets for GNOME 2 panel - binary
f
ii gnome-applets- 2.25.2-0ubuntu Various applets for GNOME 2 panel - data
fil
ii gnome-btdownlo 0.0.30-2.1 Gnome interface for 'executing' BitTorrent
f
ii gnome-cards-da 1:2.25.5-0ubun data files for the GNOME card games
ii gnome-control- 1:2.25.3-0ubun utilities to configure the GNOME desktop
ii gnome-desktop- 1:2.25.5-0ubun Common files for GNOME 2 desktop apps
ii gnome-doc-util 0.13.1-0ubuntu a collection of documentation utilities
for
ii gnome-games 1:2.25.5-0ubun games for the GNOME desktop
ii gnome-games-da 1:2.25.5-0ubun data files for the GNOME games
ii gnome-icon-the 2.24.0-0ubuntu GNOME Desktop icon theme
ii gnome-keyring 2.25.4.1-0ubun GNOME keyring services (daemon and tools)
ii gnome-keyring- 2.20.0-0ubuntu keyring management program for the GNOME
des
ii gnome-mag 1:0.15.4-0ubun a screen magnifier for the GNOME desktop
ii gnome-media 2.25.5-0ubuntu GNOME media utilities
ii gnome-media-co 2.25.5-0ubuntu GNOME media utilities - common files
ii gnome-menus 2.25.5-0ubuntu an implementation of the freedesktop menu
sp
ii gnome-mime-dat 2.18.0-1 base MIME and Application database for
GNOME
ii gnome-mount 0.8-1ubuntu1 wrapper for (un)mounting and ejecting
storag
ii gnome-netstatu 2.12.2-0ubuntu Network status applet for GNOME 2
ii gnome-nettool 2.25.3-0ubuntu network information tool for GNOME
ii gnome-orca 2.25.90-0ubunt Scriptable screen reader
ii gnome-panel 1:2.25.90-0ubu launcher and docking facility for GNOME
ii gnome-panel-da 1:2.25.90-0ubu common files for the GNOME Panel
ii gnome-pilot 2.0.15-2.4ubun A GNOME applet for management of your Palm
P
ii gnome-pilot-co 2.0.15-1.2 conduits for gnome-pilot
ii gnome-power-ma 2.24.0-0ubuntu frontend for gnome-powermanager
ii gnome-rdp 0.2.3-1ubuntu1 remote desktop client for GNOME
ii gnome-screensa 2.24.0-0ubuntu GNOME screen saver and locker
ii gnome-session 2.25.5-0ubuntu The GNOME 2 Session Manager
ii gnome-session- 0.11-1ubuntu1 GNOME session log in and log out sound
event
ii gnome-settings 2.25.3-0ubuntu GNOME settings daemon
ii gnome-spell 1.0.8-0ubuntu1 GNOME/Bonobo component for spell checking
ii gnome-system-m 2.24.4-0ubuntu Process viewer and system resource monitor
f
ii gnome-system-t 2.22.1-0ubuntu Cross-platform configuration utilities for
G
ii gnome-terminal 2.25.5-0ubuntu The GNOME 2 terminal emulator application
ii gnome-terminal 2.25.5-0ubuntu Data files for the GNOME terminal emulator
ii gnome-themes 2.25.5-0ubuntu official themes for the GNOME 2 desktop
ii gnome-user-gui 2.24.1+svn2009 GNOME user's guide
ii gnome-utils 2.25.90-0ubunt GNOME desktop utilities
ii gnome-volume-m 2.24.0-0ubuntu GNOME daemon to auto-mount and manage
media
ii gnupg 1.4.9-3ubuntu1 GNU privacy guard - a free PGP replacement
ii gnuplot 4.2.4-4 A command-line driven interactive plotting
p
ii gnuplot-doc 4.2.4-4 A command-line driven interactive plotting
p
ii gnuplot-mode 1:0.6.0-2.3 Yet another Gnuplot mode for Emacs
ii gnuplot-nox 4.2.4-4 A command-line driven interactive plotting
p
ii gnuplot-x11 4.2.4-4 A command-line driven interactive plotting
p
ii gpgv 1.4.9-3ubuntu1 GNU privacy guard - signature verification
t
ii graphviz 2.20.2-3ubuntu rich set of graph drawing tools
ii grep 2.5.3~dfsg-6ub GNU grep, egrep and fgrep
ii gri 2.12.18-1 a language for scientific illustration
ii gri-el 2.12.18-1 Emacs major-mode for gri, a language for
sci
ii gri-html-doc 2.12.18-1 HTML manual for gri, a language for
scientif
ii grip 3.3.1-16 GNOME-based CD-player/ripper/encoder
ii groff 1.18.1.1-21 GNU troff text-formatting system
ii groff-base 1.18.1.1-21 GNU troff text-formatting system (base
syste
ii grub 0.97-29ubuntu4 GRand Unified Bootloader
ii gs-common 8.64.dfsg.1-0u Dummy package depending on ghostscript
ii gs-esp 8.64.dfsg.1-0u Transitional package
ii gs-esp-x 8.64.dfsg.1-0u Transitional package
ii gsfonts 1:8.11+urwcyr1 Fonts for the Ghostscript interpreter(s)
ii gsfonts-x11 0.21 Make Ghostscript fonts available to X11
ii gsl-bin 1.12+dfsg-1 GNU Scientific Library (GSL) -- binary
packa
ii gstreamer0.10- 0.10.22-1 GStreamer plugin for ALSA
ii gstreamer0.10- 0.10.13-2 GStreamer plugin for ESD
ii gstreamer0.10- 0.10.6-1 FFmpeg plugin for GStreamer
ii gstreamer0.10- 0.10.22-1 GStreamer plugin for GnomeVFS
ii gstreamer0.10- 0.9.1.1+cvs200 GStreamer plugin for using MS Windows
binary
ii gstreamer0.10- 0.10.10-1 GStreamer plugins from the "bad" set
ii gstreamer0.10- 0.10.6-1ubuntu GStreamer plugins from the "bad" set
(Multiv
ii gstreamer0.10- 0.10.22-1 GStreamer plugins from the "base" set
ii gstreamer0.10- 0.10.22-1 GStreamer helper programs from the "base"
se
ii gstreamer0.10- 0.10.13-2 GStreamer plugins from the "good" set
ii gstreamer0.10- 0.10.10-1 GStreamer plugins from the "ugly" set
ii gstreamer0.10- 0.10.13-2 GStreamer plugin for PulseAudio
ii gstreamer0.10- 1.0.5-1 GStreamer plugin for encoding/decoding of
Di
ii gstreamer0.10- 0.10.22-1 Tools for use with GStreamer
ii gstreamer0.10- 0.10.22-1 GStreamer plugins for X11 and Pango
ii gthumb 3:2.10.10-0ubu an image viewer and browser
ii gthumb-data 3:2.10.10-0ubu an image viewer and browser -
arch-independe
ii gtk2-engines 1:2.17.0-0ubun theme engines for GTK+ 2.x
ii gtk2-engines-m 0.60.1 cairo-based gtk+-2.0 theme engine
ii gtk2-engines-p 2.15.3-0ubuntu Pixbuf-based theme for GTK+ 2.x
ii gtkglarea5 1.2.3-5 shared library for the GTK+ OpenGL area
widg
ii gucharmap 1:2.24.2-0ubun Unicode character picker and font browser
ii guidance-backe 0.8.0svn200801 collection of system administration tools
fo
ii guile-1.6 1.6.8-6.1ubunt The GNU extension language and Scheme
interp
ii guile-1.6-libs 1.6.8-6.1ubunt Main Guile libraries
ii guile-1.6-slib 1.6.8-6.1ubunt Guile SLIB support
ii guile-1.8-libs 1.8.5+1-4.1ubu Main Guile libraries
ii gv 1:3.6.5-2 PostScript and PDF viewer for X
ii gvfs 1.1.5-0ubuntu1 userspace virtual filesystem - server
ii gvfs-backends 1.1.5-0ubuntu1 userspace virtual filesystem - backends
ii gvfs-bin 1.1.5-0ubuntu1 userspace virtual filesystem - binaries
ii gvfs-fuse 1.1.5-0ubuntu1 userspace virtual filesystem - fuse server
ii gzip 1.3.12-6ubuntu The GNU compression utility
ii hal 0.5.12~rc1+git Hardware Abstraction Layer
ii hal-cups-utils 0.6.17+git2008 CUPS integration with HAL
ii hal-device-man 0.5.9.1-6ubunt Hardware Abstraction Layer user interface
ii hal-info 20090128-0ubun Hardware Abstraction Layer - fdi files
ii harminv 1.3.1-1.1 extraction of complex frequencies and
amplit
ii hdparm 8.9-3ubuntu3 tune hard disk parameters for high
performan
ii hicolor-icon-t 0.10-1ubuntu1 default fallback theme for FreeDesktop.org
i
ii hostname 2.95 utility to set/show the host name or
domain
ii hotkey-setup 0.1-23ubuntu8 auto-configures laptop hotkeys
ii hotwire 0.721-1 Extensible graphical command execution
shell
ii hp-netconnect 1.2-9 HP Network Connect
ii hpijs 2.8.12-1ubuntu HP Linux Printing and Imaging - gs IJS
drive
ii hplip 2.8.12-1ubuntu HP Linux Printing and Imaging System
(HPLIP)
ii hplip-data 2.8.12-1ubuntu HP Linux Printing and Imaging - data files
ii html2text 1.3.2a-5 advanced HTML to text converter
ii human-icon-the 0.31 Human Icon theme
ii human-theme 0.28.6 Human theme
ii hunspell-en-us 20070829-2ubun English_american dictionary for hunspell
ii hwdb-client-co 0.6.14 common files for Ubuntu Hardware Database
cl
ii hwdb-client-gn 0.6.14 Gnome client programs for the Ubuntu
Hardwar
rc hwtest 0.4 Transitional package to checkbox
ii hwtest-gtk 0.4 Transitional package to checkbox-gtk
ii ico 1:1.0.2-0ubunt X client - ico
ii icoutils 0.26.0-2 Create and extract MS Windows icons and
curs
ii idle 2.5.2-3ubuntu1 An IDE for Python using Tkinter (default
ver
ii iftop 0.17-8 displays bandwidth usage information on an
n
ii ifupdown 0.6.8ubuntu15 high level tools to configure network
interf
ii im-switch 1.16ubuntu1 Input method switch framework
ii indent 2.2.10-1 C language source code formatting program
ii info 4.11.dfsg.1-4 Standalone GNU Info documentation browser
ii initramfs-tool 0.92bubuntu19 tools for generating an initramfs
ii initscripts 2.86.ds1-61ubu Scripts for initializing and shutting down
t
ii inkscape 0.46-5ubuntu1 vector-based drawing program
ii inputattach 1.23-0ubuntu2 utility to attach serial devices to the
inpu
ii intltool 0.40.5-1 Utility scripts for internationalizing XML
ii intltool-debia 0.35.0+2006071 Help i18n of RFC822 compliant config files
ii iodbc 3.52.6-3 GTK+ config frontend for the iODBC Driver
Ma
ii iproute 20080725-2 networking and traffic control tools
ii iptables 1.4.1.1-4ubunt administration tools for packet filtering
an
ii iputils-arping 3:20071127-1 Tool to send ICMP echo requests to an ARP
ad
ii iputils-ping 3:20071127-1 Tools to test the reachability of network
ho
ii iputils-tracep 3:20071127-1 Tools to trace the network path to a
remote
ii ipython 0.8.4-1 enhanced interactive Python shell
ii ironpython 1.1.1-2 A Python implementation targeting the .NET
a
ii iso-codes 3.5.1-1 ISO language, territory, currency, script
co
ii itcl3 3.2.1-5 [incr Tcl] OOP extension for Tcl -
run-time
ii itk3 3.2.1-5 [incr Tk] OOP extension for Tk - run-time
fi
ii iwidgets4 4.0.1-5 [incr Widgets] Tk-based widget collection
-
ii java-common 0.30ubuntu4 Base of all Java packages
ii javascript-com 5 Base support for javascript library
packages
ii jockey-common 0.5~beta3-0ubu user interface and desktop integration for
d
ii jockey-gtk 0.5~beta3-0ubu GNOME user interface and desktop
integration
ii jpeginfo 1.6.0-4 Prints information and tests integrity of
JP
ii js2-mode 0~20080616a-1 Emacs mode for editing Javascript programs
ii junit 3.8.2-1ubuntu2 Automated testing framework for Java
ii junit4 4.3.1-4 JUnit regression test framework for Java
ii jython 2.2.1-2ubuntu2 Python seamlessly integrated with Java
ii kbd 1.14.1-4ubuntu Linux console font and keytable utilities
ii kbuild 1:0.1.5svn2062 framework for writing simple makefiles for
c
ii kde-icons-oxyg 4:4.2.0-0ubunt Oxygen icon theme for KDE 4
ii kde-window-man 4:4.2.0-0ubunt the KDE 4 window manager (KWin)
ii kdebase-runtim 4:4.2.0-0ubunt runtime components from the official KDE 4
r
ii kdebase-runtim 4:4.2.0-0ubunt core binaries for the KDE 4 base runtime
mod
ii kdebase-runtim 4:4.2.0-0ubunt shared data files for the KDE 4 base
runtime
ii kdebase-runtim 4:4.2.0-0ubunt shared data files for the KDE 4 base
runtime
ii kdebase-worksp 4:4.2.0-0ubunt libraries provided by the KDE 4 base
workspa
ii kdelibs-bin 4:4.2.0-0ubunt executables for all KDE 4 core
applications
ii kdelibs-data 4:3.5.10.dfsg. core shared data for all KDE applications
ii kdelibs4c2a 4:3.5.10.dfsg. core libraries and binaries for all KDE
appl
ii kdelibs5 4:4.2.0-0ubunt core libraries for all KDE 4 applications
ii kdelibs5-data 4:4.2.0-0ubunt core shared data for all KDE 4
applications
ii kdiff3 0.9.92-2ubuntu compares and merges 2 or 3 files or
director
ii kernel-package 11.015 A utility for building Linux kernel
related
ii ketchup 0.9.8+hg5533f6 update utility for linux-kernel sources
ii khelpcenter 4:4.2.0-0ubunt metapackage for the help center for KDE4
ii khelpcenter4 4:4.2.0-0ubunt Help Center for KDE 4
ii kicad 0.0.20080825c- Electronic schematic and PCB design
software
ii kicad-common 0.0.20080825c- Common files used by kicad
ii klibc-utils 1.5.14-1~exp1u small utilities built with klibc for early
b
ii klogd 1.5-5ubuntu3 Kernel Logging Daemon
ii kompare 4:4.2.0-0ubunt file difference viewer for KDE 4
ii konsole 4:4.2.0-0ubunt X terminal emulator for KDE 4
ii kpovmodeler 5:1.1.3-kde4.1 a KDE 4 graphical editor for povray scenes
ii kst 1.7.0-1 A KDE application used for displaying
scient
ii kst-bin 1.7.0-1 A KDE application used for displaying
scient
ii kst-doc 1.7.0-1 Documentation for the kst application for
di
ii kst-plugins 1.7.0-1 Plugins for the kst application for
displayi
ii ksvg 4:3.5.9-0ubunt SVG viewer for KDE
ii kwalify 0.7.1-1 a tiny schema validator for YAML documents
ii lacheck 1.26-11.1 A simple syntax checker for LaTeX
ii lame 3.98-0.0 LAME Ain't an MP3 Encoder
ii landscape-clie 1.0.25-0ubuntu The Landscape administration system client
ii landscape-comm 1.0.25-0ubuntu The Landscape administration system client
ii language-pack- 1:8.10+2008110 translation updates for language English
ii language-pack- 1:8.10+2008110 translations for language English
ii language-pack- 1:8.10+2008110 GNOME translation updates for language
Engli
ii language-pack- 1:8.10+2008110 GNOME translations for language English
ii language-selec 0.3.20 Language selector for Ubuntu Linux
ii language-selec 0.3.20 Language selector for Ubuntu Linux
ii language-suppo 1:8.10+2008070 metapackage for English language support
ii language-suppo 1:8.10+2008070 Additional translations metapackage for
Engl
ii language-suppo 1:8.10+2008090 Writing aids metapackage for English
ii laptop-detect 0.13.7ubuntu1 attempt to detect a laptop
ii laptop-mode-to 1.45-1ubuntu4 Scripts to spin down hard drive and save
pow
ii latex-beamer 3.07-1.1ubuntu LaTeX class to produce presentations
ii latex-xcolor 2.11-1 Easy driver-independent TeX class for
color
ii latex-xft-font 0.1-8 Xft-compatible versions of some LaTeX
fonts
ii launchpad-inte 0.1.21 launchpad integration
ii less 418-1 Pager program similar to more
ii lesstif2 1:0.95.0-2.1ub OSF/Motif 2.1 implementation released
under
ii lftp 3.7.5-1 Sophisticated command-line FTP/HTTP client
p
ii lib64mudflap0 4.3.3-3ubuntu1 GCC mudflap shared support libraries
(64bit)
ii liba52-0.7.4 0.7.4-11ubuntu library for decoding ATSC A/52 streams
ii libaa1 1.4p5-37build1 ascii art library
ii libacl1 2.2.47-2 Access control list shared library
ii libaio-dev 0.3.107-3ubunt Linux kernel AIO access library -
developmen
ii libaio1 0.3.107-3ubunt Linux kernel AIO access library - shared
lib
ii libalut0 1.1.0-2 OpenAL Utility Toolkit
ii libao2 0.8.8-4 Cross Platform Audio Output Library
ii libapm1 3.2.2-12ubuntu Library for interacting with APM driver in
k
ii libapparmor-pe 2.3+1289-0ubun AppArmor library Perl bindings
ii libapparmor1 2.3+1289-0ubun changehat AppArmor library
ii libappconfig-p 1.56-2 Perl module for configuration file and
comma
ii libapr1 1.2.12-5 The Apache Portable Runtime Library
ii libaprutil1 1.2.12+dfsg-8 The Apache Portable Runtime Utility
Library
ii libarchive1 2.4.17-2 Single library to read/write tar, cpio,
pax,
ii libart-2.0-2 2.3.20-2 Library of functions for 2D graphics -
runti
ii libart-2.0-dev 2.3.20-2 Library of functions for 2D graphics -
devel
ii libart2.0-cil 2.20.1-1ubuntu CLI binding for libart 2.3
ii libarts1c2a 1.5.10-0ubuntu aRts sound system core components
ii libartsc0 1.5.10-0ubuntu aRts sound system C support library
ii libasio-dev 1.3.1-1ubuntu1 cross-platform C++ library for network
progr
ii libasound2 1.0.18-1ubuntu shared library for ALSA applications
ii libasound2-plu 1.0.18-1ubuntu ALSA library additional plugins
ii libaspell15 0.60.6-1 GNU Aspell spell-checker runtime library
ii libatk1-ruby1. 0.17.0~rc1-6ub ATK bindings for the Ruby language
ii libatk1.0-0 1.25.2-0ubuntu The ATK accessibility toolkit
ii libatk1.0-dev 1.25.2-0ubuntu Development files for the ATK
accessibility
ii libatm1 2.4.1-17.2 shared library for ATM (Asynchronous
Transfe
ii libatomic-ops- 1.2+cvs2008081 A library for atomic operations
(development
ii libatspi1.0-0 1.25.5-0ubuntu C binding libraries of at-spi for GNOME
Acce
ii libattr1 1:2.4.43-1 Extended attribute shared library
ii libaudio-dev 1.9.1-5 Network Audio System - development files
ii libaudio2 1.9.1-5 Network Audio System - shared libraries
ii libaudiofile0 0.2.6-7ubuntu1 Open-source version of SGI's audiofile
libra
ii libauthen-sasl 2.12-1 Authen::SASL - SASL Authentication
framework
ii libavahi-clien 0.6.23-4ubuntu Avahi client library
ii libavahi-commo 0.6.23-4ubuntu Avahi common data files
ii libavahi-commo 0.6.23-4ubuntu Avahi common library
ii libavahi-compa 0.6.23-4ubuntu Avahi Apple Bonjour compatibility library
ii libavahi-core5 0.6.23-4ubuntu Avahi's embeddable mDNS/DNS-SD library
ii libavahi-glib1 0.6.23-4ubuntu Avahi glib integration library
ii libavahi-gobje 0.6.23-4ubuntu Avahi GObject library
ii libavahi-qt3-1 0.6.23-4ubuntu Avahi Qt 3 integration library
rc libavahi-ui0 0.6.23-2ubuntu Avahi GTK+ User interface library
ii libavahi1.0-ci 0.6.19-2 CLI bindings for Avahi
ii libavc1394-0 0.5.3-1build1 control IEEE 1394 audio/video devices
ii libavcodec-uns 3:0.svn2009011 ffmpeg codec library
rc libavcodec51 3:0.svn2008020 ffmpeg codec library
ii libavformat52 3:0.svn2009011 ffmpeg file format library
ii libavutil-unst 3:0.svn2009011 ffmpeg utility library
ii libbabl-0.0-0 0.0.22-1 Dynamic, any to any, pixel format
conversion
ii libbackport-ut 2.2+dfsg-1ubun backport of java.util.concurrent to Java
1.4
ii libbcel-java 5.2-3ubuntu2 Analyze, create, and manipulate (binary)
Jav
ii libbeagle0 0.2.18-0ubuntu library for accessing beagle using C
ii libbeagle1 0.3.5-2 library for accessing beagle using C
ii libbeecrypt6 4.1.2-7 open source C library of cryptographic
algor
ii libbind9-40 1:9.5.0.dfsg.P BIND9 Shared Library used by BIND
ii libblas3gf 1.2-2 Basic Linear Algebra Subroutines 3, shared
l
ii libblkid1 1.41.3-1ubuntu block device id library
ii libbluetooth2 3.36-1 Library to use the BlueZ Linux Bluetooth
sta
ii libbluetooth3 4.27-0ubuntu1 Library to use the BlueZ Linux Bluetooth
sta
ii libbonobo2-0 2.24.0-0ubuntu Bonobo CORBA interfaces library
ii libbonobo2-com 2.24.0-0ubuntu Bonobo CORBA interfaces library -- support
f
ii libbonoboui2-0 2.24.0-0ubuntu The Bonobo UI library
ii libbonoboui2-c 2.24.0-0ubuntu The Bonobo UI library -- common files
ii libboost-date- 1.34.1-15ubunt set of date-time libraries based on
generic
ii libboost-date- 1.34.1-15ubunt set of date-time libraries based on
generic
ii libboost-dbg 1.34.1-15ubunt Boost C++ Libraries with debug symbols
ii libboost-dev 1.34.1-15ubunt Boost C++ Libraries development files
ii libboost-doc 1.34.1-15ubunt Boost.org libraries documentation
ii libboost-files 1.34.1-15ubunt filesystem operations (portable paths,
itera
ii libboost-files 1.34.1-15ubunt filesystem operations (portable paths,
itera
ii libboost-forea 0.1.1-1 Boost foreach library
ii libboost-graph 1.34.1-15ubunt generic graph components and algorithms in
C
ii libboost-intru 0.svn.38351-1 Boost intrusive containers library
ii libboost-iostr 1.34.1-15ubunt Boost.Iostreams Library development files
ii libboost-iostr 1.34.1-15ubunt Boost.Iostreams Library
ii libboost-progr 1.34.1-15ubunt program options library for C++
ii libboost-progr 1.34.1-15ubunt program options library for C++
ii libboost-pytho 1.34.1-15ubunt Boost.Python Library development files
ii libboost-pytho 1.34.1-15ubunt Boost.Python Library
ii libboost-regex 1.34.1-15ubunt regular expression library for C++
ii libboost-regex 1.34.1-15ubunt regular expression library for C++
ii libboost-seria 1.34.1-15ubunt serialization library for C++
ii libboost-seria 1.34.1-15ubunt serialization library for C++
ii libboost-signa 1.34.1-15ubunt managed signals and slots library for C++
ii libboost-signa 1.34.1-15ubunt managed signals and slots library for C++
ii libboost-test- 1.34.1-15ubunt components for writing and executing test
su
ii libboost-test1 1.34.1-15ubunt components for writing and executing test
su
ii libboost-threa 1.34.1-15ubunt portable C++ multi-threading
ii libboost-threa 1.34.1-15ubunt portable C++ multi-threading
ii libboost-wave- 1.34.1-15ubunt C99/C++ preprocessor library
ii libboost-wave1 1.34.1-15ubunt C99/C++ preprocessor library
ii libbrasero-med 0.9.1-0ubuntu2 CD/DVD burning application for GNOME -
runti
ii libbrlapi0.5 3.10-0ubuntu3 braille display access via BRLTTY - shared
l
ii libbrlapi1 3.7.2-7.1ubunt braille display access via BRLTTY - shared
l
ii libbsd-resourc 1.2901-1 BSD process resource limit and priority
func
ii libbz2-1.0 1.0.5-1ubuntu1 high-quality block-sorting file compressor
l
ii libbz2-dev 1.0.5-1ubuntu1 high-quality block-sorting file compressor
l
ii libc6 2.9-0ubuntu9 GNU C Library: Shared libraries
ii libc6-amd64 2.9-0ubuntu9 GNU C Library: 64bit Shared libraries for
AM
ii libc6-dbg 2.9-0ubuntu9 GNU C Library: Libraries with debugging
symb
ii libc6-dev 2.9-0ubuntu9 GNU C Library: Development Libraries and
Hea
ii libc6-i686 2.9-0ubuntu9 GNU C Library: Shared libraries [i686
optimi
ii libc6-prof 2.9-0ubuntu9 GNU C Library: Profiling Libraries
ii libcaca0 0.99.beta16-1 colour ASCII art library
ii libcairo-perl 1.060-1 Perl interface to the Cairo graphics
library
ii libcairo-ruby1 1.6.3-1 Cairo bindings for the Ruby language
ii libcairo2 1.8.6-1ubuntu1 The Cairo 2D vector graphics library
ii libcairo2-dev 1.8.6-1ubuntu1 Development files for the Cairo 2D
graphics
ii libcairomm-1.0 1.6.4-1 C++ wrappers for Cairo (shared libraries)
ii libcairomm-1.0 1.6.4-1 C++ wrappers for Cairo (development files)
ii libcamel1.2-10 2.21.5.1-0ubun The Evolution MIME message handling
library
ii libcamel1.2-14 2.24.3-0ubuntu The Evolution MIME message handling
library
ii libcanberra-gt 0.11-1ubuntu1 Gtk+ helper for playing widget event
sounds
ii libcanberra0 0.11-1ubuntu1 a simple abstract interface for playing
even
ii libcap1 1:1.10-14build support for getting/setting POSIX.1e
capabil
ii libcap2 2.11-2 support for getting/setting POSIX.1e
capabil
ii libcapseo0 0.3.0+svn20070 video codec (library files)
ii libcaptury0 0.3.0+svn20070 Captury framework library
ii libcdaudio1 0.99.12p2-7 library for controlling a CD-ROM when
playin
ii libcdio-cdda0 0.78.2+dfsg1-3 library to read and control digital audio
CD
ii libcdio-parano 0.78.2+dfsg1-3 library to read digital audio CDs with
error
ii libcdio6 0.76-1ubuntu2. library to read and control CD-ROM
ii libcdio7 0.78.2+dfsg1-3 library to read and control CD-ROM
ii libcdparanoia0 3.10.2+debian- audio extraction tool for sampling CDs
(libr
ii libcelt0 0.4.0-1 The CELT codec runtime library
ii libcfitsio3 3.090-1 shared library for I/O with FITS format
data
ii libck-connecto 0.3-0ubuntu3 ConsoleKit libraries
ii libclass-acces 0.31-2 Automated accessor generator
ii libclass-data- 0.04004-1 Inheritable, overridable class and
instance
ii libclass-data- 0.08-1 Inheritable, overridable class data
ii libclass-singl 1.4-1 implementation of a "Singleton" class
ii libclass-throw 0.10-2 A minimal lightweight exception class
ii libclucene0ldb 0.9.20-3 library for full-featured text search
engine
ii libcolamd-3.2. 1:3.2.0-1ubunt collection of libraries for computations
for
ii libcomerr2 1.41.3-1ubuntu common error description library
ii libcommons-bea 1.8.0~beta-1ub utility for manipulating JavaBeans
ii libcommons-cod 1.3-4ubuntu1 encoder and decoders such as Base64 and
hexa
ii libcommons-col 2.1.1-8ubuntu1 A set of abstract data type interfaces and
i
ii libcommons-col 3.2.1-1ubuntu2 A set of abstract data type interfaces and
i
ii libcommons-dbc 1.2.2-1ubuntu1 Database Connection Pooling Services
ii libcommons-dig 1.8-2ubuntu1 Rule based XML Java object mapping tool
ii libcommons-el- 1.0-4 Implementation of the JSP2.0 Expression
Lang
ii libcommons-htt 3.1-2ubuntu1 A Java(TM) library for creating HTTP
clients
ii libcommons-lau 1.1-3ubuntu1 cross platform java application launcher
ii libcommons-log 1.1.1-2 commmon wrapper interface for several
loggin
ii libcommons-mod 2.0.1-4 convenience library to use Java Management
E
ii libcommons-poo 1.3-1ubuntu2 pooling implementation for Java objects
ii libcompizconfi 0.7.8-0ubuntu2 Settings library for plugins -
OpenCompositi
ii libcompress-ra 2.015-1 low-level interface to zlib compression
libr
ii libcompress-zl 2.015-1 Perl module for creation and manipulation
of
ii libconfig-any- 0.16-1 Load configuration from different file
forma
ii libconfig-gene 2.40-1 Generic Configuration Module
ii libconfig-tiny 2.12-1 Read/Write .ini style files with as little
c
ii libconfig-yaml 1.42-1 Simple configuration automation
ii libconfuse0 2.6-2 Library for parsing configuration files
ii libconsole 1:0.2.3dbs-65. Shared libraries for Linux console and
font
ii libconvert-asn 0.22-1 Perl module for encoding and decoding
ASN.1
ii libcroco3 0.6.1-2 a generic Cascading Style Sheet (CSS)
parsin
ii libcrypt-des-p 2.05-2build1 Perl DES encryption module
ii libcrypt-smbha 0.12-2 generate LM/NT hash of a password for
samba
ii libcryptui0 2.25.4-0ubuntu the UI library for DBUS functions exported
b
ii libcsiro0 5.9.0-8ubuntu1 Scientific plotting library
ii libcss-perl 1.07-2 CSS - Object oriented access to Cascading
St
ii libct3 0.63-3.2ubuntu libraries for connecting to MS SQL and
Sybas
ii libct4 0.82-4 libraries for connecting to MS SQL and
Sybas
ii libcucul0 0.99.beta16-1 transitional dummy package
ii libcups2 1.3.9-12 Common UNIX Printing System(tm) - libs
ii libcups2-dev 1.3.9-12 Common UNIX Printing System(tm) -
developmen
ii libcupsimage2 1.3.9-12 Common UNIX Printing System(tm) - image
libs
ii libcupsys2 1.3.9-12 Common UNIX Printing System (transitional
pa
ii libcupsys2-dev 1.3.9-12 Common UNIX Printing System (transitional
pa
ii libcurl3 7.18.2-8ubuntu Multi-protocol file transfer library
(OpenSS
ii libcurl3-gnutl 7.18.2-8ubuntu Multi-protocol file transfer library
(GnuTLS
ii libcwidget3 0.5.12-3ubuntu high-level terminal interface library for
C+
ii libdaemon0 0.13-2 lightweight C library for daemons -
runtime
ii libdata-showta 3.3-6 Print arrays of data in a formatted
listing
ii libdate-manip- 5.54-1 a perl library for manipulating dates
ii libdatetime-fo 1.0702-2 Parse and format strp and strf time
patterns
ii libdatetime-fo 0.04-3 Parse and format W3CDTF datetime strings
ii libdatetime-lo 1:0.35-1+1.5.0 perl DateTime::Locale - Localization
support
ii libdatetime-pe 2:0.42-1 perl DateTime - Reference implementation
for
ii libdatetime-ti 1:0.83-1+2008i perl DateTime::TimeZone - Time zone object
b
ii libdatrie0 0.1.3-2 Double-array trie library
ii libdb4.2 4.2.52+dfsg-5 Berkeley v4.2 Database Libraries [runtime]
ii libdb4.3 4.3.29-11ubunt Berkeley v4.3 Database Libraries [runtime]
ii libdb4.4 4.4.20-12 Berkeley v4.4 Database Libraries [runtime]
ii libdb4.6 4.6.21-12 Berkeley v4.6 Database Libraries [runtime]
ii libdb4.7 4.7.25-6ubuntu Berkeley v4.7 Database Libraries [runtime]
ii libdbd-mysql-p 4.008-1 A Perl5 database interface to the MySQL
data
ii libdbi-perl 1.607-1 Perl5 database interface by Tim Bunce
ii libdbus-1-3 1.2.12-0ubuntu simple interprocess messaging system
ii libdbus-glib-1 0.78-1 simple interprocess messaging system
(GLib-b
ii libdc1394-22 2.0.2-1 high level programming interface for
IEEE139
ii libdecoration0 1:0.7.8-0ubunt Compiz window decoration library
ii libdeskbar-tra 0.6.6-2ubuntu2 metadata database, indexer and search tool
-
ii libdevel-stack 1.2000-1 Stack trace and stack trace frame objects
ii libdevmapper1. 2:1.02.27-4ubu The Linux Kernel Device Mapper userspace
lib
ii libdigest-hmac 1.01-7 create standard message integrity checks
ii libdigest-md4- 1.5.dfsg-1.2bu MD4 Message Digest for Perl
ii libdigest-perl 1.15-2 generic interface to message digest
modules
ii libdigest-sha- 5.47-1 Perl extension for SHA-1/224/256/384/512
ii libdigest-sha1 2.11-2build2 NIST SHA-1 message digest algorithm
ii libdirectfb-0. 0.9.25.1-6ubun direct frame buffer graphics - shared
librar
ii libdirectfb-1. 1.0.1-11ubuntu direct frame buffer graphics - shared
librar
ii libdirectfb-de 1.0.1-11ubuntu direct frame buffer graphics library -
devel
ii libdirectfb-ex 1.0.1-11ubuntu direct frame buffer graphics - extra
provide
ii libdiscover2 2.1.2-3 hardware identification library
ii libdjvulibre-t 3.5.21-3ubuntu Linguistic support files for libdjvulibre
ii libdjvulibre15 3.5.20-2 Runtime support for the DjVu image format
ii libdjvulibre21 3.5.21-3ubuntu Runtime support for the DjVu image format
ii libdmalloc-dev 5.5.1-1 debug memory allocation library
(development
ii libdmalloc5 5.5.1-1 debug memory allocation library
ii libdmx1 1:1.0.2-3 X11 Distributed Multihead extension
library
ii libdns43 1:9.5.0.dfsg.P DNS Shared Library used by BIND
ii libdom4j-java 1.6.1+dfsg-3ub flexible XML framework for Java
ii libdrm-intel1 2.4.4-0ubuntu6 Userspace interface to intel-specific
kernel
ii libdrm2 2.4.4-0ubuntu6 Userspace interface to kernel DRM services
-
ii libdti-contain 0.1.1-1 DTI library containers
ii libdumbnet1 1.8-1.5 A dumb, portable networking library
ii libdv4 1.0.0-1ubuntu2 software library for DV format digital
video
ii libdvdnav4 4.1.2-3 DVD navigation library
ii libdvdread3 0.9.7-11ubuntu library for reading DVDs
ii libebackend1.2 2.24.3-0ubuntu Utility library for evolution data servers
ii libebook1.2-9 2.24.3-0ubuntu Client library for evolution address books
ii libecal1.2-7 2.24.3-0ubuntu Client library for evolution calendars
ii libecj-java 3.3.0+0728-10 Eclipse Java compiler (library)
ii libecj-java-gc 3.3.0+0728-10 Eclipse Java compiler (native library)
ii libedata-book1 2.24.3-0ubuntu Backend library for evolution address
books
ii libedata-cal1. 2.24.3-0ubuntu Backend library for evolution calendars
ii libedataserver 2.24.3-0ubuntu Utility library for evolution data servers
ii libedataserver 2.22.3-0ubuntu Utility library for evolution data servers
ii libedataserver 2.24.3-0ubuntu GUI utility library for evolution data
serve
ii libedit2 2.11~20080614- BSD editline and history libraries
ii libeel2-2 2.24.1-0ubuntu Eazel Extensions Library (for GNOME2)
ii libeel2-data 2.24.1-0ubuntu Eazel Extensions Library - data files (for
G
ii libegroupwise1 2.24.3-0ubuntu Client library for accessing groupwise POA
t
ii libelf1 0.131-4 library to read and write ELF files
ii libelfg0 0.8.10-2 an ELF object file access library
ii libenchant1c2a 1.4.2-3.3ubunt a wrapper library for various spell
checker
ii libept0 0.5.26 High-level library for managing Debian
packa
ii liberror-perl 0.17-1 Perl module for error/exception handling
in
ii libesd-alsa0 0.2.40-0ubuntu Enlightened Sound Daemon (ALSA) - Shared
lib
ii libespeak1 1.39-0ubuntu1 A multi-lingual software speech
synthesizer:
ii libexception-c 1.26-1 module that allows you to declare real
excep
ii libexchange-st 2.24.3-0ubuntu Client library for accessing Exchange
server
ii libexempi3 2.0.2-2 library to parse XMP metadata (Library)
ii libexif12 0.6.16-2.1ubun library to parse EXIF files
ii libexiv2-4 0.17.1-1 EXIF/IPTC metadata manipulation library
ii libexpat1 2.0.1-4 XML parsing C library - runtime library
ii libexpat1-dev 2.0.1-4 XML parsing C library - development kit
ii libfaac0 1.26-0.1ubuntu an AAC audio encoder - library files
ii libfaad0 2.6.1-3.1 freeware Advanced Audio Decoder - runtime
fi
ii libfbclient2 2.1.1.17910-re Firebird client library
ii libffi-dev 3.0.7-1ubuntu1 Foreign Function Interface library
(developm
ii libffi5 3.0.7-1ubuntu1 Foreign Function Interface library runtime
ii libfftw3-3 3.1.2-3.1ubunt library for computing Fast Fourier
Transform
ii libflac8 1.2.1-1.2 Free Lossless Audio Codec - runtime C
librar
ii libflash-swfpl 0.4.13-9ubuntu GPL Flash (SWF) Library - stand-alone
player
ii libflash0c2 0.4.13-9ubuntu GPL Flash (SWF) Library - shared library
ii libflickrnet2. 25277-6ubuntu3 Flickr.Net API Library
ii libfltk1.1 1.1.9-6 Fast Light Toolkit - shared libraries
ii libfontconfig1 2.6.0-1ubuntu4 generic font configuration library -
runtime
ii libfontconfig1 2.6.0-1ubuntu4 generic font configuration library -
develop
ii libfontenc1 1:1.0.4-3 X11 font encoding library
ii libfreebob0 1.0.11-0ubuntu FreeBoB API
ii libfreetype6 2.3.7-2ubuntu1 FreeType 2 font engine, shared library
files
ii libfreetype6-d 2.3.7-2ubuntu1 FreeType 2 font engine, development files
ii libfribidi0 0.10.9-1 Free Implementation of the Unicode BiDi
algo
ii libfrontier-rp 0.07b4-4 Perl module to implement RPC calls using
XML
ii libfs6 2:1.0.1-1 X11 Font Services library
ii libftgl2 2.1.3~rc5-2 library to render text in OpenGL using
FreeT
ii libfuse-dev 2.7.4-1.1ubunt Filesystem in USErspace (development
files)
ii libfuse2 2.7.4-1.1ubunt Filesystem in USErspace library
ii libgadu3 1:1.8.0+r592-3 Gadu-Gadu protocol library - runtime files
ii libgail-common 2.15.3-0ubuntu GNOME Accessibility Implementation Library
-
ii libgail-gnome- 1.20.1-1ubuntu GNOME Accessibility Implementation Module
fo
ii libgail18 2.15.3-0ubuntu GNOME Accessibility Implementation Library
-
ii libgamin0 0.1.9-2ubuntu3 Client library for the gamin file and
direct
ii libgc1c2 1:6.8-1.2 conservative garbage collector for C and
C++
ii libgcc1 1:4.3.3-3ubunt GCC support library
ii libgcc1-dbg 1:4.3.3-3ubunt GCC support library (debug symbols)
ii libgcj-bc 4.3.2-2ubuntu1 Link time only library for use with gcj
ii libgcj-common 1:4.3.2-2ubunt Java runtime library (common files)
ii libgcj7-1 4.1.2-18ubuntu Java runtime library for use with gcj
ii libgcj8-1 4.2.4-5ubuntu1 Java runtime library for use with gcj
ii libgcj9-0 4.3.3-1ubuntu1 Java runtime library for use with gcj
ii libgconf2-4 2.25.0-0ubuntu GNOME configuration database system
(shared
ii libgconf2.0-ci 2.20.1-1ubuntu CLI binding for GConf 2.20
ii libgcrypt11 1.4.1-2ubuntu1 LGPL Crypto library - runtime library
ii libgcrypt11-de 1.4.1-2ubuntu1 LGPL Crypto library - development files
ii libgcrypt11-do 1.4.1-2ubuntu1 LGPL Crypto library - documentation
ii libgd2-xpm 2.0.36~rc1~dfs GD Graphics Library version 2
ii libgda2-3 1.2.4-1.3 GNOME Data Access library for GNOME2
ii libgda2-common 1.2.4-1.3 Common files for GNOME Data Access library
f
ii libgda3-3 3.0.2-5ubuntu1 GNOME Data Access library for GNOME2
ii libgda3-common 3.0.2-5ubuntu1 Common files for GNOME Data Access library
f
ii libgdata-googl 2.24.3-0ubuntu Client library for accessing Google POA
thro
ii libgdata1.2-1 2.24.3-0ubuntu Client library for accessing Google POA
thro
ii libgdbm3 1.8.3-4 GNU dbm database routines (runtime
version)
ii libgdict-1.0-6 2.25.90-0ubunt GNOME Dictionary base library
ii libgdiplus 2.0-1 interface library for System.Drawing of
Mono
ii libgdk-pixbuf2 0.17.0~rc1-6ub Gdk-Pixbuf 2 bindings for the Ruby
language
ii libgdl-1-0 2.24.0-3 GNOME DevTool libraries
ii libgdl-1-commo 2.24.0-3 GNOME DevTool libraries - common files
ii libgegl-0.0-0 0.0.20-1 Generic Graphics Library
ii libgfortran2 4.2.4-5ubuntu1 Runtime library for GNU Fortran
applications
ii libgfortran3 4.3.3-3ubuntu1 Runtime library for GNU Fortran
applications
ii libggz2 0.0.14.1-1buil GGZ Gaming Zone: common utilities library
ii libggzcore9 0.0.14.1-1ubun GGZ Gaming Zone: core client frontend
librar
ii libggzmod4 0.0.14.1-1ubun GGZ Gaming Zone: game frontend library
ii libgif-dev 4.1.6-6 library for GIF images (development)
ii libgif4 4.1.6-6 library for GIF images (library)
ii libgimp2.0 2.6.3-1ubuntu1 Libraries for the GNU Image Manipulation
Pro
ii libgksu1.2-1 1.3.8-2ubuntu1 library providing su and sudo
functionality
ii libgksu2-0 2.0.7-1ubuntu3 library providing su and sudo
functionality
ii libgksuui1.0-1 1.0.7-3ubuntu1 a graphical fronted to su library
ii libgl1-mesa-de 7.3-1ubuntu1 A free implementation of the OpenGL API --
G
ii libgl1-mesa-dr 7.3-1ubuntu1 A free implementation of the OpenGL API --
D
ii libgl1-mesa-gl 7.3-1ubuntu1 A free implementation of the OpenGL API --
G
ii libglade0 1:0.17-9ubuntu library to load .glade files at runtime
ii libglade0-dev 1:0.17-9ubuntu development files for libglade
ii libglade2-0 1:2.6.3-1 library to load .glade files at runtime
ii libglade2-dev 1:2.6.3-1 development files for libglade
ii libglade2.0-ci 2.12.7-1ubuntu CLI binding for the Glade libraries 2.6
ii libglew1.5 1.5.0dfsg1-3ub The OpenGL Extension Wrangler - runtime
envi
ii libglib-perl 1:1.190-2 Perl interface to the GLib and GObject
libra
ii libglib1.2-dev 1.2.10-19build The GLib library of C routines
(development)
ii libglib1.2ldbl 1.2.10-19build The GLib library of C routines
ii libglib2-ruby1 0.17.0~rc1-6ub Glib 2 bindings for the Ruby language
ii libglib2.0-0 2.19.6-0ubuntu The GLib library of C routines
ii libglib2.0-cil 2.12.7-1ubuntu CLI binding for the GLib utility library
2.1
ii libglib2.0-dev 2.19.6-0ubuntu Development files for the GLib library
ii libglib2.0-doc 2.19.6-0ubuntu Documentation files for the GLib library
ii libglibmm-2.4- 2.18.1-1 C++ wrapper for the GLib toolkit (shared
lib
ii libglibmm-2.4- 2.18.1-1 C++ wrapper for the GLib toolkit
(developmen
ii libglitz-glx1 0.5.6-1 Glitz OpenGL library GLX backend
ii libglitz1 0.5.6-1 Glitz OpenGL image compositing library
ii libgloox-dev 0.9.9.5-1build C++ jabber/xmpp library devel files
ii libgloox-doc 0.9.9.5-1build C++ jabber/xmpp library API documentation
ii libgloox7 0.9.9.5-1build C++ jabber/xmpp library
ii libglpk0 4.29-2 linear programming kit with integer (MIP)
su
ii libglu1-mesa 7.3-1ubuntu1 The OpenGL utility library (GLU)
ii libglu1-mesa-d 7.3-1ubuntu1 The OpenGL utility library -- development
fi
ii libgluezilla 2.0-1ubuntu1 glue library to embed Gecko in Mono's
WebCon
ii libglut3 3.7-25 the OpenGL Utility Toolkit
ii libgmime-2.0-2 2.2.22-2 MIME library
ii libgmime2.2-ci 2.2.22-2 CLI binding for the MIME library
ii libgmp3c2 2:4.2.2+dfsg-3 Multiprecision arithmetic library
ii libgmyth0 1:0.7.1-1 GObject based library for accessing MythTV
b
ii libgnome-deskt 1:2.23.2-0ubun Utility library for loading .desktop files
-
ii libgnome-deskt 1:2.25.5-0ubun Utility library for loading .desktop files
-
rc libgnome-deskt 1:2.24.1-1ubun Utility library for loading .desktop files
-
ii libgnome-keyri 2.25.4.1-0ubun GNOME keyring services library
ii libgnome-keyri 1.0.0~svn.r876 CLI library to access the GNOME Keyring
daem
ii libgnome-mag2 1:0.15.4-0ubun screen magnification library for the GNOME
d
ii libgnome-media 2.25.5-0ubuntu runtime libraries for the GNOME media
utilit
ii libgnome-menu2 2.25.5-0ubuntu an implementation of the freedesktop menu
sp
ii libgnome-pilot 2.0.15-2.4ubun Support libraries for gnome-pilot
ii libgnome-speec 1:0.4.23-0ubun GNOME text-to-speech library
ii libgnome-vfs2. 2.20.1-1ubuntu CLI binding for GnomeVFS 2.20
ii libgnome-windo 1:2.25.3-0ubun Utility library for getting window manager
s
ii libgnome2-0 2.24.1-1ubuntu The GNOME 2 library - runtime files
ii libgnome2-canv 1.002-1+b1ubun Perl interface to the GNOME canvas library
ii libgnome2-comm 2.24.1-1ubuntu The GNOME 2 library - common files
ii libgnome2-perl 1.042-1build2 Perl interface to the GNOME libraries
ii libgnome2-vfs- 1.080-1build2 Perl interface to the 2.x series of the
GNOM
ii libgnome2.0-ci 2.20.1-1ubuntu CLI binding for GNOME 2.20
ii libgnomecanvas 2.20.1.1-1ubun A powerful object-oriented display -
runtime
ii libgnomecanvas 2.20.1.1-1ubun A powerful object-oriented display -
common
ii libgnomecanvas 2.22.0-1 C++ wrappers for libgnomecanvas2 (shared
lib
ii libgnomecups1. 0.2.3-3 GNOME library for CUPS interaction
ii libgnomecupsui 0.31-3ubuntu5 UI extensions to libgnomecups
rc libgnomedb3-4 3.0.0-4build1 Database UI widget library for GNOME2
rc libgnomedb3-co 3.0.0-4build1 Database UI widget library for GNOME2 --
com
ii libgnomekbd-co 2.24.0-0ubuntu GNOME library to manage keyboard
configurati
ii libgnomekbd3 2.24.0-0ubuntu GNOME library to manage keyboard
configurati
ii libgnomekbdui3 2.24.0-0ubuntu User interface library for libgnomekbd -
sha
ii libgnomeprint2 2.18.5-1 The GNOME 2.2 print architecture - runtime
f
ii libgnomeprint2 2.18.5-1 The GNOME 2.2 print architecture - data
file
ii libgnomeprintu 2.18.3-1 GNOME 2.2 print architecture User
Interface
ii libgnomeprintu 2.18.3-1 GNOME 2.2 print architecture User
Interface
ii libgnomeui-0 2.24.0-1 The GNOME 2 libraries (User Interface) -
run
ii libgnomeui-com 2.24.0-1 The GNOME 2 libraries (User Interface) -
com
ii libgnomevfs2-0 1:2.24.0-1ubun GNOME Virtual File System (runtime
libraries
ii libgnomevfs2-b 1:2.24.0-1ubun GNOME Virtual File System (support
binaries)
ii libgnomevfs2-c 1:2.24.0-1ubun GNOME Virtual File System (common files)
ii libgnomevfs2-e 1:2.24.0-1ubun GNOME Virtual File System (extra modules)
ii libgnutls-dev 2.4.2-4 the GNU TLS library - development files
ii libgnutls13 2.0.4-1ubuntu3 the GNU TLS library - runtime library
ii libgnutls26 2.4.2-4 the GNU TLS library - runtime library
rc libgoffice-0-6 0.6.5-1ubuntu1 Document centric objects library - runtime
f
ii libgomp1 4.3.3-3ubuntu1 GCC OpenMP (GOMP) support library
ii libgoocanvas-c 0.13-1 new canvas widget for GTK+ that uses the
cai
ii libgoocanvas3 0.13-1 new canvas widget for GTK+ that uses the
cai
ii libgoogle-perf 0.98-1 libraries for CPU and heap analysis, plus
an
ii libgoogle-perf 0.98-1 libraries for CPU and heap analysis, plus
an
ii libgp11-0 2.25.4.1-0ubun Glib wrapper library for PKCS#11 - runtime
ii libgpg-error-d 1.4-2ubuntu7 library for common error values and
messages
ii libgpg-error0 1.4-2ubuntu7 library for common error values and
messages
ii libgpgme11 1.1.8-1ubuntu1 GPGME - GnuPG Made Easy
ii libgphoto2-2 2.4.2-0ubuntu4 gphoto2 digital camera library
ii libgphoto2-por 2.4.2-0ubuntu4 gphoto2 digital camera port library
ii libgpm2 1.20.4-3.1ubun General Purpose Mouse - shared library
ii libgpmg1 1.19.6-25ubunt General Purpose Mouse - shared library
ii libgpod-common 0.6.0-7 common files for libgpod
ii libgpod3 0.6.0-7 library to read and write songs and
artwork
ii libgraphviz4 2.20.2-3ubuntu rich set of graph drawing tools
ii libgs8 8.64.dfsg.1-0u The Ghostscript PostScript/PDF interpreter
L
ii libgsf-1-114 1.14.11-1ubunt Structured File Library - runtime version
ii libgsf-1-commo 1.14.11-1ubunt Structured File Library - common files
rc libgsf-gnome-1 1.14.10-3ubunt Structured File Library - runtime version
fo
ii libgsl0-dev 1.12+dfsg-1 GNU Scientific Library (GSL) --
development
ii libgsl0ldbl 1.12+dfsg-1 GNU Scientific Library (GSL) -- library
pack
ii libgsm1 1.0.12-1 Shared libraries for GSM speech compressor
ii libgstreamer-p 0.10.22-1 GStreamer libraries from the "base" set
ii libgstreamer0. 0.10.22-1 Core GStreamer libraries and elements
ii libgtk-vnc-1.0 0.3.8-2ubuntu1 A VNC viewer widget for GTK+ (runtime
librar
ii libgtk1.2 1.2.10-18.1bui The GIMP Toolkit set of widgets for X
ii libgtk1.2-comm 1.2.10-18.1bui Common files for the GTK+ library
ii libgtk1.2-dev 1.2.10-18.1bui Development files for the GIMP Toolkit
ii libgtk2-perl 1:1.190-1ubunt Perl interface to the 2.x series of the
Gimp
ii libgtk2-ruby1. 0.17.0~rc1-6ub GTK+ bindings for the Ruby language
ii libgtk2.0-0 2.15.3-0ubuntu The GTK+ graphical user interface library
ii libgtk2.0-bin 2.15.3-0ubuntu The programs for the GTK+ graphical user
int
ii libgtk2.0-cil 2.12.7-1ubuntu CLI binding for the GTK+ toolkit 2.12
ii libgtk2.0-comm 2.15.3-0ubuntu Common files for the GTK+ graphical user
int
ii libgtk2.0-dev 2.15.3-0ubuntu Development files for the GTK+ library
rc libgtkglext1 1.2.0-1ubuntu1 OpenGL Extension to GTK+ (shared
libraries)
ii libgtkhtml-edi 1:3.25.90-0ubu HTML rendering/editing library - editor
widg
ii libgtkhtml-edi 1:3.25.90-0ubu HTML rendering/editing library - editor
widg
ii libgtkhtml2-0 2.11.1-2ubuntu HTML rendering/editing library - runtime
fil
ii libgtkhtml3.14 1:3.25.90-0ubu HTML rendering/editing library - runtime
fil
ii libgtkhtml3.16 2.20.1-2ubuntu CLI binding for GtkHTML 3.16
ii libgtkhtml3.8- 1:3.13.5-1ubun HTML rendering/editing library - runtime
fil
ii libgtkmm-2.4-1 1:2.14.3-1 C++ wrappers for GTK+ 2.4 (shared
libraries)
ii libgtkmm-2.4-d 1:2.14.3-1 C++ wrappers for GTK+ 2.4 (development
files
ii libgtkmm-2.4-d 1:2.14.3-1 C++ wrappers for GTK+ 2.4 (documentation)
ii libgtksourcevi 1.8.5-2 common files for the GTK+ syntax
highlightin
ii libgtksourcevi 1.8.5-2 shared libraries for the GTK+ syntax
highlig
ii libgtksourcevi 2.5.3-0ubuntu1 shared libraries for the GTK+ syntax
highlig
ii libgtksourcevi 0.12-1 CLI binding for the gtksourceview library
ii libgtksourcevi 2.5.3-0ubuntu1 common files for the GTK+ syntax
highlightin
ii libgtkspell0 2.0.13-1 a spell-checking addon for GTK's TextView
wi
ii libgtop2-7 2.24.0-0ubuntu gtop system monitoring library
ii libgtop2-commo 2.24.0-0ubuntu common files for the gtop system
monitoring
ii libgucharmap6 1:2.22.1-1ubun Unicode browser widget library (shared
libra
ii libgucharmap7 1:2.24.2-0ubun Unicode browser widget library (shared
libra
ii libguile-ltdl- 1.6.8-6.1ubunt Guile's patched version of libtool's
libltdl
ii libgutenprint2 5.2.3-0ubuntu1 runtime for the Gutenprint printer driver
li
ii libgutenprintu 5.2.3-0ubuntu1 runtime for the Gutenprint printer driver
us
ii libgvfscommon0 1.1.5-0ubuntu1 userspace virtual filesystem - library
ii libgweather-co 2.25.5-0ubuntu GWeather common files
ii libgweather1 2.25.5-0ubuntu GWeather shared library
ii libhal-storage 0.5.12~rc1+git Hardware Abstraction Layer - shared
library
ii libhal1 0.5.12~rc1+git Hardware Abstraction Layer - shared
library
ii libharminv2 1.3.1-1.1 Library for using harminv
ii libhdf5-serial 1.6.6-4ubuntu1 Hierarchical Data Format 5 (HDF5) -
runtime
ii libhesiod0 3.0.2-18.3 Project Athena's DNS-based directory
service
ii libhsqldb-java 1.8.0.10-1ubun Java SQL database engine
ii libhtml-parser 3.59-1ubuntu1 A collection of modules that parse HTML
text
ii libhtml-tagset 3.20-2 Data tables pertaining to HTML
ii libhtml-templa 2.9-1 HTML::Template : A module for using HTML
Tem
ii libhtml-tree-p 3.23-1 represent and create HTML syntax trees
ii libhtml-wikico 0.61-1 An HTML to wiki markup converter
ii libhunspell-1. 1.1.9-1 spell checker and morphological analyzer
(sh
ii libhunspell-1. 1.2.6-1ubuntu1 spell checker and morphological analyzer
(sh
ii libhyphen0 2.4-2ubuntu1 ALTLinux hyphenation library - shared
librar
ii libice-dev 2:1.0.4-1 X11 Inter-Client Exchange library
(developme
ii libice6 2:1.0.4-1 X11 Inter-Client Exchange library
ii libicu36 3.6-3 International Components for Unicode
(librar
ii libicu36-dev 3.6-3 International Components for Unicode
(develo
ii libicu38 3.8.1-3 International Components for Unicode
ii libid3-3.8.3c2 3.8.3-7.2 Library for manipulating ID3v1 and ID3v2
tag
ii libid3tag0 0.15.1b-10 ID3 tag reading library from the MAD
project
ii libidl0 0.8.11-0.1 library for parsing CORBA IDL files
ii libidn11 1.10-3 GNU libidn library, implementation of IETF
I
ii libidn11-dev 1.10-3 Development files GNU libidn,
implementation
ii libiec61883-0 1.1.0-2ubuntu2 an partial implementation of IEC 61883
ii libieee1284-3 0.2.11-5 cross-platform library for parallel port
acc
ii libijs-0.35 0.35-6 IJS raster image transport protocol:
shared
ii libilmbase6 1.0.1-2+nmu2 several utility libraries from ILM used by
O
ii libio-compress 2.015-1 Base Class for IO::Compress modules
ii libio-compress 2.015-1 Perl interface to zlib
ii libio-interfac 1.05-1 socket methods to get/set interface
characte
ii libio-pty-perl 1:1.07-1build1 Perl module for pseudo tty IO
ii libio-socket-m 1.05-2build1 send and receive multicast messages with
Per
ii libio-socket-s 1.18-1 Perl module implementing object oriented
int
ii libio-string-p 1.08-2 Emulate IO::File interface for in-core
strin
ii libiodbc2 3.52.6-3 iODBC Driver Manager
ii libiodbc2-dev 3.52.6-3 iODBC Driver Manager (development files)
ii libipc-run-per 0.80-2 Perl module for running processes
ii libipc-signal- 1.00-6 utility functions dealing with signals for
P
ii libiptcdata0 1.0.2+libtool0 Library to parse IPTC metadata
ii libisc44 1:9.5.0.dfsg.P ISC Shared Library used by BIND
ii libisccc40 1:9.5.0.dfsg.P Command Channel Library used by BIND
ii libisccfg40 1:9.5.0.dfsg.P Config File Handling Library used by BIND
ii libiw29 29-1.1ubuntu2 Wireless tools - library
ii libjack0 0.116.1-3ubunt JACK Audio Connection Kit (libraries)
ii libjasper1 1.900.1-5.1 The JasPer JPEG-2000 runtime library
ii libjavascript- 1.08-1 Perl extension for executing embedded
JavaSc
ii libjaxen-java 1.1.1-3ubuntu1 Java XPath engine
ii libjaxme-java 0.5.2+dfsg-2 implementation of the JAXB specification
for
ii libjaxp1.3-jav 1.3.04-3ubuntu Java XML parser and transformer APIs (DOM,
S
ii libjcode-pm-pe 2.06-1 Perl extension interface to convert
Japanese
ii libjdom1-java 1.1+dfsg-1 lightweight and fast library using XML
ii libjline-java 0.9.94-1ubuntu Java library for handling console input
ii libjpeg62 6b-14 The Independent JPEG Group's JPEG runtime
li
ii libjpeg62-dev 6b-14 Development files for the IJG JPEG library
ii libjs-jquery 1.2.6-1 JavaScript library for dynamic web
applicati
ii libjs-mochikit 1.4.2-0ubuntu1 JavaScript library inspired by Python
ii libjs-prototyp 1.6.0.3-1 JavaScript Framework for dynamic web
applica
ii libjs-scriptac 1.8.1-5 JavaScript library for dynamic web
applicati
ii libjsch-java 0.1.37-3ubuntu java secure channel
ii libjson-any-pe 1.18-1 wrapper class for the various JSON classes
ii libjson-perl 2.12-1 Perl module to parse and convert to JSON
ii libjson-ruby 1.1.2-1 JSON library for Ruby (default Ruby
version)
ii libjson-ruby-d 1.1.2-1 JSON library for Ruby (documentation)
ii libjson-ruby1. 1.1.2-1 JSON library for Ruby (Ruby 1.8 version)
ii libkadm55 1.6.dfsg.4~bet MIT Kerberos administration runtime
librarie
ii libkdecoration 4:4.2.0-0ubunt library used by decorations for the KDE 4
wi
ii libkeyutils1 1.2-9 Linux Key Management Utilities (library)
ii libklibc 1.5.14-1~exp1u minimal libc subset for use with initramfs
ii libkonq4 4:3.5.9-0ubunt core libraries for Konqueror
ii libkonq5-templ 4:4.2.0-0ubunt data files for the Konqueror libraries
ii libkpathsea4 2007.dfsg.2-4 TeX Live: path search library for TeX
(runti
ii libkrb5-dev 1.6.dfsg.4~bet Headers and development libraries for MIT
Ke
ii libkrb53 1.6.dfsg.4~bet MIT Kerberos runtime libraries
ii libkst1-dev 1.7.0-1 Headers for the kst application for
displayi
ii libkst1c2 1.7.0-1 Libraries for the kst application for
displa
ii libkwineffects 4:4.2.0-0ubunt library used by effects for the KDE 4
window
ii liblapack3gf 3.1.1-6 library of linear algebra routines 3 -
share
ii liblaunchpad-i 0.1.16 library for launchpad integration
ii liblaunchpad-i 0.1.21 library for launchpad integration
ii liblcms1 1.17.dfsg-1 Color management library
ii liblcms1-dev 1.17.dfsg-1 Color management library (Development
header
ii libldap-2.4-2 2.4.11-0ubuntu OpenLDAP libraries
ii liblircclient0 0.8.4a-0ubuntu infra-red remote control support - client
li
ii liblocale-gett 1.05-4build1 Using libc functions for
internationalizatio
ii liblockfile1 1.08-3 NFS-safe locking library, includes
dotlockfi
ii liblog4j1.2-ja 1.2.15-4 Logging library for java
ii libloki-dev 0.1.5-3.1 a C++ library of generic design patterns
(de
ii libloki-doc 0.1.5-3.1 a C++ library of generic design patterns
(do
ii libloki0.1.5 0.1.5-3.1 a C++ library of generic design patterns
ii libloki0.1.5-d 0.1.5-3.1 a C++ library of generic design patterns
(de
ii libloudmouth1- 1.4.2-2 Lightweight C Jabber library
ii liblpint-bonob 0.1.21 library for launchpad integration
ii libltdl7 2.2.6a-1ubuntu A system independent dlopen wrapper for
GNU
ii libltdl7-dev 2.2.6a-1ubuntu A system independent dlopen wrapper for
GNU
ii liblua50 5.0.3-3 Main interpreter library for the Lua 5.0
pro
ii liblualib50 5.0.3-3 Extension library for the Lua 5.0
programmin
ii liblucene-java 1.4.3.dfsg-3 full-text search engine library for
Java(TM)
ii liblucene-java 1.4.3.dfsg-3 demonstration programs and example code
for
ii liblwres40 1:9.5.0.dfsg.P Lightweight Resolver Library used by BIND
ii liblzo-dev 1.08-3 data compression library (old version)
(deve
ii liblzo1 1.08-3 data compression library (old version)
ii liblzo2-2 2.03-1 data compression library
ii libmad0 0.15.1b-4 MPEG audio decoder library
ii libmagic1 4.26-2 File type determination library using
"magic
rc libmagick++10 7:6.3.7.9.dfsg C++ API to the ImageMagick library
rc libmagick10 7:6.3.7.9.dfsg image manipulation library
ii libmagick9 7:6.2.4.5.dfsg Image manipulation library
ii libmagickcore1 7:6.4.5.4.dfsg low-level image manipulation library
ii libmagickwand1 7:6.4.5.4.dfsg image manipulation library
ii libmatheval1 1.1.7-1 GNU library for evaluating symbolic
mathemat
ii libmatheval1-d 1.1.7-1 GNU library for evaluating symbolic
mathemat
ii libmbca0 0.0.3~bzr42-0u Mobile Broadband Configuration Assistant
ii libmcpp0 2.7.1 Alternative C/C++ preprocessor (shared
libra
ii libmdbtools 0.5.99.0.6pre1 mdbtools libraries
ii libmeanwhile1 1.0.2-3 open implementation of the Lotus Sametime
Co
ii libmetacity0 1:2.25.89-0ubu library of lightweight GTK2 based Window
Man
ii libmime-types- 1.26-1 Perl extension for determining MIME types
an
ii libming-dev 1:0.3.0-14 Library to generate SWF (Flash) Files
(devel
ii libming-util 1:0.3.0-14 Library to generate SWF (Flash) Files -
Util
ii libming0 1:0.3.0-14 Library to generate SWF (Flash) Files
ii libmjpegtools0 1:1.8.0-0.2ubu MJPEG video capture/editting/playback MPEG
e
ii libmldbm-perl 2.01-2 Store multidimensional hash structures in
pe
ii libmms0 0.4-2 MMS stream protocol library - shared
library
ii libmng-dev 1.0.9-1 M-N-G library (Development headers)
ii libmng1 1.0.9-1 Multiple-image Network Graphics library
ii libmodplug0c2 1:0.8.4-3ubunt shared libraries for mod music based on
ModP
ii libmodule-plug 3.8-1 Automatically provide your module the
abilit
ii libmono-access 2.0.1-0ubuntu3 Mono Accessibility library
ii libmono-access 2.0.1-0ubuntu3 Mono Accessibility library
ii libmono-addins 0.3.1-5ubuntu2 GTK# frontend library for Mono.Addins
ii libmono-addins 0.3.1-5ubuntu2 addin framework for extensible CLI
applicati
ii libmono-bytefx 2.0.1-0ubuntu3 Mono ByteFX.Data library
ii libmono-bytefx 2.0.1-0ubuntu3 Mono ByteFX.Data library
ii libmono-c5-1.0 2.0.1-0ubuntu3 Mono C5 library
ii libmono-cairo1 2.0.1-0ubuntu3 Mono Cairo library
ii libmono-cairo2 2.0.1-0ubuntu3 Mono Cairo library
ii libmono-cecil- 0.1~svn.68457- cecil engine
ii libmono-cecil0 0.6-1 library to generate and inspect CIL
assembli
ii libmono-corlib 2.0.1-0ubuntu3 Mono core library (1.0)
ii libmono-corlib 2.0.1-0ubuntu3 Mono core library (2.0)
ii libmono-corlib 2.0.1-0ubuntu3 Mono core library (2.1)
ii libmono-cscomp 2.0.1-0ubuntu3 Mono cscompmgd library
ii libmono-cscomp 2.0.1-0ubuntu3 Mono cscompmgd library
ii libmono-data-t 2.0.1-0ubuntu3 Mono Data library
ii libmono-data-t 2.0.1-0ubuntu3 Mono Data Library
ii libmono-data1. 2.0.1-0ubuntu3 Mono.Data.* libraries (1.0)
ii libmono-data2. 2.0.1-0ubuntu3 Mono.Data.* libraries (2.0)
ii libmono-db2-1. 2.0.1-0ubuntu3 Mono DB2 library
ii libmono-dev 2.0.1-0ubuntu3 libraries for the Mono JIT - Development
fil
ii libmono-firebi 2.0.1-0ubuntu3 Mono FirebirdSql library
ii libmono-getopt 2.0.1-0ubuntu3 Mono.GetOptions library (1.0)
ii libmono-getopt 2.0.1-0ubuntu3 Mono.GetOptions library (2.0)
ii libmono-i18n1. 2.0.1-0ubuntu3 Mono I18N libraries (1.0)
ii libmono-i18n2. 2.0.1-0ubuntu3 Mono I18N libraries (2.0)
ii libmono-ldap1. 2.0.1-0ubuntu3 Mono LDAP library
ii libmono-ldap2. 2.0.1-0ubuntu3 Mono LDAP library
ii libmono-micros 2.0.1-0ubuntu3 Mono Microsoft.Build libraries
ii libmono-micros 2.0.1-0ubuntu3 Mono Microsoft libraries
ii libmono-micros 2.0.1-0ubuntu3 Mono Microsoft libraries
ii libmono-mozill 1.2.6+dfsg-6ub Mono Mozilla library
ii libmono-npgsql 2.0.1-0ubuntu3 Mono Npgsql library
ii libmono-npgsql 2.0.1-0ubuntu3 Mono Npgsql library
ii libmono-nunit2 2.0.1-0ubuntu3 Mono Unit test framework for CLI
ii libmono-oracle 2.0.1-0ubuntu3 Mono Oracle library
ii libmono-oracle 2.0.1-0ubuntu3 Mono Oracle library
ii libmono-peapi1 2.0.1-0ubuntu3 Mono PEAPI library
ii libmono-peapi2 2.0.1-0ubuntu3 Mono PEAPI library
ii libmono-posix1 2.0.1-0ubuntu3 Mono.Posix library (1.0)
ii libmono-posix2 2.0.1-0ubuntu3 Mono.Posix library (2.0)
ii libmono-relaxn 2.0.1-0ubuntu3 Mono Relaxng library
ii libmono-relaxn 2.0.1-0ubuntu3 Mono Relaxng library
ii libmono-securi 2.0.1-0ubuntu3 Mono Security library
ii libmono-securi 2.0.1-0ubuntu3 Mono Security library
ii libmono-sharpz 2.0.1-0ubuntu3 Mono SharpZipLib library
ii libmono-sharpz 2.0.1-0ubuntu3 Mono SharpZipLib library
ii libmono-sharpz 2.0.1-0ubuntu3 Mono SharpZipLib library
ii libmono-sharpz 2.0.1-0ubuntu3 Mono SharpZipLib library
ii libmono-sqlite 2.0.1-0ubuntu3 Mono Sqlite library
ii libmono-sqlite 2.0.1-0ubuntu3 Mono Sqlite library
ii libmono-system 2.0.1-0ubuntu3 Mono System.Data library
ii libmono-system 2.0.1-0ubuntu3 Mono System.Data Library
ii libmono-system 2.0.1-0ubuntu3 Mono System.DirectoryServices library
ii libmono-system 2.0.1-0ubuntu3 Mono System.DirectoryServices library
ii libmono-system 2.0.1-0ubuntu3 Mono System.Messaging library
ii libmono-system 2.0.1-0ubuntu3 Mono System.Messaging Library
ii libmono-system 2.0.1-0ubuntu3 Mono System.Runtime library
ii libmono-system 2.0.1-0ubuntu3 Mono System.Runtime Library
ii libmono-system 2.0.1-0ubuntu3 Mono System.Web library
ii libmono-system 2.0.1-0ubuntu3 Mono System.Web Library
ii libmono-system 2.0.1-0ubuntu3 Mono System libraries (1.0)
ii libmono-system 2.0.1-0ubuntu3 Mono System libraries (2.0)
ii libmono-system 2.0.1-0ubuntu3 Mono System libraries (2.1)
ii libmono-webbro 2.0.1-0ubuntu3 Mono Web Browser library
ii libmono-winfor 2.0.1-0ubuntu3 Mono System.Windows.Forms library
ii libmono-winfor 2.0.1-0ubuntu3 Mono System.Windows.Forms library
ii libmono-zeroco 0.7.6-1 CLI library for multicast DNS service
discov
ii libmono0 2.0.1-0ubuntu3 libraries for the Mono JIT
ii libmono0-dbg 2.0.1-0ubuntu3 libraries for the Mono JIT, debugging
symbol
ii libmono1.0-cil 2.0.1-0ubuntu3 Mono libraries (1.0)
ii libmono2.0-cil 2.0.1-0ubuntu3 Mono libraries (2.0)
ii libmozjs0d 1.8.1.16+nobin The Mozilla SpiderMonkey JavaScript
library
ii libmp3lame0 3.98-0.0 LAME Ain't an MP3 Encoder
ii libmpcdec3 1.2.2-1build1 Musepack (MPC) format library
ii libmpeg2-4 0.4.1-3 MPEG1 and MPEG2 video decoder library
ii libmpfr1ldbl 2.3.2.dfsg.1-1 multiple precision floating-point
computatio
ii libmtp8 0.3.0-1ubuntu3 Media Transfer Protocol (MTP) library
ii libmudflap0 4.3.3-3ubuntu1 GCC mudflap shared support libraries
ii libmudflap0-de 4.1.2-24ubuntu GCC mudflap support libraries (development
f
ii libmusicbrainz 2.1.5-2ubuntu1 Second generation incarnation of the CD
Inde
ii libmx4j-java 3.0.2-4 An open source implementation of the
JMX(TM)
ii libmyodbc 3.51.19r646-0u the MySQL ODBC driver
ii libmysqlclient 5.1.30really5. MySQL database development files
ii libmysqlclient 5.1.30really5. MySQL database client library
ii libnanohttp-de 1.1.0-13 shared nanohttp header files for SOAP
server
ii libnanohttp1 1.1.0-13 shared nanohttp library from CSOAP package
ii libnautilus-bu 2.24.0-0ubuntu Nautilus Burn Library - runtime version
ii libnautilus-ex 1:2.25.4-0ubun libraries for nautilus components -
runtime
ii libncurses5 5.7+20081220-1 shared libraries for terminal handling
ii libncurses5-de 5.7+20081220-1 developer's libraries and docs for ncurses
ii libncursesw5 5.7+20081220-1 shared libraries for terminal handling
(wide
ii libndesk-dbus- 0.4.1-1ubuntu1 CLI implementation of D-Bus (GLib mainloop
i
ii libndesk-dbus1 0.6.0-1ubuntu1 CLI implementation of D-Bus
ii libnemerle0.9- 0.9.3+dfsg-2 Class Libraries for Nemerle
ii libneon25 0.25.5.dfsg-6b An HTTP and WebDAV client library
ii libneon27 0.28.2-6.1 An HTTP and WebDAV client library
ii libneon27-gnut 0.28.2-6.1 An HTTP and WebDAV client library (GnuTLS
en
ii libnet-daemon- 0.43-1 Perl module for building portable Perl
daemo
ii libnet-dbus-pe 0.33.6-1build2 Extension for the DBus bindings
ii libnet-irc-per 0.75-8 IRC (Internet Relay Chat) interface module
f
ii libnet-jabber- 0.07-1.1 Perl interface for the loudmouth jabber
libr
ii libnet-jabber- 2.0-3.1 Perl modules for accessing the Jabber
protoc
ii libnet-ldap-pe 1:0.39-1ubuntu client interface to LDAP servers
ii libnet-libidn- 0.07-1build1 Perl bindings for GNU Libidn
ii libnet-ssleay- 1.35-2ubuntu1 Perl module for Secure Sockets Layer (SSL)
ii libnet-xmpp-pe 1.02-1 XMPP Perl library
ii libnetcdf4 1:3.6.2-3.1 An interface for scientific data access to
l
ii libnetpbm10 2:10.0-12 Shared libraries for netpbm
ii libnewt0.52 0.52.2-11.3ubu Not Erik's Windowing Toolkit - text mode
win
ii libnl1 1.1-3 library for dealing with netlink sockets
ii libnm-glib0 0.7-0ubuntu1 network management framework (GLib shared
li
ii libnm-util0 0.7~~svn200810 network management framework (shared
library
ii libnm-util1 0.7-0ubuntu1 network management framework (shared
library
ii libnotify1 0.4.5-0ubuntu1 sends desktop notifications to a
notificatio
ii libnspr4-0d 4.7.3-0ubuntu2 NetScape Portable Runtime Library
ii libnss-mdns 0.10-3ubuntu2 NSS module for Multicast DNS name
resolution
ii libnss3-1d 3.12.2~rc1-0ub Network Security Service libraries
rc libntfs-3g28 1:1.2506-1ubun ntfs-3g filesystem in userspace (FUSE)
libra
rc libntfs-3g31 1:1.2531-1.1ub ntfs-3g filesystem in userspace (FUSE)
libra
ii libntfs-3g48 1:2009.1.1-0ub ntfs-3g filesystem in userspace (FUSE)
libra
ii libnunit-doc 2.4.7+dfsg-2 Unit test framework for CLI
ii libodbc++-dev 0.2.3+0.2.4pre C++ library for ODBC SQL database access
ii libodbc++-doc 0.2.3+0.2.4pre C++ library for ODBC SQL database access
ii libodbc++4 0.2.3+0.2.4pre C++ library for ODBC SQL database access
ii libodbcinstq1c 2.2.11-16build Qt-based ODBC configuration library
ii libofa0 0.9.3-3 Library for acoustic fingerprinting
ii libogg0 1.1.3-4build1 Ogg Bitstream Library
ii liboil0.3 0.3.15-1ubuntu Library of Optimized Inner Loops
ii liboobs-1-4 2.22.0-2ubuntu GObject based interface to
system-tools-back
rc libopal-2.2 2.2.11~dfsg1-4 Open Phone Abstraction Library - successor
o
ii libopal3.4.2 3.4.2~dfsg-2 Open Phone Abstraction Library - successor
o
ii libopenal1 1:1.4.272-2 Software implementation of the OpenAL API
(l
ii libopencdk10 0.6.6-1ubuntu1 Open Crypto Development Kit (OpenCDK)
(runti
ii libopencdk8 0.5.13-2 Open Crypto Development Kit (OpenCDK)
(runti
ii libopenexr6 1.6.1-3ubuntu1 runtime files for the OpenEXR image
library
ii libopenobex1 1.3+cvs2007042 OBEX protocol library
ii libopenspc0 0.3.99a-2 library for playing SPC files
ii liborbit2 1:2.14.16-0.1 libraries for ORBit2 - a CORBA ORB
ii libosp5 1.5.2-6ubuntu1 Runtime library for OpenJade group's SP
suit
ii libotr2 3.2.0-1 Off-the-Record Messaging library
ii libpam-ck-conn 0.3-0ubuntu3 ConsoleKit PAM module
ii libpam-foregro 0.5 create lockfiles describing which users
own
ii libpam-gnome-k 2.25.4.1-0ubun PAM module to unlock the GNOME keyring
upon
ii libpam-modules 1.0.1-5ubuntu1 Pluggable Authentication Modules for PAM
ii libpam-runtime 1.0.1-5ubuntu1 Runtime support for the PAM library
ii libpam0g 1.0.1-5ubuntu1 Pluggable Authentication Modules library
ii libpanel-apple 1:2.25.90-0ubu library for GNOME Panel applets
ii libpango1-ruby 0.17.0~rc1-6ub Pango bindings for the Ruby language
ii libpango1.0-0 1.22.4-1 Layout and rendering of internationalized
te
ii libpango1.0-co 1.22.4-1 Modules and configuration files for the
Pang
ii libpango1.0-de 1.22.4-1 Development files for the Pango
ii libpangomm-1.4 2.14.1-1 C++ Wrapper for pango (shared libraries)
ii libpangomm-1.4 2.14.1-1 C++ Wrapper for pango (development files)
ii libpaper-utils 1.1.23+nmu1 library for handling paper characteristics
(
ii libpaper1 1.1.23+nmu1 library for handling paper characteristics
ii libparams-vali 0.91-2 validate parameters to Perl
method/function
ii libparse-debia 1.1.1-2 parse Debian changelogs and output them in
o
ii libparted1.7-1 1.7.1-5.1ubunt The GNU Parted disk partitioning shared
libr
ii libparted1.8-1 1.8.8.git.2008 The GNU Parted disk partitioning shared
libr
rc libparted1.8-9 1.8.8.git.2008 The GNU Parted disk partitioning shared
libr
ii libpcap-dev 1.0.0-1~exp1 development library for libpcap
(transitiona
ii libpcap0.8 1.0.0-1~exp1 system interface for user-level packet
captu
ii libpcap0.8-dev 1.0.0-1~exp1 development library and header files for
lib
ii libpci3 1:3.0.0-4ubunt Linux PCI Utilities (shared library)
ii libpciaccess0 0.10.5-1 Generic PCI access library for X
ii libpcre3 7.8-2ubuntu1 Perl 5 Compatible Regular Expression
Library
ii libpcre3-dev 7.8-2ubuntu1 Perl 5 Compatible Regular Expression
Library
ii libpcrecpp0 7.8-2ubuntu1 Perl 5 Compatible Regular Expression
Library
ii libpcsclite1 1.4.102-1ubunt Middleware to access a smart card using
PC/S
ii libperl5.10 5.10.0-19ubunt Shared Perl library
ii libphonon4 4:4.3.0-0ubunt Phonon multimedia framework for Qt 4
ii libpisock9 0.12.3-5ubuntu library for communicating with a PalmOS
PDA
ii libpisync0 0.12.2-9ubuntu synchronization library for PalmOS devices
ii libpisync1 0.12.3-5ubuntu synchronization library for PalmOS devices
ii libpixman-1-0 0.13.2-1 pixel-manipulation library for X and cairo
ii libpixman-1-de 0.13.2-1 pixel-manipulation library for X and cairo
(
ii libplasma3 4:4.2.0-0ubunt library for the KDE 4 Plasma desktop
ii libploticus0 2.40-3 script driven business graphics library
ii libploticus0-d 2.40-3 Development files for the ploticus library
ii libplplot-c++9 5.9.0-8ubuntu1 Scientific plotting library
ii libplplot9 5.9.0-8ubuntu1 Scientific plotting library
ii libplrpc-perl 0.2020-1 Perl extensions for writing PlRPC servers
an
ii libpng12-0 1.2.27-2ubuntu PNG library - runtime
ii libpng12-dev 1.2.27-2ubuntu PNG library - development
ii libpolkit-dbus 0.9-2ubuntu1 library for accessing PolicyKit via D-Bus
ii libpolkit-gnom 0.9-1ubuntu1 PolicyKit-gnome library
ii libpolkit-gran 0.9-2ubuntu1 library for obtaining privileges via
PolicyK
ii libpolkit2 0.9-2ubuntu1 library for accessing PolicyKit
ii libpoppler-gli 0.8.7-1ubuntu1 PDF rendering library (GLib-based shared
lib
ii libpoppler-gli 0.10.3-0ubuntu PDF rendering library (GLib-based shared
lib
ii libpoppler3 0.8.7-1ubuntu1 PDF rendering library
ii libpoppler4 0.10.3-0ubuntu PDF rendering library
ii libpopt0 1.14-4 lib for parsing cmdline parameters
ii libportaudio0 18.1-7.1 Portable audio I/O - shared library
ii libpostproc51 3:0.svn2009011 ffmpeg video postprocessing library
ii libpq-dev 8.3.5-2 header files for libpq5 (PostgreSQL
library)
ii libpq5 8.3.5-2 PostgreSQL C client library
ii libproc-waitst 1.00-4 interpret and act on wait() status values
ii libproxy0 0.2.3-0ubuntu3 automatic proxy configuration management
lib
rc libpt-1.10.10 1.10.10-2ubunt Portable Windows Library
ii libpt-1.10.10- 1.10.10-2ubunt Portable Windows Library Video Plugin for
Vi
ii libpt-1.10.10- 1.10.10-2ubunt Portable Windows Library Video Plugin for
Vi
ii libpt2.4.2 2.4.2-2ubuntu1 Portable Tools Library
ii libpt2.4.2-plu 2.4.2-2ubuntu1 PTLib audio plugin for the ALSA Interface
ii libpt2.4.2-plu 2.4.2-2ubuntu1 Portable Tools Library video plugin for
Vide
ii libpth20 2.0.7-12 The GNU Portable Threads
ii libpthread-stu 0.1-2 pthread stubs not provided by native libc
ii libpthread-stu 0.1-2 pthread stubs not provided by native libc,
d
ii libpulse-brows 0.9.14-0ubuntu PulseAudio client libraries (zeroconf
suppor
ii libpulse-mainl 0.9.14-0ubuntu PulseAudio client libraries (glib support)
ii libpulse0 0.9.14-0ubuntu PulseAudio client libraries
rc libpulsecore5 0.9.10-2ubuntu PulseAudio sound server core
rc libpulsecore8 0.9.13-2ubuntu PulseAudio sound server core
ii libpulsecore9 0.9.14-0ubuntu PulseAudio sound server core
ii libpurple0 1:2.5.3-0ubunt multi-protocol instant messaging library
ii libpvm3 3.4.5-11 Parallel Virtual Machine - shared
libraries
ii libqhull5 2003.1-11 calculate convex hulls and related
structure
ii libqscintilla7 1.7.1-2 Qt source code editing component based on
Sc
ii libqt3-compat- 3:3.3.8-b-5ubu Qt 1.x and 2.x compatibility includes
ii libqt3-headers 3:3.3.8-b-5ubu Qt3 header files
ii libqt3-mt 3:3.3.8-b-5ubu Qt GUI Library (Threaded runtime version),
V
ii libqt3-mt-dev 3:3.3.8-b-5ubu Qt development files (Threaded)
ii libqt3-mt-psql 3:3.3.8-b-5ubu PostgreSQL database driver for Qt3
(Threaded
ii libqt4-dbus 4.4.3-2ubuntu1 Qt 4 D-Bus module
ii libqt4-designe 4.4.3-2ubuntu1 Qt 4 designer module
ii libqt4-network 4.4.3-2ubuntu1 Qt 4 network module
ii libqt4-opengl 4.4.3-2ubuntu1 Qt 4 OpenGL module
ii libqt4-qt3supp 4.4.3-2ubuntu1 Qt 3 compatibility library for Qt 4
ii libqt4-script 4.4.3-2ubuntu1 Qt 4 script module
ii libqt4-sql 4.4.3-2ubuntu1 Qt 4 SQL module
ii libqt4-svg 4.4.3-2ubuntu1 Qt 4 SVG module
ii libqt4-webkit 4.4.3-2ubuntu1 Qt 4 WebKit module
ii libqt4-xml 4.4.3-2ubuntu1 Qt 4 XML module
ii libqtcore4 4.4.3-2ubuntu1 Qt 4 core module
ii libqtgui4 4.4.3-2ubuntu1 Qt 4 GUI module
ii libqthreads-12 1.6.8-6.1ubunt QuickThreads library for Guile
ii libquicktime1 2:1.1.0+debian library for reading and writing Quicktime
fi
ii libraptor1 1.4.18-1 Raptor RDF parser and serializer library
ii librarian0 0.8.1-1ubuntu2 Rarian is a documentation meta-data
library
rc librasqal0 0.9.15-2 Rasqal RDF query library
ii librasqal1 0.9.16-1 Rasqal RDF query library
ii libraw1394-8 1.3.0-4ubuntu1 library for direct access to IEEE 1394 bus
(
ii librdf0 1.0.8-1 Redland Resource Description Framework
(RDF)
ii libreadline-ja 0.8.0.1-8.1ubu GNU readline and BSD editline wrappers for
J
ii libreadline5 5.2-3build1 GNU readline and history libraries,
run-time
ii librecode0 3.6-15 Shared library on which recode is based
ii libregexp-java 1.4-5ubuntu1 regular expression library for Java
ii librfxswf-dev 0.8.1-2.1 RFXSWF library for SWF (Flash) generation
ii librpc-xml-per 0.64-1 Perl module implementation of XML-RPC
ii librpm4.4 4.4.2.3-2 RPM shared library
ii librrd2 1.2.27-2ubuntu Time-series data storage and display
system
ii librrd2-dev 1.2.27-2ubuntu Time-series data storage and display
system
ii librrd4 1.3.1-4 Time-series data storage and display
system
ii librrdp-perl 1.3.1-4 Time-series data storage and display
system
ii librrds-perl 1.3.1-4 Time-series data storage and display
system
ii librsvg2-2 2.22.3-1 SAX-based renderer library for SVG files
(ru
ii librsvg2-commo 2.22.3-1 SAX-based renderer library for SVG files
(ex
ii librsvg2-dev 2.22.3-1 SAX-based renderer library for SVG files
(de
ii libruby 4.2 Libraries necessary to run Ruby 1.8.x
ii libruby1.8 1.8.7.72-3 Libraries necessary to run Ruby 1.8
ii libsamplerate0 0.1.4-1 audio rate conversion library
ii libsane 1.0.19-23ubunt API library for scanners
ii libsasl2-2 2.1.22.dfsg1-2 Cyrus SASL - authentication abstraction
libr
ii libsasl2-modul 2.1.22.dfsg1-2 Cyrus SASL - pluggable authentication
module
ii libsaxonb-java 9.0.0.4+svn200 The Saxon-B XSLT Processor
ii libschroedinge 1.0.5-1 library for encoding/decoding of Dirac
video
ii libscim8c2a 1.4.7-3ubuntu1 library for SCIM platform
ii libscrollkeepe 0.3.14-16ubunt Library to load .omf files (runtime files)
ii libsctp1 1.0.9.dfsg-1 user-space access to Linux Kernel SCTP -
sha
ii libsdl1.2debia 1.2.13-4ubuntu Simple DirectMedia Layer
ii libsdl1.2debia 1.2.13-4ubuntu Simple DirectMedia Layer (with X11 and
ALSA
ii libselinux1 2.0.65-5 SELinux shared libraries
ii libselinux1-de 2.0.65-5 SELinux development headers
ii libsensors3 1:2.10.7-1 library to read temperature/voltage/fan
sens
ii libsepol1 2.0.30-2 Security Enhanced Linux policy library for
c
ii libsepol1-dev 2.0.30-2 Security Enhanced Linux policy library and
d
ii libservlet2.3- 4.0-10ubuntu3 Servlet 2.3 and JSP 1.2 Java classes and
doc
ii libservlet2.4- 5.0.30-8ubuntu Servlet 2.4 and JSP 2.0 Java library.
ii libsexy2 0.1.11-2 collection of additional GTK+ widgets -
libr
ii libsexymm2 0.1.9-3 collection of additional gtkmm widgets -
lib
ii libsgutils1 1.24-2 Utilities for working with generic SCSI
devi
ii libshout3 2.2.2-5 MP3/Ogg Vorbis broadcast streaming library
ii libsidplay1 1.36.59-5 SID (MOS 6581) emulation library
ii libsigc++-2.0- 2.0.18-2 type-safe Signal Framework for C++ -
runtime
ii libsigc++-2.0- 2.0.18-2 type-safe Signal Framework for C++ -
develop
ii libsigc++-2.0- 2.0.18-2 type-safe Signal Framework for C++ -
referen
ii libsilc-1.1-2 1.1.7-2ubuntu1 SILC library (silc-toolkit)
ii libsimpledb-de 1.5-1.4 C++ ODBC database API
ii libsimpledb2 1.5-1.4 C++ ODBC database API
ii libslang2 2.1.3-3ubuntu3 The S-Lang programming library - runtime
ver
ii libslp1 1.2.1-7.5 OpenSLP libraries
ii libsm-dev 2:1.1.0-1 X11 Session Management library
(development
ii libsm6 2:1.1.0-1 X11 Session Management library
ii libsmbclient 2:3.2.5-4ubunt shared library that allows applications to
t
ii libsmbios2 2.0.3.dfsg-1 Provide access to (SM)BIOS information --
dy
ii libsndfile1 1.0.17-4 Library for reading/writing audio files
ii libsnmp-base 5.4.1~dfsg-12u SNMP (Simple Network Management Protocol)
MI
ii libsnmp15 5.4.1~dfsg-12u SNMP (Simple Network Management Protocol)
li
ii libsoprano4 2.1.67+dfsg.1+ libraries for the Soprano RDF framework
ii libsoundtouch1 1.3.1-2 sound stretching library
ii libsoup-gnome2 2.25.5-0ubuntu an HTTP library implementation in C --
Share
ii libsoup2.2-8 2.2.105-4build an HTTP library implementation in C --
Share
ii libsoup2.4-1 2.25.5-0ubuntu an HTTP library implementation in C --
Share
ii libspectre1 0.2.2.ds-1 Library for rendering Postscript documents
ii libspeex1 1.2~rc1-1 The Speex codec runtime library
ii libspeexdsp1 1.2~rc1-1 The Speex extended runtime library
ii libspread-perl 3.17.4-2ubuntu Perl bindings for the Spread messaging
servi
ii libspread-sess 0.4-1 OO wrapper for Spread messaging toolkit
ii libspread1 3.17.4-2ubuntu C library for the Spread messaging service
ii libspread1-dev 3.17.4-2ubuntu Development files for libspread
ii libsqlite0 2.8.17-4build1 SQLite shared library
ii libsqlite3-0 3.6.10-1 SQLite 3 shared library
ii libsqlite3-dev 3.6.10-1 SQLite 3 development files
ii libsqlxx-2.3c2 2.3.2-5build1 C++ classes for database access via ODBC
ii libsqlxx-dev 2.3.2-5build1 C++ classes for database access via ODBC
ii libss2 1.41.3-1ubuntu command-line interface parsing library
ii libssl-dev 0.9.8g-15ubunt SSL development libraries, header files
and
ii libssl0.9.8 0.9.8g-15ubunt SSL shared libraries
ii libssl0.9.8-db 0.9.8g-15ubunt Symbol tables for libssl and libcrypto
ii libstartup-not 0.9-1 library for program launch feedback
(shared
ii libstdc++5 1:3.3.6-17ubun The GNU Standard C++ Library v3
ii libstdc++6 4.3.3-3ubuntu1 The GNU Standard C++ Library v3
ii libstdc++6-4.1 4.1.2-24ubuntu The GNU Standard C++ Library v3
(development
ii libstdc++6-4.1 4.1.2-24ubuntu The GNU Standard C++ Library v3
(documentati
ii libstdc++6-4.2 4.2.4-5ubuntu1 The GNU Standard C++ Library v3
(development
ii libstdc++6-4.3 4.3.3-3ubuntu1 The GNU Standard C++ Library v3 (debugging
f
ii libstdc++6-4.3 4.3.3-3ubuntu1 The GNU Standard C++ Library v3
(development
ii libstlport4.6l 4.6.2-3.2 STLport C++ class library
ii libstlport5.1 5.1.3-1 STLport C++ class library
ii libstreamanaly 0.6.4-0ubuntu1 streamanalyzer library for Strigi Desktop
Se
ii libstreams0 0.6.4-0ubuntu1 streams library for for Strigi Desktop
Searc
rc libstrigiqtdbu 0.6.2-0ubuntu1 library for writing D-Bus clients for
Strigi
ii libstrutilsxx- 0.7.2-1.3 Useful additional C++ string processing
func
ii libstrutilsxx- 0.7.2-1.3 Useful additional C++ string processing
func
ii libsuitesparse 1:3.1.0-3.1 collection of libraries for computations
for
ii libsuperlu3 3.0+20070106-3 Direct solution of large, sparse systems
of
ii libsvn1 1.5.4dfsg1-1ub Shared libraries used by Subversion
ii libswfdec-0.8- 0.8.4-1 SWF (Macromedia Flash) decoder library
ii libswscale0 3:0.svn2009011 ffmpeg video scaling library
ii libswt3.2-gtk- 3.2.2-5ubuntu3 Fast and rich GUI toolkit for Java, gtk2
ver
ii libswt3.2-gtk- 3.2.2-5ubuntu3 Platform dependent files for
libswt3.2-gtk-j
ii libsybdb5 0.82-4 libraries for connecting to MS SQL and
Sybas
ii libsyck0-dev 0.55+svn270-1 YAML parser kit -- development files
ii libsysfs-dev 2.1.0-5 interface library to sysfs - development
fil
ii libsysfs2 2.1.0-5 interface library to sysfs
ii libt1-5 5.1.2-3 Type 1 font rasterizer library - runtime
ii libt1-dev 5.1.2-3 Type 1 font rasterizer library -
development
ii libtag1c2a 1.5-3 TagLib Audio Meta-Data Library
ii libtalloc1 1.2.0~git20080 hierarchical pool based memory allocator
ii libtasn1-3 1.5-1 Manage ASN.1 structures (runtime)
ii libtasn1-3-dev 1.5-1 Manage ASN.1 structures (development)
ii libtcmalloc-mi 0.98-1 an efficient thread-caching malloc
ii libtdb1 1.1.3~git20081 Trivial Database - shared library
ii libtemplate-pe 2.20-1 template processing system written in perl
ii libtemplate-pl 1.22-4 simple Template Toolkit Plugin Interface
to
ii libterm-readke 2.30-4 A perl module for simple terminal control
ii libterm-readli 1.0302-1 Perl implementation of Readline libraries
ii libtext-charwi 0.04-5build1 get display widths of characters on the
term
ii libtext-format 0.52-21 Perl module for formatting (text)
paragraphs
ii libtext-iconv- 1.7-1build1 converts between character sets in Perl
ii libtext-wrapi1 0.06-6 internationalized substitute of Text::Wrap
ii libthai-data 0.1.9-4 Data files for Thai language support
library
ii libthai0 0.1.9-4 Thai language support library
ii libtheora0 1.0~beta3-1 The Theora Video Compression Codec
ii libtidy-0.99-0 20081224cvs-1 HTML syntax checker and reformatter -
librar
ii libtiff4 3.8.2-11 Tag Image File Format (TIFF) library
ii libtimedate-pe 1.1600-9 Time and date functions for Perl
ii libtomcat5.5-j 5.5.26-5ubuntu Java Servlet engine -- core libraries
ii libtool 2.2.6a-1ubuntu Generic library support script
ii libtool-doc 2.2.6a-1ubuntu Generic library support script
ii libtotem-plpar 2.25.1-0ubuntu Totem Playlist Parser library - runtime
vers
ii libtracker-gtk 0.6.6-2ubuntu2 GTK+ widgets for apps that use tracker
ii libtrackerclie 0.6.6-2ubuntu2 metadata database, indexer and search tool
-
ii libts-0.0-0 1.0-4ubuntu2 touch screen library
ii libtubo1 4.5.0-0ubuntu2 Interprocess Communication library
ii libtwolame0 0.3.12-1 MPEG Audio Layer 2 encoding library
ii libungif4g 4.1.6-6 library for GIF images (transitional
package
ii libunicode-map 0.112-10build1 Perl module for mapping charsets from and
to
ii libunicode-map 0.12-3build2 Perl module to map 8bit character sets to
Un
ii libunicode-map 1.11-2 Perl module for conversing between any
chara
ii libunicode-str 2.09-3build2 Perl modules for Unicode strings
ii libuniconf4.4 4.4.1-0.2ubunt C++ network libraries for rapid
application
ii libunique-1.0- 1.0.6-0ubuntu1 Library for writing single instance
applicat
ii libunix-syslog 1.1-2 Perl interface to the UNIX syslog(3) calls
ii liburi-perl 1.37+dfsg-1ubu Manipulates and accesses URI strings
ii libusb-0.1-4 2:0.1.12-13 userspace USB programming library
ii libusplash0 0.5.27 userspace bootsplash library
ii libuuid-perl 0.02-3build1 Perl extension for using UUID interfaces
as
ii libuuid1 1.41.3-1ubuntu universally unique id library
ii libv4l-0 0.5.8-1 Collection of video4linux support
libraries
ii libview2 0.6.2-1 VMware's Incredibly Exciting Widgets
ii libvisual-0.4- 0.4.0-2.1+buil Audio visualization framework
ii libvisual-0.4- 0.4.0.dfsg.1-2 Audio visualization framework plugins
ii libvolume-id0 124-9 volume identification library
ii libvolume-id1 137-2 volume identification library
ii libvorbis0a 1.2.0.dfsg-3.1 The Vorbis General Audio Compression Codec
ii libvorbisenc2 1.2.0.dfsg-3.1 The Vorbis General Audio Compression Codec
ii libvorbisfile3 1.2.0.dfsg-3.1 The Vorbis General Audio Compression Codec
ii libvte-common 1:0.19.4-0ubun Terminal emulator widget for GTK+ 2.0 -
comm
ii libvte0.16-cil 2.20.1-2ubuntu CLI binding for VTE 0.16
ii libvte9 1:0.19.4-0ubun Terminal emulator widget for GTK+ 2.0 -
runt
ii libwavpack1 4.50.1-1 an audio codec (lossy and lossless) -
librar
ii libwbclient0 2:3.2.5-4ubunt client library for interfacing with
winbind
ii libwebkit-1.0- 1.0.1-4 Web content engine library for Gtk+
ii libwildmidi0 0.2.2-2 software MIDI player library
ii libwmf0.2-7 0.2.8.4-6ubunt Windows metafile conversion library
ii libwmf0.2-7-gt 0.2.8.4-6ubunt Windows metafile conversion library
ii libwnck-common 2.25.5-0ubuntu Window Navigator Construction Kit - common
f
ii libwnck22 2.25.5-0ubuntu Window Navigator Construction Kit -
runtime
ii libwpd8c2a 0.8.14-1 Library for handling WordPerfect documents
(
ii libwpg-0.1-1 0.1.3-1 WordPerfect graphics import/convert
library
ii libwps-0.1-1 0.1.2-1 Works text file format import filter
library
ii libwrap0 7.6.q-16 Wietse Venema's TCP wrappers library
ii libws-commons- 1.0.1-3 Common utilities from the Apache Web
Service
ii libwvstreams4. 4.4.1-0.2ubunt C++ network libraries for rapid
application
ii libwvstreams4. 4.4.1-0.2ubunt C++ network libraries for rapid
application
ii libwww-doc 0.20060330 The W3C WWW library - documentation
ii libwww-perl 5.820-1 WWW client/server library for Perl (aka
LWP)
ii libwww-ssl-dev 5.4.0-11build2 The W3C WWW library - development files
(SSL
ii libwww-ssl0 5.4.0-11build2 The W3C-WWW library (SSL support)
ii libwxbase2.6-0 2.6.3.2.2-3ubu wxBase library (runtime) - non-GUI support
c
ii libwxbase2.8-0 2.8.9.1-0ubunt wxBase library (runtime) - non-GUI support
c
ii libwxgtk2.6-0 2.6.3.2.2-3ubu wxWidgets Cross-platform C++ GUI toolkit
(GT
ii libwxgtk2.8-0 2.8.9.1-0ubunt wxWidgets Cross-platform C++ GUI toolkit
(GT
ii libx11-6 2:1.1.99.2-1ub X11 client-side library
ii libx11-data 2:1.1.99.2-1ub X11 client-side library
ii libx11-dev 2:1.1.99.2-1ub X11 client-side library (development
headers
ii libx11-xcb1 2:1.1.99.2-1ub Xlib/XCB interface library
ii libx264-59 1:0.svn2008040 x264 video coding library
ii libx264-65 1:0.svn2008123 x264 video coding library
ii libx86-1 1.1+ds1-2 x86 real-mode library
ii libxalan2-java 2.7.1-2 XSL Transformations (XSLT) processor in
Java
ii libxapian15 1.0.7-4 Search engine library
ii libxau-dev 1:1.0.4-1 X11 authorisation library (development
heade
ii libxau6 1:1.0.4-1 X11 authorisation library
ii libxaw7 2:1.0.5-1 X11 Athena Widget library
ii libxaw7-dev 2:1.0.5-1 X11 Athena Widget library (development
heade
ii libxcb-render- 0.2.1+git1-1 utility libraries for X C Binding --
render-
ii libxcb-render- 0.2.1+git1-1 utility libraries for X C Binding --
render-
ii libxcb-render0 1.1.93-0ubuntu X C Binding, render extension
ii libxcb-render0 1.1.93-0ubuntu X C Binding, render extension, development
f
ii libxcb-shape0 1.1.93-0ubuntu X C Binding, shape extension
ii libxcb-shm0 1.1.93-0ubuntu X C Binding, shm extension
rc libxcb-xlib0 1.1-1.1 X C Binding, Xlib/XCB interface library
ii libxcb-xv0 1.1.93-0ubuntu X C Binding, xv extension
ii libxcb1 1.1.93-0ubuntu X C Binding
ii libxcb1-dev 1.1.93-0ubuntu X C Binding, development files
ii libxcomposite- 1:0.4.0-3 X11 Composite extension library
(development
ii libxcomposite1 1:0.4.0-3 X11 Composite extension library
ii libxcursor-dev 1:1.1.9-1 X cursor management library (development
fil
ii libxcursor1 1:1.1.9-1 X cursor management library
ii libxdamage-dev 1:1.1.1-4 X11 damaged region extension library
(develo
ii libxdamage1 1:1.1.1-4 X11 damaged region extension library
ii libxdmcp-dev 1:1.0.2-3 X11 authorisation library (development
heade
ii libxdmcp6 1:1.0.2-3 X11 Display Manager Control Protocol
library
ii libxerces2-jav 2.9.1-2ubuntu2 Validating XML parser for Java with DOM
leve
ii libxevie1 1:1.0.2-3 X11 EvIE extension library
ii libxext-dev 2:1.0.4-1 X11 miscellaneous extensions library
(develo
ii libxext6 2:1.0.4-1 X11 miscellaneous extension library
ii libxfixes-dev 1:4.0.3-2 X11 miscellaneous 'fixes' extension
library
ii libxfixes3 1:4.0.3-2 X11 miscellaneous 'fixes' extension
library
ii libxfont1 1:1.3.3-1ubunt X11 font rasterisation library
ii libxft-dev 2.1.13-2ubuntu FreeType-based font drawing library for X
(d
ii libxft2 2.1.13-2ubuntu FreeType-based font drawing library for X
ii libxi-dev 2:1.2.0-1ubunt X11 Input extension library (development
hea
ii libxi6 2:1.2.0-1ubunt X11 Input extension library
ii libxine1 1.1.16.1-2ubun the xine video/media player library,
meta-pa
ii libxine1-bin 1.1.16.1-2ubun the xine video/media player library,
binary
ii libxine1-conso 1.1.16.1-2ubun libaa/libcaca/framebuffer/directfb related
p
ii libxine1-misc- 1.1.16.1-2ubun Input, audio output and post plugins for
lib
ii libxine1-x 1.1.16.1-2ubun X desktop video output plugins for
libxine1
ii libxinerama-de 2:1.0.3-2 X11 Xinerama extension library
(development
ii libxinerama1 2:1.0.3-2 X11 Xinerama extension library
ii libxkbfile1 1:1.0.5-1ubunt X11 keyboard file manipulation library
ii libxklavier11 3.3-1 X Keyboard Extension high-level API
ii libxklavier12 3.8-0ubuntu1 X Keyboard Extension high-level API
ii libxml++1.0-de 1.0.4-3 A C++ interface to the GNOME XML library
(li
ii libxml++1.0-do 1.0.4-3 HTML interface documentation and examples
fo
ii libxml++1.0c2a 1.0.4-3 A C++ interface to the GNOME XML library
(li
ii libxml++2.6-2 2.24.0-1ubuntu A C++ interface to the GNOME XML library
(li
ii libxml++2.6-de 2.24.0-1ubuntu A C++ interface to the GNOME XML library
(li
ii libxml++2.6-do 2.24.0-1ubuntu HTML interface documentation and examples
fo
ii libxml-dev 1:1.8.17-14.1 Development files for the GNOME XML
library
ii libxml-libxml- 0.13-6build2 Perl module for common routines &
constants
ii libxml-libxml- 1.69.ds-1 Perl module for using the GNOME libxml2
libr
ii libxml-namespa 1.09-3 Perl module for supporting simple generic
na
ii libxml-parser- 2.36-1.1build2 Perl module for parsing XML files
ii libxml-sax-per 0.16+dfsg-3 Perl module for using and building Perl
SAX2
ii libxml-simple- 2.18-1 Perl module for reading and writing XML
ii libxml-simpleo 0.53-1 Perl module which enhances
libxml-simpleobje
ii libxml-simpleo 0.53-1 Simple oo representation of an XML::LibXML
D
ii libxml-simpleo 0.53-1 Objectoriented Perl interface to a parsed
XM
ii libxml-stream- 1.22-3 Perl module for accessing XML Streams
ii libxml-twig-pe 1:3.32-2 Perl module for processing huge XML
document
ii libxml-xpathen 0.11-1 a re-usable XPath engine for DOM-like
trees
ii libxml1 1:1.8.17-14.1 GNOME XML library
ii libxml2 2.6.32.dfsg-5u GNOME XML library
ii libxml2-dev 2.6.32.dfsg-5u Development files for the GNOME XML
library
ii libxml2-utils 2.6.32.dfsg-5u XML utilities
ii libxmlrpc-c3 1.06.27-1 A lightweight RPC library based on XML and
H
ii libxmlrpc-c3-d 1.06.27-1 A lightweight RPC library based on XML and
H
ii libxmlrpc3-cli 3.1-2 XML-RPC implementation in Java (client
side)
ii libxmlrpc3-com 3.1-2 XML-RPC implementation in Java
ii libxmlrpc3-jav 3.1-2 XML-RPC implementation in Java (API
document
ii libxmlrpc3-ser 3.1-2 XML-RPC implementation in Java (server
side)
ii libxmu-dev 2:1.0.4-1 X11 miscellaneous utility library
(developme
ii libxmu-headers 2:1.0.4-1 X11 miscellaneous utility library headers
ii libxmu6 2:1.0.4-1 X11 miscellaneous utility library
ii libxmuu1 2:1.0.4-1 X11 miscellaneous micro-utility library
ii libxom-java 1.1-3 A new XML object model for Java
ii libxp6 1:1.0.0.xsf1-2 X Printing Extension (Xprint) client
library
ii libxplc0.3.13 0.3.13-1build1 Light weight component system
ii libxpm-dev 1:3.5.7-1 X11 pixmap library (development headers)
ii libxpm4 1:3.5.7-1 X11 pixmap library
ii libxpp2-java 2.1.10-4ubuntu XML pull parser library for java V2
ii libxpp3-java 1.1.3.4.O-4ubu XML pull parser library for java
ii libxrandr-dev 2:1.2.99.4-1 X11 RandR extension library (development
hea
ii libxrandr2 2:1.2.99.4-1 X11 RandR extension library
ii libxrender-dev 1:0.9.4-2 X Rendering Extension client library
(develo
ii libxrender1 1:0.9.4-2 X Rendering Extension client library
ii libxres1 2:1.0.3-1 X11 Resource extension library
ii libxslt1.1 1.1.24-2ubuntu XSLT processing library - runtime library
ii libxss1 1:1.1.3-1 X11 Screen Saver extension library
ii libxt-dev 1:1.0.5-3 X11 toolkit intrinsics library
(development
ii libxt6 1:1.0.5-3 X11 toolkit intrinsics library
ii libxtrap6 2:1.0.0-5build X11 event trapping extension library
ii libxtst6 2:1.0.3-1 X11 Testing -- Resource extension library
ii libxul-common 1.8.1.16+nobin Gecko engine library - common files
ii libxul0d 1.8.1.16+nobin Gecko engine library
ii libxv1 2:1.0.4-1 X11 Video extension library
ii libxvidcore4 2:1.1.2-0.1ubu High quality ISO MPEG4 codec library
ii libxvmc1 2:1.0.4-2ubunt X11 Video extension library
ii libxxf86dga1 2:1.0.2-1 X11 Direct Graphics Access extension
library
ii libxxf86misc1 1:1.0.1-3 X11 XFree86 miscellaneous extension
library
ii libxxf86vm1 1:1.0.2-1 X11 XFree86 video mode extension library
ii libyaml-0-1 0.1.2-1 Fast YAML 1.1 parser and emitter library
ii libyaml-perl 0.66-1 YAML Ain't Markup Language (tm)
ii libyaml-ruby 4.2 transitional dummy package
ii libyaml-syck-o 0.1.1-2build2 OCaml bindings for Syck, a YAML parser kit
ii libyaml-syck-o 0.1.1-2build2 OCaml bindings for Syck, a YAML parser kit
ii libyaml-syck-p 1.05-1 Fast, lightweight YAML loader and dumper
ii libyaml-tiny-p 1.32-1 Read/Write YAML files with as little code
as
ii libzephyr3 2.1.20070719.S Project Athena's notification service -
non-
ii lintian 2.1.6 Debian package checker
ii linux-firmware 1.5 Firmware for Linux kernel drivers
ii linux-headers- 2.6.28-4.11 Header files related to Linux kernel
version
ii linux-headers- 2.6.28-4.11 Linux kernel headers for version 2.6.28 on
x
ii linux-headers- 2.6.28-5.15 Header files related to Linux kernel
version
ii linux-headers- 2.6.28-5.15 Linux kernel headers for version 2.6.28 on
x
ii linux-headers- 2.6.28-6.17 Header files related to Linux kernel
version
ii linux-headers- 2.6.28-6.17 Linux kernel headers for version 2.6.28 on
x
ii linux-headers- 2.6.28.6.6 Generic Linux kernel headers
ii linux-image-2. 2.6.28-4.11 Linux kernel image for version 2.6.28 on
x86
ii linux-image-2. 2.6.28-5.15 Linux kernel image for version 2.6.28 on
x86
ii linux-image-2. 2.6.28-6.17 Linux kernel image for version 2.6.28 on
x86
ii linux-image-ge 2.6.28.6.6 Generic Linux kernel image
ii linux-libc-dev 2.6.28-6.17 Linux Kernel Headers for development
ii linux-restrict 2.6.28-4.4 Non-free Linux kernel modules for version
2.
ii linux-restrict 2.6.28-5.5 Non-free Linux kernel modules for version
2.
ii linux-restrict 2.6.28-6.6 Non-free Linux kernel modules for version
2.
ii linux-restrict 2.6.28-6.6 Non-free Linux 2.6.28 modules helper
script
ii linux-restrict 2.6.28.6.6 Restricted Linux modules for generic
kernels
ii linux-sound-ba 1.0.18.dfsg-1u base package for ALSA and OSS sound
systems
ii linux-source-2 2.6.28-6.17 Linux kernel source for version 2.6.28
with
ii lksctp-tools 1.0.9.dfsg-1 user-space access to Linux Kernel SCTP -
com
ii lmodern 1.010x-5 scalable PostScript and OpenType fonts
based
ii locales 2.7.9-5 common files for locale support
ii login 1:4.1.1-6ubunt system login tools
ii logrotate 3.7.7-3ubuntu1 Log rotation utility
ii lp-solve 5.5.0.13-3ubun Solve (mixed integer) linear programming
pro
ii lsb-base 3.2-20ubuntu2 Linux Standard Base 3.2 init script
function
ii lsb-release 3.2-20ubuntu2 Linux Standard Base version reporting
utilit
ii lshw 02.13-2ubuntu1 information about hardware configuration
ii lsof 4.78.dfsg.1-4 List open files
ii ltrace 0.5.1-2ubuntu1 Tracks runtime library calls in
dynamically
ii lynx 2.8.7dev11-2 Text-mode WWW Browser (transitional
package)
ii lynx-cur 2.8.7dev11-2 Text-mode WWW Browser with NLS support
(deve
ii lzma 4.43-14ubuntu1 Compression method of 7z format in 7-Zip
pro
ii m4 1.4.11-1 a macro processing language
ii make 3.81-5 The GNU version of the "make" utility.
ii make-doc 3.81-4 Documentation for the GNU version of the
"ma
ii makedev 2.3.1-88 creates device files in /dev
ii man-db 2.5.3-3 on-line manual pager
ii manpages 3.15-1 Manual pages about using a GNU/Linux
system
ii manpages-dev 3.15-1 Manual pages about using GNU/Linux for
devel
ii manpages-posix 2.16-1 Manual pages about using POSIX system
ii manpages-posix 2.16-1 Manual pages about using a POSIX system
for
ii mawk 1.3.3-13ubuntu a pattern scanning and text processing
langu
ii mcpp 2.7.1 Alternative C/C++ preprocessor
ii mdetect 0.5.2.1ubuntu4 mouse device autodetection tool
ii mdns-scan 0.5-1 Scan for mDNS/DNS-SD services published on
t
ii memtest86+ 2.01-1.1ubuntu thorough real-mode memory tester
ii mercurial 1.1.2-2 scalable distributed version control
system
ii mercurial-comm 1.1.2-2 scalable distributed version control
system
ii mesa-common-de 7.3-1ubuntu1 Developer documentation for Mesa
ii mesa-utils 7.3-1ubuntu1 Miscellaneous Mesa GL utilities
ii metacity 1:2.25.89-0ubu A lightweight GTK2 based Window Manager
ii metacity-commo 1:2.25.89-0ubu Shared files of lightweight GTK2 based
Windo
ii mgdiff 1.0-29 xdiff clone
ii mii-diag 2.11-2 A little tool to manipulate network cards
ii mime-construct 1.9 construct/send MIME messages from the
comman
ii mime-support 3.44-1 MIME files 'mime.types' & 'mailcap', and
sup
ii min12xxw 0.0.9-1ubuntu1 Printer driver for KonicaMinolta PagePro
1[2
ii ming-fonts-ope 1:0.3.0-14 Ming format Opensymbol Fonts
ii mkisofs 10:2.01.01a33- Creates ISO-9660 CD-ROM filesystem images
ii mktemp 1.5-9 tool for creating temporary files
ii mlocate 0.21.1-1ubuntu quickly find files on the filesystem based
o
ii mobile-broadba 20081015.1-0ub database of mobile broadband service
provide
ii module-assista 0.10.11ubuntu1 tool to make module package creation
easier
ii module-init-to 3.3-pre11-4ubu tools for managing Linux kernel modules
ii mono-2.0-devel 2.0.1-0ubuntu3 Mono development tools for CLI 2.0
ii mono-2.0-gac 2.0.1-0ubuntu3 Mono GAC tool
ii mono-2.0-runti 2.0.1-0ubuntu3 Mono runtime (2.0)
ii mono-2.0-servi 2.0.1-0ubuntu3 Mono service manager for CLI 2.0
ii mono-common 2.0.1-0ubuntu3 common files for Mono
ii mono-dbg 2.0.1-0ubuntu3 Mono debugging symbols
ii mono-debugger 2.0-1 Debugger for Mono
ii mono-devel 2.0.1-0ubuntu3 Mono development tools
ii mono-gac 2.0.1-0ubuntu3 Mono GAC tool
ii mono-gmcs 2.0.1-0ubuntu3 Mono C# 2.0 and C# 3.0 compiler for CLI
2.0
ii mono-jit 2.0.1-0ubuntu3 fast CLI JIT/AOT compiler for Mono
ii mono-runtime 2.0.1-0ubuntu3 Mono runtime
ii monodevelop 1.0+dfsg-4ubun C/C++/C#/Boo/Java/Nemerle/ILasm/ASP.NET
Deve
ii monodevelop-nu 1.0+dfsg-4ubun NUnit plugin for MonoDevelop
ii monodevelop-ve 1.0+dfsg-4ubun VersionControl plugin for MonoDevelop
ii monodoc 2.0-1ubuntu1 Mono documentation viewer
ii monodoc-base 2.0-1ubuntu1 shared MonoDoc binaries
ii monodoc-browse 2.0-0ubuntu2 MonoDoc GTK+ based viewer
ii monodoc-http 2.0-1ubuntu1 MonoDoc http based viewer
ii monodoc-manual 2.0-1ubuntu1 compiled XML documentation from the Mono
pro
ii monotone 0.40-7 A distributed version (revision) control
sys
ii monotone-doc 0.40-7 A distributed version (revision) control
sys
ii monotone-viz 1.0.1-1 visualize a monotone repository
ii most 5.0.0a-1 Pager program similar to more and less
ii mount 2.14-1ubuntu4 Tools for mounting and manipulating
filesyst
ii mousetweaks 2.25.90-0ubunt mouse accessibility enhancements for the
GNO
ii mozilla-firefo 2.0.0.7+1-0ubu Mozilla Firefox English language/region
pack
ii mscompress 0.3-3 Microsoft "compress.exe/expand.exe"
compatib
ii msttcorefonts 2.6 transitional dummy package
ii mtasc 1.13-4 ActionScript 2 to Flash (SWF) compiler
ii mtd-tools 20080508-1ubun dummy package for transition purposes
ii mtd-utils 20080508-1ubun Memory Technology Device Utilities
ii mtools 3.9.11-1 Tools for manipulating MSDOS files
ii mtr-tiny 0.75-2 Full screen ncurses traceroute tool
ii myspell-en-au 2.1-3.1 English_australian dictionary for myspell
ii myspell-en-gb 1:2.4.0-2ubunt English_british dictionary for myspell
ii myspell-en-za 1:2.4.0-2ubunt English_southafrican dictionary for
myspell
ii mysql-admin 5.0r12-1ubuntu GUI tool for intuitive MySQL
administration
ii mysql-client 5.1.30really5. MySQL database client (metapackage
depending
ii mysql-client-5 5.1.30really5. MySQL database client binaries
ii mysql-common 5.1.30really5. MySQL database common files
ii mysql-gui-tool 5.0r12-1ubuntu Architecture independent files for MySQL
GUI
ii mysql-query-br 5.0r12-1ubuntu Official GUI tool to query MySQL database
ii mzclient 0.7.6-1 CLI library for multicast DNS service
discov
ii nano 2.0.7-4 free Pico clone with some new features
ii nautilus 1:2.25.4-0ubun file manager and graphical shell for GNOME
ii nautilus-cd-bu 2.24.0-0ubuntu CD Burning front-end for Nautilus
ii nautilus-data 1:2.25.4-0ubun data files for nautilus
ii nautilus-sendt 1.1.1-0ubuntu1 integrates Evolution and Pidgin into the
Nau
ii nautilus-share 0.7.2-0ubuntu7 Nautilus extension to share folder using
Sam
ii ncftp 2:3.2.1-1 A user-friendly and well-featured FTP
client
ii ncurses-base 5.7+20081220-1 basic terminal type definitions
ii ncurses-bin 5.7+20081220-1 terminal-related programs and man pages
ii nemerle 0.9.3+dfsg-2 Nemerle Compiler
ii net-tools 1.60-21ubuntu1 The NET-3 networking toolkit
ii netbase 4.34ubuntu1 Basic TCP/IP networking system
ii netcat 1.10-38 TCP/IP swiss army knife -- transitional
pack
ii netcat-traditi 1.10-38 TCP/IP swiss army knife
ii netpbm 2:10.0-12 Graphics conversion tools
ii network-manage 0.7-0ubuntu1 network management framework daemon
ii network-manage 0.7-0ubuntu1 network management framework (GNOME
frontend
ii nginx 0.6.34-2ubuntu small, but very powerful and efficient web
s
ii nickle 2.68-1 desk calculator language
ii nload 0.6.0-3.1 A realtime console network usage monitor
ii nmap 4.76-0ubuntu1 The Network Mapper
ii notification-d 0.4.0-0ubuntu2 a daemon that displays passive pop-up
notifi
ii ntfs-3g 1:2009.1.1-0ub read-write NTFS driver for FUSE
ii ntpdate 1:4.2.4p4+dfsg client for setting system time from NTP
serv
ii obex-data-serv 0.4.2-0ubuntu1 D-Bus service for OBEX client and server
sid
ii ocaml-base-nox 3.10.2-3ubuntu Runtime system for OCaml bytecode
executable
ii ocaml-findlib 1.2.1-5 Management tool for OCaml programming
langua
ii ocaml-interp 3.10.2-3ubuntu OCaml interactive interpreter and standard
l
ii ocaml-nox 3.10.2-3ubuntu ML language implementation with a
class-base
ii octave-plplot 5.9.0-8ubuntu1 Octave support for PLplot, a plotting
librar
ii octave3.0 1:3.0.1-6ubunt GNU Octave language for numerical
computatio
ii octplot 0.4.0-7build1 graphical interface for Octave
ii odbcinst1debia 2.2.11-16build Support library and helper program for
acces
ii odt2txt 0.4-1 simple converter from OpenDocument Text to
p
ii onboard 0.91ubuntu2 Simple On-screen Keyboard
ii open-vm-source 2008.11.18-130 Source for VMware guest systems driver
ii open-vm-toolbo 2008.11.18-130 tools and components for VMware guest
system
ii open-vm-tools 2008.11.18-130 tools and components for VMware guest
system
ii openoffice.org 1:3.0.1-1ubunt OpenOffice.org Office suite
ii openoffice.org 1:3.0.1-1ubunt OpenOffice.org office suite - database
ii openoffice.org 1:3.0.1-1ubunt OpenOffice.org office suite -- libdba
ii openoffice.org 1:3.0.1-1ubunt OpenOffice.org office suite - spreadsheet
ii openoffice.org 1:3.0.1-1ubunt OpenOffice.org office suite architecture
ind
ii openoffice.org 1:3.0.1-1ubunt OpenOffice.org office suite architecture
dep
ii openoffice.org 1:3.0.1-1ubunt OpenOffice.org office suite - drawing
ii openoffice.org 1:3.0.1-1ubunt Evolution Addressbook support for
OpenOffice
ii openoffice.org 1:3.0.1-1ubunt Legacy filters (e.g. StarOffice 5.2) for
Ope
ii openoffice.org 1:3.0.1-1ubunt Mobile Devices Filters for OpenOffice.org
ii openoffice.org 1:3.0.1-1ubunt GNOME Integration for OpenOffice.org (VFS,
G
ii openoffice.org 1:3.0.1-1ubunt GTK+ Integration for OpenOffice.org
(Widgets
ii openoffice.org 1:3.0.1-1ubunt English_british help for OpenOffice.org
ii openoffice.org 1:3.0.1-1ubunt English_american help for OpenOffice.org
ii openoffice.org 0.3 Hyphenation patterns for OpenOffice.org
ii openoffice.org 2.4-2ubuntu1 US English hyphenation patterns for
OpenOffi
ii openoffice.org 1:3.0.1-1ubunt OpenOffice.org office suite - presentation
ii openoffice.org 1:3.0.1-1ubunt OpenOffice.org office suite Java support
arc
ii openoffice.org 1:3.0.1-1ubunt common files for OpenOffice.org language
and
ii openoffice.org 1:3.0.1-1ubunt English_british language package for
OpenOff
ii openoffice.org 1:3.0.1-1ubunt English_southafrican language package for
Op
ii openoffice.org 1:3.0.1-1ubunt OpenOffice.org office suite - equation
edito
ii openoffice.org 1:3.0.1-1ubunt OpenOffice.org Office Bean
ii openoffice.org 1:3.0.1-1ubunt OpenOffice.org Report Builder extension -
su
ii openoffice.org 1:3.0.1-1ubunt Human symbol style for OpenOffice.org
ii openoffice.org 2.1-3.1 Australian English Thesaurus for
OpenOffice.
ii openoffice.org 1:2.4.0-2ubunt English Thesaurus for OpenOffice.org
ii openoffice.org 1:3.0.1-1ubunt OpenOffice.org office suite - word
processor
ii openoffice.org 0.5-8ubuntu1 Writer/Calc to LaTeX/XHTML converter
extensi
ii openprinting-p 20090115-0ubun OpenPrinting printer support - PostScript
PP
ii openssh-client 1:5.1p1-5ubunt secure shell client, an rlogin/rsh/rcp
repla
ii openssh-server 1:5.1p1-5ubunt secure shell server, an rshd replacement
ii openssl 0.9.8g-15ubunt Secure Socket Layer (SSL) binary and
related
ii oprofile 0.9.3-2ubuntu1 system-wide profiler for Linux systems
ii parted 1.8.8.git.2008 The GNU Parted disk partition resizing
progr
ii passwd 1:4.1.1-6ubunt change and administer password and group
dat
ii patch 2.5.9-5 Apply a diff file to an original
ii patchutils 0.2.31-4 Utilities to work with patches
ii pbuilder 0.183ubuntu1 personal package builder for Debian
packages
ii pciutils 1:3.0.0-4ubunt Linux PCI Utilities
ii pcmciautils 014-4ubuntu2 PCMCIA utilities for Linux 2.6
ii perl 5.10.0-19ubunt Larry Wall's Practical Extraction and
Report
ii perl-base 5.10.0-19ubunt minimal Perl system
ii perl-doc 5.10.0-19ubunt Perl documentation
ii perl-modules 5.10.0-19ubunt Core Perl modules
ii pgf 2.00-1 TeX Portable Graphic Format
ii phonon-backend 4:4.3.0-0ubunt Phonon GStreamer 0.10.x backend
ii pidgin 1:2.5.3-0ubunt graphical multi-protocol instant messaging
c
ii pidgin-data 1:2.5.3-0ubunt multi-protocol instant messaging client -
da
ii pidgin-otr 3.2.0-2 Off-the-Record Messaging plugin for pidgin
ii pkg-config 0.22-1 manage compile and link flags for
libraries
ii ploticus 2.40-3 script driven business graphics package
ii plplot-tcl 5.9.0-8ubuntu1 Tcl/Tk support for PLplot, a plotting
librar
ii plplot9-driver 5.9.0-8ubuntu1 Scientific plotting library (Cairo driver)
ii plplot9-driver 5.9.0-8ubuntu1 Scientific plotting library (GD driver)
ii plplot9-driver 5.9.0-8ubuntu1 Scientific plotting library (GNOME Canvas
Wi
ii plplot9-driver 5.9.0-8ubuntu1 Scientific plotting library (wxWidgets
drive
ii plplot9-driver 5.9.0-8ubuntu1 Scientific plotting library (X11 driver)
ii pm-utils 1.2.2.1-0ubunt utilities and scripts for power management
ii pngtools 0.3-2 series of tools for PNG (Portable Network
Gr
ii pnm2ppa 1.12-16.2ubunt PPM to PPA converter
ii po-debconf 1.0.15ubuntu1 manage translated Debconf templates files
wi
ii policykit 0.9-2ubuntu1 framework for managing administrative
polici
ii policykit-gnom 0.9-1ubuntu1 GNOME dialogs for PolicyKit
ii poppler-utils 0.10.3-0ubuntu PDF utilitites (based on libpoppler)
ii popularity-con 1.46ubuntu1 Vote for your favourite packages
automatical
ii povray 1:3.6.1-12 Persistence of vision raytracer (3D
renderer
ii povray-doc 1:3.6.1-12 Persistence of vision raytracer (3D
renderer
ii povray-example 1:3.6.1-12 Persistence of vision raytracer (3D
renderer
ii povray-include 1:3.6.1-12 Persistance of vision raytracer (3D
renderer
ii powermanagemen 0.3.19 platform neutral powermanagement interface
ii powermgmt-base 1.30+nmu1 Common utils and configs for power
managemen
ii ppp 2.4.4rel-10ubu Point-to-Point Protocol (PPP) - daemon
ii pppconfig 2.3.18ubuntu1 A text menu based utility for configuring
pp
ii pppoeconf 1.18ubuntu1 configures PPPoE/ADSL connections
ii prelink 0.0.20071009-1 ELF prelinking utility to speed up dynamic
l
ii preview-latex- 11.84-0ubuntu2 LaTeX style files for editor embedded
previe
ii procps 1:3.2.7-9ubunt /proc file system utilities
ii prosper 1.00.4+cvs.200 LaTeX class for writing transparencies
ii ps2eps 1.64-5 convert PostScript to EPS (Encapsulated
Post
ii psmisc 22.6-1 Utilities that use the proc filesystem
ii psutils 1.17-26 A collection of PostScript document
handling
ii pulseaudio 0.9.14-0ubuntu PulseAudio sound server
ii pulseaudio-eso 0.9.14-0ubuntu PulseAudio ESD compatibility layer
ii pulseaudio-mod 0.9.14-0ubuntu GConf module for PulseAudio sound server
ii pulseaudio-mod 0.9.14-0ubuntu HAL device detection module for PulseAudio
s
ii pulseaudio-mod 0.9.14-0ubuntu X11 module for PulseAudio sound server
ii pulseaudio-uti 0.9.14-0ubuntu Command line tools for the PulseAudio
sound
ii pvm 3.4.5-11 Parallel Virtual Machine - binaries
ii pxljr 1.1-0ubuntu4 Driver for HP's Color LaserJet 35xx/36xx
col
ii pychecker 0.8.18-1 Finds common bugs in python source code
ii pylint 0.15.2-1 python code static checker
rc pyro 3.7-2 distributed object system for Python
ii python 2.5.2-3ubuntu1 An interactive high-level object-oriented
la
ii python-4suite- 1.0.2-5 An open-source platform for XML and RDF
proc
ii python-all 2.5.2-3ubuntu1 Package depending on all supported Python
ru
ii python-all-dev 2.5.2-3ubuntu1 Package depending on all supported Python
de
ii python-amqplib 0.5-1 AMQP Client Library
ii python-apport 0.129 apport crash report handling library
ii python-apsw 3.5.9-r2-1 another Python SQLite 3 wrapper
ii python-apt 0.7.9~exp2ubun Python interface to libapt-pkg
ii python-asynque 0.3-1 asynchronous task queueing based on the
Twis
ii python-at-spi 0.6.1-1ubuntu2 Assistive Technology Service Provider
Interf
ii python-authkit 0.4.1~r143-1 authentication and authorisation framework
f
ii python-axiom 0.5.26-1 a Python object database
ii python-beaker 1.1.2-1 Simple WSGI middleware that uses the
Myghty
ii python-bittorr 3.4.2-11.1ubun Scatter-gather network file transfer
ii python-brlapi 3.10-0ubuntu3 Python bindings for BrlAPI
ii python-cairo 1.4.12-1.1 Python bindings for the Cairo vector
graphic
ii python-cairo-d 1.4.12-1.1 Python cairo bindings: development files
ii python-celemen 1.0.5-10 Light-weight toolkit for XML processing
ii python-central 0.6.7ubuntu1 register and build utility for Python
packag
ii python-chardet 1.0.1-1.1 universal character encoding detector
ii python-cheetah 2.0.1-2 text-based template engine and Python code
g
ii python-cherryp 3.0.2-2 Python web development framework - version
3
ii python-cjson 1.0.5-1 Very fast JSON encoder/decoder for Python
ii python-cjson-d 1.0.5-1 Very fast JSON encoder/decoder for Python
(d
ii python-coheren 0.5.8-1 Python UPnP framework
ii python-configo 4.5.3-1 a simple but powerful config file reader
and
ii python-crypto 2.0.1+dfsg1-2. cryptographic algorithms and protocols for
P
ii python-crypto- 2.0.1+dfsg1-2. cryptographic algorithms and protocols for
P
ii python-ctypes 1.0.2-6ubuntu1 Python package to create and manipulate C
da
ii python-cups 1.9.45-0ubuntu Python bindings for CUPS
ii python-cupshel 1.1.2+git20090 Python modules for printer configuration
wit
ii python-dateuti 1.4.1-2 powerful extensions to the standard
datetime
ii python-dbg 2.5.2-3ubuntu1 Debug Build of the Python Interpreter
(versi
ii python-dbus 0.83.0-1 simple interprocess messaging system
(Python
ii python-dbus-db 0.83.0-1 Debug build of the D-Bus Python interface
ii python-dbus-do 0.83.0-1 Documentation for the D-Bus Python
interface
ii python-debian 0.1.12 Python modules to work with Debian-related
d
ii python-decorat 2.3.1-1 simplify usage of python decorators by
progr
ii python-decorat 1.7-3 version-agnostic decorators support for
Pyth
ii python-dev 2.5.2-3ubuntu1 Header files and a static library for
Python
ii python-dispatc 0.5a.svn200805 Rule and type-based generic dispatching
for
ii python-distuti 1.91.2 enhancements to the Python build system
ii python-django 1.0.2-1 A high-level Python Web framework
ii python-dns 2.3.3-2 pydns - DNS client module for Python
ii python-dnspyth 1.6.0-1.1 DNS toolkit for Python
ii python-doc 2.5.2-3ubuntu1 Documentation for the high-level
object-orie
ii python-docutil 0.5-2 Utilities for the documentation of Python
mo
ii python-egenix- 3.1.1-1 development files for the egenix-mx-base
dis
ii python-egenix- 3.1.1-1 date and time handling routines for Python
ii python-egenix- 3.1.1-1 collection of additional builtins for
Python
ii python-element 1.2.6-12 Light-weight toolkit for XML processing
ii python-elixir 0.6.0-1 Declarative Mapper for SQLAlchemy
ii python-epsilon 0.5.9-1 utility Python modules commonly used by
Divm
ii python-exceler 0.6.3a-3.1 module for reading/writing Excel
spreadsheet
ii python-feedpar 4.1-12 Universal Feed Parser for Python
ii python-flup 1.0-1 Implements Python Web Server Gateway
Interfa
ii python-formenc 1.0.1-1 validation and form generation Python
packag
ii python-fpconst 0.7.2-4 Utilities for handling IEEE 754 floating
poi
ii python-fstab 1.3-0ubuntu1 read, manipulate, and write /etc/fstab
files
ii python-gconf 2.22.3-0ubuntu Python bindings for GConf2
ii python-gdata 1.1.1-1 Google Data Python client library
ii python-gdbm 2.5.2-1ubuntu1 GNU dbm database support for Python
ii python-genshi 0.5.1-1 Python XML-based template engine
ii python-glade2 2.13.0-2ubuntu GTK+ bindings: Glade support
ii python-gmenu 2.25.5-0ubuntu an implementation of the freedesktop menu
sp
ii python-gnome2 2.22.3-0ubuntu Python bindings for the GNOME desktop
enviro
ii python-gnome2- 2.24.1-0ubuntu Python bindings for the GNOME desktop
enviro
ii python-gnome2- 2.19.1-0ubuntu Python bindings for the GNOME desktop
enviro
ii python-gnomeca 2.22.3-0ubuntu Python bindings for gnomecanvas (debug
exten
ii python-gnupgin 0.3.2-9ubuntu1 Python interface to GnuPG (GPG)
ii python-gnuplot 1.8-1 A Python interface to the gnuplot plotting
p
ii python-gobject 2.15.4-1 Python bindings for the GObject library
ii python-gobject 2.15.4-1 Python bindings for the GObject library
(deb
ii python-gobject 2.15.4-1 Development headers for the GObject Python
b
ii python-gpod 0.6.0-7 Python bindings for libgpod
ii python-gst0.10 0.10.14-1 generic media-playing framework (Python
bind
ii python-gtk2 2.13.0-2ubuntu Python bindings for the GTK+ widget set
ii python-gtkhtml 2.19.1-0ubuntu Python bindings for the GtkHTML2 library
ii python-gtksour 2.4.0-1 Python bindings for the GtkSourceView
widget
ii python-httplib 0.4.0-0ubuntu1 A comprehensive HTTP client library
written
ii python-imaging 1.1.6-3 Python Imaging Library
ii python-imaging 1.1.6-3 Examples for the Python Imaging Library
ii python-imaging 1.1.6-3 Python Imaging Library - ImageTk Module
ii python-jabber 0.5.0-1.4 Python module for the Jabber instant
messagi
ii python-jaxml 3.01-5 Python module for generating XML documents
ii python-json 3.4-4 a JSON (http://json.org) reader and writer
i
ii python-kid 0.9.6-1 simple Pythonic template language for XML
ba
ii python-launchp 0.3.2 simple Python Interface to Bugs in
Launchpad
ii python-launchp 0.1.21 library for launchpad integration
ii python-launchp 0.2~bzr29-0ubu Launchpad web services client library
ii python-libxml2 2.6.32.dfsg-5u Python bindings for the GNOME XML library
ii python-ll-core 1.11.1-1 Python modules for colors, make, cron,
daemo
ii python-ll-xist 2.15.5-1.1ubun Extensible HTML and XML generator and DOM
pa
ii python-logilab 0.17.4-1 extend Python's abstract syntax tree (AST)
ii python-logilab 0.36.1-1 useful miscellaneous modules used by
Logilab
ii python-louie 1.1-1.1 Python signal dispatching mechanism
ii python-lxml 2.1.5-1 pythonic binding for the libxml2 and
libxslt
ii python-m2crypt 0.18.2-2 a crypto and SSL toolkit for Python
ii python-mako 0.2.2-1 fast and lightweight templating for the
Pyth
ii python-matplot 0.98.5.2-1 Python based plotting system in a style
simi
ii python-matplot 0.98.5.2-1 Python based plotting system (data
package)
ii python-matplot 0.98.5.2-1 Python based plotting system
(documentation
ii python-medusa 0.5.4+clean-2u Framework for implementing asynchronous
serv
ii python-medusa- 0.5.4+clean-2u Framework for implementing asynchronous
serv
ii python-ming 1:0.3.0-14 Ming (SWF) module for Python
ii python-minimal 2.5.2-3ubuntu1 A minimal subset of the Python language
(def
ii python-mutagen 1.14-1 audio metadata editing library
ii python-myghty 1.1-3 Python based templating framework
originally
ii python-netcdf 2.4.11-2 A netCDF interface for Python
ii python-nevow 0.9.31-4 Web application templating system for
Python
ii python-newt 0.52.2-11.3ubu A NEWT module for Python
ii python-nose 0.10.3-1 test discovery and running for Python's
unit
ii python-notify 0.1.1-2build1 Python bindings for libnotify
ii python-numeric 24.2-9 Numerical (matrix-oriented) Mathematics
for
ii python-numeric 24.2-9 Extension modules for Numeric Python
ii python-numpy 1:1.1.1-2ubunt Numerical Python adds a fast array
facility
ii python-numpy-d 1:1.1.1-2ubunt NumPy documentation
ii python-opengl 3.0.0~b6-2 Python bindings to OpenGL
ii python-opengl- 3.0.0~b6-2 Documentation for PyOpenGL
ii python-openid 2.2.1-1 OpenID support for servers and consumers
ii python-openssl 0.7-2 Python wrapper around the OpenSSL library
ii python-pam 0.4.2-12ubuntu A Python interface to the PAM library
ii python-paste 1.7.1-1 Tools for using a Web Server Gateway
Interfa
ii python-pastede 1.3.2-1 Load, configure, and compose WSGI
applicatio
ii python-pastesc 1.6.3-1 serving web applications, creating file
layo
ii python-pastewe 1.0-3 port/reimplementation of Webware WebKit in
W
ii python-pexpect 2.3-1 Python module for automating interactive
app
ii python-pgsql 2.5.1-2ubuntu1 A Python DB-API 2.0 interface to
PostgreSQL
ii python-pkg-res 0.6c9-0ubuntu1 Package Discovery and Resource Access
using
ii python-plplot 5.9.0-8ubuntu1 Python support for PLplot, a plotting
librar
ii python-problem 0.129 Python library to handle problem reports
ii python-profile 2.5.2-1 deterministic profiling of any Python
progra
ii python-protoco 1.0a.svn200706 Open Protocols and Component Adaptation
for
ii python-psycopg 2.0.8-0ubuntu1 Python module for PostgreSQL
ii python-pudge 0.1.4~svn137-4 documentation generator for Python
projects
ii python-pyatspi 1.25.5-0ubuntu Assistive Technology Service Provider
Interf
ii python-pychart 1.39-6 Python library for creating high quality
cha
ii python-pycurl 7.18.2-1build1 Python bindings to libcurl
ii python-pygment 0.10-1 syntax highlighting package written in
Pytho
ii python-pygooca 0.12.0-0ubuntu GooCanvas Python bindings
ii python-pyinoti 0.7.1-1 Simple Linux inotify Python bindings
ii python-pylons 0.9.6.2-2 Python web framework emphasizing
flexibility
ii python-pynetsn 0.28.8-1 Python ctypes bindings for NET-SNMP with
Twi
ii python-pyopens 0.7-2 transitional dummy package
ii python-pyorbit 2.24.0-0ubuntu A Python language binding for the ORBit2
COR
ii python-pyparsi 1.5.0-1 Python parsing module
ii python-pysnmp- 4.1.9a-1 Python SNMP library for agents and
managers
ii python-pysnmp- 3.5.2-3 speed enhanced Python SNMP library for
agent
ii python-pysqlit 2.5.0-2 Python interface to SQLite 3
ii python-pysqlit 2.5.0-2 Python interface to SQLite 3 (debug
extensio
ii python-pyxmpp 1.0.0-4 XMPP and Jabber implementation for Python
ii python-pyxmpp- 1.0.0-4 XMPP and Jabber implementation for Python
(d
ii python-qt3 3.17.6-1 Qt3 bindings for Python
ii python-quixote 2.5-3 A highly Pythonic Web application
framework
ii python-quixote 2.5-3 Quixote web application framework
documentat
ii python-rdflib 2.4.0-5 RDF library containing an RDF triple store
a
ii python-roman 0.5-2 A module for generating/analyzing Roman
nume
ii python-routes 1.9.2-1 Routing Recognition and Generation Tools
ii python-rrd 1.3.1-4 Transitional dummy package
ii python-rrdtool 1.3.1-4 Time-series data storage and display
system
ii python-scgi 1.12-0.2 Server-side implementation of the SCGI
proto
ii python-scienti 2.4.11-2 Python modules useful for scientific
computi
ii python-scienti 2.4.11-2 Python modules useful for scientific
computi
ii python-scipy 0.6.0-12 scientific tools for Python
ii python-serial 2.3-1 pyserial - module encapsulating access for
t
ii python-sesame 0.24-1 Python wrapper for Sesame's REST HTTP API
ii python-setupto 0.6c9-0ubuntu1 Python Distutils Enhancements
ii python-sexy 0.1.9-1ubuntu1 python language bindings for libsexy
ii python-simplej 1.9.2-1 Simple, fast, extensible JSON
encoder/decode
ii python-sip4 4.7.9-1 Python/C++ bindings generator runtime
librar
ii python-smartpm 1.1.1~bzr20081 Python library of the Smart Package
Manager
ii python-soappy 0.12.0-4 SOAP Support for Python
ii python-softwar 0.71.1 manage the repositories that you install
sof
ii python-sparse 1.0.1-5 Sparse linear algebra extension for Python
ii python-sparse- 1.0.1-5 Sparse linear algebra extension for
Python:
ii python-sqlalch 0.4.8-1 SQL toolkit and Object Relational Mapper
for
ii python-sqlalch 0.4.8-1 Documentation for the SQLAlchemy Python
libr
ii python-sqlite 1.0.1-7 python interface to SQLite 2
ii python-sqlobje 0.10.2-2 Python module for SQLObject
ii python-stdeb 0.2.1-1 Python to Debian source package conversion
u
ii python-storm 0.14-0ubuntu1 object-relational mapper (ORM) for Python
ii python-support 0.8.7 automated rebuilding support for Python
modu
ii python-syck 0.61.2-1 PySyck python bindings to the Syck YAML
pars
ii python-tagpy 0.94.5-2 Python module for manipulating tags in
music
ii python-tk 2.5.2-1ubuntu1 Tkinter - Writing Tk applications with
Pytho
ii python-turbojs 1.2-1 TurboGears template plugin that supports
Jso
ii python-twisted 8.1.0-4 Event-based framework for internet
applicati
ii python-twisted 8.1.0-4 Event-based framework for internet
applicati
ii python-twisted 8.1.0-4 Event-based framework for internet
applicati
ii python-twisted 1:8.1.0-1 The Twisted SSH Implementation
ii python-twisted 8.1.0-4 Event-based framework for internet
applicati
ii python-twisted 8.1.0-1 Documentation generator with HTML and
LaTeX
ii python-twisted 8.1.0-2 An SMTP, IMAP and POP protocol
implementatio
ii python-twisted 8.1.0-1 A DNS protocol implementation with client
an
ii python-twisted 8.1.0-1 An NNTP protocol implementation with
client
ii python-twisted 8.0.0-1 Process management, including an inetd
serve
ii python-twisted 8.0.0-1 Process management, including an inetd
serve
ii python-twisted 0.3.13-3 SNMP implementation for the Twisted
networki
ii python-twisted 8.1.0-1 An HTTP protocol implementation together
wit
ii python-twisted 8.1.0-1 An HTTP/1.1 Server Framework
ii python-twisted 8.1.0-2 Chat and Instant Messaging
ii python-tz 2008i-1 Python version of the Olson timezone
databas
ii python-unit 1.4.1-16 unit test framework for Python
ii python-uno 1:3.0.1-1ubunt Python interface for OpenOffice.org
ii python-unum 4.0-1 Units in Python
ii python-usb 0.4.1-4 USB interface for Python
ii python-utidyli 0.2-3.2ubuntu1 Python wrapper for TidyLib
ii python-virtkey 0.50ubuntu1 Library to emulate keyboard keypresses.
ii python-visual 3.2.9-4.1 VPython 3D scientific visualization
library
ii python-vobject 0.6.0-1 parse iCalendar and VCards in Python
ii python-vte 1:0.19.4-0ubun Python bindings for the VTE widget set
ii python-wadllib 0.1~bzr6-0ubun Python library for navigating WADL files
ii python-webhelp 0.6.4-1 Library of helper functions to make
writing
ii python-webkitg 1.0.1-0ubuntu2 WebKit/Gtk Python bindings
ii python-webpy 0.310-1 Web framework for Python applications
ii python-webut 0.1-0.2 Miscellaneous utilities for nevow and
twiste
ii python-werkzeu 0.3.1-1 a collection of utilities for WSGI
applicati
ii python-wmi 1:0.1.13-1 DCOM/WMI client implementation, Python
bindi
ii python-wsgiref 0.1.2-4 a standalone release of the wsgiref
library
ii python-xdg 0.15-1.1ubuntu A python library to access freedesktop.org
s
ii python-xkit 0.4.2 library for the manipulation of the
xorg.con
ii python-xml 0.8.4-10.1ubun XML tools for Python
ii python-xmpp 0.4.1-cvs20080 Python library for communication with XMPP
(
ii python-yaml 3.08-1 YAML parser and emitter for Python
ii python-zopeint 3.3.1-7build1 The implementation of interface
definitions
ii python-zopeint 3.3.1-7build1 The implementation of interface
definitions
ii python-zsi 2.0-2ubuntu4 Zolera Soap Infrastructure
ii python2.4 2.4.6-1ubuntu1 An interactive high-level object-oriented
la
ii python2.4-dev 2.4.6-1ubuntu1 Header files and a static library for
Python
ii python2.4-mini 2.4.6-1ubuntu1 A minimal subset of the Python language
(ver
ii python2.5 2.5.4-0ubuntu1 An interactive high-level object-oriented
la
ii python2.5-dbg 2.5.4-0ubuntu1 Debug Build of the Python Interpreter
(versi
ii python2.5-dev 2.5.4-0ubuntu1 Header files and a static library for
Python
ii python2.5-doc 2.5.4-0ubuntu1 Documentation for the high-level
object-orie
ii python2.5-mini 2.5.4-0ubuntu1 A minimal subset of the Python language
(ver
ii qprof 0.5.2-5 Profiling utilities for Linux
ii qt3-apps-dev 3:3.3.8-b-5ubu Qt3 Developer applications development
files
ii qt3-dev-tools 3:3.3.8-b-5ubu Qt3 development tools
ii qt3-qtconfig 3:3.3.8-b-5ubu The Qt3 Configuration Application
ii rabbitmq-serve 1.5.1-1 An AMQP server written in Erlang
ii radeontool 1.5+git7660616 utility to control ATI Radeon backlight
func
ii rarian-compat 0.8.1-1ubuntu2 Rarian is a documentation meta-data
library
ii rdesktop 1.6.0-2ubuntu1 RDP client for Windows NT/2000 Terminal
Serv
ii readahead 1:0.20050517.0 read files into the page cache
ii readline-commo 5.2-3build1 GNU readline and history libraries, common
f
ii realpath 1.12 Return the canonicalized absolute pathname
ii reiserfsprogs 1:3.6.19-6 User-level tools for ReiserFS filesystems
ii reportbug 3.47ubuntu1 reports bugs in the Debian distribution
ii rfc4627-erlang 1.1.1 A JSON (RFC4627) codec and JSON-RPC server
f
ii rhino 1.7R1-2 JavaScript engine written in Java
ii rhythmbox 0.11.6svn20090 music player and organizer for GNOME
ii rpm 4.4.2.3-2 Red Hat package manager
ii rrdtool 1.3.1-4 Time-series data storage and display
system
ii rrdtool-tcl 1.3.1-4 Time-series data storage and display
system
ii rss-glx 0.8.2-1ubuntu3 Really Slick Screensavers GLX Port
ii rsync 3.0.4-3ubuntu1 fast remote file copy program (like rcp)
ii ruby 4.2 An interpreter of object-oriented
scripting
ii ruby1.8 1.8.7.72-3 Interpreter of object-oriented scripting
lan
ii samba-common 2:3.2.5-4ubunt Samba common files used by both the server
a
ii scilab 4.1.2-6 Matrix-based scientific software package
(a
ii scilab-bin 4.1.2-6 Matrix-based scientific software package
(a
ii scilab-doc 4.1.2-6 Matrix-based scientific software package
(a
ii scim 1.4.7-3ubuntu1 smart common input method platform
ii scim-bridge-ag 0.4.14-2ubuntu IME server of scim-bridge communicate with
S
ii scim-bridge-cl 0.4.14-2ubuntu IME server of scim-bridge communicate with
S
ii scim-gtk2-immo 1.4.7-3ubuntu1 GTK+2 input method module with SCIM as
backe
ii scim-modules-s 1.4.7-3ubuntu1 socket modules for SCIM platform
ii scim-modules-t 0.5.8-1 generic tables IM engine module for SCIM
pla
ii scim-tables-ad 0.5.8-1 miscellaneous input method data tables for
S
ii scm 5e5-3 A Scheme language interpreter
ii screen 4.0.3-11ubuntu terminal multiplexor with VT100/ANSI
termina
ii screen-profile 1.19-0ubuntu1 a set of useful profiles and a
profile-switc
ii screen-resolut 0.5 Extension for the GNOME screen resolution
ap
ii screensaver-de 0.2-1 Wallpapers for image processing
screensavers
ii sdcc 2.8.0.dfsg-1 Small Device C Compiler (DFSG version)
ii sdcc-doc 2.8.0.dfsg-1 Small Device C Compiler (documentation,
DFSG
ii sdcc-libraries 2.8.0.dfsg-1 Small Device C Compiler (libraries, DFSG
ver
ii sdcc-ucsim 2.8.0.dfsg-1 Micro-controller simulator for SDCC (DFSG
ve
ii seahorse 2.25.4-0ubuntu A Gnome front end for GnuPG
ii seahorse-plugi 2.25.3-0ubuntu seahorse plugins and utilities for
encryptio
ii sed 4.1.5-8 The GNU sed stream editor
ii sendxmpp 1.15-1 commandline XMPP (jabber) utility
ii serpentine 0.9-5ubuntu4 An application for creating audio CDs
ii sgml-base 1.26 SGML infrastructure and SGML catalog file
su
ii sgml-data 2.0.3 common SGML and XML data
ii shared-mime-in 0.51-0ubuntu1 FreeDesktop.org shared MIME database and
spe
ii skencil 0.6.17-16 Interactive vector drawing program for X11
ii slib 3b1-3 Portable Scheme library
ii smartdimmer 0.1-2build1 Change LCD brightness on Geforce 6200Go
card
ii smbclient 2:3.2.5-4ubunt a LanManager-like simple client for Unix
ii smbldap-tools 0.9.4-1 Scripts to manage Unix and Samba accounts
st
ii software-prope 0.71.1 manage the repositories that you install
sof
ii soprano-daemon 2.1.67+dfsg.1+ daemon for the Soprano RDF framework
ii sound-juicer 2.25.1-0ubuntu GNOME 2 CD Ripper
ii spidermonkey-b 1.8.1.16+nobin standalone JavaScript/ECMAScript
(ECMA-262)
ii splix 2.0.0~rc2-0ubu Driver for Samsung's SPL2 (bw) and SPLc
(col
ii sqlite-doc 2.8.17-4build1 SQLite documentation
ii sqlite3 3.6.10-1 A command line interface for SQLite 3
ii sqlite3-doc 3.6.10-1 SQLite 3 documentation
ii sqlitebrowser 1.3-2.2 GUI editor for SQLite databases
ii sqsh 2.1-8build1 commandline SQL client for MS SQL and
Sybase
ii ssh 1:5.1p1-5ubunt secure shell client and server
(metapackage)
ii ssh-askpass-gn 1:5.1p1-5ubunt interactive X program to prompt users for
a
ii ssl-cert 1.0.23ubuntu1 simple debconf wrapper for OpenSSL
ii startup-tasks 0.3.9-8 definitions of essential tasks to run on
sta
ii strace 4.5.17+cvs0807 A system call tracer
ii stress 0.18.9-1 A tool to impose load on and stress test a
c
ii subversion 1.5.4dfsg1-1ub Advanced version control system
ii subversion-too 1.5.4dfsg1-1ub Assorted tools related to Subversion
ii sudo 1.6.9p17-1ubun Provide limited super user privileges to
spe
ii sun-java6-bin 6-11-0ubuntu1 Sun Java(TM) Runtime Environment (JRE) 6
(ar
ii sun-java6-jre 6-11-0ubuntu1 Sun Java(TM) Runtime Environment (JRE) 6
(ar
ii sun-java6-plug 6-11-0ubuntu1 The Java(TM) Plug-in, Java SE 6
ii swfdec-gnome 2.24.0-0ubuntu Tools to play SWF files (Macromedia Flash)
o
ii swfmill 0.2.12-2 xml2swf and swf2xml processor
ii swftools 0.8.1-2.1 Collection of utilities for SWF file
manipul
ii swig 1.3.36-1ubuntu Generate scripting interfaces to C/C++
code
ii synaptic 0.62.2ubuntu2 Graphical package manager
ii sysklogd 1.5-5ubuntu3 System Logging Daemon
ii syslinux 2:3.63+dfsg-2u Bootloader for Linux/i386 using MS-DOS
flopp
ii system-cleaner 1.10.5-0ubuntu clean up a system so it's more like a
freshl
ii system-cleaner 1.10.5-0ubuntu clean up a system so it's more like a
freshl
ii system-config- 1.1.2+git20090 Printer configuration GUI
ii system-config- 1.1.2+git20090 Printer configuration GUI
ii system-service 0.3.9-8 definitions of essential system services
ii system-tools-b 2.6.0-2ubuntu4 System Tools to manage computer
configuratio
ii sysv-rc 2.86.ds1-61ubu System-V-like runlevel change mechanism
ii sysvinit-utils 2.86.ds1-61ubu System-V-like utilities
ii sysvutils 2.86.ds1-61ubu System-V-like utilities (transitional
packag
ii tailor 0.9.35-2 migrate changesets between version control
s
ii tangerine-icon 0.26.debian-3 Tangerine Icon theme
ii tango-icon-the 0.8.1-4 Tango Icon theme
ii tango-icon-the 0.7-0ubuntu1 Tango Icon theme - common icons
ii tar 1.20-1 GNU version of the tar archiving utility
ii tasksel 2.73ubuntu13 Tool for selecting tasks for installation
on
ii tasksel-data 2.73ubuntu13 Official tasks used for installation of
Debi
ii tcl 8.4.16-2 The Tool Command Language (default
version)
ii tcl8.4 8.4.19-2 Tcl (the Tool Command Language) v8.4 -
run-t
ii tclreadline 2.1.0-8 GNU Readline Extension for Tcl/Tk
ii tcpd 7.6.q-16 Wietse Venema's TCP wrapper utilities
ii tcpdump 3.9.8-4 A powerful tool for network monitoring and
d
ii tdsodbc 0.82-4 ODBC driver for connecting to MS SQL and
Syb
ii telnet 0.17-36 The telnet client
ii tex-common 1.11.3 common infrastructure for building and
insta
ii texinfo 4.11.dfsg.1-4 Documentation system for on-line
information
ii texlive 2007.dfsg.1-4 TeX Live: A decent selection of the TeX
Live
ii texlive-base 2007.dfsg.1-4 TeX Live: Essential programs and files
ii texlive-base-b 2007.dfsg.2-4 TeX Live: Essential binaries
ii texlive-common 2007.dfsg.1-4 TeX Live: Base component
ii texlive-doc-ba 2007.dfsg.1-1 TeX Live: Base documentation
ii texlive-extra- 2007.dfsg.2-4 TeX Live: TeX auxiliary programs
ii texlive-fonts- 2007.dfsg.1-4 TeX Live: Recommended fonts
ii texlive-fonts- 2007.dfsg.1-4 TeX Live: Documentation files for
texlive-fo
ii texlive-generi 2007.dfsg.8-1u TeX Live: Miscellaneous extra generic
macros
ii texlive-generi 2007.dfsg.1-4 TeX Live: Miscellaneous generic macros
ii texlive-humani 2007.dfsg.8-1u TeX Live: LaTeX support for the humanities
ii texlive-humani 2007.dfsg.8-1u TeX Live: Documentation files for
texlive-hu
ii texlive-latex- 2007.dfsg.1-4 TeX Live: Basic LaTeX packages
ii texlive-latex- 2007.dfsg.1-4 TeX Live: Documentation files for
texlive-la
ii texlive-latex- 2007.dfsg.8-1u TeX Live: LaTeX supplementary packages
ii texlive-latex- 2007.dfsg.8-1u TeX Live: Documentation files for
texlive-la
ii texlive-latex- 2007.dfsg.1-4 TeX Live: LaTeX recommended packages
ii texlive-latex- 2007.dfsg.1-4 TeX Live: Documentation files for
texlive-la
ii texlive-pictur 2007.dfsg.1-4 TeX Live: Packages for drawings graphics
ii texlive-pictur 2007.dfsg.1-4 TeX Live: Documentation files for
texlive-pi
ii texlive-pstric 2007.dfsg.8-1u TeX Live: PSTricks packages
ii texlive-pstric 2007.dfsg.8-1u TeX Live: Documentation files for
texlive-ps
ii thunderbird-lo 1:2.0.0.14+1-0 Thunderbird English language/region
package
ii tidy 20081224cvs-1 HTML syntax checker and reformatter
ii tilda 0.09.6-1 terminal emulator with first person
shooter
ii time 1.7-23 The GNU time program for measuring cpu
resou
ii tipa 2:1.3-12 system for processing phonetic symbols in
La
ii tk8.4 8.4.19-2 Tk toolkit for Tcl and X11, v8.4 -
run-time
ii tofrodos 1.7.8.debian.1 Converts DOS <-> Unix text files, alias
tofr
ii tomboy 0.13.2-0ubuntu desktop note taking program using Wiki
style
ii tora 1.3.23-1 A graphical toolkit for database
developers
ii toshset 1.73-3 Access much of the Toshiba laptop hardware
i
ii totem 2.25.3-0ubuntu A simple media player for the GNOME
desktop
ii totem-common 2.25.3-0ubuntu Data files for the Totem media player
ii totem-gstreame 2.25.3-0ubuntu A simple media player for the GNOME
desktop
ii totem-mozilla 2.25.3-0ubuntu Totem Mozilla plugin
ii totem-plugins 2.25.3-0ubuntu Plugins for the Totem media player
ii traceroute 2.0.12-1 Traces the route taken by packets over an
IP
ii tracker 0.6.6-2ubuntu2 metadata database, indexer and search tool
ii tracker-search 0.6.6-2ubuntu2 metadata database, indexer and search tool
-
ii transmission-c 1.42-0ubuntu1 lightweight BitTorrent client (common
files)
ii transmission-g 1.42-0ubuntu1 lightweight BitTorrent client (graphical
int
ii tsclient 0.150-1ubuntu4 front-end for viewing of remote desktops
in
ii ttf-arabeyes 2.0-2 Arabeyes GPL TrueType Arabic fonts
ii ttf-arphic-uka 0.2.20080216.1 "AR PL UKai" Chinese Unicode TrueType font
c
ii ttf-arphic-umi 0.2.20080216.1 "AR PL UMing" Chinese Unicode TrueType
font
ii ttf-baekmuk 2.2-2 Baekmuk series TrueType fonts
ii ttf-bengali-fo 1:0.5.4ubuntu2 Free TrueType fonts for the Bengali
language
ii ttf-bitstream- 1.10-7 The Bitstream Vera family of free TrueType
f
ii ttf-dejavu 2.25-3 Metapackage to pull in ttf-dejavu-core and
t
ii ttf-dejavu-cor 2.25-3 Vera font family derivate with additional
ch
ii ttf-dejavu-ext 2.25-3 Vera font family derivate with additional
ch
ii ttf-devanagari 1:0.5.4ubuntu2 Free TrueType fonts for languages using
the
ii ttf-freefont 20080323-3 Freefont Serif, Sans and Mono Truetype
fonts
ii ttf-gujarati-f 1:0.5.4ubuntu2 Free TrueType fonts for the Gujarati
languag
ii ttf-indic-font 1:0.5.4ubuntu2 Metapackage for free Indian language fonts
ii ttf-indic-font 1:0.5.4ubuntu2 Core collection of free Indian language
font
ii ttf-kannada-fo 1:0.5.4ubuntu2 Free TrueType fonts for the Kannada
language
ii ttf-kochi-goth 1.0.20030809-8 Kochi Subst Gothic Japanese TrueType font
wi
ii ttf-kochi-minc 1.0.20030809-8 Kochi Subst Mincho Japanese TrueType font
wi
ii ttf-lao 0.0.20060226-2 TrueType font for Lao language
ii ttf-liberation 1.04.93-1 Free fonts with the same metrics as Times,
A
ii ttf-malayalam- 1:0.5.4ubuntu2 Free TrueType fonts for the Malayalam
langua
ii ttf-mgopen 1.1-3 Magenta MgOpen TrueType fonts
ii ttf-mscorefont 2.6 Installer for Microsoft TrueType core
fonts
ii ttf-opensymbol 1:3.0.1-1ubunt The OpenSymbol TrueType font
ii ttf-oriya-font 1:0.5.4ubuntu2 Free TrueType fonts for the Oriya language
ii ttf-punjabi-fo 1:0.5.4ubuntu2 Free TrueType fonts for the Punjabi
language
ii ttf-sazanami-g 20040629-2ubun Sazanami Gothic Japanese TrueType font
ii ttf-sazanami-m 20040629-2ubun Sazanami Mincho Japanese TrueType font
rc ttf-sil-gentiu 20080813:1.02- extended Unicode Latin font ("a typeface
for
ii ttf-tamil-font 1:0.5.4ubuntu2 Free TrueType fonts for the Tamil language
ii ttf-telugu-fon 1:0.5.4ubuntu2 Free TrueType fonts for the Telugu
language
ii ttf-thai-tlwg 1:0.4.11-2 Thai fonts in TrueType format
ii ttf-unfonts-co 1.0.1-7ubuntu1 Un series Korean TrueType fonts
ii twisted-doc 8.1.0-4 The official documentation of Twisted
ii twisted-doc-ap 2.5.0-2build2 The auto-generated API docs of Twisted
ii tzdata 2008i-3 time zone and daylight-saving time data
ii ubufox 0.6-0ubuntu2 Ubuntu Firefox specific configuration
defaul
ii ubuntu-artwork 46.3 Ubuntu themes and artwork
ii ubuntu-desktop 1.132 The Ubuntu desktop system
ii ubuntu-dev-too 0.61 useful tools for Ubuntu developers
ii ubuntu-docs 9.04.1 The Ubuntu Documentation Project
ii ubuntu-gdm-the 0.30 Ubuntu GDM themes
ii ubuntu-keyring 2008.03.04 GnuPG keys of the Ubuntu archive
ii ubuntu-minimal 1.132 Minimal core of Ubuntu
ii ubuntu-restric 27 Commonly used restricted packages
ii ubuntu-sounds 0.10 Ubuntu's GNOME audio theme
ii ubuntu-standar 1.132 The Ubuntu standard system
ii ubuntu-system- 0.1.10 Dbus service to set various system-wide
conf
ii ubuntu-wallpap 0.28.1 Ubuntu Wallpapers
ii ucf 3.0011 Update Configuration File: preserve user
cha
ii udev 137-2 rule-based device node and kernel event
mana
ii udo 6.4.1-1 universal document - text processing
utility
ii udo-doc-en 6.4.1-1 universal document - English documentation
ii ufw 0.26-0ubuntu1 program for managing a netfilter firewall
ii unattended-upg 0.38 automatic installation of security
upgrades
ii units 1.87-1 converts between different systems of
units
ii unixodbc 2.2.11-16build ODBC tools libraries
ii unixodbc-bin 2.2.11-16build Graphical tools for ODBC management and
brow
ii uno-libs3 1.4.1+OOo3.0.1 UNO public shared libraries
ii unrar 1:3.8.5-1 Unarchiver for .rar files (non-free
version)
ii unrtf 0.19.3-1.1 RTF to other formats converter
ii unzip 5.52-12ubuntu1 De-archiver for .zip files
ii update-inetd 4.31 inetd configuration file updater
ii update-manager 1:0.97 GNOME application that manages apt updates
ii update-manager 1:0.97 manage release upgrades
ii update-motd 1.10 Modular framework to dynamically generate
th
ii update-notifie 0.75.8 Daemon which notifies about package
updates
ii update-notifie 0.75.8 Files shared between update-notifier and
ade
ii upstart 0.3.9-8 event-based init daemon
ii upstart-compat 0.3.9-8 compatibility for System-V-like init
ii upstart-logd 0.3.9-8 boot logging daemon
ii ure 1.4.1+OOo3.0.1 UNO runtime environment
ii usb-creator 0.1.11 Ubuntu USB desktop image creator
ii usbutils 0.73-8ubuntu3 Linux USB utilities
ii usplash 0.5.27 Userspace bootsplash utility
ii usplash-theme- 0.19 Usplash theme for Ubuntu
ii util-linux 2.14-1ubuntu4 Miscellaneous system utilities
ii util-linux-loc 2.14-1ubuntu4 Locales files for util-linux
ii uuid-runtime 1.41.3-1ubuntu universally unique id library
ii valgrind 1:3.3.1-2ubunt A memory debugger and profiler
ii vbetool 1.1-2 run real-mode video BIOS code to alter
hardw
ii vcg 1.30debian-6 A Visualization Tool for compiler graphs
ii vflib3 3.6.14.dfsg-1 Versatile Font Library
ii vim-common 2:7.2.079-1ubu Vi IMproved - Common files
ii vim-tiny 2:7.2.079-1ubu Vi IMproved - enhanced vi editor - compact
v
ii vinagre 2.25.5-0ubuntu VNC client for the GNOME Desktop
ii vino 2.25.5-0ubuntu VNC server for GNOME
ii vmware-package 0.22 utility for building VMware Debian
packages
ii vnc-common 3.3.7-14ubuntu Virtual network computing server software
ii vorbis-tools 1.2.0-5 several Ogg Vorbis tools
ii vrweb 1.5-17 A VRML browser and editor
ii w3c-dtd-xhtml 1.1-5ubuntu1 W3C eXtensible HyperText Markup Language
(XH
ii w3m 0.5.2-2build1 WWW browsable pager with excellent
tables/fr
ii wamerican 6-2.3 American English dictionary words for
/usr/s
ii wbritish 6-2.3 British English dictionary words for
/usr/sh
ii wdiff 0.5-18 Compares two files word by word
ii wget 1.11.4-2ubuntu retrieves files from the web
ii whiptail 0.52.2-11.3ubu Displays user-friendly dialog boxes from
she
ii whois 4.7.30 an intelligent whois client
ii wireless-tools 29-1.1ubuntu2 Tools for manipulating Linux Wireless
Extens
ii wmi-client 1:0.1.13-1 DCOM/WMI client implementation
ii wodim 9:1.1.9-1ubunt command line CD/DVD writing tool
ii wpasupplicant 0.6.6-2 client support for WPA and WPA2 (IEEE
802.11
ii wvdial 1.60.1+nmu2 PPP dialer with built-in intelligence
ii wwwconfig-comm 0.2.1 Debian web auto configuration
ii x-ttcidfont-co 32 TrueType and CID fonts configuration for X
ii x11-apps 7.3+4 X applications
ii x11-common 1:7.4~5ubuntu1 X Window System (X.Org) infrastructure
ii x11-session-ut 7.3+1 X session utilities
ii x11-utils 7.3+2 X11 utilities
ii x11-xfs-utils 7.3+1 X font server utilities
ii x11-xkb-utils 7.4+1 X11 XKB utilities
ii x11-xserver-ut 7.3+5 X server utilities
ii x11proto-compo 1:0.4-2 X11 Composite extension wire protocol
ii x11proto-core- 7.0.14-1 X11 core wire protocol and auxiliary
headers
ii x11proto-damag 1:1.1.0-2build X11 Damage extension wire protocol
ii x11proto-fixes 1:4.0-3 X11 Fixes extension wire protocol
ii x11proto-input 1.5.0-1ubuntu1 X11 Input extension wire protocol
ii x11proto-kb-de 1.0.3-3ubuntu1 X11 XKB extension wire protocol
ii x11proto-randr 1.2.99.3-1 X11 RandR extension wire protocol
ii x11proto-rende 2:0.9.3-2 X11 Render extension wire protocol
ii x11proto-xext- 7.0.4-1 X11 various extension wire protocol
ii x11proto-xiner 1.1.2-5ubuntu1 X11 Xinerama extension wire protocol
ii xauth 1:1.0.3-2 X authentication utility
ii xaw3dg 1.5+E-17 Xaw3d widget set
ii xbase-clients 1:7.4~5ubuntu1 miscellaneous X clients - metapackage
ii xbitmaps 1.0.1-2ubuntu1 Base X bitmaps
ii xcursor-themes 1.0.1-5ubuntu1 Base X cursor themes
ii xdg-user-dirs 0.10-1ubuntu2 tool to manage well known user directories
ii xdg-user-dirs- 0.8-0ubuntu1 tool to manage well known user directories
(
ii xdg-utils 1.0.2-6 desktop integration utilities from
freedeskt
ii xf86dga 1:1.0.2-0ubunt X client - xf86dga
ii xfdiff 4.5.0-0ubuntu2 graphical "diff" and "patch" utility
ii xfonts-100dpi 1:1.0.0-4 100 dpi fonts for X
ii xfonts-75dpi 1:1.0.0-4 75 dpi fonts for X
ii xfonts-base 1:1.0.0-5 standard fonts for X
ii xfonts-encodin 1:1.0.2-3 Encodings for X.Org fonts
ii xfonts-scalabl 1:1.0.0-6 scalable fonts for X
ii xfonts-utils 1:7.4+1ubuntu1 X Window System font utility programs
ii xinit 1.0.9-2 X server initialisation tool
ii xinput 1.4.0-1 Runtime configuration and test of XInput
dev
ii xkb-data 1.4-1ubuntu3 X Keyboard Extension (XKB) configuration
dat
ii xml-core 0.12 XML infrastructure and XML catalog file
supp
ii xml-rpc-api2cp 1.06.27-1 Generate C++ wrapper classes for XML-RPC
ser
ii xml-rpc-api2tx 1.06.27-1 Dump an XML-RPC API as a text file
ii xorg 1:7.4~5ubuntu1 X.Org X Window System
ii xpdf-common 3.02-1.4ubuntu Portable Document Format (PDF) suite --
comm
ii xpdf-reader 3.02-1.4ubuntu Portable Document Format (PDF) suite --
view
ii xpmutils 1:3.5.7-1 X11 pixmap utilities
ii xresprobe 0.4.24ubuntu8 X Resolution Probe
ii xsane 0.996-1ubuntu2 featureful graphical frontend for SANE
(Scan
ii xsane-common 0.996-1ubuntu2 featureful graphical frontend for SANE
(Scan
ii xscreensaver-d 5.07-0ubuntu3 data files to be shared among screensaver
fr
ii xscreensaver-g 5.07-0ubuntu3 GL(Mesa) screen hacks for xscreensaver
ii xserver-common 2:1.5.99.902-0 common files used by various X servers
ii xserver-xorg 1:7.4~5ubuntu1 the X.Org X server
ii xserver-xorg-c 2:1.5.99.902-0 Xorg X server - core server
ii xserver-xorg-i 1:7.4~5ubuntu1 the X.Org X server -- input driver
metapacka
ii xserver-xorg-i 1:2.1.1-1ubunt X.Org X server -- evdev input driver
ii xserver-xorg-i 1:1.3.1-2ubunt X.Org X server -- keyboard input driver
ii xserver-xorg-i 1:1.4.0-1 X.Org X server -- mouse input driver
ii xserver-xorg-i 0.99.3-2ubuntu Synaptics TouchPad driver for
X.Org/XFree86
ii xserver-xorg-i 1:12.5.1-4ubun X.Org X server -- VMMouse input driver to
us
ii xserver-xorg-i 1:0.8.1.6-1ubu X.Org X server -- Wacom input driver
ii xserver-xorg-v 1:7.4~5ubuntu1 the X.Org X server -- output driver
metapack
ii xserver-xorg-v 1:1.2.0-2ubunt X.Org X server -- APM display driver
ii xserver-xorg-v 1:0.7.0-1ubunt X.Org X server -- ark display driver
ii xserver-xorg-v 1:6.10.0-1ubun X.Org X server -- ATI display driver
wrapper
ii xserver-xorg-v 1:1.2.0-1ubunt X.Org X server -- Chips display driver
ii xserver-xorg-v 1:1.2.1-2 X.Org X server -- Cirrus display driver
ii xserver-xorg-v 1:0.3.0-1ubunt X.Org X server -- dummy display driver
ii xserver-xorg-v 1:0.4.0-2 X.Org X server -- fbdev display driver
ii xserver-xorg-v 2.11.0-1 X.Org server -- Geode GX2/LX display
driver
ii xserver-xorg-v 1:1.2.1-1ubunt X.Org X server -- Glint display driver
ii xserver-xorg-v 1:1.3.1-1build X.Org X server -- i128 display driver
ii xserver-xorg-v 1:1.2.0-2 X.Org X server -- i740 display driver
ii xserver-xorg-v 2:2.4.1-1ubunt X.Org X server -- Intel i8xx, i9xx display
d
ii xserver-xorg-v 2:2.6.1-1ubunt X.Org X server -- Intel i8xx, i9xx display
d
ii xserver-xorg-v 6.8.0-3 X.Org X server -- ATI Mach64 display
driver
ii xserver-xorg-v 1:1.4.9.dfsg-2 X.Org X server -- MGA display driver
ii xserver-xorg-v 1:1.2.1-1ubunt X.Org X server -- Neomagic display driver
ii xserver-xorg-v 1:2.1.12-1ubun X.Org X server -- NV display driver
ii xserver-xorg-v 1:0.2.903+svn7 X.Org X server -- VIA display driver
ii xserver-xorg-v 6.8.0-1ubuntu4 X.Org X server -- ATI r128 display driver
ii xserver-xorg-v 1:6.10.0-1ubun X.Org X server -- ATI Radeon display
driver
ii xserver-xorg-v 1.2.4-1 X.Org X server -- AMD/ATI r5xx, r6xx
display
ii xserver-xorg-v 1:4.2.0.dfsg.1 X.Org X server -- Rendition display driver
ii xserver-xorg-v 1:0.6.0-1ubunt X.Org X server -- legacy S3 display driver
ii xserver-xorg-v 1:1.10.1-2 X.Org X server -- S3 ViRGE display driver
ii xserver-xorg-v 1:2.2.1-3build X.Org X server -- Savage display driver
ii xserver-xorg-v 1:1.6.0-1ubunt X.Org X server -- SiliconMotion display
driv
ii xserver-xorg-v 1:0.10.0-1ubun X.Org X server -- SiS display driver
ii xserver-xorg-v 1:0.9.0-1ubunt X.Org X server -- SiS USB display driver
ii xserver-xorg-v 1:1.4.0-2 X.Org X server -- tdfx display driver
ii xserver-xorg-v 1:1.3.0-1ubunt X.Org X server -- Trident display driver
ii xserver-xorg-v 1:1.2.0-1ubunt X.Org X server -- Tseng display driver
ii xserver-xorg-v 1:0.2.0-1ubunt X.Org X server -- Video 4 Linux display
driv
ii xserver-xorg-v 1:2.0.0-1ubunt X.Org X server -- VESA display driver
ii xserver-xorg-v 1:10.16.5-1bui X.Org X server -- VMware display driver
ii xserver-xorg-v 1:1.2.0-1ubunt X.Org X server -- Voodoo display driver
ii xsltproc 1.1.24-2ubuntu XSLT command line processor
ii xterm 239-1ubuntu1 X terminal emulator
ii xtightvncviewe 1.3.9-4 virtual network computing client software
fo
ii xtrans-dev 1.2.3-1 X transport library (development files)
ii xulrunner-1.9 1.9.0.5+nobino XUL + XPCOM application runner
ii xulrunner-1.9- 1.9.0.5+nobino Support for Gnome in xulrunner-1.9
applicati
ii xutils 1:7.4~5ubuntu1 X Window System utility programs
metapackage
ii xutils-dev 1:7.4+4 X Window System utility programs for
develop
ii xvnc4viewer 4.1.1+xorg1.0. Virtual network computing client software
fo
ii xvncviewer 3.3.7-14ubuntu Virtual network computing client software
fo
ii xxdiff 1:3.2-8 graphical file/directory comparison and
merg
ii xxdiff-scripts 1:3.2-8 graphical file/directory comparison and
merg
ii yafray 0.0.9+dfsg-1bu a modern, xml-speaking raytracing-based
rend
ii yaml-mode 0.0.3-6 emacs mode for YAML files
ii yelp 2.24.0-0ubuntu Help browser for GNOME 2
ii yui 2.5.0-1 Yahoo User Interface Library
ii zenity 2.24.1-0ubuntu Display graphical dialog boxes from shell
sc
ii zerofree 1.0.1-1 zero free blocks from ext2/3 file-systems
ii zip 2.32-1 Archiver for .zip files
ii zlib-bin 1:1.2.3.3.dfsg compression library - sample programs
ii zlib1g 1:1.2.3.3.dfsg compression library - runtime
ii zlib1g-dev 1:1.2.3.3.dfsg compression library - development
ii zsh 4.3.9-1ubuntu1 A shell with lots of features
rabbitmq at gato:/$
Matthias Radestock
2009-02-04 21:07:19 UTC
Permalink
Christopher,
Post by christopher hoover
Post by Dmitriy Samovskiy
# erl -sname foo -cookie coo
Erlang (BEAM) emulator version 5.6.5 [source] [async-threads:0] [kernel-poll:false]
Eshell V5.6.5 (abort with ^G)
(foo at myvm)1> net_adm:names().
{ok,[{"foo",1292}]}
(foo at myvm)2>
Exit from there with Ctrl+C Ctrl+C.
This works fine for me as rabbitmq in / (from which the rabbitmq startup
script fails). I started from scratch (no rabbitmq or epmd).
It occurs to me that the problem you are seeing may be the same as that
experienced by Billy Chasen, except you are running a more recent
version of Erlang and hence it gets reported slightly differently.

To check whether that is the case, please perform the same test Billy ran:

Locate the rabbitmq-server script - it should live under
/usr/lib/rabbitmq/bin/ - and change the line that reads
exec erl \
to
echo erl \
Then try to start the server normally (e.g. with
"/etc/init.d/rabbitmq-server start") and send me the output of
/var/log/rabbitmq/startup_log. Do this for both the original init.d
script containing the "cd /", and your modified version containing "cd
/var/lib/rabbitmq".


Regards,

Matthias.
christopher hoover
2009-02-05 06:05:26 UTC
Permalink
Post by Matthias Radestock
It occurs to me that the problem you are seeing may be the same as that
experienced by Billy Chasen, except you are running a more recent
version of Erlang and hence it gets reported slightly differently.
Locate the rabbitmq-server script - it should live under
/usr/lib/rabbitmq/bin/ - and change the line that reads
exec erl \
to
echo erl \
Then try to start the server normally (e.g. with
"/etc/init.d/rabbitmq-server start") and send me the output of
/var/log/rabbitmq/startup_log. Do this for both the original init.d
script containing the "cd /", and your modified version containing "cd
/var/lib/rabbitmq".
OK, here you go. The inet_defalt bits are telling.

# with "cd /" in /etc/init.d/rabbitmq
ch at gato:~$ sudo /etc/init.d/rabbitmq-server start
Starting rabbitmq-server: FAILED - check /var/log/rabbitmq/startup_log, _err
rabbitmq-server.
ch at gato:~$ cat /var/log/rabbitmq/startup_log
Starting all nodes...
Starting node rabbit at gato...
erl -pa /usr/lib/rabbitmq/bin/../ebin -noinput -s rabbit -sname rabbit -boot
start_sasl +W w +K true +A30 -kernel inet_default_listen_options a -kernel
inet_default_connect_options a -rabbit tcp_listeners [{"0.0.0.0", 5672}]
-sasl errlog_type error -kernel error_logger
{file,"/var/log/rabbitmq/rabbit.log"} -sasl sasl_error_logger
{file,"/var/log/rabbitmq/rabbit-sasl.log"} -os_mon start_cpu_sup true
-os_mon start_disksup false -os_mon start_memsup false -os_mon start_os_sup
false -os_mon memsup_system_only true -os_mon system_memory_high_watermark
0.95 -mnesia dir "/var/lib/rabbitmq/mnesia/rabbit" -pa /usr/local/ebin
-rabbit rabbit_http_conf "/usr/local/etc/rabbitmq-httpd.conf"
extra_startup_steps [{"HTTP-JSON-listeners",rabbit_http,kickstart,[]}]
-noinput

<clean up>


# with "cd /var/log/rabbitmq" in /etc/init.d/rabbitmq
ch at gato:~$ sudo /etc/init.d/rabbitmq-server start
Starting rabbitmq-server: FAILED - check /var/log/rabbitmq/startup_log, _err
rabbitmq-server.
ch at gato:~$ cat /var/log/rabbitmq/startup_log
Starting all nodes...
Starting node rabbit at gato...
erl -pa /usr/lib/rabbitmq/bin/../ebin -noinput -s rabbit -sname rabbit -boot
start_sasl +W w +K true +A30 -kernel inet_default_listen_options
[{nodelay,true},{sndbuf,16384},{recbuf,4096}] -kernel
inet_default_connect_options [{nodelay,true}] -rabbit tcp_listeners
[{"0.0.0.0", 5672}] -sasl errlog_type error -kernel error_logger
{file,"/var/log/rabbitmq/rabbit.log"} -sasl sasl_error_logger
{file,"/var/log/rabbitmq/rabbit-sasl.log"} -os_mon start_cpu_sup true
-os_mon start_disksup false -os_mon start_memsup false -os_mon start_os_sup
false -os_mon memsup_system_only true -os_mon system_memory_high_watermark
0.95 -mnesia dir "/var/lib/rabbitmq/mnesia/rabbit" -pa /usr/local/ebin
-rabbit rabbit_http_conf "/usr/local/etc/rabbitmq-httpd.conf"
extra_startup_steps [{"HTTP-JSON-listeners",rabbit_http,kickstart,[]}]
-noinput
ch at gato:~$

Obviously I left http in there. (I didn't mean to. I will re-run if you'd
like.)

For the record:

ch at gato:~$ dpkg --search /bin/sh
diversion by dash from: /bin/sh
diversion by dash to: /bin/sh.distrib
bash: /bin/sh
ch at gato:~$ ls -l /bin/sh*
lrwxrwxrwx 1 root root 4 2007-04-22 11:49 /bin/sh -> dash
lrwxrwxrwx 1 root root 4 2008-08-20 22:28 /bin/sh.distrib -> bash
ch at gato:~$

-ch
Matthias Radestock
2009-02-05 07:59:47 UTC
Permalink
Christopher,
The inet_default bits are telling.
So your problem is indeed the same as Billy's - somehow the settings for
inet_defaults get garbled and end up being just one character - 'a' in
your case and 't' in Billy's.
lrwxrwxrwx 1 root root 4 2007-04-22 11:49 /bin/sh -> dash
What version of 'dash' are you running?

The problem has all the hallmarks of some shell weirdness. OTOH, Billy
is running bash, and I've also tried the rabbit scripts with dash with
no problems.


Matthias.
christopher hoover
2009-02-05 09:21:11 UTC
Permalink
Post by Matthias Radestock
The inet_default bits are telling.
So your problem is indeed the same as Billy's - somehow the settings for
inet_defaults get garbled and end up being just one character - 'a' in
your case and 't' in Billy's.
The problem has all the hallmarks of some shell weirdness. OTOH, Billy
is running bash, and I've also tried the rabbit scripts with dash with
no problems.
It is a quoting problem. I should have seen it before now.

The problem is that the new parameters are a glob:

ch at gato:/$ echo [{nodelay,true},{sndbuf,16384},{recbuf,4096}]
a a a a [true,sndbuf,recbuf] [true,sndbuf,4096] [true,16384,recbuf]
[true,16384,4096]

I happen to have a directory named /a. Billy, I would wager, happens to
have a directory name /t.

If I delete /a, it works with "cd /".

-ch
Matthias Radestock
2009-02-05 09:34:30 UTC
Permalink
Christopher,
Post by christopher hoover
It is a quoting problem. I should have seen it before now.
ch at gato:/$ echo [{nodelay,true},{sndbuf,16384},{recbuf,4096}]
a a a a [true,sndbuf,recbuf] [true,sndbuf,4096] [true,16384,recbuf]
[true,16384,4096]
I happen to have a directory named /a. Billy, I would wager, happens to
have a directory name /t.
If I delete /a, it works with "cd /".
Right. That's what I thought too when looking into the problem with
Billy. Putting single quotes around the term should stop the expansion.
However, when Billy tried that in the script he still got the same
problem. Does it work for you?


Matthias.
Matthias Radestock
2009-02-05 09:52:29 UTC
Permalink
Billy,
Post by Matthias Radestock
Post by christopher hoover
It is a quoting problem. I should have seen it before now.
ch at gato:/$ echo [{nodelay,true},{sndbuf,16384},{recbuf,4096}]
a a a a [true,sndbuf,recbuf] [true,sndbuf,4096] [true,16384,recbuf]
[true,16384,4096]
I happen to have a directory named /a. Billy, I would wager, happens to
have a directory name /t.
If I delete /a, it works with "cd /".
Right. That's what I thought too when looking into the problem with
Billy. Putting single quotes around the term should stop the expansion.
However, when Billy tried that in the script he still got the same
problem. Does it work for you?
I've just tried this myself and I can reproduce Christopher's results.
Moreover, putting single quotes around the terms in the rabbitmq-server
script, i.e. changing the RABBITMQ_SERVER_ERL_ARGS settings to

[ "x" = "x$RABBITMQ_SERVER_ERL_ARGS" ] && RABBITMQ_SERVER_ERL_ARGS="+K
true +A30 \
-kernel inet_default_listen_options
'[{nodelay,true},{sndbuf,16384},{recbuf,4096}]' \
-kernel inet_default_connect_options '[{nodelay,true}]'"

does fix the problem for me. But when you tried the same earlier the
problem remained. Could you please repeat that test?


Matthias.
Matthias Radestock
2009-02-05 22:32:33 UTC
Permalink
Post by Matthias Radestock
Moreover, putting single quotes around the terms in the rabbitmq-server
script, i.e. changing the RABBITMQ_SERVER_ERL_ARGS settings to
[ "x" = "x$RABBITMQ_SERVER_ERL_ARGS" ] && RABBITMQ_SERVER_ERL_ARGS="+K
true +A30 \
-kernel inet_default_listen_options
'[{nodelay,true},{sndbuf,16384},{recbuf,4096}]' \
-kernel inet_default_connect_options '[{nodelay,true}]'"
does fix the problem for me.
Actually it doesn't. The above ends up putting the single quotes in the
final result, which causes erlang to barf.

Oh how I love shell programming ...

If someone can figure out how to fix this, please let us know.


Matthias.
christopher hoover
2009-02-05 22:37:45 UTC
Permalink
Post by Michael Steinfeld
Post by Matthias Radestock
Moreover, putting single quotes around the terms in the rabbitmq-
server
Post by Matthias Radestock
script, i.e. changing the RABBITMQ_SERVER_ERL_ARGS settings to
[ "x" = "x$RABBITMQ_SERVER_ERL_ARGS" ] &&
RABBITMQ_SERVER_ERL_ARGS="+K
Post by Matthias Radestock
true +A30 \
-kernel inet_default_listen_options
'[{nodelay,true},{sndbuf,16384},{recbuf,4096}]' \
-kernel inet_default_connect_options '[{nodelay,true}]'"
does fix the problem for me.
Actually it doesn't. The above ends up putting the single quotes in the
final result, which causes erlang to barf.
Right. That is what I saw.
Post by Michael Steinfeld
Oh how I love shell programming ...
If someone can figure out how to fix this, please let us know.
I can't look at anymore right now, but I can in a day or two.

One way to solve it for certain is to use perl for the wrapper. (Believe
me I don't say that often!)

-ch
Matthias Radestock
2009-02-06 11:14:55 UTC
Permalink
Christopher,
Post by christopher hoover
One way to solve it for certain is to use perl for the wrapper.
We may go that route eventually, but it's too big of a change to make in
a patch release.

I have found a way of getting this to work: disable path expansion with
'set -f' just before the erlang invocation. The obvious downside is that
path name expansion is disabled for the entire invocation, but I reckon
that's ok in this particular case.


Matthias.

Dmitriy Samovskiy
2009-01-31 21:13:30 UTC
Permalink
Post by Dmitriy Samovskiy
It placed something in /etc/ld.preload or set LD_PRELOAD env var. Can you check if either
is set?
correction: /etc/ld.so.preload
Matthias Radestock
2009-01-23 18:08:21 UTC
Permalink
Valentino,
Post by Valentino Volonghi
I think I get it now. The reason is how the script is written using
`dirname $0`
it basically means that if you move the script to /usr/local/bin/ and
run from it
it has the badrpc error for some reason that I cannot understand but if you
run it from its own directory there's no issue.
The script needs to find the rabbit code somehow. It supports two
mechanisms for that, as documented in the installation instructions: you
either place the rabbitmq dir alongside the OTP modules (usually in
/usr/lib/erlang/lib), or you let the script look for the code in the
ebin sibling dir.

Moving the script breaks the latter, but not the former. However, you
should be able to create a symlink from /usr/local/bin to wherever the
script resides.


Matthias.
Michael Steinfeld
2009-01-20 22:54:08 UTC
Permalink
Post by Ben Hood
Michael,
On Tue, Jan 20, 2009 at 10:20 PM, Michael Steinfeld
Post by Michael Steinfeld
Status of node rabbit at dbase2 ...
{badrpc,nodedown}
Are you able to connect to the server with an AMQP client or even via
something like netcat?
=INFO REPORT==== 20-Jan-2009::16:51:52 ===
starting TCP connection <0.187.0> from XXX.XXX.XXX.XXX:48178

=ERROR REPORT==== 20-Jan-2009::16:52:02 ===
error on TCP connection <0.187.0> from XXX.XXX.XXX.XXX:48178
{handshake_timeout,handshake}

=INFO REPORT==== 20-Jan-2009::16:52:02 ===
closing TCP connection <0.187.0> from XXX.XXX.XXX.XXX:48178

netstat:

tcp 0 0 0.0.0.0:5672 0.0.0.0:*
LISTEN 21871/beam.smp
tcp 0 0 0.0.0.0:57950 0.0.0.0:*
LISTEN 21871/beam.smp
tcp 0 0 127.0.0.1:57951 127.0.0.1:4369
ESTABLISHED 21871/beam.smp
Post by Ben Hood
Ben
Ben Hood
2009-01-20 23:39:59 UTC
Permalink
Michael,

On Tue, Jan 20, 2009 at 10:54 PM, Michael Steinfeld
Post by Michael Steinfeld
Post by Ben Hood
Michael,
On Tue, Jan 20, 2009 at 10:20 PM, Michael Steinfeld
Post by Michael Steinfeld
Status of node rabbit at dbase2 ...
{badrpc,nodedown}
Are you able to connect to the server with an AMQP client or even via
something like netcat?
=INFO REPORT==== 20-Jan-2009::16:51:52 ===
starting TCP connection <0.187.0> from XXX.XXX.XXX.XXX:48178
=ERROR REPORT==== 20-Jan-2009::16:52:02 ===
error on TCP connection <0.187.0> from XXX.XXX.XXX.XXX:48178
{handshake_timeout,handshake}
=INFO REPORT==== 20-Jan-2009::16:52:02 ===
closing TCP connection <0.187.0> from XXX.XXX.XXX.XXX:48178
This indicates to me that Rabbit is potentially running and just that
you are having issues using the rabbitmqctl command:

1. As what user are you running rabbitmqctl and the server? On the same machine?
2. Can you send the complete log file?

Ben
Michael Steinfeld
2009-01-21 00:00:38 UTC
Permalink
Post by Ben Hood
Michael,
On Tue, Jan 20, 2009 at 10:54 PM, Michael Steinfeld
Post by Michael Steinfeld
Post by Ben Hood
Michael,
On Tue, Jan 20, 2009 at 10:20 PM, Michael Steinfeld
Post by Michael Steinfeld
Status of node rabbit at dbase2 ...
{badrpc,nodedown}
Are you able to connect to the server with an AMQP client or even via
something like netcat?
=INFO REPORT==== 20-Jan-2009::16:51:52 ===
starting TCP connection <0.187.0> from XXX.XXX.XXX.XXX:48178
=ERROR REPORT==== 20-Jan-2009::16:52:02 ===
error on TCP connection <0.187.0> from XXX.XXX.XXX.XXX:48178
{handshake_timeout,handshake}
=INFO REPORT==== 20-Jan-2009::16:52:02 ===
closing TCP connection <0.187.0> from XXX.XXX.XXX.XXX:48178
This indicates to me that Rabbit is potentially running and just that
1. As what user are you running rabbitmqctl and the server? On the same machine?
I have not added a new user, just using the default. Yes, I am running
rabbitmqctl on the same machine
Post by Ben Hood
2. Can you send the complete log file?
I did send the complete log file, there is not much in it. However,
using nc -z I get this:

[root at staging lib]# nc -z XXX.XXX.XXX.XXX 5672
Connection to XXX.XXX.XXX.XXX 5672 port [tcp/amqp] succeeded!

---------------------------

=INFO REPORT==== 20-Jan-2009::17:47:30 ===
accepted TCP connection on 0.0.0.0:5672 from XXX.XXX.XXX.XXX:59091

=INFO REPORT==== 20-Jan-2009::17:47:30 ===
starting TCP connection <0.207.0> from XXX.XXX.XXX.XXX:59091

=ERROR REPORT==== 20-Jan-2009::17:47:30 ===
error on TCP connection <0.207.0> from XXX.XXX.XXX.XXX:59091
connection_closed_abruptly

=INFO REPORT==== 20-Jan-2009::17:47:30 ===
closing TCP connection <0.207.0> from XXX.XXX.XXX.XXX:59091


-- Mike
Post by Ben Hood
Ben
Ben Hood
2009-01-21 00:18:10 UTC
Permalink
Michael,

On Wed, Jan 21, 2009 at 12:00 AM, Michael Steinfeld
Post by Michael Steinfeld
Post by Ben Hood
1. As what user are you running rabbitmqctl and the server? On the same machine?
I have not added a new user, just using the default. Yes, I am running
rabbitmqctl on the same machine.
What user is the server running as?

And what user is running rabbitmqctl?
Post by Michael Steinfeld
Post by Ben Hood
2. Can you send the complete log file?
I did send the complete log file, there is not much in it. However,
So this looks like the server could be running. Have you tried running
an AMQP against it?

Ben
Michael Klishin
2009-01-21 07:36:03 UTC
Permalink
Post by Ben Hood
http://lettuce.squarespace.com/faq/erlang/what-does-badrpcnodedown-mean.html
Ben,

That link is password protected for me.
In fact, http://lettuce.squarespace.com asks me for credentials, too
(weblog account, not HTTP basic authentication)

MK
Ben Hood
2009-01-21 08:40:46 UTC
Permalink
Michael,

On Wed, Jan 21, 2009 at 7:36 AM, Michael Klishin
Post by Michael Klishin
Post by Ben Hood
http://lettuce.squarespace.com/faq/erlang/what-does-badrpcnodedown-mean.html
That link is password protected for me.
In fact, http://lettuce.squarespace.com asks me for credentials, too (weblog
account, not HTTP basic authentication)
At the time when I sent the link to Michael Steinfeld, it was active.

In the meantime, I cancelled the whole FAQ site, so hopefully he might
have read it already.

Ben
Michael Klishin
2009-01-21 07:39:01 UTC
Permalink
Post by Michael Steinfeld
Can someone tell me what I can do to provide myself and the list with
more information?
I often noticed that the same problem happens with Ejabberd control
script because
in some distributions Erlang cookie file script uses is located where
your user cannot read it, and thus,
Erlang connection to the server fails.

Not sure what configuration looks like for RPM packages you use, but
this may be a good thing to
double check.

MK
Ben Hood
2009-01-21 08:44:32 UTC
Permalink
Michael (Klishin)

On Wed, Jan 21, 2009 at 7:39 AM, Michael Klishin
Post by Michael Klishin
I often noticed that the same problem happens with Ejabberd control
script because
in some distributions Erlang cookie file script uses is located where
your user cannot read it, and thus,
Erlang connection to the server fails.
This is why I asked Michael Steinfeld as what specific user *both*
processes were running as, but I didn't really get a clear answer -
maybe your point can help highlight why I need to know specifcally as
what user both OS processes are running as.

Ben
Continue reading on narkive:
Loading...