[Bug 962383] Re: ec2-key-pair went away, but juju doesn't say it is unsupported

2012-09-29 Thread Clint Byrum
** Changed in: juju
   Status: New = Triaged

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to juju in Ubuntu.
https://bugs.launchpad.net/bugs/962383

Title:
  ec2-key-pair went away, but juju doesn't say it is unsupported

To manage notifications about this bug go to:
https://bugs.launchpad.net/juju/+bug/962383/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1056103] Re: no docs package / html docs

2012-09-29 Thread Sage Weil
I think if we package them at all, they should probably be in the
regular debian directory so that they get built along with regular
releases... otherwise it will be a lot of additional work to build and
publish the packages.  The rules or Makefile would probably need to do
things like clone sphinx-ditaa.git from github etc in order to do the
build.   As long as the Build-Requires: is sufficient I guess it's okay
to do that...

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to ceph in Ubuntu.
https://bugs.launchpad.net/bugs/1056103

Title:
  no docs package / html docs

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ceph/+bug/1056103/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1054306] Re: ncftool list fails

2012-09-29 Thread Launchpad Bug Tracker
This bug was fixed in the package augeas - 0.10.0-1fakesync1ubuntu1

---
augeas (0.10.0-1fakesync1ubuntu1) quantal-proposed; urgency=low

  * augeas-split-lines.patch: consolidate 2 commits from upstream to fix
handling of split lines in modprobe.conf (LP: #1054306) (Closes: #688347)
 -- Serge Hallyn serge.hal...@ubuntu.com   Mon, 24 Sep 2012 22:56:01 -0500

** Changed in: augeas (Ubuntu)
   Status: Triaged = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to augeas in Ubuntu.
https://bugs.launchpad.net/bugs/1054306

Title:
  ncftool list fails

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/augeas/+bug/1054306/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 605436] Re: kpartx fails to map partitions (device-mapper: resume ioctl failed: Invalid argument)

2012-09-29 Thread Malte S. Stretz
Looks like this is still an issue in Precise (see below). You can find
the most recent version of that image at
http://m0n0.ch/wall/downloads.php (get the generic-pc-1.33.img). I can't
judge about Quantal.

8
root@slpn-nb-mss:~/Work/m0n0# kpartx -d -v generic-pc-1.33.img 
loop deleted : /dev/loop0
root@slpn-nb-mss:~/Work/m0n0# kpartx -a -v generic-pc-1.33.img 
device-mapper: resume ioctl failed: Invalid argument
create/reload failed on loop0p4
add map loop0p4 (0:0): 0 5 linear /dev/loop0 0
root@slpn-nb-mss:~/Work/m0n0# dmesg | grep loop0
[ 3041.671498] device-mapper: table: 252:9: loop0 too small for target: 
start=0, len=5, dev_size=20480
8

** Changed in: multipath-tools (Ubuntu Precise)
   Status: Fix Released = Triaged

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to multipath-tools in Ubuntu.
https://bugs.launchpad.net/bugs/605436

Title:
  kpartx fails to map partitions (device-mapper: resume ioctl failed:
  Invalid argument)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/multipath-tools/+bug/605436/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Blueprint servercloud-q-juju-resource-map] Juju resource map

2012-09-29 Thread Clint Byrum
Blueprint changed by Clint Byrum:

Whiteboard changed:
- Is this still a target for Quntal? If so, are there any action items
- associated with this work? -a.rosales
+ Etherpad from discussion at UDS-Q:
+ 
+ ACTIONS:
+ - Propose format/features to juju mailing list
+ We have a simple/beautiful way to map what images exist in EC2, but it's 
specific to EC2
+  - https://cloud-images.ubuntu.com/query
+  - currently we hardcode a lot of data, we want to extend this for other 
providers and even private clouds
+ The problem to solve:
+  - You want a platform-agnostic charm, but the charm will have some 
requirements (say, kernel version/package version/network support)
+- but we have no way of knowing which providers provide those resources 
via API queries at the moment
+- Resource map is the solution, but many providers 
+  == Resources we are mapping ==
+  * cpu
+   - what is a cpu? or core?
+   - # Cores or # of concurrent threads ?
+   - ECU is a rough measurement that is at least repeatable, CPU is harder 
to define.
+  * ram
+   - kind/speed of memory?
+   - swap amount?  (some providers have 0 swap, eg older OpenVZ)
+  * storage
+  * cost
+   - instance cost is clear usually (flat price per hour)
+ - spot instances, etc mess with this though
+   - bandwidth costs? (often on sliding scales...)
+   - storage costs?
+   - can get very thorny and JuJu will have no way of knowing the precise 
marginal cost
+  * HVM?
+  * GPU
+   - is there an ECU equivalent for GPUs?
+  * EBS
+  * software-level stuff (Ubuntu version etc)
+ == Current Python expression for EC2 ==
+ _InstanceType = namedtuple(_InstanceType, arch cpu mem cost hvm)
+ INSTANCE_TYPES = {
+ # t1.micro cpu is up to 2, but in practice very little
+ t1.micro: _InstanceType(_EITHER_ARCH, 0.1, 613, 0.02, False),
+ m1.small: _InstanceType(_EITHER_ARCH, 1, 1740, 0.08, False),
+ m1.medium: _InstanceType(_EITHER_ARCH, 2, 3840, 0.16, False),
+ m1.large: _InstanceType(amd64, 4, 7680, 0.32, False),
+ m1.xlarge: _InstanceType(amd64, 8, 15360, 0.64, False),
+ m2.xlarge: _InstanceType(amd64, 6.5, 17510, 0.45, False),
+ m2.2xlarge: _InstanceType(amd64, 13, 35020, 0.9, False),
+ m2.4xlarge: _InstanceType(amd64, 26, 70040, 1.8, False),
+ c1.medium: _InstanceType(_EITHER_ARCH, 5, 1740, 0.165, False),
+ c1.xlarge: _InstanceType(amd64, 20, 7168, 0.66, False),
+ cc1.4xlarge: _InstanceType(amd64, 33.5, 23552, 1.3, True),
+ cc2.8xlarge: _InstanceType(amd64, 88, 61952, 2.4, True),
+ # also has fancy GPUs we can't currently describe
+ cg1.4xlarge: _InstanceType(amd64, 33.5, 22528, 2.1, True)}
+  == Desire ==
+ User/third party can provide thier own resource maps as well 
+  - needed for custom charms and private clouds, eg you could have an 
arbitrary resource like secure machines in my data center
+ Resource map as a file downloaded from a URL
+  - make an extensible file format (eg YAML) and allow user to provide his own 
extensions to the resource map (eg to describe his private cloud, or describe 
new resources he cares about)
+  - would be nice to have user-provided custom URL (or rather additional URLs) 
to give new information/extensions to information.
+  == API ==
+  - It would be nice if we could build the resource map by querying APIs 
directly.  OpenStack we can query easily (or modify the API if needed), EC2 we 
don't really have control over.
+  - Could we expect a third party to provide
+  - libcloud API queries might be useful here

-- 
Juju resource map
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-q-juju-resource-map

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1058669] [NEW] htmlentities returns nothing

2012-09-29 Thread Th3Pr0ph3t
Public bug reported:

The html function returns an empty string or maybe null when a latin1
encoded string is provided.

?php
print htmlentities('bye'); //outputs 'bye'
print htmlentites('adiós'); //outputs nothing when it's supposed to return 
'adioacute;s'
?

This happened in Ubuntu 12.10b2 32-bit, and it does not happen in ubuntu
12.04

For the moment, the solution is to specify the encoding:
? htmlentities('adiós', ENT_COMPAT, 'iso-8859-1'); //outputs 'adioacute;' as 
expected

ProblemType: Bug
DistroRelease: Ubuntu 12.10
Package: php5 5.4.6-1ubuntu1
ProcVersionSignature: Ubuntu 3.5.0-15.23-generic 3.5.4
Uname: Linux 3.5.0-15-generic i686
NonfreeKernelModules: wl
ApportVersion: 2.5.3-0ubuntu1
Architecture: i386
Date: Sat Sep 29 10:05:39 2012
InstallationMedia: Ubuntu 12.10 Quantal Quetzal - Beta i386 (20120926)
PackageArchitecture: all
ProcEnviron:
 LANGUAGE=es_PE:es
 TERM=xterm
 PATH=(custom, no user)
 LANG=es_PE.UTF-8
 SHELL=/bin/bash
SourcePackage: php5
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: php5 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug i386 quantal

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to php5 in Ubuntu.
https://bugs.launchpad.net/bugs/1058669

Title:
  htmlentities returns nothing

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/php5/+bug/1058669/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1058669] Re: htmlentities returns nothing

2012-09-29 Thread Th3Pr0ph3t
-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to php5 in Ubuntu.
https://bugs.launchpad.net/bugs/1058669

Title:
  htmlentities returns nothing

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/php5/+bug/1058669/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 174168] Re: expecting SSH2_MSG_KEX_DH_GEX_GROUP

2012-09-29 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: openssh (Ubuntu)
   Status: New = Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openssh in Ubuntu.
https://bugs.launchpad.net/bugs/174168

Title:
   expecting SSH2_MSG_KEX_DH_GEX_GROUP

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/openssh/+bug/174168/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 174168] Re: expecting SSH2_MSG_KEX_DH_GEX_GROUP

2012-09-29 Thread Nickolay Ihalainen
Got the same problem:
ihanick@bb:~/ecu$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:Ubuntu 12.04.1 LTS
Release:12.04
Codename:   precise
ihanick@bb:~/ecu$ ssh -V
OpenSSH_5.9p1 Debian-5ubuntu1, OpenSSL 1.0.1 14 Mar 2012

trying to ssh from 12.04 host to 10.04:
..
debug2: kex_parse_kexinit: 
debug2: kex_parse_kexinit: 
debug2: kex_parse_kexinit: first_kex_follows 0 
debug2: kex_parse_kexinit: reserved 0 
debug2: mac_setup: found hmac-md5
debug1: kex: server-client aes128-ctr hmac-md5 none
debug2: mac_setup: found hmac-md5
debug1: kex: client-server aes128-ctr hmac-md5 none
debug1: SSH2_MSG_KEX_DH_GEX_REQUEST(102410248192) sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_GROUP

After disabling hmac-md5, by using MACs hmac-sha1,umac...@openssh.com
,hmac-ripemd160 in /etc/ssh/ssh_config

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openssh in Ubuntu.
https://bugs.launchpad.net/bugs/174168

Title:
   expecting SSH2_MSG_KEX_DH_GEX_GROUP

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/openssh/+bug/174168/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1058760] [NEW] unmatched entries for dovecot login

