[Bug 1349986] Re: Ubuntu fails to boot with multipath

2014-08-22 Thread Anton Blanchard
** Tags removed: architecture-ppc64
** Tags added: architecture-ppc64le

-- 
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/1349986

Title:
  Ubuntu fails to boot with multipath

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/multipath-tools/+bug/1349986/+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 1349860] Re: [MIR] python-keystonemiddleware (b-d) of nova

2014-08-22 Thread Matthias Klose
approved

Override component to main
python-keystonemiddleware 1.0.0-1 in utopic: universe/misc - main
python-keystonemiddleware 1.0.0-1 in utopic amd64: 
universe/python/optional/100% - main
python-keystonemiddleware 1.0.0-1 in utopic arm64: 
universe/python/optional/100% - main
python-keystonemiddleware 1.0.0-1 in utopic armhf: 
universe/python/optional/100% - main
python-keystonemiddleware 1.0.0-1 in utopic i386: universe/python/optional/100% 
- main
python-keystonemiddleware 1.0.0-1 in utopic powerpc: 
universe/python/optional/100% - main
python-keystonemiddleware 1.0.0-1 in utopic ppc64el: 
universe/python/optional/100% - main
python-keystonemiddleware-doc 1.0.0-1 in utopic amd64: 
universe/doc/optional/100% - main
python-keystonemiddleware-doc 1.0.0-1 in utopic arm64: 
universe/doc/optional/100% - main
python-keystonemiddleware-doc 1.0.0-1 in utopic armhf: 
universe/doc/optional/100% - main
python-keystonemiddleware-doc 1.0.0-1 in utopic i386: 
universe/doc/optional/100% - main
python-keystonemiddleware-doc 1.0.0-1 in utopic powerpc: 
universe/doc/optional/100% - main
python-keystonemiddleware-doc 1.0.0-1 in utopic ppc64el: 
universe/doc/optional/100% - main
13 publications overridden.


** Changed in: python-keystonemiddleware (Ubuntu)
   Status: New = Fix Released

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

Title:
  [MIR] python-keystonemiddleware (b-d) of nova

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-keystonemiddleware/+bug/1349860/+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 1315888] Re: Zlib functions (gzopen etc.) are undefined while gzopen64 etc. exist

2014-08-22 Thread Thomas P
This bug also affects phpmyadmin as it disables GZipped files export or
import.

** Also affects: phpmyadmin (Ubuntu)
   Importance: Undecided
   Status: New

-- 
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/1315888

Title:
  Zlib functions (gzopen etc.) are undefined while gzopen64 etc. exist

To manage notifications about this bug go to:
https://bugs.launchpad.net/php/+bug/1315888/+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 1270193] Re: /etc/init.d/munin-node not systemd compliant

2014-08-22 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

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

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

Title:
  /etc/init.d/munin-node not systemd compliant

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/munin/+bug/1270193/+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 1270193] Re: /etc/init.d/munin-node not systemd compliant

2014-08-22 Thread Markus Wörle
I'm also affected by this issue I think. I don't know for now whether it
has something to do with systemd or startup, but if the munin-node
service gets started with start munin-node, it can't be stopped with
/etc/init.d/munin-node stop although it went [OK]. Also /etc/init.d
/munin-node restart won't work anymore, it the service has been brought
up via start munin-node.

The same effect occurs vice versa: if you start the node with
/etc/init.d/munin-node start, you can't control it by upstart
controls.

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

Title:
  /etc/init.d/munin-node not systemd compliant

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/munin/+bug/1270193/+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 1328556] Re: init/irqbalance should support $OPTIONS

2014-08-22 Thread Louis Bouchard
** Description changed:

+ [SRU justification]
+ Without this modification, adding an $OPTIONS variable in 
/etc/default/irqbalance is useless.
+ 
+ [Impact]
+ Impossibility to add startup options using $OPTIONS
+ 
+ [Fix]
+ Add $OPTIONS to the upstart script similar to what is used in the SysV script
+ 
+ [Test Case]
+ Run the following script :
+ 
+ #!/bin/bash
+ 
+ 
+ apt-get update  apt-get -y install irqbalance
+ 
+ cat  EOF  /etc/default/irqbalance
+ OPTIONS=--hintpolicy=ignore
+ EOF
+ 
+ restart irqbalance
+ 
+ Return=$(ps aux | grep irqbalance | grep -v grep | grep hintpolicy)
+ 
+ if [[ -z $Return ]];then
+# Test fails : $OPTIONS not taken into account
+echo Test Failed
+exit -1
+ else
+echo Test Succeeded
+exit 0
+ fi
+ 
+ [Regression]
+ Risk of irqbalance not starting if invalid option were present in 
/etc/default/irqbalance previously
+ 
+ [Original description of the problem]
+ 
  /etc/init.d/irqbalance supports setting an $OPTIONS variable to pass
  parameters to the irqbalance daemon
  
  /etc/init/irqbalance should also support an $OPTIONS variable.
  
  Usage example to workaround #1321425
  /etc/default/irqbalance
  OPTIONS=--hintpolicy=ignore

** Patch removed: lp1328556_add_options_support.debdiff
   
https://bugs.launchpad.net/ubuntu/+source/irqbalance/+bug/1328556/+attachment/4183583/+files/lp1328556_add_options_support.debdiff

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

Title:
  init/irqbalance should support $OPTIONS

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/irqbalance/+bug/1328556/+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 1328556] Re: init/irqbalance should support $OPTIONS

2014-08-22 Thread Louis Bouchard
debdiff for Trusty's SRU

** Patch added: lp1328556_add_options_support.debdiff
   
https://bugs.launchpad.net/ubuntu/+source/irqbalance/+bug/1328556/+attachment/418/+files/lp1328556_add_options_support.debdiff

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

Title:
  init/irqbalance should support $OPTIONS

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/irqbalance/+bug/1328556/+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 1360287] [NEW] python-simplestreams contains openstack bits

2014-08-22 Thread Scott Moser
Public bug reported:

the python-simplestreams package contains the openstack dependent bits 
(mirros/glance and such).
there is python-simplestreams-openstack explicitly for this purpose, but as it 
is, that package is mostly empty other than dependencies.

The fix would be to not collect the openstack files into python-
simplestreams, but instead collect them into python-simplestreams-
openstack.

Additionally, i'd like to get tools/sstream-mirror-glance into the
distro.

ProblemType: Bug
DistroRelease: Ubuntu 14.10
Package: python-simplestreams 0.1.0~bzr351-0ubuntu1
ProcVersionSignature: Ubuntu 3.16.0-6.11-generic 3.16.0-rc7
Uname: Linux 3.16.0-6-generic x86_64
ApportVersion: 2.14.6-0ubuntu2
Architecture: amd64
CurrentDesktop: Unity
Date: Fri Aug 22 10:04:46 2014
EcryptfsInUse: Yes
InstallationDate: Installed on 2011-10-19 (1038 days ago)
InstallationMedia: Ubuntu 11.10 Oneiric Ocelot - Release amd64 (20111012)
PackageArchitecture: all
SourcePackage: simplestreams
UpgradeStatus: Upgraded to utopic on 2013-05-20 (459 days ago)

** Affects: simplestreams (Ubuntu)
 Importance: Medium
 Status: Confirmed


** Tags: amd64 apport-bug utopic

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

** Changed in: simplestreams (Ubuntu)
   Importance: Undecided = Medium

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

Title:
  python-simplestreams contains openstack bits

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/simplestreams/+bug/1360287/+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 1357252] Re: Upstart jobs specifying cgroup fail to start occasionally

2014-08-22 Thread James Hunt
** Also affects: systemd-shim (Ubuntu)
   Importance: Undecided
   Status: New

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

Title:
  Upstart jobs specifying cgroup fail to start occasionally

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-app-launch/+bug/1357252/+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 1340983] Re: GlanceMirror class does not expose progress update callbacks

2014-08-22 Thread Launchpad Bug Tracker
This bug was fixed in the package simplestreams - 0.1.0~bzr354-0ubuntu1

---
simplestreams (0.1.0~bzr354-0ubuntu1) utopic; urgency=medium

  * New upstream snapshot.
- support progress output in the glance mirror (LP: #1340983)
- upstream uses pyflakes instead of pylint
 -- Scott Moser smo...@ubuntu.com   Fri, 22 Aug 2014 10:06:19 -0400

** Changed in: simplestreams (Ubuntu)
   Status: New = Fix Released

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

Title:
  GlanceMirror class does not expose progress update callbacks

To manage notifications about this bug go to:
https://bugs.launchpad.net/simplestreams/+bug/1340983/+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 1357471] Re: Samba4 AD DC randomly dies, error: Did not manage to negotiate mandetory feature SIGN for dcerpc auth_level 6.

2014-08-22 Thread Thiago Martins
Hey guys!

This problem still persist on Samba 4.1.11 from my PPA.

Seems to be a upstream problem.

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

Title:
  Samba4 AD DC randomly dies, error: Did not manage to negotiate
  mandetory feature SIGN for dcerpc auth_level 6.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/samba/+bug/1357471/+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 1359946] Re: smbd spawns hundreds/thousands of processes

2014-08-22 Thread Scott Alfter
...and it turns out the router is not to blame, as when I logged into my
server this morning to check on it, top looked something like this:

top - 08:38:30 up 1 day, 14:40,  1 user,  load average: 874.41, 870.45, 860.30
Tasks: 1050 total, 877 running, 173 sleeping,   0 stopped,   0 zombie
%Cpu(s): 13.9 us, 85.6 sy,  0.3 ni,  0.0 id,  0.0 wa,  0.2 hi,  0.0 si,  0.0 st
KiB Mem:   3491160 total,  3340508 used,   150652 free,   382332 buffers
KiB Swap:  2097148 total,40056 used,  2057092 free.   206400 cached Mem

  PID USER  PR  NIVIRTRESSHR S  %CPU %MEM TIME+ COMMAND