2012-09-29 Thread toby cabot
Public bug reported:

Hi,

I've been getting a bunch of entries like this in my logwatch emails:
hostname dovecot: imap-login: Login: user=user, method=PLAIN, 
rip=127.0.0.1, lip=127.0.0.1, mpid=1014,
secured: 1 Time(s)

On a typical day I might get hundreds of such entries and my server is
only a small family server.

It looks as if the problem is in
/usr/share/logwatch/scripts/services/dovecot.  It seems to get confused
by the hostname coming after the datestamp and before the service name.
If I tweak the $ThisLine regex to match the hostname things work better,
but still not quite right.  I also had to add another login regex to
match the ones in my log.  I'll include a patch that works for me.

** Affects: logwatch (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to logwatch in Ubuntu.
https://bugs.launchpad.net/bugs/1058760

Title:
  unmatched entries for dovecot login

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/logwatch/+bug/1058760/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1058760] Re: unmatched entries for dovecot login

2012-09-29 Thread toby cabot
Note that the patch might not work for all protocols.  I have no way to
test with POP so I didn't change those rules.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to logwatch in Ubuntu.
https://bugs.launchpad.net/bugs/1058760

Title:
  unmatched entries for dovecot login

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/logwatch/+bug/1058760/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1058760] Re: unmatched entries for dovecot login

2012-09-29 Thread toby cabot
** Attachment added: patch to fix logwatch's dovecot rules
   
https://bugs.launchpad.net/bugs/1058760/+attachment/3356127/+files/dovecot.patch

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to logwatch in Ubuntu.
https://bugs.launchpad.net/bugs/1058760

Title:
  unmatched entries for dovecot login

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/logwatch/+bug/1058760/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1058760] Re: unmatched entries for dovecot login

2012-09-29 Thread Ubuntu Foundation's Bug Bot
The attachment patch to fix logwatch's dovecot rules of this bug
report has been identified as being a patch.  The ubuntu-reviewers team
has been subscribed to the bug report so that they can review the patch.
In the event that this is in fact not a patch you can resolve this
situation by removing the tag 'patch' from the bug report and editing
the attachment so that it is not flagged as a patch.  Additionally, if
you are member of the ubuntu-reviewers team please also unsubscribe the
team from this bug report.

[This is an automated message performed by a Launchpad user owned by
Brian Murray.  Please contact him regarding any issues with the action
taken in this bug report.]

** Tags added: patch

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to logwatch in Ubuntu.
https://bugs.launchpad.net/bugs/1058760

Title:
  unmatched entries for dovecot login

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/logwatch/+bug/1058760/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1057325] [NEW] Error when starting glance-api - unable to redeclare queue

2012-09-29 Thread Launchpad Bug Tracker
You have been subscribed to a public bug:

root@os-svc01:~# glance-api
2012-09-27 09:09:45 4649 DEBUG glance.common.config [-] Loading glance-api from 
/etc/glance/glance-api-paste.ini load_paste_app 
/usr/lib/python2.7/dist-packages/glance/common/config.py:185
2012-09-27 09:09:45 4649 WARNING glance.api.v2.images [-] Could not find schema 
properties file schema-image.json. Continuing without custom properties
2012-09-27 09:09:45 4649 INFO glance.db.sqlalchemy.api [-] not auto-creating 
glance registry DB
2012-09-27 09:09:45 4649 DEBUG glance.notifier [-] Converted strategy alias 
rabbit to glance.notifier.notify_kombu.RabbitStrategy __init__ 
/usr/lib/python2.7/dist-packages/glance/notifier/__init__.py:54
2012-09-27 09:09:45 4649 INFO glance.notifier.notify_kombu [-] Connecting to 
AMQP server on mq.os.lan:5672
Traceback (most recent call last):
  File /usr/lib/python2.7/dist-packages/eventlet/hubs/poll.py, line 97, in 
wait
readers.get(fileno, noop).cb(fileno)
  File /usr/lib/python2.7/dist-packages/eventlet/greenthread.py, line 192, in 
main
result = function(*args, **kwargs)
  File /usr/lib/python2.7/dist-packages/amqplib/client_0_8/channel.py, line 
1381, in queue_declare
(50, 11),# Channel.queue_declare_ok
  File 
/usr/lib/python2.7/dist-packages/amqplib/client_0_8/abstract_channel.py, line 
97, in wait
return self.dispatch_method(method_sig, args, content)
  File 
/usr/lib/python2.7/dist-packages/amqplib/client_0_8/abstract_channel.py, line 
115, in dispatch_method
return amqp_method(self, args)
  File /usr/lib/python2.7/dist-packages/amqplib/client_0_8/channel.py, line 
273, in _close
(class_id, method_id))
AMQPChannelException: (406, uPRECONDITION_FAILED - parameters for queue 
'glance_notifications.warn' in vhost '/' not equivalent, (50, 10), 
'Channel.queue_declare')
Removing descriptor: 7
2012-09-27 09:09:45 4649 CRITICAL glance [-] (406, uPRECONDITION_FAILED - 
parameters for queue 'glance_notifications.warn' in vhost '/' not equivalent, 
(50, 10), 'Channel.queue_declare')
2012-09-27 09:09:45 4649 CRITICAL glance [-] (406, uPRECONDITION_FAILED - 
parameters for queue 'glance_notifications.warn' in vhost '/' not equivalent, 
(50, 10), 'Channel.queue_declare')
2012-09-27 09:09:45 4649 TRACE glance Traceback (most recent call last):
2012-09-27 09:09:45 4649 TRACE glance   File /usr/bin/glance-api, line 56, in 
module
2012-09-27 09:09:45 4649 TRACE glance server.start(config.load_paste_app, 
default_port=9292)
2012-09-27 09:09:45 4649 TRACE glance   File 
/usr/lib/python2.7/dist-packages/glance/common/wsgi.py, line 197, in start
2012-09-27 09:09:45 4649 TRACE glance self.pool.spawn_n(self._single_run, 
self.app_func(), self.sock)
2012-09-27 09:09:45 4649 TRACE glance   File 
/usr/lib/python2.7/dist-packages/glance/common/config.py, line 187, in 
load_paste_app
2012-09-27 09:09:45 4649 TRACE glance app = deploy.loadapp(config:%s % 
conf_file, name=app_name)
2012-09-27 09:09:45 4649 TRACE glance   File 
/usr/lib/python2.7/dist-packages/paste/deploy/loadwsgi.py, line 247, in 
loadapp
2012-09-27 09:09:45 4649 TRACE glance return loadobj(APP, uri, name=name, 
**kw)
2012-09-27 09:09:45 4649 TRACE glance   File 
/usr/lib/python2.7/dist-packages/paste/deploy/loadwsgi.py, line 272, in 
loadobj
2012-09-27 09:09:45 4649 TRACE glance return context.create()
2012-09-27 09:09:45 4649 TRACE glance   File 
/usr/lib/python2.7/dist-packages/paste/deploy/loadwsgi.py, line 710, in create
2012-09-27 09:09:45 4649 TRACE glance return self.object_type.invoke(self)
2012-09-27 09:09:45 4649 TRACE glance   File 
/usr/lib/python2.7/dist-packages/paste/deploy/loadwsgi.py, line 203, in invoke
2012-09-27 09:09:45 4649 TRACE glance app = context.app_context.create()
2012-09-27 09:09:45 4649 TRACE glance   File 
/usr/lib/python2.7/dist-packages/paste/deploy/loadwsgi.py, line 710, in create
2012-09-27 09:09:45 4649 TRACE glance return self.object_type.invoke(self)
2012-09-27 09:09:45 4649 TRACE glance   File 
/usr/lib/python2.7/dist-packages/paste/deploy/loadwsgi.py, line 144, in invoke
2012-09-27 09:09:45 4649 TRACE glance **context.local_conf)
2012-09-27 09:09:45 4649 TRACE glance   File 
/usr/lib/python2.7/dist-packages/paste/deploy/util.py, line 56, in fix_call
2012-09-27 09:09:45 4649 TRACE glance val = callable(*args, **kw)
2012-09-27 09:09:45 4649 TRACE glance   File 
/usr/lib/python2.7/dist-packages/glance/api/__init__.py, line 31, in 
root_app_factory
2012-09-27 09:09:45 4649 TRACE glance return 
paste.urlmap.urlmap_factory(loader, global_conf, **local_conf)
2012-09-27 09:09:45 4649 TRACE glance   File 
/usr/lib/python2.7/dist-packages/paste/urlmap.py, line 25, in urlmap_factory
2012-09-27 09:09:45 4649 TRACE glance app = loader.get_app(app_name, 
global_conf=global_conf)
2012-09-27 09:09:45 4649 TRACE glance   File 
/usr/lib/python2.7/dist-packages/paste/deploy/loadwsgi.py, line 350, in 
get_app
2012-09-27 09:09:45 4649 TRACE glance 

[Bug 1057325] Re: Error when starting glance-api - unable to redeclare queue

2012-09-29 Thread Tom Fifield
As Endre has noted the Ubuntu precise packages for glance are in use,
targetting at Ubuntu.

** Also affects: ubuntu
   Importance: Undecided
   Status: New

** Package changed: ubuntu = glance (Ubuntu)

** Changed in: glance
   Status: New = Invalid

** Changed in: glance (Ubuntu)
   Status: New = Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to glance in Ubuntu.
https://bugs.launchpad.net/bugs/1057325

Title:
  Error when starting glance-api - unable to redeclare queue

To manage notifications about this bug go to:
https://bugs.launchpad.net/glance/+bug/1057325/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1057325] Re: Error when starting glance-api - unable to redeclare queue

2012-09-29 Thread Chuck Short
This has been fixed in ubuntu as well since this was included in the
final release of glance.

** Changed in: glance (Ubuntu)
   Status: Confirmed = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to glance in Ubuntu.
https://bugs.launchpad.net/bugs/1057325

Title:
  Error when starting glance-api - unable to redeclare queue

To manage notifications about this bug go to:
https://bugs.launchpad.net/glance/+bug/1057325/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 894608] Re: Implementing a bridge slows 10G network

2012-09-29 Thread Launchpad Bug Tracker
[Expired for linux (Ubuntu) because there has been no activity for 60
days.]

** Changed in: linux (Ubuntu)
   Status: Incomplete = Expired

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to bridge-utils in Ubuntu.
https://bugs.launchpad.net/bugs/894608

Title:
  Implementing a bridge slows 10G network

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bridge-utils/+bug/894608/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1058485] Re: colord-sane crashed with SIGABRT in raise() during actualisation