8 root  20   0   0  0  0 S   4.6  0.0  93:24.75 rcuos/0
9 root  20   0   0  0  0 S   4.6  0.0 107:11.97 rcuos/1
 5900 salfter   20   0   25740   2464   1132 R   1.3  0.1   0:00.27 top
 2716 salfter   20   0 1400368  85772   2872 S   1.0  2.5  10:05.09 sabnzbdplus
 1057 salfter   20   0  280604   5936   3928 R   0.7  0.2   0:50.99 smbd
 1940 salfter   20   0  280604   5960   3952 R   0.7  0.2   0:50.51 smbd
 2615 salfter   20   0  280004   5852   3868 R   0.7  0.2   2:07.74 smbd
 3422 salfter   20   0  280012   5856   3872 R   0.7  0.2   2:06.06 smbd
 4002 salfter   20   0  280012   5860   3876 R   0.7  0.2   2:03.86 smbd
 4219 salfter   20   0  280012   5864   3880 R   0.7  0.2   2:02.97 smbd
 4330 salfter   20   0  279652   5824   3840 R   0.7  0.2  10:41.66 smbd
 4553 salfter   20   0  281156   6000   3992 R   0.7  0.2   0:01.40 smbd
 4896 salfter   20   0  280012   5860   3876 R   0.7  0.2   2:00.07 smbd
 5229 salfter   20   0  280136   5864   3880 R   0.7  0.2   1:58.06 smbd
 5351 salfter   20   0  281156   5988   3980 R   0.7  0.2   0:00.46 smbd
 5449 salfter   20   0  279696   5844   3860 R   0.7  0.2   7:19.14 smbd
 5748 salfter   20   0  280604   5940   3932 R   0.7  0.2   0:43.70 smbd
 6203 salfter   20   0  280604   5964   3956 R   0.7  0.2   0:43.20 smbd
 6410 salfter   20   0  279652   5824   3840 R   0.7  0.2   6:35.06 smbd
 7511 salfter   20   0  279660   5828   3844 R   0.7  0.2   6:01.25 smbd
 8540 salfter   20   0  280180   5860   3876 R   0.7  0.2   1:50.95 smbd
 9098 salfter   20   0  280180   5892   3908 R   0.7  0.2   1:46.50 smbd
 9157 salfter   20   0  280604   5924   3916 R   0.7  0.2   0:38.41 smbd
10018 salfter   20   0  280180   5876   3892 R   0.7  0.2   1:43.70 smbd
10233 salfter   20   0  280180   5888   3904 R   0.7  0.2   1:42.71 smbd
10382 salfter   20   0  279660   5828   3844 R   0.7  0.2   4:54.70 smbd
12170 salfter   20   0  279676   5836   3852 R   0.7  0.2   4:35.70 smbd
12363 salfter   20   0  280180   5868   3884 R   0.7  0.2   1:38.48 smbd
13355 salfter   20   0  280180   5880   3896 R   0.7  0.2   1:33.46 smbd
13907 salfter   20   0  280180   5896   3912 R   0.7  0.2   1:32.28 smbd
15617 salfter   20   0  280708   5956   3952 R   0.7  0.2   0:27.87 smbd
16100 salfter   20   0  280708   5928   3924 R   0.7  0.2   0:27.61 smbd
16320 salfter   20   0  280736   5924   3920 R   0.7  0.2   0:27.66 smbd

smbd has spawned 902 processes.

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

Title:
  smbd spawns hundreds/thousands of processes

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/samba/+bug/1359946/+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 1357252] Re: Upstart jobs specifying cgroup fail to start occasionally

2014-08-22 Thread James Hunt
** Changed in: upstart
   Status: In Progress = Invalid

** Changed in: upstart
   Importance: Critical = Undecided

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

Title:
  Upstart jobs specifying cgroup fail to start occasionally

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-app-launch/+bug/1357252/+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 1311463] Re: disk-setup unable to partition disks

2014-08-22 Thread Scott Moser
** Changed in: cloud-init
   Status: New = Confirmed

** Changed in: cloud-init
   Importance: Undecided = Medium

** Also affects: cloud-init (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: cloud-init (Ubuntu)
   Status: New = Confirmed

** Changed in: cloud-init (Ubuntu)
   Importance: Undecided = Medium

** Also affects: cloud-init (Ubuntu Trusty)
   Importance: Undecided
   Status: New

** Also affects: cloud-init (Ubuntu Precise)
   Importance: Undecided
   Status: New

** Also affects: cloud-init (Ubuntu Utopic)
   Importance: Medium
   Status: Confirmed

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

Title:
  disk-setup unable to partition disks

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-init/+bug/1311463/+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 995332] Re: Please enhance NetworkManager such that DNSSEC validation is done whenever possible

2014-08-22 Thread Renne
Dnsmasq supports validating DNSSEC since version 2.69, Bugs have been
fixed since version 2.71.

Please update Ubuntu packages to 2.71 and compile with DNSSEC support
(see http://www.thekelleys.org.uk/dnsmasq/CHANGELOG)!

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

Title:
  Please enhance NetworkManager such that DNSSEC validation is done
  whenever possible

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/dnsmasq/+bug/995332/+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 1264717] Re: the node can't get the user-data file from server..

2014-08-22 Thread Scott Moser
*** This bug is a duplicate of bug 1172742 ***
https://bugs.launchpad.net/bugs/1172742

Hi, i see two possible explanations for this:
a.) this is a bug in maas either in configuration or in maas proper.  
cloud-init only tries to get urls that maas told it to get.
b.) this is a dupe of bug 1172742.

I believe it to be 'b', which woudl indicate it is fixed in trusty.

a full cloud-init.log would also indicate if 'b'.

for now, i'm duping this to that. if you find otherwise, please un-dupe
or comment.


** This bug has been marked a duplicate of bug 1172742
   maas datasource fails if no user-data

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

Title:
  the node can't get the user-data file from server..

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-init/+bug/1264717/+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 1354159] Re: [SRU] icehouse 2014.1.2 point release

2014-08-22 Thread Launchpad Bug Tracker
This bug was fixed in the package heat - 2014.1.2-0ubuntu1

---
heat (2014.1.2-0ubuntu1) trusty; urgency=medium

  [ Corey Bryant ]
  * Resynchronize with stable/icehouse (6facf30) (LP: #1354159):
- [48ed483] Stop periodic watcher tasks before deleting stack
- [a855f5d] Sync threadgroup module from the oslo stable branch
- [bd4ed52] Move novaclient exceptions to heat.tests.v1_1.fakes
- [2db68e5] Pass the parent's registry into child stacks
- [57f8eaa] Fix String Parameter Receive a unicode
- [2aee296] Allow metadata updates to provider resources
- [a39ee7c] Do no re-validate parameters for existing stacks
- [aa7c030] Do not validate constraints in schema constructor
- [6facf30] Ensure routing key is specified in the address for a direct 
producer

  [ James Page ]
  * d/watch: Use tarballs.openstack.org for release artifacts.
 -- Corey Bryant corey.bry...@canonical.com   Fri, 08 Aug 2014 08:12:40 -0400

** Changed in: heat (Ubuntu Trusty)
   Status: Fix Committed = Fix Released

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

Title:
  [SRU] icehouse 2014.1.2 point release

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ceilometer/+bug/1354159/+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 1359285] Re: bug #43027, ipmi-locate only works on ia64

2014-08-22 Thread Andres Rodriguez
** Also affects: freeipmi (Ubuntu Trusty)
   Importance: Undecided
   Status: New

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

Title:
  bug #43027, ipmi-locate only works on ia64

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/freeipmi/+bug/1359285/+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 1359285] Re: [SRU] bug #43027, ipmi-locate only works on ia64

2014-08-22 Thread Andres Rodriguez
** Summary changed:

- bug #43027, ipmi-locate only works on ia64
+ [SRU] bug #43027, ipmi-locate only works on ia64

** Description changed:

- USE_EFI is only defined in ipmi-locate if the ARCH is ia64. A distro (RHEL7 
for example) delivered version of freeipmi will need to run on UEFI and legacy 
systems. 
+ [Impact]
+ ipmi-locate only work on ia64, and it does not work on UEFI enabled systems. 
This causes ipmi-locate to not be able to discover attached BMC's, causing the 
Ubuntu Certification to Fail.
+ 
+ [Test Case]
+ 1. Install freeipmi tools in a UEFI enabled system
+ 2. ipmi-locate, it will fail
+ 3. Install freeipmi-tools with fix.
+ 4. ipmi-locate, it will succeed.
+ 
+ [Regression Potential]
+ Minimal, this only enables UEFI, and does nto affect ia64 architectures. This 
has been tested and systems will be re-tests (both UEFI/onon-UEFI) before it 
cane be successfully verified.
+ 
+ 
+ USE_EFI is only defined in ipmi-locate if the ARCH is ia64. A distro (RHEL7 
for example) delivered version of freeipmi will need to run on UEFI and legacy 
systems.
  I've attached a patch that fixes this issue and another issue where the 
SMBIOS= line in /sys/firmware/efi/systab is terminated with a linefeed (0x0a) 
and not a NULL(ox00)
  
  patch link https://savannah.gnu.org/bugs/download.php?file_id=31919
  
- 
  Tue 19 Aug 2014 08:52:19 PM UTC, comment #1:
  Thanks, it'll be in the next release.

** Description changed:

  [Impact]
  ipmi-locate only work on ia64, and it does not work on UEFI enabled systems. 
This causes ipmi-locate to not be able to discover attached BMC's, causing the 
Ubuntu Certification to Fail.
  
  [Test Case]
  1. Install freeipmi tools in a UEFI enabled system
  2. ipmi-locate, it will fail
  3. Install freeipmi-tools with fix.
  4. ipmi-locate, it will succeed.
  
  [Regression Potential]
  Minimal, this only enables UEFI, and does nto affect ia64 architectures. This 
has been tested and systems will be re-tests (both UEFI/onon-UEFI) before it 
cane be successfully verified.
  
- 
+ [Original Description]
  USE_EFI is only defined in ipmi-locate if the ARCH is ia64. A distro (RHEL7 
for example) delivered version of freeipmi will need to run on UEFI and legacy 
systems.
  I've attached a patch that fixes this issue and another issue where the 
SMBIOS= line in /sys/firmware/efi/systab is terminated with a linefeed (0x0a) 
and not a NULL(ox00)
  
  patch link https://savannah.gnu.org/bugs/download.php?file_id=31919
  
  Tue 19 Aug 2014 08:52:19 PM UTC, comment #1:
  Thanks, it'll be in the next release.

** Description changed:

  [Impact]
  ipmi-locate only work on ia64, and it does not work on UEFI enabled systems. 
This causes ipmi-locate to not be able to discover attached BMC's, causing the 
Ubuntu Certification to Fail.
  
  [Test Case]
- 1. Install freeipmi tools in a UEFI enabled system
+ 1. Install freeipmi tools in a UEFI enabled system (D380 Gen9)
  2. ipmi-locate, it will fail
  3. Install freeipmi-tools with fix.
  4. ipmi-locate, it will succeed.
  
  [Regression Potential]
  Minimal, this only enables UEFI, and does nto affect ia64 architectures. This 
has been tested and systems will be re-tests (both UEFI/onon-UEFI) before it 
cane be successfully verified.
  
  [Original Description]
  USE_EFI is only defined in ipmi-locate if the ARCH is ia64. A distro (RHEL7 
for example) delivered version of freeipmi will need to run on UEFI and legacy 
systems.
  I've attached a patch that fixes this issue and another issue where the 
SMBIOS= line in /sys/firmware/efi/systab is terminated with a linefeed (0x0a) 
and not a NULL(ox00)
  
  patch link https://savannah.gnu.org/bugs/download.php?file_id=31919
  
  Tue 19 Aug 2014 08:52:19 PM UTC, comment #1:
  Thanks, it'll be in the next release.

** Description changed:

  [Impact]
  ipmi-locate only work on ia64, and it does not work on UEFI enabled systems. 
This causes ipmi-locate to not be able to discover attached BMC's, causing the 
Ubuntu Certification to Fail.
  
  [Test Case]
- 1. Install freeipmi tools in a UEFI enabled system (D380 Gen9)
+ 1. Install freeipmi tools in a UEFI enabled system (DL380 Gen9)
  2. ipmi-locate, it will fail
  3. Install freeipmi-tools with fix.
  4. ipmi-locate, it will succeed.
  
  [Regression Potential]
  Minimal, this only enables UEFI, and does nto affect ia64 architectures. This 
has been tested and systems will be re-tests (both UEFI/onon-UEFI) before it 
cane be successfully verified.
  
  [Original Description]
  USE_EFI is only defined in ipmi-locate if the ARCH is ia64. A distro (RHEL7 
for example) delivered version of freeipmi will need to run on UEFI and legacy 
systems.
  I've attached a patch that fixes this issue and another issue where the 
SMBIOS= line in /sys/firmware/efi/systab is terminated with a linefeed (0x0a) 
and not a NULL(ox00)
  
  patch link https://savannah.gnu.org/bugs/download.php?file_id=31919
  
  Tue 19 Aug 2014 08:52:19 PM UTC, comment #1:
  Thanks, 

[Bug 1312507] Re: rabbitmq-server fails to start on a IPv6-Only environment/epmd is not IPv6 enabled

2014-08-22 Thread Thiago Martins
Hey guys! Awesome job!

Problem fixed, packages: erlang-* 1:16.b.3-dfsg-1ubuntu2.1.

No more IPv4 at my OpenStack Controller Node, YAY! :-)

Have a nice weekend!

Thanks!

** Tags removed: verification-needed
** Tags added: verification-done

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

Title:
  rabbitmq-server fails to start on a IPv6-Only environment/epmd is not
  IPv6 enabled

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/erlang/+bug/1312507/+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 1360471] [NEW] update walinuxagent to 2.0.7

2014-08-22 Thread Ben Howard
Public bug reported:

We have tagged a new release for WALinuxAgent (2.0.7):
https://github.com/Azure/WALinuxAgent/releases/tag/WALinuxAgent-2.0.7.
Ubuntu's walinuxagent package is currently based on 2.0.5, so there are
several fixes in 2.0.6 and 2.0.7 that are important to pick up.

Specifically, there are a number of fixes for extension handling,
provisioning and the new feature for adding a readme warning to the
resource disk. For 12.04, here are the relevant fixes to look at.

Fixes to extension handling
https://github.com/Azure/WALinuxAgent/commit/fd0aa07e0a08eaf285c4d4ce2b2aaf7698d3fd9d
https://github.com/Azure/WALinuxAgent/commit/f445aff063aa8aa59c1dca7e065e68f64904ae43
https://github.com/Azure/WALinuxAgent/commit/3f93680589116d28acdfdd594fe6942b52c139e4

Add README warning to resource disk
https://github.com/Azure/WALinuxAgent/commit/78f97d9885725d6ca5fc749d3f9708f496920e97#diff-d41d8cd98f00b204e9800998ecf8427e
https://github.com/Azure/WALinuxAgent/commit/2321b9cd92988843ebea4f031d99b09c0054ee13
https://github.com/Azure/WALinuxAgent/commit/f574932748ec66eccca74e643e369b61eab81bf8

Fixes for SSH server and host key handling (report host key to fabric)
https://github.com/Azure/WALinuxAgent/commit/62252f3f9162235aabc82f896efbab756935e141
https://github.com/Azure/WALinuxAgent/commit/71020f9913629bbe20fb76d424fb88e14a673dd3

Please let us know if you have questions/concerns about any of these
patches.

** Affects: walinuxagent (Ubuntu)
 Importance: Medium
 Assignee: Ben Howard (utlemming)
 Status: Confirmed

** Affects: walinuxagent (Ubuntu Trusty)
 Importance: Undecided
 Status: New

** Affects: walinuxagent (Ubuntu Utopic)
 Importance: Medium
 Assignee: Ben Howard (utlemming)
 Status: Confirmed

** Also affects: walinuxagent (Ubuntu Trusty)
   Importance: Undecided
   Status: New

** Also affects: walinuxagent (Ubuntu Utopic)
   Importance: Medium
 Assignee: Ben Howard (utlemming)
   Status: Confirmed

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

Title:
  update walinuxagent to 2.0.7

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/walinuxagent/+bug/1360471/+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 1332893] Re: systemd-logind[976]: cgmanager: cgm_remove failed: cpu:user/115.user did not exist

2014-08-22 Thread Launchpad Bug Tracker
[Expired for cgmanager (Ubuntu) because there has been no activity for
60 days.]

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

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

Title:
  systemd-logind[976]: cgmanager: cgm_remove failed: cpu:user/115.user
  did not exist

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cgmanager/+bug/1332893/+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 1277466] Re: unprivileged containers fail to start with 1.0.0~beta4-0ubuntu1

2014-08-22 Thread ivank
I was seeing the Permission denied - failed to get real path for [...]
error on Ubuntu 14.04 with LXC 1.0.5-0ubuntu0.1 and linux-
image-3.13.0-32-generic, and after some fruitless debugging, figured out
I just needed to add +x permission on the container directory itself:

setfacl -m u:10:x ~/ ~/.local ~/.local/share ~/.local/share/lxc
~/.local/share/lxc/CONTAINER

(It lacked +x because my umask was 007 instead of 002.)

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

Title:
  unprivileged containers fail to start with 1.0.0~beta4-0ubuntu1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1277466/+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 1360077] [NEW] Symptoms: App server processes stuck at 100% CPU usage

2014-08-22 Thread goolala
Public bug reported:

Any chance to get this into upstream for precise?

https://launchpad.net/imagemagick/main/6.8.9-6

DoS Vulnerability:
http://www.cvedetails.com/cve/CVE-2012-1798/
http://www.cvedetails.com/cve/CVE-2012-1610/

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

** Description changed:

  Any chance to get this into upstream for precise?
  
  https://launchpad.net/imagemagick/main/6.8.9-6
  
- DoS Vulnerability: 
+ DoS Vulnerability:
  http://www.cvedetails.com/cve/CVE-2012-1798/
+ http://www.cvedetails.com/cve/CVE-2012-1610/

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

Title:
  Symptoms: App server processes stuck at 100% CPU usage

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

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


[Bug 1357920] Dependencies.txt

2014-08-22 Thread Øyvind Harboe
apport information

** Attachment added: Dependencies.txt
   
https://bugs.launchpad.net/bugs/1357920/+attachment/4184242/+files/Dependencies.txt

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

Title:
  Xerox Phaser 8560DN reboots as soon as I bring up the Print requester

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

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


[Bug 1357920] CurrentDmesg.txt

2014-08-22 Thread Øyvind Harboe
apport information

** Attachment added: CurrentDmesg.txt
   
https://bugs.launchpad.net/bugs/1357920/+attachment/4184241/+files/CurrentDmesg.txt

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

Title:
  Xerox Phaser 8560DN reboots as soon as I bring up the Print requester

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

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


[Bug 1357920] Locale.txt

2014-08-22 Thread Øyvind Harboe
apport information

** Attachment added: Locale.txt
   https://bugs.launchpad.net/bugs/1357920/+attachment/4184244/+files/Locale.txt

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

Title:
  Xerox Phaser 8560DN reboots as soon as I bring up the Print requester

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

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


[Bug 1357920] ProcInterrupts.txt

2014-08-22 Thread Øyvind Harboe
apport information

** Attachment added: ProcInterrupts.txt
   
https://bugs.launchpad.net/bugs/1357920/+attachment/4184250/+files/ProcInterrupts.txt

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

Title:
  Xerox Phaser 8560DN reboots as soon as I bring up the Print requester

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

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


[Bug 1357920] CupsErrorLog.txt

2014-08-22 Thread Øyvind Harboe
apport information

** Attachment added: CupsErrorLog.txt
   
https://bugs.launchpad.net/bugs/1357920/+attachment/4184240/+files/CupsErrorLog.txt

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

Title:
  Xerox Phaser 8560DN reboots as soon as I bring up the Print requester

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

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


[Bug 1357920] ProcModules.txt

2014-08-22 Thread Øyvind Harboe
apport information

** Attachment added: ProcModules.txt
   
https://bugs.launchpad.net/bugs/1357920/+attachment/4184251/+files/ProcModules.txt

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

Title:
  Xerox Phaser 8560DN reboots as soon as I bring up the Print requester

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

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


[Bug 1357920] PrintingPackages.txt

2014-08-22 Thread Øyvind Harboe
apport information

** Attachment added: PrintingPackages.txt
   
https://bugs.launchpad.net/bugs/1357920/+attachment/4184247/+files/PrintingPackages.txt

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

Title:
  Xerox Phaser 8560DN reboots as soon as I bring up the Print requester

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

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


[Bug 1357920] UdevDb.txt

2014-08-22 Thread Øyvind Harboe
apport information

** Attachment added: UdevDb.txt
   https://bugs.launchpad.net/bugs/1357920/+attachment/4184252/+files/UdevDb.txt

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

Title:
  Xerox Phaser 8560DN reboots as soon as I bring up the Print requester

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

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


[Bug 1357920] Lsusb.txt

2014-08-22 Thread Øyvind Harboe
apport information

** Attachment added: Lsusb.txt
   https://bugs.launchpad.net/bugs/1357920/+attachment/4184246/+files/Lsusb.txt

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

Title:
  Xerox Phaser 8560DN reboots as soon as I bring up the Print requester

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

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


[Bug 1357920] Re: Xerox Phaser 8560DN reboots as soon as I bring up the Print requester

2014-08-22 Thread Øyvind Harboe
apport information

** Tags added: apparmor apport-collected third-party-packages trusty