2012-09-29 Thread Apport retracing service
*** This bug is a duplicate of bug 1027139 ***
https://bugs.launchpad.net/bugs/1027139

Thank you for taking the time to report this crash and helping to make
this software better.  This particular crash has already been reported
and is a duplicate of bug #1027139, so is being marked as such.  Please
look at the other bug report to see if there is any missing information
that you can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report.  Please continue to report any other bugs you may
find.

** Attachment removed: CoreDump.gz
   
https://bugs.launchpad.net/bugs/1058485/+attachment/3354179/+files/CoreDump.gz

** Attachment removed: Disassembly.txt
   
https://bugs.launchpad.net/bugs/1058485/+attachment/3354181/+files/Disassembly.txt

** Attachment removed: ProcMaps.txt
   
https://bugs.launchpad.net/bugs/1058485/+attachment/3354182/+files/ProcMaps.txt

** Attachment removed: ProcStatus.txt
   
https://bugs.launchpad.net/bugs/1058485/+attachment/3354183/+files/ProcStatus.txt

** Attachment removed: Registers.txt
   
https://bugs.launchpad.net/bugs/1058485/+attachment/3354184/+files/Registers.txt

** Attachment removed: Stacktrace.txt
   
https://bugs.launchpad.net/bugs/1058485/+attachment/3354185/+files/Stacktrace.txt

** Attachment removed: ThreadStacktrace.txt
   
https://bugs.launchpad.net/bugs/1058485/+attachment/3354186/+files/ThreadStacktrace.txt

** This bug has been marked a duplicate of bug 1027139
   colord-sane assert failure: *** buffer overflow detected ***: 
/usr/lib/x86_64-linux-gnu/colord/colord-sane terminated

** Visibility changed to: Public

** Tags removed: need-amd64-retrace

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1058485

Title:
  colord-sane crashed with SIGABRT in raise() during actualisation

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/colord/+bug/1058485/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1057941] Re: Evolution mail reader cannot be installed in Quantal

2012-09-29 Thread Philip Rademakers
Fresh install, just after install:

 apt-get update  apt-get upgrade
 apt-get install evolution

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1057941

Title:
  Evolution mail reader cannot be installed in Quantal

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/evolution/+bug/1057941/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1058143] Re: Touchpad does not work

2012-09-29 Thread Daniel Comşa
I can see in the second batch of files that psmouse module was loaded,
while on the first ones it wasn't:

CurrentDmesg.txt
[   65.110770] psmouse serio1: elantech: assuming hardware version 3 (with 
firmware version 0x550f01)
[   65.133000] psmouse serio1: elantech: Synaptics capabilities query result 
0x79, 0x18, 0x0b.
[   65.248128] input: ETPS/2 Elantech Touchpad as 
/devices/platform/i8042/serio1/input/input12

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1058143

Title:
  Touchpad does not work

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1058143/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1056261] Re: Adding file to archive, file-roller doesn't load location correctly and then crash

2012-09-29 Thread Mitsuya Shibata
Fixed could not load dialog problem at master of upstream.

But crash is occured by other reason.
This crash always occure on i386 system. There is no workaround.

Filed bug with stacktrace.
https://bugs.launchpad.net/ubuntu/+source/file-roller/+bug/1058475

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1056261

Title:
  Adding file to archive, file-roller doesn't load location correctly
  and then crash

To manage notifications about this bug go to:
https://bugs.launchpad.net/file-roller/+bug/1056261/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1038651] Re: [ca0132] Sound: only dummy output

2012-09-29 Thread Onno
** Tags removed: verification-needed-precise
** Tags added: verification-done-precise

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1038651

Title:
  [ca0132] Sound: only dummy output

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1038651/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 902535] Re: Unable to print to Lexmark S405 since upgrade to 11.10

2012-09-29 Thread simon james
I will download it as soon as the final is released and report back.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/902535

Title:
  Unable to print to Lexmark S405 since upgrade to 11.10

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cups/+bug/902535/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1058489] Re: package libxml2 2.7.8.dfsg-5.1ubuntu4.2 failed to install/upgrade: libxml2:amd64 2.7.8.dfsg-5.1ubuntu4.2 cannot be configured because libxml2

2012-09-29 Thread mtrade
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1058489

Title:
  package libxml2 2.7.8.dfsg-5.1ubuntu4.2 failed to install/upgrade:
  libxml2:amd64 2.7.8.dfsg-5.1ubuntu4.2 cannot be configured because
  libxml2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libxml2/+bug/1058489/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1058489] [NEW] package libxml2 2.7.8.dfsg-5.1ubuntu4.2 failed to install/upgrade: libxml2:amd64 2.7.8.dfsg-5.1ubuntu4.2 cannot be configured because libxml2

2012-09-29 Thread mtrade
Public bug reported:

Broken dependancies

libxml2: Depends: libc6 (= 2.15) но 2.15-0ubuntu10 is installed
 Depends: zlib1g (= 1:1.2.3.3.dfsg) но 1:1.2.3.4.dfsg-3ubuntu4 is 
installed
libxml2:i386: Depends: libc6 (= 2.15) но 2.15-0ubuntu10  is installed
  Depends: zlib1g (= 1:1.2.3.3.dfsg) но 1:1.2.3.4.dfsg-3ubuntu4 is 
installed

ProblemType: Package
DistroRelease: Ubuntu 12.04
Package: libxml2 2.7.8.dfsg-5.1ubuntu4.2
ProcVersionSignature: Ubuntu 3.2.0-31.50-generic 3.2.28
Uname: Linux 3.2.0-31-generic x86_64
NonfreeKernelModules: fglrx
ApportVersion: 2.0.1-0ubuntu13
Architecture: amd64
Date: Sat Sep 29 09:11:09 2012
DuplicateSignature:
 Unpacking replacement libxml2 ...
 dpkg: error processing libxml2:i386 (--configure):
  libxml2:i386 2.7.8.dfsg-5.1ubuntu4.1 cannot be configured because 
libxml2:amd64 is in a different version (2.7.8.dfsg-5.1ubuntu4.2)
ErrorMessage: libxml2:amd64 2.7.8.dfsg-5.1ubuntu4.2 cannot be configured 
because libxml2
InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Release amd64 
(20120425)
SourcePackage: libxml2
Title: package libxml2 2.7.8.dfsg-5.1ubuntu4.2 failed to install/upgrade: 
libxml2:amd64 2.7.8.dfsg-5.1ubuntu4.2 cannot be configured because libxml2
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: libxml2 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package precise

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1058489

Title:
  package libxml2 2.7.8.dfsg-5.1ubuntu4.2 failed to install/upgrade:
  libxml2:amd64 2.7.8.dfsg-5.1ubuntu4.2 cannot be configured because
  libxml2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libxml2/+bug/1058489/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1058489] Re: package libxml2 2.7.8.dfsg-5.1ubuntu4.2 failed to install/upgrade: libxml2:amd64 2.7.8.dfsg-5.1ubuntu4.2 cannot be configured because libxml2

2012-09-29 Thread Apport retracing service
** Tags removed: need-duplicate-check

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1058489

Title:
  package libxml2 2.7.8.dfsg-5.1ubuntu4.2 failed to install/upgrade:
  libxml2:amd64 2.7.8.dfsg-5.1ubuntu4.2 cannot be configured because
  libxml2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libxml2/+bug/1058489/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1058490] [NEW] Does not ask to save if closing a modified document without export to PDF

2012-09-29 Thread Xavier Guillot
Public bug reported:

Hello,

PDF Shuffler is a very nice program to handle with multiple PDF files to
re-order them with thumbnail view.

Just there is a big missing feature : when I import some PDF and modify
the original files - ie adding other documents, move / suppress pages...
if I forget to save and export my new file as PDF and click on the close
left button or on File - Quit, PDF Shuffler just closes immediately
without any warning, and all the modifications are lost.

Expected behavior is the same as all other softwares if possible : if I
try closing a modified document without having saved, I'd like a window
opening with the message Save document  modifications before
closing and buttons Close without saving, Cancel, Save As.

Thanks in advance.

** Affects: pdfshuffler (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1058490

Title:
  Does not ask to save if closing a modified document without export to
  PDF

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pdfshuffler/+bug/1058490/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1024482] Re: Mouse cursor theme does not change from default after login

2012-09-29 Thread swiftgeek
Since nobody is investigating it further... i made sth brain-dead  simple
https://gist.github.com/3803351
next i want to have wallpaper/solid color there and maybe finally set a cursor 
theme specified in config.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1024482

Title:
  Mouse cursor theme does not change from default after login

To manage notifications about this bug go to:
https://bugs.launchpad.net/lightdm/+bug/1024482/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 31574] Re: No dialogue / status bar for progress of Audio disc image creation

2012-09-29 Thread Thomas Hotz
Can you give us an update if this still happens on newer Ubuntu
versions? Thank you!

** Changed in: cdrdao (Ubuntu)
   Status: Confirmed = Incomplete

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to the bug report.
https://bugs.launchpad.net/bugs/31574

Title:
  No dialogue / status bar for progress of Audio disc image creation

To manage notifications about this bug go to:
https://bugs.launchpad.net/cdrdao/+bug/31574/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 30528] Re: Thai fonts unreadably small in Dapper

2012-09-29 Thread Thomas Hotz
Can you retest with Ubuntu 12.04 LTS?

** Changed in: thai-system (Ubuntu)
   Status: Confirmed = Incomplete

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to the bug report.
https://bugs.launchpad.net/bugs/30528

Title:
  Thai fonts unreadably small in Dapper

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/thai-system/+bug/30528/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 30272] Re: Toshiba Libretto/Transmeta CPU based machine runs at 50% cpu performance all the time.

2012-09-29 Thread Thomas Hotz
** Changed in: toshset (Ubuntu)
   Status: Confirmed = Incomplete

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to the bug report.
https://bugs.launchpad.net/bugs/30272

Title:
  Toshiba Libretto/Transmeta CPU based machine runs at 50% cpu
  performance all the time.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/toshset/+bug/30272/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1040524] Re: AIGLX error: Calling driver entry point failed

2012-09-29 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: xserver-xorg-video-nouveau (Ubuntu)
   Status: New = Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1040524

Title:
  AIGLX error: Calling driver entry point failed

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1040524/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 962383] Re: ec2-key-pair went away, but juju doesn't say it is unsupported

2012-09-29 Thread Clint Byrum
** Changed in: juju
   Status: New = Triaged

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/962383

Title:
  ec2-key-pair went away, but juju doesn't say it is unsupported