** Description changed:

  With Ubuntu 14, the Xerox Phaser 8560DN resets as soon as I bring up the
  Print requester. Up until Ubuntu 14, the Xerox printer worked with
  Ubuntu. It works fine from Windows.
  
  The strange thing is that the Xerox printer manages to crash when I
  bring up the Printer requester even if I don't have the Xerox printer
  added to the list of printers.
  
  I've increased the memory on our Phaser 8560DN to 1 gig to solve the
  problem without luck:
  https://bugs.launchpad.net/ubuntu/+source/cups/+bug/405851
  
  I tried contacting Xerox, but they no longer care if Linux works or not.
  If it works from Windows, it's not their problem.
  
- The obvious solution is to throw out the Xerox printer and never buy one
- again :-)
+ The obvious solution is to throw out the Xerox printer and never buy one 
again :-)
+ --- 
+ ApportVersion: 2.14.1-0ubuntu3.3
+ Architecture: amd64
+ CurrentDesktop: Unity
+ DistroRelease: Ubuntu 14.04
+ InstallationDate: Installed on 2012-07-04 (778 days ago)
+ InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Release amd64 
(20120425)
+ Lpstat: Error: command ['lpstat', '-v'] failed with exit code 1: lpstat: No 
destinations added.
+ MachineType: ASUSTeK COMPUTER INC. N56VM
+ NonfreeKernelModules: nvidia
+ Package: cups 1.7.2-0ubuntu1.1
+ PackageArchitecture: amd64
+ Papersize: letter
+ ProcCmdline: BOOT_IMAGE=/boot/vmlinuz-3.13.0-33-generic 
root=UUID=f083477b-9d30-4b78-9d54-7958a51c935e ro quiet splash vt.handoff=7
+ ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.13.0-33-generic 
root=UUID=f083477b-9d30-4b78-9d54-7958a51c935e ro quiet splash vt.handoff=7
+ ProcVersionSignature: Ubuntu 3.13.0-33.58-generic 3.13.11.4
+ Tags: trusty third-party-packages apparmor apparmor apparmor apparmor 
apparmor apparmor apparmor apparmor apparmor apparmor apparmor apparmor 
apparmor apparmor apparmor apparmor apparmor apparmor apparmor apparmor 
apparmor apparmor apparmor apparmor apparmor apparmor apparmor apparmor 
apparmor apparmor
+ Uname: Linux 3.13.0-33-generic x86_64
+ UpgradeStatus: Upgraded to trusty on 2014-06-23 (59 days ago)
+ UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
+ _MarkForUpload: True
+ dmi.bios.date: 03/01/2012
+ dmi.bios.vendor: American Megatrends Inc.
+ dmi.bios.version: N56VM.204
+ dmi.board.asset.tag: ATN12345678901234567
+ dmi.board.name: N56VM
+ dmi.board.vendor: ASUSTeK COMPUTER INC.
+ dmi.board.version: 1.0
+ dmi.chassis.asset.tag: No Asset Tag
+ dmi.chassis.type: 10
+ dmi.chassis.vendor: ASUSTeK COMPUTER INC.
+ dmi.chassis.version: 1.0
+ dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrN56VM.204:bd03/01/2012:svnASUSTeKCOMPUTERINC.:pnN56VM:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnN56VM:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
+ dmi.product.name: N56VM
+ dmi.product.version: 1.0
+ dmi.sys.vendor: ASUSTeK COMPUTER INC.

** Attachment added: BootDmesg.txt
   
https://bugs.launchpad.net/bugs/1357920/+attachment/4184239/+files/BootDmesg.txt

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

Title:
  Xerox Phaser 8560DN reboots as soon as I bring up the Print requester

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

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


[Bug 1357920] KernLog.txt

2014-08-22 Thread Øyvind Harboe
apport information

** Attachment added: KernLog.txt
   
https://bugs.launchpad.net/bugs/1357920/+attachment/4184243/+files/KernLog.txt

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

Title:
  Xerox Phaser 8560DN reboots as soon as I bring up the Print requester

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

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


[Bug 1357920] ProcCpuinfo.txt

2014-08-22 Thread Øyvind Harboe
apport information

** Attachment added: ProcCpuinfo.txt
   
https://bugs.launchpad.net/bugs/1357920/+attachment/4184248/+files/ProcCpuinfo.txt

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

Title:
  Xerox Phaser 8560DN reboots as soon as I bring up the Print requester

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

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


[Bug 1357920] UdevLog.txt

2014-08-22 Thread Øyvind Harboe
apport information

** Attachment added: UdevLog.txt
   
https://bugs.launchpad.net/bugs/1357920/+attachment/4184253/+files/UdevLog.txt

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

Title:
  Xerox Phaser 8560DN reboots as soon as I bring up the Print requester

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

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


[Bug 1357920] ProcEnviron.txt

2014-08-22 Thread Øyvind Harboe
apport information

** Attachment added: ProcEnviron.txt
   
https://bugs.launchpad.net/bugs/1357920/+attachment/4184249/+files/ProcEnviron.txt

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

Title:
  Xerox Phaser 8560DN reboots as soon as I bring up the Print requester

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

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


[Bug 1357920] Lspci.txt

2014-08-22 Thread Øyvind Harboe
apport information

** Attachment added: Lspci.txt
   https://bugs.launchpad.net/bugs/1357920/+attachment/4184245/+files/Lspci.txt

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

Title:
  Xerox Phaser 8560DN reboots as soon as I bring up the Print requester

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

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


[Bug 1360058] Re: package codeblocks-dev (not installed) failed to install/upgrade: intentando sobreescribir `/usr/include/codeblocks/wxContribItems/wxImagePanel/include/wx/wxImagePanel.h', que está t

2014-08-22 Thread LocutusOfBorg
Hi, you seem to have downloaded the deb from the official website and
afer attempted to install the repository one. Such install  path cannot
easily be supported. (I didn't read the logs, but we always get this
kind of bugs and they have all the same reason). Please set the status
back to new if this is not the case, invalid otherwise

** Changed in: codeblocks (Ubuntu)
   Status: New = Incomplete

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

Title:
  package codeblocks-dev (not installed) failed to install/upgrade:
  intentando sobreescribir
  
`/usr/include/codeblocks/wxContribItems/wxImagePanel/include/wx/wxImagePanel.h',
  que está también en el paquete codeblocks-wxcontrib-headers 13.12-1

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

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

[Bug 1360086] [NEW] Thunderbird 31 regression: changing focus with TAB in compose window during address autocompletion

2014-08-22 Thread Brian Norris
Public bug reported:

There are two similar/related regressions in Thunderbird 31, when typing
address(es) in the 'To' field(s) of the compose window. Both regressions
involve the widget focus behavior when navigating via keyboard after
typing an address that is in your autocompletion address list. In one
case, we see unexpected behavior when pressing TAB while
autocompleting an address, and in the second case, we see unexpected
behavior when pressing SHIFT+TAB in the same scenario.

Comments are borrowed below from the upstream bug reports:

https://bugzilla.mozilla.org/show_bug.cgi?id=1043784
https://bugzilla.mozilla.org/show_bug.cgi?id=1051564

Issue #1:

STR
1 compose new msg
2 in exactly the last empty recipient row (with set recipient type), type a 
searchword which triggers at least one autocomplete suggestion: e.g. [To: 
][searchword  autocomplete suggestion]
3 press tab

Actual Result (TB31)

a) focus moves away from the current recipient row immediately
b) a new empty recipient row is created
c) the just-added recipient row gets focus

Expected Result (as in TB24)

b) don't create a new empty recipient row
c) As a consequence, as there's no other (empty or filled) row widget after the 
just-filled row widget, move focus to the next widget, which happens to be 
Subject box.


Issue #2:


STR
1 compose new msg
2 in exactly the last empty recipient row (with set recipient type), type a 
searchword which triggers at least one autocomplete suggestion: e.g. [To: 
][searchword  autocomplete suggestion]
3 press shift+tab

Actual Result (TB31)

a) focus moves away from the current recipient row immediately
b) a new empty recipient row is created
c) the just-added recipient row gets focus

Expected Result (as in TB24)

b) no new recipient row is created
c) jump to the 'To:' combo box (i.e., the previous widget, rather than the next 
widget)

** Affects: thunderbird
 Importance: Unknown
 Status: Unknown

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

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

Title:
  Thunderbird 31 regression: changing focus with TAB in compose window
  during address autocompletion

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

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


[Bug 1360086] Re: Thunderbird 31 regression: changing focus with TAB in compose window during address autocompletion

2014-08-22 Thread Brian Norris
It looks like there's the start of a solution patch for Issue #1
upstream. Please backport the appropriate patches when the upstream
issues are fixed.

** Bug watch added: Mozilla Bugzilla #1043784
   https://bugzilla.mozilla.org/show_bug.cgi?id=1043784

** Also affects: thunderbird via
   https://bugzilla.mozilla.org/show_bug.cgi?id=1043784
   Importance: Unknown
   Status: Unknown