To manage notifications about this bug go to:
https://bugs.launchpad.net/juju/+bug/962383/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 33027] Re: [dapper] tooltip should disappear

2012-09-29 Thread Thomas Hotz
Is this fixed in GNOME 3?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to the bug report.
https://bugs.launchpad.net/bugs/33027

Title:
  [dapper] tooltip should disappear

To manage notifications about this bug go to:
https://bugs.launchpad.net/gtk/+bug/33027/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1001594] Re: 8086:0102 WARNING: at /build/buildd/linux-3.2.0/drivers/gpu/drm/i915/i915_drv.c:413 __gen6_gt_wait_for_fifo+0x94/0xa0 [i915]()

2012-09-29 Thread Michael Heimpold
Ok, I'm running on v3.6-rc5-quantal since 2012-09-15. No problems so
far. Thank you very much for investigation.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1001594

Title:
  8086:0102 WARNING: at
  /build/buildd/linux-3.2.0/drivers/gpu/drm/i915/i915_drv.c:413
  __gen6_gt_wait_for_fifo+0x94/0xa0 [i915]()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1001594/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 780117] Re: Brasero finishes without error but unusable media [on-the-fly mode] (Ubuntu 11.04 -12.04)

2012-09-29 Thread Thomas Schmitt
Hi,

Paul Menzel wrote:
 The way to solve this error, is that people provide the necessary log
 files from Brasero and to improve the things Thomas Schmitt and George
 Danchev have found out to be incorrect [1].

Well, actually we [George and me] do not have any good idea left what
goes wrong with the cooperation of libisofs and libburn underneath
Brasero.  Experiments with other applications indicate that the
libraries themselves seem ok.

Nevertheless we have three groups of bugs:
- DVD burning aborts after about 50 percent (rare, Ubuntu bug 780117)
- CD burning produces unreadable media (frequent, Ubuntu 780117, Debian 617409)
  (My theory of write type SAO versus TAO did not hold.)
- A DVD got burned with a messed-up ISO 9660 image (rare, Debian 688229)


Have a nice day :)

Thomas

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/780117

Title:
  Brasero finishes without error but unusable media [on-the-fly mode]
  (Ubuntu 11.04 -12.04)

To manage notifications about this bug go to:
https://bugs.launchpad.net/brasero/+bug/780117/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 33442] Re: FF flashes up Not responding dialogue even when it is

2012-09-29 Thread Thomas Hotz
Can you retest with newest firefox package please?

** Changed in: firefox (Ubuntu)
   Status: Confirmed = Incomplete

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to the bug report.
https://bugs.launchpad.net/bugs/33442

Title:
  FF flashes up Not responding dialogue even when it is

To manage notifications about this bug go to:
https://bugs.launchpad.net/firefox/+bug/33442/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 34739] Re: duplicate Replaces fields

2012-09-29 Thread Thomas Hotz
This bug is quite old. Has there been a fix meanwhile?

** Changed in: language-pack-de (Ubuntu)
   Status: Triaged = Incomplete

** Changed in: langpack-o-matic
   Status: Triaged = Incomplete

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to the bug report.
https://bugs.launchpad.net/bugs/34739

Title:
  duplicate Replaces fields

To manage notifications about this bug go to:
https://bugs.launchpad.net/langpack-o-matic/+bug/34739/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1057251] Re: gnome-raw-thumbnailer not displaying raw image file thumbnails in Ubuntu 12.04 Precsie.

2012-09-29 Thread Clint Byrum
** No longer affects: juju

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1057251

Title:
  gnome-raw-thumbnailer not displaying raw image file thumbnails in
  Ubuntu 12.04 Precsie.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-raw-thumbnailer/+bug/1057251/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1054689] Re: unusable system

2012-09-29 Thread Fabio Marconi
** Description changed:

- Fixed with Experimental nvidia driver, still present (as i can remeber)
- witht he current nvidia drivers
+ ***Fixed with Experimental nvidia driver***
+ Still present (as i can remeber) witht he current nvidia drivers
  
  Hello
  using nouveau or current nvidia drivers, cause a series of grave issue that 
bring to a gpu lockup.
  Thanks
  fabio
  
  ProblemType: Bug
  DistroRelease: Ubuntu 12.10
  Package: unity 6.6.0-0ubuntu1
  ProcVersionSignature: Ubuntu 3.5.0-15.22-generic 3.5.4
  Uname: Linux 3.5.0-15-generic x86_64
  .tmp.unity.support.test.0:
  
  ApportVersion: 2.5.2-0ubuntu4
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  Date: Sat Sep 22 19:39:57 2012
  DistUpgraded: Fresh install
  DistroCodename: quantal
  DistroVariant: ubuntu
  GraphicsCard:
   NVIDIA Corporation C51G [GeForce 6100] [10de:0242] (rev a2) (prog-if 00 [VGA 
controller])
     Subsystem: ASRock Incorporation Device [1849:0242]
  InstallationMedia: Ubuntu 12.10 Quantal Quetzal - Beta amd64 (20120922)
  Lsusb:
   Bus 001 Device 003: ID 0718:0703 Imation Corp.
   Bus 002 Device 002: ID 046d:c050 Logitech, Inc. RX 250 Optical Mouse
   Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
   Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.5.0-15-generic 
root=UUID=a7a57343-62ed-4b90-bd1b-dc84ae57314b ro quiet splash vt.handoff=7
  SourcePackage: unity
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 11/03/2005
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: P1.50
  dmi.board.asset.tag: 
  dmi.board.name: K8NF4G-SATA2
  dmi.board.version: 1.00
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrP1.50:bd11/03/2005:svn:pnK8NF4G-SATA2:pvr1.00:rvn:rnK8NF4G-SATA2:rvr1.00:
  dmi.product.name: K8NF4G-SATA2
  dmi.product.version: 1.00
  version.compiz: compiz 1:0.9.8.2+bzr3377-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.39-0ubuntu1
  version.libgl1-mesa-dri: libgl1-mesa-dri 9.0~git20120917.7cfd42ce-0ubuntu3
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 9.0~git20120917.7cfd42ce-0ubuntu3
  version.xserver-xorg-core: xserver-xorg-core 2:1.13.0-0ubuntu4
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.7.3-0ubuntu1
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 
1:6.99.99~git20120913.8637f772-0ubuntu1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.20.8-0ubuntu1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.2-0ubuntu1

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1054689

Title:
  unusable system

To manage notifications about this bug go to:
https://bugs.launchpad.net/unity/+bug/1054689/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1051990] Re: file-roller crashed with SIGSEGV in on_bus_acquired_for_archive_manager()

2012-09-29 Thread Laurent Bonnaud
This bug no longer exists in version 3.6.  Thanks!


** Changed in: file-roller (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1051990

Title:
  file-roller crashed with SIGSEGV in
  on_bus_acquired_for_archive_manager()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/file-roller/+bug/1051990/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1032672] Re: fglrx-updates broken dependency with xorg-video-abi-12 (Quantal)

2012-09-29 Thread Julien Olivier
The i386 package is still v2:8.982 while the amd64 package has been
upgraded to v2:9.000. Is it normal or is there a problem with the i386
version?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1032672

Title:
  fglrx-updates broken dependency with xorg-video-abi-12 (Quantal)

To manage notifications about this bug go to:
https://bugs.launchpad.net/nvidia-drivers-ubuntu/+bug/1032672/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 606238] Re: synaptic touchpad not recognized on dell latitude e6510 and others

2012-09-29 Thread Florin9doi
try this new file: http://pastebin.com/raw.php?i=m404GW1G

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/606238

Title:
  synaptic touchpad not recognized on dell latitude e6510 and others

To manage notifications about this bug go to:
https://bugs.launchpad.net/linux/+bug/606238/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1058496] [NEW] package emacs24 24.1+1-2ubuntu3 failed to install/upgrade: vidinis procesas installed post-installation script nutrūko gražindamas reikšmę 1

2012-09-29 Thread klaipedetis
Public bug reported:

i login in ubutu-studio sesion and now see bug report

ProblemType: Package
DistroRelease: Ubuntu 12.10
Package: emacs24 24.1+1-2ubuntu3
ProcVersionSignature: Ubuntu 3.5.0-16.24-generic 3.5.4
Uname: Linux 3.5.0-16-generic i686
NonfreeKernelModules: wl
ApportVersion: 2.5.2-0ubuntu4
Architecture: i386
Date: Fri Sep 28 20:06:48 2012
ErrorMessage: vidinis procesas installed post-installation script nutrūko 
gražindamas reikšmę 1
InstallationMedia: Ubuntu GNOME Remix 12.10 Quantal Quetzal - Alpha 
i386(20120912)
SourcePackage: emacs24
Title: package emacs24 24.1+1-2ubuntu3 failed to install/upgrade: vidinis 
procesas installed post-installation script nutrūko gražindamas reikšmę 1
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: emacs24 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package i386 quantal

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1058496

Title:
  package emacs24 24.1+1-2ubuntu3 failed to install/upgrade: vidinis
  procesas installed post-installation script nutrūko gražindamas
  reikšmę 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/emacs24/+bug/1058496/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1058496] Re: package emacs24 24.1+1-2ubuntu3 failed to install/upgrade: vidinis procesas installed post-installation script nutrūko gražindamas reikšmę 1

2012-09-29 Thread klaipedetis
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1058496

Title:
  package emacs24 24.1+1-2ubuntu3 failed to install/upgrade: vidinis
  procesas installed post-installation script nutrūko gražindamas
  reikšmę 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/emacs24/+bug/1058496/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1058495] [NEW] package emacs24 24.1+1-2ubuntu3 failed to install/upgrade: vidinis procesas installed post-installation script nutrūko gražindamas reikšmę 1

2012-09-29 Thread klaipedetis
Public bug reported:

i login in ubutu-studio sesion and now see bug report

ProblemType: Package
DistroRelease: Ubuntu 12.10
Package: emacs24 24.1+1-2ubuntu3
ProcVersionSignature: Ubuntu 3.5.0-16.24-generic 3.5.4
Uname: Linux 3.5.0-16-generic i686
NonfreeKernelModules: wl
ApportVersion: 2.5.2-0ubuntu4
Architecture: i386
Date: Fri Sep 28 20:06:48 2012
ErrorMessage: vidinis procesas installed post-installation script nutrūko 
gražindamas reikšmę 1
InstallationMedia: Ubuntu GNOME Remix 12.10 Quantal Quetzal - Alpha 
i386(20120912)
SourcePackage: emacs24
Title: package emacs24 24.1+1-2ubuntu3 failed to install/upgrade: vidinis 
procesas installed post-installation script nutrūko gražindamas reikšmę 1
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: emacs24 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package i386 quantal

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1058495

Title:
  package emacs24 24.1+1-2ubuntu3 failed to install/upgrade: vidinis
  procesas installed post-installation script nutrūko gražindamas
  reikšmę 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/emacs24/+bug/1058495/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1058495] Re: package emacs24 24.1+1-2ubuntu3 failed to install/upgrade: vidinis procesas installed post-installation script nutrūko gražindamas reikšmę 1

2012-09-29 Thread klaipedetis
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1058495

Title:
  package emacs24 24.1+1-2ubuntu3 failed to install/upgrade: vidinis
  procesas installed post-installation script nutrūko gražindamas
  reikšmę 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/emacs24/+bug/1058495/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1057664] Re: Suspend to RAM is broken

2012-09-29 Thread Julien Aubin
Issue still present with kernel 3.5.0-16-generic

** Tags removed: needs-upstream-testingkernel-unable-to-test-upstream
** Tags added: kernel-unable-to-test-upstream needs-upstream-testing

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1057664

Title:
  Suspend to RAM is broken

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1057664/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1054983] Re: Sync microcode.ctl 1.18~0+nmu2 (multiverse) from Debian unstable (contrib)

2012-09-29 Thread Fabrice Coutadeur
Hi,

Dropping sponsors, as there is nothing to sponsor yet. 
Once you get the FFe for the intel-microcode sync, please subscribe sponsors 
again.

Thanks,

Fabrice

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1054983

Title:
  Sync microcode.ctl 1.18~0+nmu2 (multiverse) from Debian unstable
  (contrib)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/microcode.ctl/+bug/1054983/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1054979] Re: Sync intel-microcode 1.20120606.6 (multiverse) from Debian unstable (non-free)

2012-09-29 Thread Fabrice Coutadeur
Hi Henrique,

And thanks for your interest in Ubuntu!
As we are past feature freeze, you need to follow the FFe process, attaching 
the files described at 
https://wiki.ubuntu.com/FreezeExceptionProcess#FeatureFreeze_for_new_upstream_versions,
 befote the package can be synced.

Unsubscribing sponsors: please subscribe them again once you get the
FFe.

Thanks,
Fabrice

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1054979

Title:
  Sync intel-microcode 1.20120606.6 (multiverse) from Debian unstable
  (non-free)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/intel-microcode/+bug/1054979/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1035684] Re: XBox 360 gamepad crashes the mouse under X.Org

2012-09-29 Thread Julien Aubin
Still present in kernel 3.5.0-16-generic

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1035684

Title:
  XBox 360 gamepad crashes the mouse under X.Org

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1035684/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1058497] [NEW] Lubuntu 12.10 installer garbled screen

2012-09-29 Thread Pedro Soria-Rodriguez
Public bug reported:

I have tried installing Lubuntu 12.10 from the Beta1 and Beta2 images,
and both of them show a garbled screen after the Lubuntu progress
indicator.

Instead of the screen showing the first installation options, I get a
screen like the one shown in the attachment (a photo of what can be
seen).

If i look at the logs (switching to another terminal), the only thing
that might indicate a problem is this entry (there are thousands of
instances of it) in /var/log/kern.log:

[drm] nouveau :01:00.0: PFIFO_CACHE_ERROR - Ch 2/2 Mthd 0x Data
0x

** Affects: lightdm (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1058497

Title:
  Lubuntu 12.10 installer garbled screen

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lightdm/+bug/1058497/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1058497] Re: Lubuntu 12.10 installer garbled screen

2012-09-29 Thread Pedro Soria-Rodriguez
I forgot to add:

The machine has a Nvidia video card (Nvidia G92 - GeForce 9800 GT, rev
a2)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1058497

Title:
  Lubuntu 12.10 installer garbled screen

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lightdm/+bug/1058497/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1058400] Re: Launcher icons have a noticable horizontal two-tone line half way down

2012-09-29 Thread Omer Akram
** Changed in: ayatana-design
   Status: Confirmed = New

** Changed in: unity (Ubuntu)
   Importance: Undecided = Low

** Also affects: unity
   Importance: Undecided
   Status: New

** Changed in: unity
   Importance: Undecided = Low

** Changed in: unity
   Status: New = Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1058400

Title:
  Launcher icons have a noticable horizontal two-tone line half way down

To manage notifications about this bug go to:
https://bugs.launchpad.net/ayatana-design/+bug/1058400/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1048045] Re: PDF Chain errors when attempting to concatenate PDF files

2012-09-29 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: pdfchain (Ubuntu)
   Status: New = Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1048045

Title:
  PDF Chain errors when attempting to concatenate PDF files

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pdfchain/+bug/1048045/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 37264] Re: [libdvdcss missing] Error message unclear

2012-09-29 Thread Thomas Hotz
Peter, has there been an update?

** Changed in: kaffeine (Ubuntu)
   Status: Confirmed = Incomplete

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to the bug report.
https://bugs.launchpad.net/bugs/37264

Title:
  [libdvdcss missing] Error message unclear

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/kaffeine/+bug/37264/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs



[Bug 1058499] Re: package cups 1.5.3-0ubuntu4 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2012-09-29 Thread burjzyntski
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1058499

Title:
  package cups 1.5.3-0ubuntu4 failed to install/upgrade: subprocess
  installed post-installation script returned error exit status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cups/+bug/1058499/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1058498] [NEW] system halt and reboot does not work when lightdm is opened several times

2012-09-29 Thread Julien Aubin
Public bug reported:

Bug tested against the KDE flavour of lightdm, with lightdm-kde-greeter.
Do not know if it occurs with standard lightdm.

Steps to reproduce :
DO : open your first session using lightdm.
DO : now, while the first session is opened, open a second user session, again 
using lightdm (for example with the switch user command from KDE menu).
DO : close the second user session using the disconnect command from KDE 
menu. Note that lightdm is not killed from the second X started while it 
should, just as KDM did.
DO : now, from the first session, shutdown the computer.
EXPECT : the computer should be shut down.
ACTUAL : actually lightdm hangs after the session is closed, and user is forced 
to shutdown manually using the command line from a terminal.

The same problem occurs if the user restarted lightdm using service
lightdm restart command.

ProblemType: Bug
DistroRelease: Ubuntu 12.10
Package: lightdm 1.3.3-0ubuntu4
ProcVersionSignature: Ubuntu 3.5.0-16.24-generic 3.5.4
Uname: Linux 3.5.0-16-generic i686
NonfreeKernelModules: nvidia
ApportVersion: 2.5.3-0ubuntu1
Architecture: i386
Date: Sat Sep 29 09:07:25 2012
ProcEnviron:
 TERM=xterm
 PATH=(custom, no user)
 LANG=fr_FR.UTF-8
 SHELL=/bin/bash
SourcePackage: lightdm
UpgradeStatus: Upgraded to quantal on 2012-09-26 (2 days ago)

** Affects: lightdm (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug i386 quantal

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1058498

Title:
  system halt and reboot does not work when lightdm is opened several
  times

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lightdm/+bug/1058498/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1058498] Re: system halt and reboot does not work when lightdm is opened several times

2012-09-29 Thread Julien Aubin
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1058498

Title:
  system halt and reboot does not work when lightdm is opened several
  times

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lightdm/+bug/1058498/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1058499] [NEW] package cups 1.5.3-0ubuntu4 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2012-09-29 Thread burjzyntski
Public bug reported:

joe@maxdemian:~$ sudo apt-get install -f
[sudo] password for joe: 
Reading package lists... Done
Building dependency tree   
Reading state information... Done
0 upgraded, 0 newly installed, 0 to remove and 3 not upgraded.
6 not fully installed or removed.
After this operation, 0 B of additional disk space will be used.
Setting up cups (1.5.3-0ubuntu4) ...
start: Job failed to start
invoke-rc.d: initscript cups, action start failed.
dpkg: error processing cups (--configure):
 subprocess installed post-installation script returned error exit status 1
dpkg: dependency problems prevent configuration of printer-driver-hpcups:
 printer-driver-hpcups depends on cups; however:
  Package cups is not configured yet.
dpkg: error processing printer-driver-hpcups (--configure):
 dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of hplip:
 hplip depends on printer-driver-hpcups (= 3.12.2-1ubuntu3.1); however:
  Package printer-driver-hpcups is not configured yet.
 hplip depends on cups (= 1.1.20); however:
  Package cups is not configured yet.
dpkg: error processing hplip (--configure):
 dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of printer-driver-postscript-hp:
 printer-driver-postscript-hp depends on hplip (= 3.12.2-1ubuntu3.1); however:
  Package hplip is not configured yet.
No apport report written because the error message indicates its a followup 
error from a previous failure.
  No apport report written because the error message 
indicates its a followup error from a previous failure.
No apport report written 
because MaxReports is reached already
  No apport report written because MaxReports 
is reached already
No apport report written because MaxReports is reached already

   
dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of printer-driver-gutenprint:
 printer-driver-gutenprint depends on cups (= 1.3.0); however:
  Package cups is not configured yet.
dpkg: error processing printer-driver-gutenprint (--configure):
 dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of cups-driver-gutenprint:
 cups-driver-gutenprint depends on printer-driver-gutenprint; however:
  Package printer-driver-gutenprint is not configured yet.
dpkg: error processing cups-driver-gutenprint (--configure):
 dependency problems - leaving unconfigured
Errors were encountered while processing:
 cups
 printer-driver-hpcups
 hplip
 printer-driver-postscript-hp
 printer-driver-gutenprint
 cups-driver-gutenprint
E: Sub-process /usr/bin/dpkg returned an error code (1)

ProblemType: Package
DistroRelease: Ubuntu 12.04
Package: cups 1.5.3-0ubuntu4
ProcVersionSignature: Ubuntu 3.2.0-31.50-generic-pae 3.2.28
Uname: Linux 3.2.0-31-generic-pae i686
ApportVersion: 2.0.1-0ubuntu13
Architecture: i386
Date: Sat Sep 29 03:15:21 2012
DuplicateSignature:
 Setting up cups (1.5.3-0ubuntu4) ...
 start: Job failed to start
 invoke-rc.d: initscript cups, action start failed.
 dpkg: error processing cups (--configure):
  subprocess installed post-installation script returned error exit status 1