** Changed in: thunderbird (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/1360086

Title:
  Thunderbird 31 regression: changing focus with TAB in compose window
  during address autocompletion

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

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


[Bug 1360088] [NEW] Needs perl 5.20 compatibility

2014-08-22 Thread dino99
Public bug reported:

Utopic have moved to perl 5.20.
To upgrade, it have been necessary to remove gtkorphan, which does not support 
perl 5.20.

Please update it.

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


** Tags: bot-stop-nagging utopic

** Tags added: bot-stop-nagging utopic

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

Title:
  Needs perl 5.20 compatibility

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

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


[Bug 1357920] Re: Xerox Phaser 8560DN reboots as soon as I bring up the Print requester

2014-08-22 Thread Øyvind Harboe
I tried running system-config-printer --debug 21 | tee log.txt, but
I didn't find a way of displaying the Print requester(see attachement
in #19).

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

Title:
  Xerox Phaser 8560DN reboots as soon as I bring up the Print requester

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

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


[Bug 1357920] Re: Xerox Phaser 8560DN reboots as soon as I bring up the Print requester

2014-08-22 Thread Øyvind Harboe
I don't need to add the printed to make it crash. I've tried adding it
using 1  2.

With *no* printer added to the system, if I bring up the Print
requester(picture attached), then printer reboots.

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

Title:
  Xerox Phaser 8560DN reboots as soon as I bring up the Print requester

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

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


[Bug 1357920] Re: Xerox Phaser 8560DN reboots as soon as I bring up the Print requester

2014-08-22 Thread Øyvind Harboe
As soon as this Print requester is displayed, the printer reboots.

There is *NO* printer added to my machine at all, and yes, the Xerox
printer then reboots.

Apparently there is some sort of broadcast() that happens from my PC
in this case which causes the printer to die.

** Attachment added: Screenshot from 2014-08-22 08:15:32.png
   
https://bugs.launchpad.net/ubuntu/+source/cups/+bug/1357920/+attachment/4184266/+files/Screenshot%20from%202014-08-22%2008%3A15%3A32.png

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

Title:
  Xerox Phaser 8560DN reboots as soon as I bring up the Print requester

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

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


[Bug 1360086] Re: Thunderbird 31 regression: changing focus with TAB in compose window during address autocompletion

2014-08-22 Thread Brian Norris
Marked confirmed, because it's been reported by multiple people upstream

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

Title:
  Thunderbird 31 regression: changing focus with TAB in compose window
  during address autocompletion

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

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


[Bug 1341548] Re: Online detection does not work with confined apps on Nexus 4

2014-08-22 Thread Antti Kaijanmäki
dan, check out the new packages: libconnectivity-qt1, libconnectivity-
qt1-dev, qml-module-ubuntu-connectivity and connectivity-doc.

** Changed in: indicator-network
   Status: In Progress = 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/1341548

Title:
  Online detection does not work with confined apps on Nexus 4

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

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


[Bug 1302049] Re: Need a way for external processes to ask for sim unlocking.

2014-08-22 Thread Antti Kaijanmäki
** Also affects: indicator-network (Ubuntu RTM)
   Importance: Undecided
   Status: New

** Changed in: indicator-network (Ubuntu RTM)
   Status: New = In Progress

** Changed in: indicator-network
   Status: Triaged = Fix Released

** Changed in: indicator-network (Ubuntu RTM)
 Assignee: (unassigned) = Antti Kaijanmäki (kaijanmaki)

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

Title:
  Need a way for external processes to ask for sim unlocking.

To manage notifications about this bug go to:
https://bugs.launchpad.net/indicator-network/+bug/1302049/+subscriptions

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

[Bug 1356331] Re: /usr/lib/arm-linux-gnueabihf/thumbnailer/vs-thumb:5:g_malloc0_n:gst_amc_codec_get_input_buffers:gst_amc_video_dec_configure_self:gst_amc_video_dec_set_format:gst_video_decoder_setcap

2014-08-22 Thread Jussi Pakkanen
** Changed in: thumbnailer (Ubuntu)
   Status: New = Invalid

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

Title:
  /usr/lib/arm-linux-gnueabihf/thumbnailer/vs-
  
thumb:5:g_malloc0_n:gst_amc_codec_get_input_buffers:gst_amc_video_dec_configure_self:gst_amc_video_dec_set_format:gst_video_decoder_setcaps

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gst-plugins-bad1.0/+bug/1356331/+subscriptions

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


[Bug 1058040] Re: fglrx-installer not working with AMD Radeon/Mobility Radeon HD 2000-4000 cards in Quantal+

2014-08-22 Thread djchandler
And the Open Source x.org radeon driver still overheats, especially on
laptops. This has been a problem for at least 4 years that I'm aware of,
and not getting perceptibly any better.

My 5+ year old Tosh laptop (RS780 graphics aka Radeon 3100 found in the
AMD 780V chipset) was fine with the fglrx driver and I was able to force
the 2.8x version until I upgraded from 12.04 to 14.04. You can no longer
downgrade back to an old copy of 12.04 and force the old version even
though it's in the repositories unless you still have your first .iso
download with the very oldest 3.2 kernel.

Any version of 12.04 I can see to download now with the oldest 3.2
kernel I can find won't install the 2.8x driver, apparently because
there's no kernel support for the older drivers (fails sanity check).
Somehow the problem has been compounded within the OS community after
AMD forked their support for so-called legacy GPUs and the Radeon 5xxx
GPUs and newer.

I started using Linux 12 or so years ago because it would run on older
hardware after MS or Apple discontinued OS support for a given
configuration. It looks like Canonical is getting more and more like
Apple and Microsoft. Now if your hardware is over 5 years old, you're
treated like some sort of Luddite.

-- 
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 not working with AMD Radeon/Mobility Radeon HD
  2000-4000 cards in Quantal+

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

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


[Bug 1355653] Re: Can't find /usr/lib/systemd/system/serial-getty@hvc0.service file

2014-08-22 Thread Anton Blanchard
** Tags removed: architecture-ppc64
** Tags added: architecture-ppc64le

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

Title:
  Can't find /usr/lib/systemd/system/serial-getty@hvc0.service file

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

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


[Bug 1347967] Re: ISST-KVM:Ubuntu14.04:LE guest failed to boot on its first reboot after installation

2014-08-22 Thread Anton Blanchard
** Tags removed: architecture-ppc64
** Tags added: architecture-ppc64le

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

Title:
  ISST-KVM:Ubuntu14.04:LE guest failed to boot on its first reboot after
  installation

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/finish-install/+bug/1347967/+subscriptions

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


[Bug 1358506] Re: [ppc64-diag] Package update

2014-08-22 Thread Anton Blanchard
** Tags removed: architecture-ppc64
** Tags added: architecture-ppc64le

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

Title:
  [ppc64-diag] Package update

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ppc64-diag/+bug/1358506/+subscriptions

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


[Bug 1338758] Re: Re-provisioning GPRS/MMS contexts requires re-starting ofono

2014-08-22 Thread Antti Kaijanmäki
Other option is to add a new property to org.ofono.ConnectionContext:

bool Provisioned [read]

Holds whether the context has been provisioned.

This way Reset could only remove contexts that have Provisioned ==
False.

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

Title:
  Re-provisioning GPRS/MMS contexts requires re-starting ofono

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

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


[Bug 1353105] Re: bnx2x crashes on bxn2x_tpa_start

2014-08-22 Thread Anton Blanchard
** Tags removed: architecture-ppc64
** Tags added: architecture-ppc64le

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

Title:
  bnx2x crashes on bxn2x_tpa_start

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

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


[Bug 1349986] Re: Ubuntu fails to boot with multipath

2014-08-22 Thread Anton Blanchard
** Tags removed: architecture-ppc64
** Tags added: architecture-ppc64le

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

Title:
  Ubuntu fails to boot with multipath

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

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


[Bug 1341475] Re: Ubuntu 14.04:linux-crashdump pckg is missing from ubuntu repository

2014-08-22 Thread Anton Blanchard
** Tags removed: architecture-ppc64
** Tags added: architecture-ppc64le

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

Title:
  Ubuntu 14.04:linux-crashdump pckg is missing from ubuntu repository

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

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


[Bug 1357920] Re: Xerox Phaser 8560DN reboots as soon as I bring up the Print requester

2014-08-22 Thread James Cloos
The cups log shows that you configured the printer as an IPP printer.
(Or that something did so for you.)

Try configuring it as a socket printer (sending the postscript to port
9100).

You may need to use the printer’s web interface or control panel to
enable port9100 if you have disabled it.

Your description suggests that the printer cannot handle the way cups
uses ipp to ask for its capabilities.

Perhaps it only supports an older version of ipp?

Older versions of cups used snmp to gather some data from networked
printers.  The move to use ipp instead has value, but is not compatible
with all existing printers.

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

Title:
  Xerox Phaser 8560DN reboots as soon as I bring up the Print requester

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

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

[Bug 1312403] Re: polkitd, dbus-daemon CPU usage high, system very slugish

2014-08-22 Thread obyvatel
server 12.04 the same issue.
Polkitd process consuming all unassigned cpu time.
I spotted it yesterday

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

Title:
  polkitd, dbus-daemon CPU usage high, system very slugish

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/policykit-1/+bug/1312403/+subscriptions

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


[Bug 1360075] Re: crashes on start

2014-08-22 Thread Bug Watch Updater
** Changed in: magicmaze (Debian)
   Status: Unknown = New

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

Title:
  crashes on start

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

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


[Bug 1359125] Re: Use a discreet notification when there is an active call

2014-08-22 Thread Matthew Paul Thomas
** Package changed: indicator-messages (Ubuntu) = dialer-app (Ubuntu)

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

Title:
  Use a discreet notification when there is an active call

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/dialer-app/+bug/1359125/+subscriptions

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


[Bug 1349860] Re: [MIR] python-keystonemiddleware (b-d) of nova

2014-08-22 Thread Matthias Klose
approved

Override component to main
python-keystonemiddleware 1.0.0-1 in utopic: universe/misc - main
python-keystonemiddleware 1.0.0-1 in utopic amd64: 
universe/python/optional/100% - main
python-keystonemiddleware 1.0.0-1 in utopic arm64: 
universe/python/optional/100% - main
python-keystonemiddleware 1.0.0-1 in utopic armhf: 
universe/python/optional/100% - main
python-keystonemiddleware 1.0.0-1 in utopic i386: universe/python/optional/100% 
- main
python-keystonemiddleware 1.0.0-1 in utopic powerpc: 
universe/python/optional/100% - main
python-keystonemiddleware 1.0.0-1 in utopic ppc64el: 
universe/python/optional/100% - main
python-keystonemiddleware-doc 1.0.0-1 in utopic amd64: 
universe/doc/optional/100% - main
python-keystonemiddleware-doc 1.0.0-1 in utopic arm64: 
universe/doc/optional/100% - main
python-keystonemiddleware-doc 1.0.0-1 in utopic armhf: 
universe/doc/optional/100% - main
python-keystonemiddleware-doc 1.0.0-1 in utopic i386: 
universe/doc/optional/100% - main
python-keystonemiddleware-doc 1.0.0-1 in utopic powerpc: 
universe/doc/optional/100% - main
python-keystonemiddleware-doc 1.0.0-1 in utopic ppc64el: 
universe/doc/optional/100% - main
13 publications overridden.


** Changed in: python-keystonemiddleware (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/1349860

Title:
  [MIR] python-keystonemiddleware (b-d) of nova

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

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


[Bug 1359988] Re: Sync xpaint 2.9.1.4-3.1 (universe) from Debian unstable (main)

2014-08-22 Thread Daniel Holbach
This bug was fixed in the package xpaint - 2.9.1.4-3.1
Sponsored for Jackson Doak (noskcaj)

---
xpaint (2.9.1.4-3.1) unstable; urgency=low

  * Non-mantainer upload.
  * debian/control
- Build depend on unversioned dev packages, libtiff-dev and libpng-dev.
  (Closes: #736051, #662567)
- Build depend on hardening-wrapper to set security hardening compilation
  flags.
- Bump Standards-Version to 3.9.5
  - Remove obsolete DM-Upload-Allowed control field.
- Suggest imagemagick instead of imagemagickb typo.
- libxaw3dxft6: Set section libs. (Closes: #693728)

 -- Per Andersson avtob...@gmail.com  Sat, 02 Aug 2014 14:34:47 +0200

** Changed in: xpaint (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/1359988

Title:
  Sync xpaint 2.9.1.4-3.1 (universe) from Debian unstable (main)

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

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


[Bug 1359836] [NEW] Ubuntu ISOs downloaded insecurely, over HTTP rather than HTTPS

2014-08-22 Thread Launchpad Bug Tracker
*** This bug is a security vulnerability ***

You have been subscribed to a public security bug:

1. Go to http://www.ubuntu.com/.
2. Follow the most obvious route to download the recommended version of Ubuntu 
for PC.

What happens: You end up downloading Ubuntu over HTTP.

What should happen: The download is over HTTPS.

An attacker with sufficient savvy and bandwidth could MITM your local
Ubuntu mirror, serving you an ISO of something that looked and worked
like Ubuntu but did all kinds of nefarious things.

The equivalent for software updates is bug 1186793.

[Originally reported by Tony Webster of HTTP Shaming.
http://httpshaming.tumblr.com/post/95277096082/problem-1-the-iso-for-
ubuntu-is-downloaded-via]

** Affects: ubuntu
 Importance: Undecided
 Status: Won't Fix


** Tags: bot-comment
-- 
Ubuntu ISOs downloaded insecurely, over HTTP rather than HTTPS
https://bugs.launchpad.net/bugs/1359836
You received this bug notification because you are a member of Ubuntu Bugs, 
which is subscribed to Ubuntu.

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


[Bug 1360086] Re: Thunderbird 31 regression: changing focus with TAB in compose window during address autocompletion

2014-08-22 Thread Bug Watch Updater
Launchpad has imported 36 comments from the remote bug at
https://bugzilla.mozilla.org/show_bug.cgi?id=1043784.

If you reply to an imported comment from within Launchpad, your comment
will be sent to the remote bug automatically. Read more about
Launchpad's inter-bugtracker facilities at
https://help.launchpad.net/InterBugTracking.


On 2014-07-25T04:17:41+00:00 Attila Hammer wrote:

User Agent: Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:31.0) Gecko/20100101 
Firefox/31.0 (Beta/Release)
Build ID: 20140715214335

Steps to reproduce:

After CTRL+N keystroke when the typed search term resulting correct
autocompleted e-mail address from address book, TAB and SHIFT+TAB
keystrokes resulting present a new to: text box.


Actual results:

Expected result before Thunderbird 31.0:
Previous versions after CTRL+N keystroke when a search term resulting correct 
autocompleted e-mail address, if the user press TAB and SHIFT+TAB keystrokes, 
Thunderbird right jump the Subject text box or the previous address type combo 
box with possible set address type (to: CC, BCC, etc).
Of course, if in to: text box after autocompletion the user press ENTER key, 
right to presenting a new to: text box.
I using Thunderbird with screen reader and now more time happening me to I type 
the subject with the new to: text box (more time forgot with subject text box 
need pressing two TAB keys). :-):-)

Reply at:
https://bugs.launchpad.net/ubuntu/+source/thunderbird/+bug/1360086/comments/0


On 2014-07-25T04:56:19+00:00 Attila Hammer wrote:

With Thunderbird 33.0a2 and 34.0A1 version affected too, I downloaded following 
place the test version:
ftp://ftp.mozilla.org/pub/thunderbird/nightly/latest-comm-aurora/thunderbird-33.0a2.en-US.linux-i686.tar.bz2
ftp://ftp.mozilla.org/pub/thunderbird/nightly/latest-comm-central/thunderbird-34.0a1.en-US.linux-i686.tar.bz2

Reply at:
https://bugs.launchpad.net/ubuntu/+source/thunderbird/+bug/1360086/comments/1


On 2014-07-25T05:11:40+00:00 Attila Hammer wrote:

Created attachment 8462337
Video to show the issue with various situations

This video shows the issue with various situations.
When first time pop up the message dialog, I simple typed an e-mail address.
After this, press SHIFT+TAB keystroke. Ideal situation possible setting the 
typed e-mail address type with any type (to:, CC, bcc). Now, the caret land the 
new empty to: field. So, I need pressing three SHIFT+TAB keystrokes to change 
the first e-mail address type with bcc or cc type, and after this, need jumping 
more tab keys the subject field.

The second case simple typed an e-mail address, and two keypress need
using to jump the subject field.

Attila

Reply at:
https://bugs.launchpad.net/ubuntu/+source/thunderbird/+bug/1360086/comments/2


On 2014-07-25T07:22:31+00:00 Bugzilla-mozilla-org-g wrote:

just checked. Confirm.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/thunderbird/+bug/1360086/comments/3


On 2014-07-25T10:06:12+00:00 Peter-lairo wrote:

Just to clarify the expected results a bit:

1. Tab should put the selection in the *Subject* line (and not create a
new To/CC/BCC address line).

2. Shift+Tab should put the selection on the To/CC/BCC drop-down-button
*before* the current address.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/thunderbird/+bug/1360086/comments/4


On 2014-07-25T10:29:15+00:00 Attila Hammer wrote:

Peter, correct with you wrote. This is the expected result with need restore if 
this is possible.
Possible fixing this issue both Thunderbird 31.0 and 33X/34.x releases?

Attila

Reply at:
https://bugs.launchpad.net/ubuntu/+source/thunderbird/+bug/1360086/comments/5


On 2014-07-25T20:15:49+00:00 Vseerror wrote:

If it started in version 31, this is also regression of bug 959209

Reply at:
https://bugs.launchpad.net/ubuntu/+source/thunderbird/+bug/1360086/comments/6


On 2014-07-26T19:31:43+00:00 Mkmelin+mozilla wrote:

Modifying summary (tab-shift works like before afaikt), and confirming for 
discussion. 
This change was discussed in bug 959209 comment 6. I'm not sure I'd consider it 
a bug, but I'm open for arguments.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/thunderbird/+bug/1360086/comments/7


On 2014-07-26T19:33:14+00:00 Mkmelin+mozilla wrote:

Created attachment 8463013
bug1043784_tab_adds_address_row.patch

Restore the earlier behavior of not 

[Bug 1357920] Re: Xerox Phaser 8560DN reboots as soon as I bring up the Print requester

2014-08-22 Thread Øyvind Harboe
I can print a test-page using a socket printer.

However, it still crashes when I bring up the print requester.

How do I purge all IPP references to my printer from the system or how
do I stop Ubuntu from querying my printer in that fashion?

I only see my printer listed as a socket printer.


oyvind@iceage:/etc$ sudo grep -r 10.0.0.12 *
cups/printers.conf:DeviceURI socket://10.0.0.12:9100
oyvind@iceage:/etc$

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

Title:
  Xerox Phaser 8560DN reboots as soon as I bring up the Print requester

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

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


[Bug 1229535] Re: binutils-m68hc1x: FTBFS: manuals build fails against textinfo5 because some incompatibles changes wrt 4.13 and below (some warnings have turned into errors)

2014-08-22 Thread Logan Rosen
** Changed in: binutils-m68hc1x (Ubuntu)
   Status: Triaged = 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/1229535

Title:
  binutils-m68hc1x: FTBFS: manuals build fails against textinfo5 because
  some incompatibles changes wrt 4.13 and below (some warnings have
  turned into errors)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/binutils-m68hc1x/+bug/1229535/+subscriptions

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


Re: [Bug 1348670] Re: BUG: unable to handle kernel NULL pointer dereference at 0000000000000010, set_nfsv4_acl_one+0x21/0xb0 [nfsd]

2014-08-22 Thread Sergio Gelato
I'm now testing my one-line patch from comment #5 on top of 3.2.0-67.101
(amd64, generic kernel flavour). So far it doesn't seem to make things
worse, but since I don't have a sure-fire way of triggering the bug it
may take a while to get experimental confirmation that it cures the issue.
(I'm reasonably confident about it based on my reading of the source code,
however. The various set_acl methods in 3.14 seem to be doing the
same thing as that patch.)

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

Title:
  BUG: unable to handle kernel NULL pointer dereference at
  0010, set_nfsv4_acl_one+0x21/0xb0 [nfsd]

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

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


[Bug 1325270] Re: PCmanFM replaces (space) with %20 when cutting and pasting files on SMB shares

2014-08-22 Thread Jens
Upstream reports this is fixed in libfm-1.2.1. Since this is quite a
serious bug (affects daily usage), could an update for Trusty be
considered?

Reference: https://sourceforge.net/p/pcmanfm/bugs/897


** Tags added: fixed-upstream

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

Title:
  PCmanFM replaces   (space) with %20 when cutting and pasting files
  on SMB shares

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

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


[Bug 1359836] Re: Ubuntu ISOs downloaded insecurely, over HTTP rather than HTTPS

2014-08-22 Thread Matthew Paul Thomas
So, ubuntu-website-content wasn't the right project.

** Project changed: ubuntu-website-content = ubuntu

** Changed in: ubuntu
   Status: Won't Fix = New

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

Title:
  Ubuntu ISOs downloaded insecurely, over HTTP rather than HTTPS

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

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


[Bug 1359582] Re: Aggregating scope results sometimes miss one of their children at startup

2014-08-22 Thread Pete Woods
** Summary changed:

- Music scope doesn't show any local music
+ Aggregating scope results sometimes miss one of their children at startup

** Changed in: unity-scopes-api
   Importance: Undecided = Critical

** Changed in: unity-scopes-api
   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/1359582

Title:
  Aggregating scope results sometimes miss one of their children at
  startup

To manage notifications about this bug go to:
https://bugs.launchpad.net/unity-scopes-api/+bug/1359582/+subscriptions

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


[Bug 887639] Re: gives the error dpkg-query: warning: parsing file '/var/lib/dpkg/status' near line 9819 package 'librdf0':

2014-08-22 Thread Matthias Klose
this is not a redland issue. please reinstall the package

** Changed in: redland (Ubuntu)
   Status: New = Invalid

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

Title:
  gives the error dpkg-query: warning: parsing file
  '/var/lib/dpkg/status' near line 9819 package 'librdf0':

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

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


[Bug 1360102] [NEW] Unity device blacklist nonfunctional

2014-08-22 Thread Mikko Rauhala
Public bug reported:

Installing 14.04 in a classroom dual-boot environment, Unity shows icons
for the Windows partitions on the launcher, nonfunctional since they
require root to mount. Such extraneous icons only serve to confuse the
user.

Googling, I found out about the com.canonical.Unity.Devices blacklist
gsettings entry. I made a script that generates a schema such as this,
for internal drives:

[com.canonical.Unity.Devices]
blacklist=['F236BFEF36BFB349','1A98C11998C0F473','c251a534-47dd-4ecb-a62c-2ced6914ef4a','122357ec-3130-482f-b20e-a4c6522e0873']

Here's the corresponding output of blkid -o list
device   fs_type labelmount point  UUID
---
/dev/sda1ntfsSystem   (not mounted)F236BFEF36BFB349
/dev/sda2ntfsOSDisk   (not mounted)1A98C11998C0F473
/dev/sda3swap swap   
c251a534-47dd-4ecb-a62c-2ced6914ef4a
/dev/sda4ext4 /
122357ec-3130-482f-b20e-a4c6522e0873

I put the file in /usr/share/glib-2.0/schemas and ran glib-compile-
schemas on it. The entry _does_ show up in a user's session as evidenced
by gsettings get and dconf-editor. dconf-editor also has a documentation
line for the entry that indicates that this _should_ indeed prevent the
named drives from appearing.

However, the icons persist in appearing, even on a clean home directory
(no old user configuration to confuse anything).

Can this be fixed, or is there another way to prevent Unity from showing
local internal drives to users who have no means of accessing them?
Disabling drive icons altogether would be suboptimal but perhaps
workable too, though it'd be preferable that the removable drives would
get icons. However, even removing unity://devices from
com.canonical.Unity.Launcher favorites didn't prevent the icons from
appearing (though the same edit did succeed in removing other
application icons, so the setting itself went through properly).

lsb_release -rd is:
Description:Ubuntu 14.04.1 LTS
Release:14.04

** Affects: unity (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/1360102

Title:
  Unity device blacklist nonfunctional

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

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


[Bug 1357920] Re: Xerox Phaser 8560DN reboots as soon as I bring up the Print requester

2014-08-22 Thread Øyvind Harboe
I went onto the printer and chose Network services and disabled all
but the 9100 service.

I can now print out.

While the problem isn't fixed as such, this should allow me to run this
printer for a few more years. At that point it should be ready for the
scrap-heap anyway.

Perhaps the best course of action is to list this bug as won't fix?
Really, printers shouldn't reboot upon being queried these days...

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

Title:
  Xerox Phaser 8560DN reboots as soon as I bring up the Print requester

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

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


[Bug 1360099] [NEW] Uses 12h instead of 24h format (on a German locale)

2014-08-22 Thread Daniel Holbach
Public bug reported:

I'm on image #203 on mako and use a German locale.

In other apps, the 24h format is used (which is what I, and other
Germans, would expect). In the messaging app however, I see 11:34
nachm., which is supposed to mean 23:34. Unfortunately nachm. is
short for nachmittag, so afternoon, which hardly makes sense for
23:34. This is due to the fact, that we have no good way of expressing
AM/PM in German, as it's simply not used.

If the messaging-app used the 24h format on a German locale, the problem
would be fixed.

** Affects: messaging-app (Ubuntu)
 Importance: Undecided
 Status: New

** Affects: notes-app (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: avengers

** Summary changed:

- Sticks to 12h format
+ Uses 12h instead of 24h format (on a German locale)

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

Title:
  Uses 12h instead of 24h format (on a German locale)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/messaging-app/+bug/1360099/+subscriptions

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


[Bug 1358296] Re: Window turns completely transparent when right clicking on the window titlebar

2014-08-22 Thread Ian Henderson
** Description changed:

  To recreate this bug, I would simply open any application and right
  click on its titlebar. It would then turn transparent, leaving only its
  shadow, until I click on its icon in the application bar on the left.
  Then the window returns to it's original state before I right clicked on
- the titlebar.
+ the titlebar. On the top of the list of attachments, you will find a
+ screenshot of this bug occuring.
  
  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: xorg 1:7.7+1ubuntu8
  Uname: Linux 3.16.0-031600-generic x86_64
  .tmp.unity.support.test.0:
  
  ApportVersion: 2.14.1-0ubuntu3.3
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  CurrentDesktop: Unity
  Date: Mon Aug 18 08:30:53 2014
  DistUpgraded: Fresh install
  DistroCodename: trusty
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Intel Corporation Haswell-ULT Integrated Graphics Controller [8086:0a16] 
(rev 09) (prog-if 00 [VGA controller])
     Subsystem: Toshiba America Info Systems Device [1179:fa48]
  InstallationDate: Installed on 2014-08-14 (4 days ago)
  InstallationMedia: Ubuntu 14.04 LTS Trusty Tahr - Release amd64 (20140417)
  MachineType: TOSHIBA Satellite P50-A
  ProcEnviron:
   LANGUAGE=en_US
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=set
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.16.0-031600-generic 
root=/dev/mapper/ubuntu--vg-root ro quiet splash
  SourcePackage: xorg
  Symptom: display
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 07/23/2013
  dmi.bios.vendor: TOSHIBA
  dmi.bios.version: 1.20
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: VG10ST
  dmi.board.vendor: TOSHIBA
  dmi.board.version: To be filled by O.E.M.
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: TOSHIBA
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnTOSHIBA:bvr1.20:bd07/23/2013:svnTOSHIBA:pnSatelliteP50-A:pvrPSPMJU-037007:rvnTOSHIBA:rnVG10ST:rvrTobefilledbyO.E.M.:cvnTOSHIBA:ct10:cvrToBeFilledByO.E.M.:
  dmi.product.name: Satellite P50-A
  dmi.product.version: PSPMJU-037007
  dmi.sys.vendor: TOSHIBA
  version.compiz: compiz 1:0.9.11.2+14.04.20140714-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.52-1
  version.libgl1-mesa-dri: libgl1-mesa-dri 10.1.3-0ubuntu0.1
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 10.1.3-0ubuntu0.1
  version.xserver-xorg-core: xserver-xorg-core 2:1.15.1-0ubuntu2
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.8.2-1ubuntu2
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.3.0-1ubuntu3.1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.99.910-0ubuntu1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.10-1ubuntu2
  xserver.bootTime: Mon Aug 18 08:07:19 2014
  xserver.configfile: default
  xserver.errors:
  
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   product id   12525
   vendor AUO
  xserver.version: 2:1.15.1-0ubuntu2

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

Title:
  Window turns completely transparent when right clicking on the window
  titlebar

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

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

[Bug 1360099] Re: Uses 12h instead of 24h format (on a German locale)

2014-08-22 Thread Daniel Holbach
** Also affects: notes-app (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/1360099

Title:
  Uses 12h instead of 24h format (on a German locale)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/messaging-app/+bug/1360099/+subscriptions

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


[Bug 1349766] Re: New release 10.2.4 (OK - Package in Debian)

2014-08-22 Thread Timo Aaltonen
10.2.6 is in utopic

** Changed in: mesa (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/1349766

Title:
  New release 10.2.4 (OK - Package in Debian)

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

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


Re: [Bug 1356358] Re: package linux-image-extra-3.13.0-32-generic 3.13.0-32.57 failed to install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 1

2014-08-22 Thread JITHINLAL
like i have a linux mint and a windows 7 on my hdd
and actually i don't know how to check whether its encrypted root
partiotion or not, i'm sorry.
Thanks for your reply.


On Thu, Aug 14, 2014 at 1:38 AM, Brian Murray br...@ubuntu.com wrote:

 Do you happen to have an encrypted root partition on your disk?

 ** Changed in: initramfs-tools (Ubuntu)
Status: New = Incomplete

 --
 You received this bug notification because you are subscribed to the bug
 report.
 https://bugs.launchpad.net/bugs/1356358

 Title:
   package linux-image-extra-3.13.0-32-generic 3.13.0-32.57 failed to
   install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools
   exited with return code 1

 Status in “initramfs-tools” package in Ubuntu:
   Incomplete

 Bug description:
   detected when updating from ubuntu 14.04 to 14.04.1

   ProblemType: Package
   DistroRelease: Ubuntu 14.04
   Package: linux-image-extra-3.13.0-32-generic 3.13.0-32.57
   ProcVersionSignature: Ubuntu 3.13.0-24.47-generic 3.13.9
   Uname: Linux 3.13.0-24-generic i686
   NonfreeKernelModules: wl
   ApportVersion: 2.14.1-0ubuntu3.2
   Architecture: i386
   AudioDevicesInUse:
USERPID ACCESS COMMAND
/dev/snd/controlC0:  user   2115 F pulseaudio
   Date: Wed Aug 13 18:33:44 2014
   DuplicateSignature:
 package:linux-image-extra-3.13.0-32-generic:3.13.0-32.57:run-parts:
 /etc/kernel/postinst.d/initramfs-tools exited with return code 1
   ErrorMessage: run-parts: /etc/kernel/postinst.d/initramfs-tools exited
 with return code 1
   HibernationDevice: RESUME=UUID=208cd115-ba90-426a-8181-e84f791bd4d6
   InstallationDate: Installed on 2014-06-02 (72 days ago)
   InstallationMedia: Ubuntu 14.04 LTS Trusty Tahr - Release i386
 (20140417)
   MachineType: Dell Inc. Vostro 2520
   ProcFB: 0 inteldrmfb
   ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.13.0-24-generic
 root=UUID=9654dbab-54ca-44c5-a4bd-1ac283c8d524 ro quiet splash
   PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No
 PulseAudio daemon running, or not running as session daemon.
   RelatedPackageVersions: grub-pc 2.02~beta2-9
   SourcePackage: initramfs-tools
   Title: package linux-image-extra-3.13.0-32-generic 3.13.0-32.57 failed
 to install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools
 exited with return code 1
   UpgradeStatus: No upgrade log present (probably fresh install)
   dmi.bios.date: 02/24/2014
   dmi.bios.vendor: Dell Inc.
   dmi.bios.version: A11
   dmi.board.name: 0V1NDP
   dmi.board.vendor: Dell Inc.
   dmi.board.version: A11
   dmi.chassis.type: 8
   dmi.chassis.vendor: Dell Inc.
   dmi.chassis.version: Not Specified
   dmi.modalias:
 dmi:bvnDellInc.:bvrA11:bd02/24/2014:svnDellInc.:pnVostro2520:pvrNotSpecified:rvnDellInc.:rn0V1NDP:rvrA11:cvnDellInc.:ct8:cvrNotSpecified:
   dmi.product.name: Vostro 2520
   dmi.product.version: Not Specified
   dmi.sys.vendor: Dell Inc.

 To manage notifications about this bug go to:

 https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/1356358/+subscriptions


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

Title:
  package linux-image-extra-3.13.0-32-generic 3.13.0-32.57 failed to
  install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools
  exited with return code 1

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

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

[Bug 556998] Re: thunderbird security exception is not permanently stored

2014-08-22 Thread booble
Anything new? The issue is so annoying and impacts productivity that
much, that I'm thinking to move to Mac with Outlook when my laptop is
refreshed next time.

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

Title:
  thunderbird security exception is not permanently stored

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

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


[Bug 1330558] Re: traceroute --mtu crashes

2014-08-22 Thread Andreas Hasenack
The package doesn't seem to be in trusty-proposed yet. I then downloaded
it manually from the build page and verified that --mtu works now.

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

Title:
  traceroute --mtu crashes

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

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


[Bug 1360108] [NEW] pcmanfm goes 100% cpu on multi monitor desktop

2014-08-22 Thread Massimiliano Ballerini
Public bug reported:

I've got this problem using lubuntu with three monitor.

I have a laptop with intel video card and set the monitors using arandr.

After that:
pcmanfm --desktop --profile lubuntu

goes 100% cpu and can't open a new file manager window.

killing the process makes it respawn and goes 100% cpu again.


Only way to fix is to:
killall pcmanfm  pcmanfm

this usually interrupts the respawning and let you execute single file
manager instances normally

the version is:
PCManFM 1.2.0

** Affects: pcmanfm (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/1360108

Title:
  pcmanfm goes 100% cpu on multi monitor desktop

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

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


[Bug 1359954] Re: Touchpad not detected

2014-08-22 Thread Thaddäus Tintenfisch
** Package changed: xubuntu-default-settings (Ubuntu) = xserver-xorg-
input-synaptics (Ubuntu)

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

Title:
  Touchpad not detected

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-input-synaptics/+bug/1359954/+subscriptions

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


[Bug 919084] Re: Open Terminal command often opens two windows

2014-08-22 Thread Thaddäus Tintenfisch
Thank you for reporting this bug to Ubuntu. Natty Narwhal reached EOL on 
October 28, 2012.
See this document for currently supported Ubuntu releases: 
https://wiki.ubuntu.com/Releases

Please upgrade to the latest version and re-test.

** Changed in: xfce4-terminal (Ubuntu)
   Status: New = Incomplete

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

Title:
  Open Terminal command often opens two windows

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xfce4-terminal/+bug/919084/+subscriptions

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


[Bug 1358890] Re: Competing notifications when two alarms kick at the same time

2014-08-22 Thread Matthew Paul Thomas
** Summary changed:

- Need better usability when two alarms kick at the same time
+ Competing notifications when two alarms kick at the same time

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

Title:
  Competing notifications when two alarms kick at the same time

To manage notifications about this bug go to:
https://bugs.launchpad.net/indicator-datetime/+bug/1358890/+subscriptions

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


[Bug 993655] Re: Unity looses mouse click handler when using enabling USB headset

2014-08-22 Thread Rob Parnell
*** This bug is a duplicate of bug 1006156 ***
https://bugs.launchpad.net/bugs/1006156

** Bug watch added: Debian Bug tracker #737350
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=737350

** Also affects: xorg-server (Debian) via
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=737350
   Importance: Unknown
   Status: Unknown

** This bug has been marked a duplicate of bug 1006156
   Mute button on USB headset steals and holds on to mouse focus

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

Title:
  Unity looses mouse click handler when using enabling USB headset

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/993655/+subscriptions

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


[Bug 993655] Re: Unity looses mouse click handler when using enabling USB headset

2014-08-22 Thread Rob Parnell
*** This bug is a duplicate of bug 1006156 ***
https://bugs.launchpad.net/bugs/1006156

** Bug watch added: Red Hat Bugzilla #912859
   https://bugzilla.redhat.com/show_bug.cgi?id=912859

** Also affects: xorg-server (Fedora) via
   https://bugzilla.redhat.com/show_bug.cgi?id=912859
   Importance: Unknown
   Status: Unknown

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

Title:
  Unity looses mouse click handler when using enabling USB headset

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/993655/+subscriptions

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


[Bug 1357920] Re: Xerox Phaser 8560DN reboots as soon as I bring up the Print requester

2014-08-22 Thread James Cloos
Ah.  I didn’t intially read every comment.

I suspect that the method cups now uses to discover network attached printers 
is what triggers the crash/reboot.
It will ipp-query any it finds which advertise ipp capability in lieu of 
requiring PPD files to specify the printer’s capabilities.  That is why the 
printer did not need to be configured to trigger the access pattern it cannot 
handle.

Till would have a better handle on that part of cups, especially as
packaged by ubuntu.

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

Title:
  Xerox Phaser 8560DN reboots as soon as I bring up the Print requester

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

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

[Bug 1330558] Re: traceroute --mtu crashes

2014-08-22 Thread Graham Inggs
Thanks Andreas.  Would you also confirm in LP: #1354704 that you are
seeing the expected results with the --mtu option, please?

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

Title:
  traceroute --mtu crashes

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

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


[Bug 1006156] Re: Mute button on USB headset steals and holds on to mouse focus

2014-08-22 Thread Rob Parnell
** Bug watch added: Red Hat Bugzilla #912859
   https://bugzilla.redhat.com/show_bug.cgi?id=912859

** Also affects: xorg-server (Fedora) via
   https://bugzilla.redhat.com/show_bug.cgi?id=912859
   Importance: Unknown
   Status: Unknown

** Bug watch added: Debian Bug tracker #737350
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=737350

** Also affects: gnome-shell (Debian) via
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=737350
   Importance: Unknown
   Status: Unknown

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

Title:
  Mute button on USB headset steals and holds on to mouse focus

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-input-evdev/+bug/1006156/+subscriptions

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


[Bug 1239689] Re: `rbenv install` not appearing with ruby-build package install, but command works

2014-08-22 Thread John Deatherage
Still issues as of 14.04 LTS - will check with upstream

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

Title:
  `rbenv install` not appearing with ruby-build package install, but
  command works

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

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


[Bug 1264368] Re: GLib-CRITICAL **: Source ID was not found when attempting to remove it - warning when leaving Network menu of g-c-c

2014-08-22 Thread Guy
Same here but with nemo, xfce4-weather-plugin and gthumb (till now)
seens version 14.04.1 LTS :

(nemo:21047): GLib-GObject-WARNING **:
/build/buildd/glib2.0-2.40.0/./gobject/gsignal.c:2580: instance
'0xf33ae0' has no handler with id '135'

(nemo:21047): GLib-CRITICAL **: Source ID 139 was not found when
attempting to remove it

(nemo:21047): GLib-CRITICAL **: Source ID 140 was not found when
attempting to remove it

(nemo:21047): GLib-CRITICAL **: Source ID 141 was not found when
attempting to remove it


(wrapper-1.0:10091): GLib-CRITICAL **: Source ID 210 was not found when 
attempting to remove it

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

Title:
  GLib-CRITICAL **: Source ID was not found when attempting to remove it
  - warning when leaving Network menu of g-c-c

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-control-center/+bug/1264368/+subscriptions

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


[Bug 1359815] Re: virt-manager crashed with SIGSEGV in _pygi_argument_from_object()

2014-08-22 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: virt-manager (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/1359815

Title:
  virt-manager crashed with SIGSEGV in _pygi_argument_from_object()

To manage notifications about this bug go to:
https://bugs.launchpad.net/virt-manager/+bug/1359815/+subscriptions

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


[Bug 1358689] Re: [Dell Inspiron 5420] Ethernet connection with Atheros AR8162 [1969:1090] is not stable on 12.04.5

2014-08-22 Thread Edward Lin
** Changed in: linux-lts-trusty (Ubuntu)
   Status: Confirmed = In Progress

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

Title:
  [Dell Inspiron 5420] Ethernet connection with Atheros AR8162
  [1969:1090] is not stable on 12.04.5

To manage notifications about this bug go to:
https://bugs.launchpad.net/hwe-next/+bug/1358689/+subscriptions

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


[Bug 1359815] Re: virt-manager crashed with SIGSEGV in _pygi_argument_from_object()

2014-08-22 Thread Timo Jyrinki
Confirming, virt-manager didn't work today aynmore for me (when trying
to connect).

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

Title:
  virt-manager crashed with SIGSEGV in _pygi_argument_from_object()

To manage notifications about this bug go to:
https://bugs.launchpad.net/virt-manager/+bug/1359815/+subscriptions

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


[Bug 1346299] Re: psensor does not start any more : Attempt to unlock mutex that was not locked

2014-08-22 Thread Jean-Philippe Orsini
The glib package causing this issue has reached the utopic repository
which means that psensor is no more working on utopic now.

The very bad news is that I cannot branch the utopic version of psensor
to submit the trivial fix. It appears to be due to http://package-
import.ubuntu.com/status/psensor.html#2014-04-08%2014:18:53.940182 and I
can't post to the mentioned mailing list :(

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

Title:
  psensor does not start any more : Attempt to unlock mutex that was not
  locked

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

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


[Bug 1338673] Re: GPU lockup IPEHR: 0x0a080001 IPEHR: 0x01000000

2014-08-22 Thread Launchpad Bug Tracker
*** This bug is a duplicate of bug 1274779 ***
https://bugs.launchpad.net/bugs/1274779

Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: xserver-xorg-video-intel (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/1338673

Title:
  GPU lockup  IPEHR: 0x0a080001 IPEHR: 0x0100

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

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


[Bug 1323584] Re: Nautilus crashes when accessing already mounted samba share

2014-08-22 Thread rydde
Yes, this stalls my work flow several times daily as I access files on
our primary office file server which is Win/Samba.

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

Title:
  Nautilus crashes when accessing already mounted samba share

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

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


[Bug 1354704] Re: traceroute --mtu doesn't work on recent kernels

2014-08-22 Thread Andreas Hasenack
Works with 1:2.0.20-0ubuntu0.1 on trusty:

root@nsn7:~# ifconfig wlan0 mtu 1400
root@nsn7:~# traceroute --mtu 8.8.8.8
traceroute to 8.8.8.8 (8.8.8.8), 30 hops max, 65000 byte packets
 1  192.168.48.1 (192.168.48.1)  2.714 ms F=1400  1.041 ms  1.268 ms
 2  213.253.214.217 (213.253.214.217)  4.515 ms  1.314 ms  4.647 ms
 3  82.141.188.13 (82.141.188.13)  6.941 ms  3.253 ms  4.873 ms
(...)

root@nsn7:~# ifconfig wlan0 mtu 1389
root@nsn7:~# traceroute --mtu 8.8.8.8
traceroute to 8.8.8.8 (8.8.8.8), 30 hops max, 65000 byte packets
 1  192.168.48.1 (192.168.48.1)  1.272 ms F=1389  1.120 ms  9.785 ms
 2  213.253.214.217 (213.253.214.217)  1.311 ms  2.442 ms  2.640 ms
 3  82.141.188.13 (82.141.188.13)  5.924 ms  1.838 ms  4.321 ms
(...)

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

Title:
   traceroute --mtu doesn't work on recent kernels

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/traceroute/+bug/1354704/+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   >