ErrorMessage: subprocess installed post-installation script returned error exit 
status 1
InstallationMedia: Lubuntu 11.10 Oneiric Ocelot - Release i386 (20111012)
Lpstat: Error: command ['lpstat', '-v'] failed with exit code 1: lpstat: 
Connection refused
MachineType: Hewlett-Packard HP G62 Notebook PC
Papersize: letter
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.2.0-31-generic-pae 
root=UUID=31816d87-0308-4d11-8d82-91043c56949b ro quiet splash vt.handoff=7
SourcePackage: cups
Title: package cups 1.5.3-0ubuntu4 failed to install/upgrade: subprocess 
installed post-installation script returned error exit status 1
UpgradeStatus: Upgraded to precise on 2012-06-18 (103 days ago)
dmi.bios.date: 11/23/2010
dmi.bios.vendor: Hewlett-Packard
dmi.bios.version: F.32
dmi.board.asset.tag: Base Board Asset Tag
dmi.board.name: 1425
dmi.board.vendor: Hewlett-Packard
dmi.board.version: 54.56
dmi.chassis.type: 10
dmi.chassis.vendor: Hewlett-Packard
dmi.chassis.version: N/A
dmi.modalias: 
dmi:bvnHewlett-Packard:bvrF.32:bd11/23/2010:svnHewlett-Packard:pnHPG62NotebookPC:pvr059113202710010620100:rvnHewlett-Packard:rn1425:rvr54.56:cvnHewlett-Packard:ct10:cvrN/A:
dmi.product.name: HP G62 Notebook PC
dmi.product.version: 059113202710010620100
dmi.sys.vendor: Hewlett-Packard

** Affects: cups (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package i386 precise

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1058499

Title:
  package cups 1.5.3-0ubuntu4 failed to 

[Bug 1058391] Re: Desktop rolls over vertically when i open the dash or hud

2012-09-29 Thread Omer Akram
** Also affects: unity
   Importance: Undecided
   Status: New

** Summary changed:

- Desktop rolls over vertically when i open the dash or hud
+ [nvidia] Desktop rolls over vertically when i open the dash or hud

** Changed in: unity
   Importance: Undecided = Critical

** Changed in: unity (Ubuntu)
   Importance: Undecided = Critical

** Changed in: unity
Milestone: None = 6.8.0

** Changed in: unity
Milestone: 6.8.0 = 7.0.0

** Also affects: unity/6.0
   Importance: Undecided
   Status: New

** Changed in: unity/6.0
   Importance: Undecided = Critical

** Also affects: unity (Ubuntu Quantal)
   Importance: Critical
   Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1058391

Title:
  [nvidia] Desktop rolls over vertically when i open the dash or hud

To manage notifications about this bug go to:
https://bugs.launchpad.net/unity/+bug/1058391/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 998590] Re: software-center crashed with MemoryError in _dump_bsddbm_for_unity(): (12, 'Cannot allocate memory -- Lock table is out of available locker entries')

2012-09-29 Thread William
Another one after upgrade to quantal. Not sure if it was happenning
before upgrade as I rarely use SC. I only launched it to see if it was
much different to the precise version.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/998590

Title:
  software-center crashed with MemoryError in _dump_bsddbm_for_unity():
  (12, 'Cannot allocate memory -- Lock table is out of available locker
  entries')

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/software-center/+bug/998590/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 985049] Re: apport-cli crashed with error in _compile(): nothing to repeat

2012-09-29 Thread Walter Garcia-Fontes
Two related bugs in python:


http://bugs.python.org/issue2537
http://bugs.python.org/issue214033

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/985049

Title:
  apport-cli crashed with error in _compile(): nothing to repeat

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apport/+bug/985049/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 985049] Re: apport-cli crashed with error in _compile(): nothing to repeat

2012-09-29 Thread Walter Garcia-Fontes
There are several workarounds suggested:

Commenting out lines 1296 and 1297 of 
/usr/lib/python2.7/dist-packages/apport/report.py.
Changing user name or creating a new user account.


** Also affects: apport
   Importance: Undecided
   Status: New

** No longer affects: apport

** Bug watch added: Python Roundup #2537
   http://bugs.python.org/issue2537

** Bug watch added: Python Roundup #214033
   http://bugs.python.org/issue214033

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/985049

Title:
  apport-cli crashed with error in _compile(): nothing to repeat

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apport/+bug/985049/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 881830] Re: [MacBookPro8,2] Track pad does not respond properly

2012-09-29 Thread Lars Noodén
It's still a problem in 12.10beta though less severe.  The movement is
jittery and hops.  When typing on the keyboard, rapid bursts are often
misinterpreted as mouse clicks even though the trackpad was not touched.
What further data can be collected?

** Changed in: linux (Ubuntu)
   Status: Expired = Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/881830

Title:
  [MacBookPro8,2] Track pad does not respond properly

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/881830/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 36525] Re: bcm43xx Driver only works @ 11Mb/s

2012-09-29 Thread Thomas Hotz
This Ubuntu version is not supported any more. Should we close this bug?

** Changed in: linux-restricted-modules-2.6.15 (Ubuntu)
   Status: Confirmed = Incomplete

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to the bug report.
https://bugs.launchpad.net/bugs/36525

Title:
  bcm43xx Driver only works @ 11Mb/s

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-restricted-modules-2.6.15/+bug/36525/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 35992] Re: brightness controls not working for 12 powerbook

2012-09-29 Thread Thomas Hotz
Please confirm if this is fixed? Is it also fixed in Ubuntu 12.04 LTS?
Thank you!

** Changed in: pbbuttonsd (Ubuntu)
   Status: Confirmed = Incomplete

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to the bug report.
https://bugs.launchpad.net/bugs/35992

Title:
  brightness controls not working for 12 powerbook

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pbbuttonsd/+bug/35992/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1058499] Re: package cups 1.5.3-0ubuntu4 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2012-09-29 Thread Apport retracing service
** Tags removed: need-duplicate-check

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1058499

Title:
  package cups 1.5.3-0ubuntu4 failed to install/upgrade: subprocess
  installed post-installation script returned error exit status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cups/+bug/1058499/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1058501] [NEW] package linux-image-3.2.0-31-generic 3.2.0-31.50 failed to install/upgrade: ErrorMessage: subprocess installed post-installation script returned error exit status 2

2012-09-29 Thread Thomas Nail
Public bug reported:

Doing an upgrade from Lucid (10.*) to Precise (12.*)...

ProblemType: Package
DistroRelease: Ubuntu 12.04
Package: linux-image-3.2.0-31-generic 3.2.0-31.50
ProcVersionSignature: Ubuntu 3.2.0-31.50-generic 3.2.28
Uname: Linux 3.2.0-31-generic x86_64
AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.24.
AplayDevices:
  List of PLAYBACK Hardware Devices 
 card 0: Intel [HDA Intel], device 0: STAC92xx Analog [STAC92xx Analog]
   Subdevices: 0/1
   Subdevice #0: subdevice #0
ApportVersion: 2.0.1-0ubuntu13
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  sciolist   1760 F pulseaudio
 /dev/snd/pcmC0D0p:   sciolist   1760 F...m pulseaudio
 /dev/snd/seq:timidity   1372 F timidity
CRDA: Error: command ['iw', 'reg', 'get'] failed with exit code 1: nl80211 not 
found.
Card0.Amixer.info:
 Card hw:0 'Intel'/'HDA Intel at 0xdfddc000 irq 44'
   Mixer name   : 'SigmaTel STAC9227'
   Components   : 'HDA:83847618,102801dd,00100201'
   Controls  : 38
   Simple ctrls  : 21
CurrentDmesg:
 [   32.571854] ip6_tables: (C) 2000-2006 Netfilter Core Team
 [   33.008006] eth0: no IPv6 routers present
 [   34.973359] init: plymouth-stop pre-start process (1376) terminated with 
status 1
Date: Sat Sep 29 02:07:41 2012
ErrorMessage: ErrorMessage: subprocess installed post-installation script 
returned error exit status 2
HibernationDevice: RESUME=/dev/sda3
InstallationMedia: Ubuntu 10.04.1 LTS Lucid Lynx - Release amd64 (20100816.1)
IwConfig:
 lono wireless extensions.
 
 eth0  no wireless extensions.
MachineType: Dell Inc. Dell DM061
ProcFB: 0 inteldrmfb
ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.2.0-31-generic 
root=UUID=bb990eff-7fda-4036-9ac8-ed47347aefec ro quiet splash vt.handoff=7
PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
RelatedPackageVersions: grub-pc 1.99-21ubuntu3.1
RfKill:
 
SourcePackage: linux
Title: package linux-image-3.2.0-31-generic 3.2.0-31.50 failed to 
install/upgrade: ErrorMessage: subprocess installed post-installation script 
returned error exit status 2
UpgradeStatus: Upgraded to precise on 2012-09-29 (0 days ago)
dmi.bios.date: 11/30/2006
dmi.bios.vendor: Dell Inc.
dmi.bios.version: 2.0.5
dmi.board.name: 0WG864
dmi.board.vendor: Dell Inc.
dmi.chassis.type: 6
dmi.chassis.vendor: Dell Inc.
dmi.modalias: 
dmi:bvnDellInc.:bvr2.0.5:bd11/30/2006:svnDellInc.:pnDellDM061:pvr:rvnDellInc.:rn0WG864:rvr:cvnDellInc.:ct6:cvr:
dmi.product.name: Dell DM061
dmi.sys.vendor: Dell Inc.

** Affects: linux (Ubuntu)
 Importance: Undecided
 Status: Confirmed


** Tags: amd64 apport-package precise varlogdistupgradeapttermlog-examined

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1058501

Title:
  package linux-image-3.2.0-31-generic 3.2.0-31.50 failed to
  install/upgrade: ErrorMessage: subprocess installed post-installation
  script returned error exit status 2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1058501/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1058501] Re: package linux-image-3.2.0-31-generic 3.2.0-31.50 failed to install/upgrade: ErrorMessage: subprocess installed post-installation script returned error exit status 2

2012-09-29 Thread Thomas Nail
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1058501

Title:
  package linux-image-3.2.0-31-generic 3.2.0-31.50 failed to
  install/upgrade: ErrorMessage: subprocess installed post-installation
  script returned error exit status 2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1058501/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1058501] Re: package linux-image-3.2.0-31-generic 3.2.0-31.50 failed to install/upgrade: ErrorMessage: subprocess installed post-installation script returned error exit status 2

2012-09-29 Thread Brad Figg
It looks like you ran out of space on the partition containing /boot.


** Changed in: linux (Ubuntu)
   Status: New = Confirmed

** Tags added: varlogdistupgradeapttermlog-examined

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1058501

Title:
  package linux-image-3.2.0-31-generic 3.2.0-31.50 failed to
  install/upgrade: ErrorMessage: subprocess installed post-installation
  script returned error exit status 2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1058501/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1058497] Re: Lubuntu 12.10 installer garbled screen

2012-09-29 Thread Pedro Soria-Rodriguez
Attachment with the photograph of the garbled screen.

** Attachment added: IMAG0177.jpg
   
https://bugs.launchpad.net/ubuntu/+source/lightdm/+bug/1058497/+attachment/3354337/+files/IMAG0177.jpg

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1058497

Title:
  Lubuntu 12.10 installer garbled screen

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lightdm/+bug/1058497/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 913386] Re: [Need Packaging] [upgrade] new upstream release (3.0.1)

2012-09-29 Thread Xavier Guillot
I think it's too late now for Quantal, but Glabels just got updated to
version 3.0.1 with many bug fixes and new templates...

** Summary changed:

- [Need Packaging] [upgrade] new upstream release (3.0.0)
+ [Need Packaging] [upgrade] new upstream release (3.0.1)

** Summary changed:

- [Need Packaging] [upgrade] new upstream release (3.0.1)
+ [Need Packaging] [upgrade] Glabels new upstream release (3.0.1)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/913386

Title:
  [Need Packaging] [upgrade] Glabels new upstream release (3.0.1)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/glabels/+bug/913386/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 38781] Re: software-properties should offer field to insert PPA signed key

2012-09-29 Thread Thomas Hotz
Yes should be fixed now.

** Changed in: software-properties (Ubuntu)
   Status: Triaged = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to the bug report.
https://bugs.launchpad.net/bugs/38781

Title:
  software-properties should offer field to insert PPA signed key

To manage notifications about this bug go to:
https://bugs.launchpad.net/hundredpapercuts/+bug/38781/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 38341] Re: Online Help vs. Get Help Online...

2012-09-29 Thread Thomas Hotz
I tested in Quantal at least here it is fixed! Can you confirm this on
Precise or Quantal? Thank you?

** Changed in: pidgin (Ubuntu)
   Status: Confirmed = Incomplete

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to the bug report.
https://bugs.launchpad.net/bugs/38341

Title:
  Online Help vs. Get Help Online...

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pidgin/+bug/38341/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1058504] [NEW] New upstream release.

2012-09-29 Thread Oussama Bounaim
Public bug reported:

New upstream release is available.
Current version 2.2.1
New version 2.3
Please check:http://pypi.python.org/pypi/z3c.formui

** Affects: z3c.formui (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1058504

Title:
  New upstream release.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/z3c.formui/+bug/1058504/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1058502] [NEW] package mysql-server-5.5 5.5.24-0ubuntu0.12.04.1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2012-09-29 Thread Deepak T R
Public bug reported:

Was installing mysql using the following command 
sudo apt-get install mysql-server
System configuration as under:
Processor: Intel® Core™ i5-3210M CPU @ 2.50GHz × 4 
Memory: 3.8 GiB
OS type: 64 bit Ubuntu 12.04 LTS

ProblemType: Package
DistroRelease: Ubuntu 12.04
Package: mysql-server-5.5 5.5.24-0ubuntu0.12.04.1
ProcVersionSignature: Ubuntu 3.2.0-31.50-generic 3.2.28
Uname: Linux 3.2.0-31-generic x86_64
NonfreeKernelModules: fglrx
ApportVersion: 2.0.1-0ubuntu13
Architecture: amd64
Date: Sat Sep 29 12:51:42 2012
ErrorMessage: subprocess installed post-installation script returned error exit 
status 1
InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Release amd64 
(20120425)
Logs.var.log.daemon.log:
 
Logs.var.log.kern.log:
 
MySQLConf.etc.mysql.conf.d.mysqld.safe.syslog.cnf:
 [mysqld_safe]
 syslog
MySQLVarLibDirListing: ['debian-5.5.flag', 'mysql']
SourcePackage: mysql-5.5
Title: package mysql-server-5.5 5.5.24-0ubuntu0.12.04.1 failed to 
install/upgrade: subprocess installed post-installation script returned error 
exit status 1
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: mysql-5.5 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package precise

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1058502

Title:
  package mysql-server-5.5 5.5.24-0ubuntu0.12.04.1 failed to
  install/upgrade: subprocess installed post-installation script
  returned error exit status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mysql-5.5/+bug/1058502/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1058502] Re: package mysql-server-5.5 5.5.24-0ubuntu0.12.04.1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2012-09-29 Thread Deepak T R
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1058502

Title:
  package mysql-server-5.5 5.5.24-0ubuntu0.12.04.1 failed to
  install/upgrade: subprocess installed post-installation script
  returned error exit status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mysql-5.5/+bug/1058502/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1058500] Re: synergyc crashed with SIGABRT in raise()

2012-09-29 Thread Apport retracing service
*** This bug is a duplicate of bug 927440 ***
https://bugs.launchpad.net/bugs/927440

Thank you for taking the time to report this crash and helping to make
this software better.  This particular crash has already been reported
and is a duplicate of bug #927440, so is being marked as such.  Please
look at the other bug report to see if there is any missing information
that you can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report.  Please continue to report any other bugs you may
find.

** Attachment removed: CoreDump.gz
   
https://bugs.launchpad.net/bugs/1058500/+attachment/3354306/+files/CoreDump.gz

** Attachment removed: Disassembly.txt
   
https://bugs.launchpad.net/bugs/1058500/+attachment/3354308/+files/Disassembly.txt

** Attachment removed: ProcMaps.txt
   
https://bugs.launchpad.net/bugs/1058500/+attachment/3354309/+files/ProcMaps.txt

** Attachment removed: ProcStatus.txt
   
https://bugs.launchpad.net/bugs/1058500/+attachment/3354310/+files/ProcStatus.txt

** Attachment removed: Registers.txt
   
https://bugs.launchpad.net/bugs/1058500/+attachment/3354311/+files/Registers.txt

** Attachment removed: Stacktrace.txt
   
https://bugs.launchpad.net/bugs/1058500/+attachment/3354312/+files/Stacktrace.txt

** Attachment removed: ThreadStacktrace.txt
   
https://bugs.launchpad.net/bugs/1058500/+attachment/3354313/+files/ThreadStacktrace.txt

** This bug has been marked a duplicate of private bug 927440

** Visibility changed to: Public

** Tags removed: need-i386-retrace

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1058500

Title:
  synergyc crashed with SIGABRT in raise()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/synergy/+bug/1058500/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1058040] Re: fglrx-installer does not support HD2000-4000 legacy cards

2012-09-29 Thread Dirk Heinrichs
Once again we're trapped by proprietary drivers. I just bought the
mainboard containing this Radeon HD 3000 GPU beginning of this year.
I've already tried to avoid Nvidia, hoping things will be better with
AMD/ATI. Too sad I was wrong. Next time, the winner will surely be
Intel.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1058040

Title:
  fglrx-installer does not support HD2000-4000 legacy cards

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/fglrx-installer/+bug/1058040/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1057610] Re: gvfs mounts don't show up occasionally

2012-09-29 Thread frenchy82
For me on quantal 32bits network and trash icons are never shown in thunar
The only solution is to kill the thunar daemon as it's said in this bug report 
and then it's ok

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1057610

Title:
  gvfs mounts don't show up occasionally

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/thunar/+bug/1057610/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1050352] Re: External USB 3.0 hard drive randomly disconnects and connects

2012-09-29 Thread Dmitry Pankratov
One more observation: after rebooting the system (and not mounting the
disk) this issue does not occur. As soon as it is mounted and umounted
the disconnections start to happen again. Could it be not a kernel but a
user-space problem?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1050352

Title:
  External USB 3.0 hard drive randomly disconnects and connects

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1050352/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1044820] Re: Failed to load module trident (loader failed, 7)

2012-09-29 Thread Timo Aaltonen
I think we'd better have a new bug report about that, I've uploaded the
patch to quantal now so this bug will close.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1044820

Title:
  Failed to load module trident (loader failed, 7)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-trident/+bug/1044820/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 40002] Re: docs render badly in firefox

2012-09-29 Thread Thomas Hotz
Can you tell me if this is fixed for you please?

** Changed in: python-numeric (Ubuntu)
   Status: Confirmed = Incomplete

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to the bug report.
https://bugs.launchpad.net/bugs/40002

Title:
  docs render badly in firefox

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-numeric/+bug/40002/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 39139] Re: Shutdown fails after suspending to ram

2012-09-29 Thread Thomas Hotz
Have you still this laptop? Can you please retry with a supported Ubuntu
version, i would suggest Ubuntu 12.04 LTS? Thank you!

** Changed in: acpi (Ubuntu)
   Status: Confirmed = Incomplete

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to the bug report.
https://bugs.launchpad.net/bugs/39139

Title:
  Shutdown fails after suspending to ram

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/acpi/+bug/39139/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 38440] Re: Evolution defaults to saving sent mail and drafts locally when an IMAP account is setup.

2012-09-29 Thread Thomas Hotz
** Summary changed:

- [Dapper Flight-6] Evolution defaults to saving sent mail and drafts locally 
when an IMAP account is setup.
+ Evolution defaults to saving sent mail and drafts locally when an IMAP 
account is setup.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to the bug report.
https://bugs.launchpad.net/bugs/38440

Title:
  Evolution defaults to saving sent mail and drafts locally when an IMAP
  account is setup.

To manage notifications about this bug go to:
https://bugs.launchpad.net/evolution/+bug/38440/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1058502] Re: package mysql-server-5.5 5.5.24-0ubuntu0.12.04.1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2012-09-29 Thread Apport retracing service
** Tags removed: need-duplicate-check

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1058502

Title:
  package mysql-server-5.5 5.5.24-0ubuntu0.12.04.1 failed to
  install/upgrade: subprocess installed post-installation script
  returned error exit status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mysql-5.5/+bug/1058502/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1048059] Re: Unable to mount

2012-09-29 Thread axelsvag
I got exactly the same problem with live Ubuntu 12.10 beta 2. I use a
CQ60 which works perfectly on live 12.04

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1048059

Title:
  Unable to mount

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1048059/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1058503] Re: rhythmbox-metadata crashed with SIGSEGV in gst_structure_copy()

2012-09-29 Thread Apport retracing service
*** This bug is a duplicate of bug 1027563 ***
https://bugs.launchpad.net/bugs/1027563

Thank you for taking the time to report this crash and helping to make
this software better.  This particular crash has already been reported
and is a duplicate of bug #1027563, so is being marked as such.  Please
look at the other bug report to see if there is any missing information
that you can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report.  Please continue to report any other bugs you may
find.

** Attachment removed: CoreDump.gz
   
https://bugs.launchpad.net/bugs/1058503/+attachment/3354347/+files/CoreDump.gz

** Attachment removed: Disassembly.txt
   
https://bugs.launchpad.net/bugs/1058503/+attachment/3354349/+files/Disassembly.txt

** Attachment removed: ProcMaps.txt
   
https://bugs.launchpad.net/bugs/1058503/+attachment/3354352/+files/ProcMaps.txt

** Attachment removed: ProcStatus.txt
   
https://bugs.launchpad.net/bugs/1058503/+attachment/3354353/+files/ProcStatus.txt

** Attachment removed: Registers.txt
   
https://bugs.launchpad.net/bugs/1058503/+attachment/3354354/+files/Registers.txt

** Attachment removed: Stacktrace.txt
   
https://bugs.launchpad.net/bugs/1058503/+attachment/3354355/+files/Stacktrace.txt

** Attachment removed: ThreadStacktrace.txt
   
https://bugs.launchpad.net/bugs/1058503/+attachment/3354356/+files/ThreadStacktrace.txt

** This bug has been marked a duplicate of private bug 1027563

** Visibility changed to: Public

** Tags removed: need-amd64-retrace

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1058503

Title:
  rhythmbox-metadata crashed with SIGSEGV in gst_structure_copy()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/rhythmbox/+bug/1058503/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1056820] Re: feedparser ftbfs in quantal, test suite failures

2012-09-29 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/feedparser

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1056820

Title:
  feedparser ftbfs in quantal, test suite failures

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/feedparser/+bug/1056820/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1056103] Re: no docs package / html docs

2012-09-29 Thread Sage Weil
I think if we package them at all, they should probably be in the
regular debian directory so that they get built along with regular
releases... otherwise it will be a lot of additional work to build and
publish the packages.  The rules or Makefile would probably need to do
things like clone sphinx-ditaa.git from github etc in order to do the
build.   As long as the Build-Requires: is sufficient I guess it's okay
to do that...

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1056103

Title:
  no docs package / html docs

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ceph/+bug/1056103/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1050352] Re: External USB 3.0 hard drive randomly disconnects and connects

2012-09-29 Thread Dmitry Pankratov
Also logging in to the desktop triggers this issue. As long as the
system stays in the lighdm login screen the drive does not disconnect.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1050352

Title:
  External USB 3.0 hard drive randomly disconnects and connects

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1050352/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 38781] Re: software-properties should offer field to insert PPA signed key

2012-09-29 Thread antistress
Sorry, i can't find how to paste the key within software-properties, i
still only see one way to do : import the key file

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to the bug report.
https://bugs.launchpad.net/bugs/38781

Title:
  software-properties should offer field to insert PPA signed key

To manage notifications about this bug go to:
https://bugs.launchpad.net/hundredpapercuts/+bug/38781/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1058509] Re: unity-lens-photos crashed with EOFError in /usr/lib/unity-lens-photos/flickr_scope.py: EOF read where not expected

2012-09-29 Thread Davide Pizzetti
** Visibility changed to: Public

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1058509

Title:
  unity-lens-photos crashed with EOFError in /usr/lib/unity-lens-
  photos/flickr_scope.py: EOF read where not expected

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-lens-photos/+bug/1058509/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1058508] [NEW] Popup with first message in conversation doesn't show in Gnome Shell

2012-09-29 Thread ZwS
Public bug reported:

When someone begin new conversation with me often I miss first message,
because it doesn't show. On second message popup appear.

ProblemType: Bug
DistroRelease: Ubuntu 12.10
Package: empathy 3.6.0-0ubuntu1
ProcVersionSignature: Ubuntu 3.5.0-15.23-generic 3.5.4
Uname: Linux 3.5.0-15-generic i686
NonfreeKernelModules: wl
ApportVersion: 2.5.2-0ubuntu4
Architecture: i386
Date: Sat Sep 29 10:40:44 2012
InstallationMedia: Ubuntu 12.10 Quantal Quetzal - Alpha i386 (20120826)
SourcePackage: empathy
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: empathy (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug i386 package-from-proposed quantal third-party-packages

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1058508

Title:
  Popup with first message in conversation doesn't show in Gnome Shell

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/empathy/+bug/1058508/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1058508] Re: Popup with first message in conversation doesn't show in Gnome Shell

2012-09-29 Thread ZwS
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1058508

Title:
  Popup with first message in conversation doesn't show in Gnome Shell

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/empathy/+bug/1058508/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1058505] Re: compiz crashed with SIGSEGV in g_type_check_is_value_type()

2012-09-29 Thread Apport retracing service
*** This bug is a duplicate of bug 934441 ***
https://bugs.launchpad.net/bugs/934441

Thank you for taking the time to report this crash and helping to make
this software better.  This particular crash has already been reported
and is a duplicate of bug #934441, so is being marked as such.  Please
look at the other bug report to see if there is any missing information
that you can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report.  Please continue to report any other bugs you may
find.

** Attachment removed: CoreDump.gz
   
https://bugs.launchpad.net/bugs/1058505/+attachment/3354360/+files/CoreDump.gz

** Attachment removed: Disassembly.txt
   
https://bugs.launchpad.net/bugs/1058505/+attachment/3354363/+files/Disassembly.txt

** Attachment removed: ProcMaps.txt
   
https://bugs.launchpad.net/bugs/1058505/+attachment/3354374/+files/ProcMaps.txt

** Attachment removed: ProcStatus.txt
   
https://bugs.launchpad.net/bugs/1058505/+attachment/3354376/+files/ProcStatus.txt

** Attachment removed: Registers.txt
   
https://bugs.launchpad.net/bugs/1058505/+attachment/3354377/+files/Registers.txt

** Attachment removed: Stacktrace.txt
   
https://bugs.launchpad.net/bugs/1058505/+attachment/3354378/+files/Stacktrace.txt

** Attachment removed: ThreadStacktrace.txt
   
https://bugs.launchpad.net/bugs/1058505/+attachment/3354379/+files/ThreadStacktrace.txt

** This bug has been marked a duplicate of private bug 934441

** Visibility changed to: Public

** Tags removed: need-amd64-retrace

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1058505

Title:
  compiz crashed with SIGSEGV in g_type_check_is_value_type()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/compiz/+bug/1058505/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1058506] Re: compiz crashed with SIGSEGV in nux::WindowThread::GetTimerHandler()

2012-09-29 Thread Apport retracing service
*** This bug is a duplicate of bug 1054074 ***
https://bugs.launchpad.net/bugs/1054074

Thank you for taking the time to report this crash and helping to make
this software better.  This particular crash has already been reported
and is a duplicate of bug #1054074, so is being marked as such.  Please
look at the other bug report to see if there is any missing information
that you can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report.  Please continue to report any other bugs you may
find.

** Attachment removed: CoreDump.gz
   
https://bugs.launchpad.net/bugs/1058506/+attachment/3354388/+files/CoreDump.gz

** Attachment removed: Disassembly.txt
   
https://bugs.launchpad.net/bugs/1058506/+attachment/3354390/+files/Disassembly.txt

** Attachment removed: ProcMaps.txt
   
https://bugs.launchpad.net/bugs/1058506/+attachment/3354392/+files/ProcMaps.txt

** Attachment removed: ProcStatus.txt
   
https://bugs.launchpad.net/bugs/1058506/+attachment/3354393/+files/ProcStatus.txt

** Attachment removed: Registers.txt
   
https://bugs.launchpad.net/bugs/1058506/+attachment/3354394/+files/Registers.txt

** Attachment removed: Stacktrace.txt
   
https://bugs.launchpad.net/bugs/1058506/+attachment/3354395/+files/Stacktrace.txt

** Attachment removed: ThreadStacktrace.txt
   
https://bugs.launchpad.net/bugs/1058506/+attachment/3354396/+files/ThreadStacktrace.txt

** This bug has been marked a duplicate of bug 1054074
   compiz crashed with SIGSEGV in nux::WindowThread::GetTimerHandler() from 
nux::NuxTimerTickSource::~NuxTimerTickSource()() from 
unity::UnityScreen::~UnityScreen()

** Visibility changed to: Public

** Tags removed: need-amd64-retrace

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1058506

Title:
  compiz crashed with SIGSEGV in nux::WindowThread::GetTimerHandler()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nux/+bug/1058506/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1058509] Re: unity-lens-photos crashed with EOFError in /usr/lib/unity-lens-photos/flickr_scope.py: EOF read where not expected

2012-09-29 Thread Apport retracing service
** Tags removed: need-duplicate-check

** Changed in: unity-lens-photos (Ubuntu)
   Importance: Undecided = Medium

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1058509

Title:
  unity-lens-photos crashed with EOFError in /usr/lib/unity-lens-
  photos/flickr_scope.py: EOF read where not expected

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-lens-photos/+bug/1058509/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1058380] Re: winff does not pull in ffmpeg as dependency in 12.10

2012-09-29 Thread Paul Gevers
Hi,

Thanks for taking the time to report this issue. As I now find out, the
way I handled the migration from ffmpeg to libav in Ubuntu was
incomplete.

Winff depends on libav-tools or ffmpeg. Apparently, as can be expected
in Ubuntu 12.10, you have libav-tools installed. The problem is the
detection of avconv/ffmpeg executable. I could fix that easily for new
installs (I was even convinced that I had done that), but it is a lot
more difficult to fix it correctly for people already having run Winff
before, as the path to ffmpeg is stored in user settings.

As Ubuntu 12.10 is following the libav instead of the ffmpeg version of
the library and tools, he proper way to fix this for people running into
this bug is NOT by installing the ffmpeg package but by changing the
path in the Edit - Preferences - Linux - Path to FFmpeg Executable
to /usr/bin/avconv

I now notice that the warning that you get when the wrong path is
configured is wrong: Could not find FFPlay instead of Could not find
FFMpeg.

I now notice that I forgot to update the description of the winff
package as it should mention libav too.

So summarizing:
- description of the package should change (either not mention ffmpeg or ALSO 
mention avconv
- detection upon first run of winff should find avconv if installed
- error message upon conversion when converter can not be found is mentioning 
the player instead of the converter
- error messages should be updated to not only mention ffmpeg
- preferences window should not mention only ffmpeg
* I don't consider really depending on ffmpeg the solution for this bug

Paul


** Summary changed:

- winff does not pull in ffmpeg as dependency in 12.10
+ winff did not fully transition to libav in Ubuntu

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1058380

Title:
  winff did not fully transition to libav in Ubuntu

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/winff/+bug/1058380/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


  1   2   3   4   5   6   7   8   9   10   >