[Bug 952185] Re: ~/.pam_environment not parsed by default

2013-03-12 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/precise-proposed/lightdm

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

Title:
  ~/.pam_environment not parsed by default

To manage notifications about this bug go to:
https://bugs.launchpad.net/lightdm/+bug/952185/+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 1074798]

2013-03-12 Thread Damien Miller
retarget to openssh-6.3

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

Title:
  ssh-copy-id cannot handle spaces in usernames

To manage notifications about this bug go to:
https://bugs.launchpad.net/openssh/+bug/1074798/+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 322214] Re: php (via libedit using_history()) incorrectly opens stdin

2013-03-12 Thread Bug Watch Updater
** Changed in: libedit (Debian)
   Status: Confirmed = Fix Released

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

Title:
  php (via libedit using_history()) incorrectly opens stdin

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libedit/+bug/322214/+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 1097691] Re: (CVE-2012-5977) AST-2012-015 Denial of Service Through Exploitation of Device State Caching

2013-03-12 Thread Bug Watch Updater
** Changed in: asterisk (Debian)
   Status: Fix Released = New

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

Title:
  (CVE-2012-5977) AST-2012-015 Denial of Service Through Exploitation of
  Device State Caching

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/asterisk/+bug/1097691/+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 1154039] [NEW] update MySQL 5.1.68

2013-03-12 Thread cybernet
Public bug reported:

as lucid life comes to an end, it would nice to have at least the last version 
of mysql 5.1.x
especially with lots of InnoDB fixes ...

Bugs Fixed

InnoDB; Performance: Some data structures related to undo logging could
be initialized unnecessarily during a query, although they were only
needed under specific conditions. (Bug #14676084)

InnoDB; Performance: Optimized read operations for compressed tables by
skipping redundant tests. The check for whether any related changes
needed to be merged from the insert buffer was being called more often
than necessary. (Bug #14329288, Bug #65886)

InnoDB; Performance: Immediately after a table was created, a query
against it would not use a loose index scan. The same query might use a
loose index scan following an ALTER TABLE on the table. The fix improves
the accuracy of the cost estimate for queries involving the grouping
functions min() and max(), and prevents the query plan from being
changed by the ALTER TABLE statement. (The more stable query plan might
or might not use a loose index scan.) (Bug #14200010)

InnoDB; Partitioning: Previously, when attempting to optimize one or
more partitions of a partitioned table that used a storage engine that
does not support partition-level OPTIMIZE, such as InnoDB, MySQL
reported Table does not support optimize, doing recreate + analyze
instead, then re-created the entire table, but did not actually analyze
it. Now in such cases, the warning message is, Table does not support
optimize on partitions. All partitions will be rebuilt and analyzed. In
addition, the entire table is analyzed after first being rebuilt. (Bug
#11751825)

InnoDB: The status variable Innodb_buffer_pool_read_ahead_evicted could
show an inaccurate value, higher than expected, because some pages in
the buffer pool were incorrectly considered as being brought in by read-
ahead requests. (Bug #15859402, Bug #67476)

InnoDB: Creating an index on a CHAR column could fail for a table with a
character set with varying length, such as UTF-8, if the table was
created with the ROW_FORMAT=REDUNDANT clause. (Bug #15874001)

InnoDB: If the server crashed at a precise moment during an ALTER TABLE
operation that rebuilt the clustered index for an InnoDB table, the
original table could be inaccessible afterward. An example of such an
operation is ALTER TABLE ... ADD PRIMARY KEY The fix preserves the
original table if the server halts during this operation. You might
still need to rename the .ibd file manually to restore the original
table contents: in MySQL 5.6 and higher, rename from #sql-
ib$new_table_id.ibd to table_name.ibd within the database directory;
prior to MySQL 5.6, the temporary file to rename is table_name#1 or #2.
(Bug #14669848)

InnoDB: An error at the filesystem level, such as too many open files,
could cause an unhandled error during an ALTER TABLE operation. The
error could be accompanied by Valgrind warnings, and by this assertion
message:

Assertion `! is_set()' failed.
mysqld got signal 6 ; 
(Bug #14628410, Bug #16000909)

InnoDB: During shutdown, with the innodb_purge_threads configuration
option set greater than 1, the server could halt prematurely with this
error:

mysqld got signal 11
A workaround was to increase innodb_log_file_size and set 
innodb_purge_threads=1. The fix was backported to MySQL 5.5 and 5.1, although 
those versions do not have the innodb_purge_threads configuration option so the 
error was unlikely to occur. (Bug #14234028)

InnoDB: The value of the innodb_version variable was not updated
consistently for all server releases for the InnoDB Plugin in MySQL 5.1,
and the integrated InnoDB component in MySQL 5.5, 5.6, and higher. Since
InnoDB and MySQL Server development cycles are fully integrated and
synchronized, now the value returned by the innodb_version variable is
the same as for the version variable. (Bug #13463493, Bug #63435)

Partitioning: When used with a table having multiple columns in its
primary key, but partitioned by KEY using a column that was not part of
the primary key as the partitioning column, a query using an aggregate
function and DISTINCT such as SELECT SUM(DISTINCT pk_column_1) FROM
table WHERE pk_column_2 = constant was not handled correctly. (Bug
#14845133)

References: See also Bug #14495351. This bug was introduced by Bug
#13025132.

Replication: Repeated execution of CHANGE MASTER TO statements using
invalid MASTER_LOG_POS values could lead to errors and possibly a crash
on the slave. Now in such cases, the statement fails with a clear error
message. (Bug #11764602, Bug #57454)

Replication: If the disk becomes full while writing to the binary log,
the server hangs until space is freed up manually. It was possible after
this was done for the MySQL server to fail, due to an internal status
value being set when not needed. Now in such cases, rather than trying
to set this status, a warning is written in the error log instead. (Bug
#11753923, Bug #45449)

msdos : Dynamic 

[Bug 813773] Re: Juju should have security rules/acls for every path in zk

2013-03-12 Thread Kapil Thangavelu
** Changed in: juju
Milestone: 0.7 = 0.8

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

Title:
  Juju should have security rules/acls for every path in zk

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

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


[Blueprint servercloud-r-lxc] LXC work for R

2013-03-12 Thread Serge Hallyn
Blueprint changed by Serge Hallyn:

Work items changed:
  Work items:
  [serge-hallyn] Send user namespace delta to kernel-team ASAP: DONE
  [serge-hallyn] Post syslog namespace design wiki page: DONE
  [serge-hallyn] Send syslog namespace prototype to lkml: DONE
  [serge-hallyn] Send syslog namespace description to kernel-team ASAP: DONE
  [serge-hallyn] Add set_cgroup_item() and get_cgroup_item() to C API: DONE
  [daniel-lezcano] Improved monitor notification support: TODO
  [stgraber] Fix lxc-ls (re-write using api): DONE
- [serge-hallyn] lxc-create or template option to specify userns mapping: TODO
+ [serge-hallyn] lxc-create or template option to specify userns mapping: 
POSTPONED
  [serge-hallyn] push user namespace lxc delta upstream: DONE
  [serge-hallyn] add config options for loglevel and output file: DONE
  [serge-hallyn] drop lxccontainer.log default logging in api: DONE
  [serge-hallyn] lxc-create - set a default log file in 
/var/log/lxc/$container: DONE
  [serge-hallyn] lxc.autodev: push lxc patch upstream: DONE
  [serge-hallyn] lxc.autodev: push lxc patch into package: DONE
  [serge-hallyn] lxc.autodev: push mountall patch into package: DONE
- [serge-hallyn] list broken functionality in ubuntu container in user 
namespace: TODO
- [serge-hallyn] improve ubuntu container experience in user namespace: TODO
+ [serge-hallyn] list broken functionality in ubuntu container in user 
namespace: POSTPONED
+ [serge-hallyn] improve ubuntu container experience in user namespace: 
POSTPONED
  [serge-hallyn] add config option for RLIMIT_NPROC in userns container: 
POSTPONED
  [stgraber] add (not container) to upstart jobs which just fail: DONE
  [stgraber] write tool to pass devices into container: DONE
  [stgraber] create a separate package for templates: DONE
  [stgraber] have lxc-create record the name of template used in container 
config file for debugging: DONE
  [stgraber] support templates outside of $templatedir (pushed to git): DONE
  [stgraber] investigate what's needed to support containers outside of 
/var/lib/lxc (part of the scheduled API work): DONE
  [serge-hallyn] test apparmor profile stacking; implement any lxc changes 
needed to support it: BLOCKED
  [stgraber] rebase staging branch on upstream master: DONE
  [serge-hallyn] test attach support in userns kernel; shout if anything 
missing: DONE
  [daniel-lezcano] investigate/use http://lxc.sourceforge.net/download/procfs 
to filter /proc/{cpuinfo,meminfo,etc}: TODO
  [stgraber] investigate: does dnsmasq save mac-ip across host reboots? (it 
does): DONE
  [stgraber] Port arkose to python3 (and make it pep8 clean): DONE
  [stgraber] Port arkose to python3-lxc: BLOCKED
  [stgraber] Port auto-dist-upgrader to python3-lxc: DONE
  [stgraber] Tweak the tests to ensure auto-dist-upgrader on LXC gives the same 
results as on kvm: DONE
  [stgraber] Check what it'd take to make lxc work fine when 
creating/starting/stopping containers in parallel (improved locking of 
templates): DONE
  [stgraber] Add code to detect and install langpacks in containers (at least 
-base-en): DONE
  [stgraber] Get LXC into main: INPROGRESS
  [ebiederm] Push current userns patchset upstream: DONE
- [ebiederm] Add support for tmpfs mounts in userns: TODO
+ [ebiederm] Add support for tmpfs mounts in userns: POSTPONED

-- 
LXC work for R
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-r-lxc

-- 
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 955576] Re: 'local:' services not started on reboot

2013-03-12 Thread Kapil Thangavelu
** Changed in: juju
Milestone: None = 0.8

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

Title:
  'local:' services not started on reboot

To manage notifications about this bug go to:
https://bugs.launchpad.net/juju/+bug/955576/+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 1153626] Re: Multiple Interfaces and IPs not detected in AWS VPC

2013-03-12 Thread Scott Moser
** Also affects: cloud-init
   Importance: Undecided
   Status: New

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

Title:
  Multiple Interfaces and IPs not detected in AWS VPC

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-init/+bug/1153626/+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 966577] Re: add explicit egress 'owner' rule on non-bootstrapping nodes to require root access to zookeeper

2013-03-12 Thread Kapil Thangavelu
** Changed in: juju
Milestone: 0.7 = 0.8

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

Title:
  add explicit egress 'owner' rule on non-bootstrapping nodes to require
  root access to zookeeper

To manage notifications about this bug go to:
https://bugs.launchpad.net/juju/+bug/966577/+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 1004162] Re: Samba won't change from wired to wireless NIC in same session

2013-03-12 Thread Scott Moore
Thank you for the reply. I'm sorry it took so long to get back to you.
As I've gotten into ISO testing I'm sure to be on top of these bug
reports as well. It appears the problem has resolved itself. I'll try to
be more careful and consult the forums first before I submit a bug
report. Thanks!

** Changed in: samba (Ubuntu)
   Status: Incomplete = Invalid

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

Title:
  Samba won't change from wired to wireless NIC in same session

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/samba/+bug/1004162/+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 1144108] Re: Unable to create instances due to QueuePool limit

2013-03-12 Thread Jacek N
** Changed in: nova (Ubuntu)
   Status: Incomplete = Confirmed

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

Title:
  Unable to create instances due to QueuePool limit

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

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


[Blueprint servercloud-r-maas-next-steps] MAAS next steps

2013-03-12 Thread Andres Rodriguez
Blueprint changed by Andres Rodriguez:

Work items changed:
  Work items:
  [andreserl] SRU django 1.4 GenericIpAddressField to 1.3 for 12.04 (LP: 
#1081391): POSTPONED
  [andreserl] SRU django 1.4 prefetch_related to 1.3 for 12.04 (LP: #1081388): 
DONE
  [andreserl] SRU django 1.4 upstream bug bug 15496 to 12.04 (LP: #1081392): 
DONE
- [andreserl] SRU 12.10-stabilization to Quantal: TODO
- [andreserl] SRU 12.10-stabilization to Precise: TODO
+ [andreserl] SRU 12.10-stabilization to Quantal: INPROGRESS
+ [andreserl] SRU 12.10-stabilization to Precise: INPROGRESS
  [andreserl] SRU python-tx-tftp (0.1~bzr31-0ubuntu7) to Quantal (LP: 
#1068843): DONE
  [andreserl] SRU python-tx-tftp to Precise: DONE
  [andreserl] SRU yui3 to Precise (LP: #1084141): POSTPONED
  [andreserl] SRU libjs-raphael to Precise (LP: #1084146): POSTPONED
  [andreserl] SRU isc-dhcp apparmor fixes from quantal to precise (LP: 
#1049177): DONE
  [andreserl] SRU Raring features to Quantal: BLOCKED
  [andreserl] SRU Raring features to Precise: BLOCKED
  [andreserl] Bug #1073462 fence_cdu power type is missing: DONE
  [andreserl] Bug #1064224 IPMI detection ends up with power_address of 
0.0.0.0: DONE
  [andreserl] Bug #1064527 detect_ipmi needs improvement. detects non-existant 
device in nested kvm: TODO
  [andreserl] maas-ipmi-autodetect and maas-signal should be shipped with MAAS: 
TODO
- [maas-maintainers] Bug #975454complete documentation and man pages: 
TODO
+ [maas-maintainers] Bug #975454complete documentation and man pages: 
DONE
  [maas-maintainers] Bug #1044503   kernel command line is not easily 
customizable: DONE
  [maas-maintainers] Bug #1066775   Main page slow to load with many nodes: 
DONE
  [maas-maintainers] Bug #1068843   maas-cluster-controller doesn't have 
images for provisioning: DONE
  [maas-maintainers] Bug #1069734   Filestorage is unique to each appserver 
instance: DONE
  [maas-maintainers] Bug #1069850   import_pxe_files does not include 
quantal: DONE
  [maas-maintainers] Bug #1070522   maas-cli nodes new incomplete 
documentation: DONE
  [maas-maintainers] Bug #1070765   DNS forward zone ends up with 
nonsensical entries: DONE
  [maas-maintainers] Bug #1070774   The hostname of a node can still be 
changed once the node is in use: DONE
  [maas-maintainers] Bug #1070775   The zone name (attached to a cluster 
controller) can still be changed when it contains in-use nodes and DNS is 
managed.: DONE
  [maas-maintainers] Bug #1075597   Duplicated prefix in the url used by 
the CLI: DONE
  [maas-maintainers] Bug #1034318   API calls that return a node leak 
private data: DONE
  [maas-maintainers] Bug #1059645   URI in API description wrong when 
accessing machine via alternative interface: DONE
  [maas-maintainers] Bug #1069603   Error in log when using 'Start node' 
button: MAASAPINotFound: No user data available for this node.: DONE
  [maas-maintainers] define supported release combination matrix: TODO

-- 
MAAS next steps
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-r-maas-next-steps

-- 
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 1100920] Re: In Ubuntu 12.10, the legacy 'user' cloud-config option is not handled properly

2013-03-12 Thread Scott Moser
This change made it into 0.7.2~bzr795-0ubuntu1 but it is not listed in
the changelog.


** Changed in: cloud-init (Ubuntu Raring)
   Status: Triaged = Fix Released

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

Title:
  In Ubuntu 12.10, the legacy 'user' cloud-config option is not handled
  properly

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-init/+bug/1100920/+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 1044503] Re: kernel command line is not easily customizable

2013-03-12 Thread Andres Rodriguez
** Changed in: maas (Ubuntu Raring)
   Status: Triaged = Fix Released

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

Title:
  kernel command line is not easily customizable

To manage notifications about this bug go to:
https://bugs.launchpad.net/maas/+bug/1044503/+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 1099199] Re: [PATCH] support resizing btrfs filesystems

2013-03-12 Thread Scott Moser
fixed in trunk at revno 784.


** Changed in: cloud-init
   Status: Triaged = Fix Committed

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

Title:
  [PATCH] support resizing btrfs filesystems

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-init/+bug/1099199/+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 1099199] Re: [PATCH] support resizing btrfs filesystems

2013-03-12 Thread Scott Moser
fix-released in 0.7.2~bzr795-0ubuntu1.


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

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

Title:
  [PATCH] support resizing btrfs filesystems

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-init/+bug/1099199/+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 1145215] Re: cloud-init mangles sources.lists if mirror can't be found

2013-03-12 Thread Scott Moser
** Also affects: cloud-init (Ubuntu Precise)
   Importance: Undecided
   Status: New

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

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

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

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

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

Title:
  cloud-init mangles sources.lists if mirror can't be found

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cloud-init/+bug/1145215/+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 1145215] Re: cloud-init mangles sources.lists if mirror can't be found

2013-03-12 Thread Launchpad Bug Tracker
** Branch linked: lp:~smoser/ubuntu/precise/cloud-init/sru

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

Title:
  cloud-init mangles sources.lists if mirror can't be found

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cloud-init/+bug/1145215/+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 1097687] Re: (CVE-2012-5976) AST-2012-014 Crashes due to large stack allocations when using TCP

2013-03-12 Thread Bug Watch Updater
** Changed in: asterisk (Debian)
   Status: Fix Released = New

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

Title:
  (CVE-2012-5976) AST-2012-014 Crashes due to large stack allocations
  when using TCP

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/asterisk/+bug/1097687/+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 1152820] [NEW] Unable to install quantum due to hash sum mismatch on python-gflags

2013-03-12 Thread Launchpad Bug Tracker
You have been subscribed to a public bug:

root@cld4b1ubuntu:~# apt-get install quantum-server quantum-plugin-openvswitch
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following extra packages will be installed:
  alembic python-cliff python-cmd2 python-configobj python-gflags python-mako 
python-markupsafe
  python-netaddr python-novaclient python-pyparsing python-pyudev python-quantum
  python-quantumclient quantum-common
Suggested packages:
  python-beaker python-mako-doc ipython python-gobject python-qt4 
python-pyside.qtcore
The following NEW packages will be installed:
  alembic python-cliff python-cmd2 python-configobj python-gflags python-mako 
python-markupsafe
  python-netaddr python-novaclient python-pyparsing python-pyudev python-quantum
  python-quantumclient quantum-common quantum-plugin-openvswitch quantum-server
0 upgraded, 16 newly installed, 0 to remove and 0 not upgraded.
Need to get 39.7 kB/2,920 kB of archives.
After this operation, 15.3 MB of additional disk space will be used.
Do you want to continue [Y/n]? y
Get:1 http://us.archive.ubuntu.com/ubuntu/ precise/main python-gflags all 
1.5.1-1build1 [39.7 kB]
Fetched 39.7 kB in 0s (96.1 kB/s)
Failed to fetch 
http://us.archive.ubuntu.com/ubuntu/pool/main/p/python-gflags/python-gflags_1.5.1-1b
uild1_all.deb  Hash Sum mismatch
E: Unable to fetch some archives, maybe run apt-get update or try with 
--fix-missing?
root@cld4b1ubuntu:~#

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


** Tags: packaging
-- 
Unable to install quantum due to hash sum mismatch on python-gflags
https://bugs.launchpad.net/bugs/1152820
You received this bug notification because you are a member of Ubuntu Server 
Team, which is subscribed to quantum in Ubuntu.

-- 
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 1126378] Re: SchedulerHostFilterNotFound: Scheduler Host Filter AvailabilityZoneFilter, CapacityFilter, CapabilitiesFilter could not be found.

2013-03-12 Thread John Griffith
So this specific issue was due to the fact that there were some issues
with the packages which has now been fixed (Precise, Quantal and
Raring).

A new bug has been opened to address the fact that any failure in
dependencies list will result in this generic message from the cinder
scheduler with no real good explanation or detail of what the real
problem is.

https://bugs.launchpad.net/cinder/+bug/1131322

** Changed in: cinder
   Status: Triaged = Invalid

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

Title:
  SchedulerHostFilterNotFound: Scheduler Host Filter
  AvailabilityZoneFilter, CapacityFilter, CapabilitiesFilter could not
  be found.

To manage notifications about this bug go to:
https://bugs.launchpad.net/cinder/+bug/1126378/+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 1133608] Re: Duplicate entry '9fe2ff9ee4384b1894a90878d3e92bab' on db_sync

2013-03-12 Thread Adam Young
Cannot reproduce.  Something is different between a default install and
people who are seeing this.  Need to determine what that is.

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

Title:
  Duplicate entry '9fe2ff9ee4384b1894a90878d3e92bab' on db_sync

To manage notifications about this bug go to:
https://bugs.launchpad.net/keystone/+bug/1133608/+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 1133608] Re: Duplicate entry '9fe2ff9ee4384b1894a90878d3e92bab' on db_sync

2013-03-12 Thread Dolph Mathews
Is this issue somehow specific to the ubuntu packages?

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

Title:
  Duplicate entry '9fe2ff9ee4384b1894a90878d3e92bab' on db_sync

To manage notifications about this bug go to:
https://bugs.launchpad.net/keystone/+bug/1133608/+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 1153988] [NEW] keystone starts too early

2013-03-12 Thread Launchpad Bug Tracker
You have been subscribed to a public bug:

In folsom from the ubuntu cloud archive keystone tried to start too early and 
failed, perhaps because some of its dependencies wasn't up yet. 
The fix was adding runlevels to /etc/init/keystone.conf
start on (local-filesystems and net-device-up IFACE!=lo and runlevel [2345] )

I'm reporting it here because - though
https://wiki.ubuntu.com/ServerTeam/CloudArchive says the bugs go on the
normal ways - ubuntu-bug refused to report it.

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

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

-- 
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 1153364] Re: trouble with guest network connectivity when host is using a bonded interface

2013-03-12 Thread Serge Hallyn
Thanks for reporting this bug.  (Sorry about the delay - I've sat and
thought about this a few times but haven't yet had any definite thoughts
about what would debug this).

Do you have the vhost_net module installed?

I'm pretty sure the bug is in qemu itself, but just to be sure would you
mind testing with a lxc container to see if it has the same problem?
Just

sudo apt-get -y install lxc
cat  lxc.conf.custom  EOF
lxc.network.type=veth
lxc.network.link=br0
lxc.network.flags=up
EOF
sudo lxc-create -t ubuntu -n r1 -f lxc.conf.custom
sudo lxc-start -n r1

then log in as user ubuntu password ubuntu, and see if networking stays
up.

This seems very reminiscent of bug 997978.

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

** Changed in: linux (Ubuntu)
   Importance: Undecided = High

** Changed in: qemu-kvm (Ubuntu)
   Importance: Undecided = High

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

Title:
  trouble with guest network connectivity when host is using a bonded
  interface

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1153364/+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 1153988] Re: keystone starts too early

2013-03-12 Thread Dolph Mathews
** Project changed: keystone = keystone (Ubuntu)

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

Title:
  keystone starts too early

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/keystone/+bug/1153988/+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 1153364] Missing required logs.

2013-03-12 Thread Brad Figg
This bug is missing log files that will aid in diagnosing the problem.
From a terminal window please run:

apport-collect 1153364

and then change the status of the bug to 'Confirmed'.

If, due to the nature of the issue you have encountered, you are unable
to run this command, please add a comment stating that fact and change
the bug status to 'Confirmed'.

This change has been made by an automated script, maintained by the
Ubuntu Kernel Team.

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

** Tags added: quantal

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

Title:
  trouble with guest network connectivity when host is using a bonded
  interface

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1153364/+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 1133608] Re: Duplicate entry '9fe2ff9ee4384b1894a90878d3e92bab' on db_sync

2013-03-12 Thread Adam Gandelman
Nothing special in the packaging, the package upgrade process just
basically lays out the new code and calls db_sync.

Took a closer look and have had no luck reproducing with current trunk
(installed from ppa:openstack-ubuntu-testing/grizzly-trunk-testing), but
was able to reproduce reliably using the g3 packages cited in the
original bug report.  Wondering if this might be a duplicate of  Bug
#1130424?  From what I can tell the fix didn't make it into G3.

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

Title:
  Duplicate entry '9fe2ff9ee4384b1894a90878d3e92bab' on db_sync

To manage notifications about this bug go to:
https://bugs.launchpad.net/keystone/+bug/1133608/+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 1154392] [NEW] package backuppc 3.2.1-2ubuntu1.1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2013-03-12 Thread Ted J. Michalik
Public bug reported:

Tried to remove and then re-install.

ProblemType: Package
DistroRelease: Ubuntu 12.04
Package: backuppc 3.2.1-2ubuntu1.1
ProcVersionSignature: Ubuntu 3.2.0-38.61-generic 3.2.37
Uname: Linux 3.2.0-38-generic x86_64
ApportVersion: 2.0.1-0ubuntu17.1
AptOrdering:
 backuppc: Install
 backuppc: Configure
Architecture: amd64
Date: Tue Mar 12 21:23:51 2013
ErrorMessage: subprocess installed post-installation script returned error exit 
status 1
InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Release amd64 
(20120425)
MarkForUpload: True
SourcePackage: backuppc
Title: package backuppc 3.2.1-2ubuntu1.1 failed to install/upgrade: subprocess 
installed post-installation script returned error exit status 1
UpgradeStatus: No upgrade log present (probably fresh install)
mtime.conffile..etc.backuppc.config.pl: 2013-02-26T07:33:54
mtime.conffile..etc.backuppc.hosts: 2013-02-17T10:44:47

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


** Tags: amd64 apport-package precise

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

Title:
  package backuppc 3.2.1-2ubuntu1.1 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/backuppc/+bug/1154392/+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 1154392] Re: package backuppc 3.2.1-2ubuntu1.1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2013-03-12 Thread Apport retracing service
** Tags removed: need-duplicate-check

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

Title:
  package backuppc 3.2.1-2ubuntu1.1 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/backuppc/+bug/1154392/+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 1016895] Re: smbd crashed with SIGABRT in dump_core()/setgroups being passed a -1 group is causing crashes.

2013-03-12 Thread Nick Brennan
The package in -proposed seems to have resolved the 'sys_setgroups
failed' issue for me as well.

3.5.0-23-generic #35~precise1-Ubuntu SMP Fri Jan 25 17:15:33 UTC 2013
i686 i686 i386 GNU/Linux


Package: samba
Status: install ok installed
Priority: optional
Section: net
Installed-Size: 22380
Maintainer: Ubuntu Developers ubuntu-devel-disc...@lists.ubuntu.com
Architecture: i386
Version: 2:3.6.3-2ubuntu2.4
Replaces: samba-common (= 2.0.5a-2)
Depends: samba-common (= 2:3.6.3-2ubuntu2.4), libwbclient0 (= 
2:3.6.3-2ubuntu2.4), libacl1 (= 2.2.51-5), libattr1 (= 1:2.4.46-5), libc6 (= 
2.15), libcap2 (= 2.10), libcomerr2 (= 1.01), libcups2 (= 1.4.0), 
libgssapi-krb5-2 (= 1.10+dfsg~), libk5crypto3 (= 1.6.dfsg.2), libkrb5-3 (= 
1.10+dfsg~), libldap-2.4-2 (= 2.4.7), libpam0g (= 0.99.7.1), libpopt0 (= 
1.14), libtalloc2 (= 2.0.4~git20101213), libtdb1 (= 1.2.7+git20101214), 
zlib1g (= 1:1.1.4), debconf (= 0.5) | debconf-2.0, upstart-job, 
libpam-runtime (= 1.0.1-11), libpam-modules, lsb-base (= 3.2-13), procps, 
update-inetd, adduser, samba-common-bin

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

Title:
  smbd crashed with SIGABRT in dump_core()/setgroups being passed a -1
  group is causing crashes.

To manage notifications about this bug go to:
https://bugs.launchpad.net/samba/+bug/1016895/+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 1115053] Re: Multiple open vulnerabilities in tomcat7 in 12.04 and 11.10

2013-03-12 Thread Christian Kuersteiner
I rewrote the description on CVE-2012-3439.patch and fixed the
whitespace changes in CVE-2012-0022.patch as far as I saw them.

CVE-2012-3439 gave me quite some headache since the testcases upstream changed 
already before a lot and it was hard to adopt to the oneiric version. Either I 
would have to try to backport all the changes from upstream which might mean to 
change more or less the whole TesterDigestAuthenticatorPerformance.java and 
cause some further errors because of some changes done somewhere else. Or I 
leave the testcases as they are and just adopt the needed changes made in the 
methods in DigestAuthenticator.java.
I went with the second option since the actual security bug was patched in 
DigestAuthenticator.java. This let me omit the inclusion of 
ConcurrentMessageDigest.java since this class is just used in the updated 
testcases.  I think it was the rigth decision but let me know if you think 
different.

This just as an additional information to the DEP-3 description in
CVE-2012-3439.patch.

** Patch added: lp1115053-oneiric-5.debdiff
   
https://bugs.launchpad.net/ubuntu/+source/tomcat7/+bug/1115053/+attachment/3571362/+files/lp1115053-oneiric-5.debdiff

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

Title:
  Multiple open vulnerabilities in tomcat7 in 12.04 and 11.10

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/tomcat7/+bug/1115053/+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 427775] Re: ntpdate.dhcp always ignored

2013-03-12 Thread YunQiang Su
As for now gnome 3.8 will be released, and gnome-system-tools is still 3.0.
It seems that gnome-system-tools is dead.

I think that we can fix this now.

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

Title:
  ntpdate.dhcp always ignored

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ntp/+bug/427775/+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 1153911] Re: Quirk for 2-button mouse Logitech TrackMan Marble

2013-03-12 Thread Stuart Bishop
'sudo lsinput' output as requested

** Attachment added: lsinput
   
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-input-evdev/+bug/1153911/+attachment/3569527/+files/lsinput.txt

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

Title:
  Quirk for 2-button mouse Logitech  TrackMan Marble

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

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


[Bug 1153911] [NEW] Quirk for 2-button mouse Logitech TrackMan Marble

2013-03-12 Thread Stuart Bishop
Public bug reported:

Per https://wiki.ubuntu.com/X/Quirks#A2-button_Mice, here is the bug on
my trackball.

Just running gsettings set org.gnome.settings-daemon.peripherals.mouse
middle-button-enabled true got everything working so making this a new
bug rather than a dupe of the much older Bug #33

ProblemType: Bug
DistroRelease: Ubuntu 13.04
Package: xserver-xorg-input-evdev 1:2.7.3-0ubuntu2
ProcVersionSignature: Ubuntu 3.8.0-11.20-generic 3.8.2
Uname: Linux 3.8.0-11-generic x86_64
NonfreeKernelModules: nvidia
ApportVersion: 2.9.1-0ubuntu1
Architecture: amd64
Date: Tue Mar 12 12:42:52 2013
DistUpgraded: Fresh install
DistroCodename: raring
DistroVariant: ubuntu
EcryptfsInUse: Yes
InstallationDate: Installed on 2013-02-26 (14 days ago)
InstallationMedia: Ubuntu 13.04 Raring Ringtail - Alpha amd64 (20130225)
MachineType: System manufacturer System Product Name
MarkForUpload: True
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.8.0-11-generic 
root=UUID=a30d1c8f-d16d-480b-aed8-2e09d69874d4 ro quiet splash vt.handoff=7
SourcePackage: xserver-xorg-input-evdev
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 10/15/2012
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: 0804
dmi.board.asset.tag: To be filled by O.E.M.
dmi.board.name: P8H77-M
dmi.board.vendor: ASUSTeK COMPUTER INC.
dmi.board.version: Rev X.0x
dmi.chassis.asset.tag: Asset-1234567890
dmi.chassis.type: 3
dmi.chassis.vendor: Chassis Manufacture
dmi.chassis.version: Chassis Version
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr0804:bd10/15/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKCOMPUTERINC.:rnP8H77-M:rvrRevX.0x:cvnChassisManufacture:ct3:cvrChassisVersion:
dmi.product.name: System Product Name
dmi.product.version: System Version
dmi.sys.vendor: System manufacturer
version.compiz: compiz 1:0.9.9~daily13.03.06-0ubuntu1
version.ia32-libs: ia32-libs N/A
version.libdrm2: libdrm2 2.4.42-0ubuntu1
version.libgl1-mesa-dri: libgl1-mesa-dri 9.0.2-0ubuntu1
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 9.0.2-0ubuntu1
version.xserver-xorg-core: xserver-xorg-core 2:1.13.2-0ubuntu3
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.7.3-0ubuntu2
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.1.0-0ubuntu1
version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.21.3-0ubuntu1
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.6-0ubuntu3
xserver.bootTime: Tue Mar 12 12:23:17 2013
xserver.configfile: default
xserver.errors:
 open /dev/dri/card0: No such file or directory
 open /dev/dri/card0: No such file or directory
xserver.logfile: /var/log/Xorg.0.log
xserver.outputs:
 
xserver.version: 2:1.13.2-0ubuntu3

** Affects: xserver-xorg-input-evdev (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug raring ubuntu

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

Title:
  Quirk for 2-button mouse Logitech  TrackMan Marble

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

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


[Bug 1153911] Re: Quirk for 2-button mouse Logitech TrackMan Marble

2013-03-12 Thread Stuart Bishop
'sudo dmidecode' output as requested.

** Attachment added: dmidecode
   
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-input-evdev/+bug/1153911/+attachment/3569529/+files/dmidecode.txt

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

Title:
  Quirk for 2-button mouse Logitech  TrackMan Marble

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

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


[Bug 1153908] Re: fail to create live session user when user-setup/encrypt-home=true is passed

2013-03-12 Thread Nobuto MURATA
** Attachment added: debug-log_succeeded.txt
   
https://bugs.launchpad.net/ubuntu/+source/casper/+bug/1153908/+attachment/3569528/+files/debug-log_succeeded.txt

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

Title:
  fail to create live session user when user-setup/encrypt-home=true is
  passed

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

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


[Bug 1153908] Re: fail to create live session user when user-setup/encrypt-home=true is passed

2013-03-12 Thread Nobuto MURATA
** Attachment added: debug-log_failed.txt
   
https://bugs.launchpad.net/ubuntu/+source/casper/+bug/1153908/+attachment/3569530/+files/debug-log_failed.txt

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

Title:
  fail to create live session user when user-setup/encrypt-home=true is
  passed

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

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


[Bug 1153224] Re: [FFE] Move to logind for session tracking

2013-03-12 Thread Martin Pitt
Some comments:

 * The libudev0 → libudev1 migration is the least risky here. I can
prepare it today in the PPA for the handful of source packages which
need (trivial) adaptions for the dropped symbols, the other 20 or so
reverse dependencies are mere rebuilds.

 * In theory we can also update systemd to 198 without switching to
logind, i. e. just grant the first FFE. That would be really risk-free,
as systemd itself has only been in raring for a couple of days, and
nothing uses it yet. In that case I'd disable all udev library bits from
the source package. It still makes some sense as one would then have
current libraries available for experimentation, for the Ubuntu GNOME
PPA, etc., but of course for Ubuntu itself there would be no
recognizable change.

 * I can commit to dealing with fallout from the logind migration, I
have time for this. This part is really the most risky one as it
involves the most work, and may have regressions which are hard to spot
at first sight (e. g. yesterday I noticed my camera wasn't working in
Google+, I'll track that down today).

 * ScottK What happens if we do step one and stop? As I said, we can
run CK and logind in parallel, so the impact would be to ship the two
packages (both are rather small), and having the additional (small)
runtime impact of two D-BUS services.

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

Title:
  [FFE] Move to logind for session tracking

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

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

[Bug 1152580] Re: BCM95720 Network disconnects and resets with new Dell R520 server

2013-03-12 Thread David Peall
Just wanted to find out what happens now, we have 8 of these machines we
would like to put into production, is there any chance we can raise the
priority?

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

Title:
  BCM95720 Network disconnects and resets with new Dell R520 server

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

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


[Bug 1131391]

2013-03-12 Thread Patrik Lundquist
Now works with libllvm 3.2-2ubuntu4 (was broken with 3.2-2ubuntu3).

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

Title:
  clang crashed with SIGSEGV in llvm::FastISel::getRegForValue()

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

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


[Bug 755801] Re: dbus-daemon crashed with SIGSEGV in vfprintf()

2013-03-12 Thread Mörgæs
Closing as this concerns an obsolete release of Ubuntu.
If the problem persists in the latest release please open a new report.

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

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

Title:
  dbus-daemon crashed with SIGSEGV in vfprintf()

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

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


[Bug 685010] Re: dbus-daemon takes 20% of CPU all of the time

2013-03-12 Thread Mörgæs
Closing as this concerns an obsolete release of Ubuntu.
If the problem persists in the latest release please open a new report.

** Changed in: dbus (Ubuntu)
   Status: Confirmed = Invalid

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

Title:
  dbus-daemon takes 20% of CPU all of the time

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

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


[Bug 150937]

2013-03-12 Thread Akva1270
I'm reviewing your defect report and attempting to confirm it. However, there 
is not enough information here for me to test your scenario. Specifically I 
need:
 
Could you please add an attachment that shows the defect.

 
I'm leaving this issue in the UNCONFIRMED state for now. But I'll need to move 
it to RESOLVED/IRREPRODUCIBLEsoon if I cannot find a way to reproduce it.

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

Title:
  [Upstream] Large footnotes not fully displayed when mouse is over the
  number

To manage notifications about this bug go to:
https://bugs.launchpad.net/df-libreoffice/+bug/150937/+subscriptions

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


[Bug 441100] Re: within chroot, can fail to reload daemon configuration if not running (detects dbus daemon outside of chroot)

2013-03-12 Thread Mörgæs
Closing due to age.
If a similar problem appears in the latest Ubuntu release please open a new 
report.

** Changed in: dbus (Ubuntu)
   Status: Triaged = Invalid

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

Title:
  within chroot, can fail to reload daemon configuration if not running
  (detects dbus daemon outside of chroot)

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

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


[Bug 777733] Re: Quirk for 2-button mouse Logitech Marble Mouse (trackball)

2013-03-12 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: xserver-xorg-input-evdev (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/33

Title:
  Quirk for 2-button mouse Logitech Marble Mouse (trackball)

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

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


[Bug 1153914] [NEW] operator ignorance

2013-03-12 Thread hp620
Public bug reported:

I must have changed the admin password somehow while trying to set up
this virtual server so I can possibly recover my original win 7 os and
expensive software.

ProblemType: Bug
DistroRelease: Ubuntu 12.10
Package: xorg 1:7.7+1ubuntu4
ProcVersionSignature: Ubuntu 3.5.0-25.39-generic 3.5.7.4
Uname: Linux 3.5.0-25-generic i686
.tmp.unity.support.test.0:
 
ApportVersion: 2.6.1-0ubuntu10
Architecture: i386
CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
CompositorRunning: compiz
Date: Mon Mar 11 22:46:03 2013
DistUpgraded: Fresh install
DistroCodename: quantal
DistroVariant: ubuntu
DkmsStatus: virtualbox, 4.1.18, 3.5.0-25-generic, i686: installed
ExtraDebuggingInterest: Yes, if not too technical
GraphicsCard:
 Intel Corporation Mobile 4 Series Chipset Integrated Graphics Controller 
[8086:2a42] (rev 07) (prog-if 00 [VGA controller])
   Subsystem: Hewlett-Packard Company Device [103c:1526]
   Subsystem: Hewlett-Packard Company Device [103c:1526]
InstallationDate: Installed on 2013-03-11 (0 days ago)
InstallationMedia: Ubuntu 12.10 Quantal Quetzal - Release i386 (20121017.2)
MachineType: Hewlett-Packard HP 620
MarkForUpload: True
ProcEnviron:
 TERM=unknown
 PATH=(custom, no user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.5.0-25-generic 
root=UUID=3da6c3c6-f4a6-40ab-9431-3c92ed696cda ro quiet splash vt.handoff=7
SourcePackage: xorg
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 12/12/2011
dmi.bios.vendor: Hewlett-Packard
dmi.bios.version: 68PVI Ver. F.20
dmi.board.name: 1526
dmi.board.vendor: Hewlett-Packard
dmi.board.version: KBC Version 71.0E
dmi.chassis.type: 10
dmi.chassis.vendor: Hewlett-Packard
dmi.modalias: 
dmi:bvnHewlett-Packard:bvr68PVIVer.F.20:bd12/12/2011:svnHewlett-Packard:pnHP620:pvrF.20:rvnHewlett-Packard:rn1526:rvrKBCVersion71.0E:cvnHewlett-Packard:ct10:cvr:
dmi.product.name: HP 620
dmi.product.version: F.20
dmi.sys.vendor: Hewlett-Packard
version.compiz: compiz 1:0.9.8.6-0ubuntu1
version.libdrm2: libdrm2 2.4.39-0ubuntu1
version.libgl1-mesa-dri: libgl1-mesa-dri 9.0.2-0ubuntu0.1
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 9.0.2-0ubuntu0.1
version.xserver-xorg-core: xserver-xorg-core 2:1.13.0-0ubuntu6.1
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.7.3-0ubuntu2
version.xserver-xorg-video-ati: xserver-xorg-video-ati 
1:6.99.99~git20120913.8637f772-0ubuntu1
version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.20.9-0ubuntu2
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.2-0ubuntu3

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


** Tags: apport-bug compiz-0.9 i386 quantal ubuntu

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

Title:
  operator ignorance

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

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


[Bug 1131391] Re: clang crashed with SIGSEGV in llvm::FastISel::getRegForValue()

2013-03-12 Thread Bug Watch Updater
** Changed in: llvm
   Status: Confirmed = 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/1131391

Title:
  clang crashed with SIGSEGV in llvm::FastISel::getRegForValue()

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

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


[Bug 1117288] Re: iscsitarget-dkms FTBFS with raring 3.8 kernel

2013-03-12 Thread themylogin
Fixes this problem for me

** Patch added: compat-3.8.patch
   
https://bugs.launchpad.net/ubuntu/+source/iscsitarget/+bug/1117288/+attachment/3569531/+files/compat-3.8.patch

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

Title:
  iscsitarget-dkms FTBFS with raring 3.8 kernel

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

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


[Bug 991002] Re: Change name for bn-BD from 'Bengali(Bangladesh)' to 'Bangla(Bangladesh)')

2013-03-12 Thread Launchpad Bug Tracker
** Branch linked: lp:~ubuntu-core-dev/localechooser/ubuntu

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

Title:
  Change name for bn-BD from 'Bengali(Bangladesh)' to
  'Bangla(Bangladesh)')

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

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


[Bug 583254] Re: Charset ISO-8859-x and dbus-daemon

2013-03-12 Thread Mörgæs
Closing due to age.
If a similar problem appears in the latest Ubuntu release please open a new 
report.

** Changed in: dbus (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/583254

Title:
  Charset ISO-8859-x and dbus-daemon

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

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


[Bug 492941] Re: Error connecting to bus: org.freedesktop.DBus.Error.LimitsExceeded: The maximum number of active connections for UID 1000 has been reached

2013-03-12 Thread Mörgæs
Closing as this concerns an obsolete release of Ubuntu.
If a similar problem / wish appears in the latest Ubuntu release please open a 
new report.

** Changed in: dbus (Ubuntu)
   Status: Triaged = Invalid

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

Title:
  Error connecting to bus: org.freedesktop.DBus.Error.LimitsExceeded:
  The maximum number of active connections for UID 1000 has been reached

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

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


[Bug 150937] Re: [Upstream] Large footnotes not fully displayed when mouse is over the number

2013-03-12 Thread Bug Watch Updater
** Changed in: openoffice
   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/150937

Title:
  [Upstream] Large footnotes not fully displayed when mouse is over the
  number

To manage notifications about this bug go to:
https://bugs.launchpad.net/df-libreoffice/+bug/150937/+subscriptions

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


[Bug 1153911] Re: Quirk for 2-button mouse Logitech TrackMan Marble

2013-03-12 Thread Stuart Bishop
Note that this is actually a 4 button mouse, with two smaller 'back' and
'forward' buttons per picture at
https://help.ubuntu.com/community/Logitech_Marblemouse_USB

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

Title:
  Quirk for 2-button mouse Logitech  TrackMan Marble

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

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


[Bug 603080] Re: [Error 09:28:19.713] [PidginAccountItemSource] Could not get Pidgin accounts: org.freedesktop.DBus.Error.NoReply: Message did not receive a reply (timeout by message bus)

2013-03-12 Thread Mörgæs
Closing due to age.
If a similar problem appears in the latest Ubuntu release please open a new 
report.


** Changed in: dbus (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/603080

Title:
  [Error 09:28:19.713] [PidginAccountItemSource] Could not get Pidgin
  accounts: org.freedesktop.DBus.Error.NoReply: Message did not receive
  a reply (timeout by message bus)

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

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


[Bug 1153901] Re: su should exit with a message that root is locked

2013-03-12 Thread Adam Conrad
Given that the installer never asks you to set a root password, it's a
bit odd to assume that su (which asks for root's password) would work,
but it's perhaps fair to expect that shadow might give a bit of a hint.

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

** Changed in: wubi
   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/1153901

Title:
  su should exit with a message that root is locked

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

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


[Bug 1153224] Re: [FFE] Move to logind for session tracking

2013-03-12 Thread Martin Pitt
Someone added a reference to http://cve.mitre.org/cgi-
bin/cvename.cgi?name=CVE-2012-1174 . This has been fixed upstream in
http://cgit.freedesktop.org/systemd/systemd/commit/?id=5ebff53 and
backported to Debian in 44-1 in April 3. Thus this is fixed in raring as
well.

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

Title:
  [FFE] Move to logind for session tracking

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

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


[Bug 1140716] Re: [regression] 3.5.0-26-generic CPU hangs

2013-03-12 Thread Hans
Sry, this is more related to my case:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1135759

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

Title:
  [regression] 3.5.0-26-generic CPU hangs

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

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


[Bug 1120853] Re: card 0: Intel [HDA Intel], device 0: AD198x Analog [AD198x Analog] 5.1 surround sound unresposive or of poor quality

2013-03-12 Thread Yowan
Here is the requested information


** Attachment added: alsa-info.txt.PeiQuxelau
   
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/1120853/+attachment/3569573/+files/alsa-info.txt.PeiQuxelau

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

Title:
  card 0: Intel [HDA Intel], device 0: AD198x Analog [AD198x Analog]
  5.1 surround sound unresposive or of poor quality

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/1120853/+subscriptions

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


[Bug 923292] Re: shortcut for closing power statistics app not working

2013-03-12 Thread Steve Langasek
dedunumax, can you please forward this patch upstream to the bug Chris
indicated?  The patch looks reasonable to me, but I'd be more
comfortable sponsoring it into the archive if it were accepted upstream
first.

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

Title:
  shortcut for closing power statistics app not working

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-power/+bug/923292/+subscriptions

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


[Bug 1094324] Re: Delete tagged files if a copy exists in the other directory doesn't work if names of the files or folders contains space

2013-03-12 Thread Bug Watch Updater
** Changed in: mc
   Status: Confirmed = 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/1094324

Title:
  Delete tagged files if a copy exists in the other directory doesn't
  work if names of the files or folders contains space

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

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


[Bug 1122520] Re: gnome-control-center crashed with SIGSEGV in finish_with_cleanup()

2013-03-12 Thread Alberto Mardegan
Tommy, do you intend to fix this bug yourself, or did you reassign it to you by 
mistake?
Please let us know, in order to avoid duplicate efforts. :-)

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

Title:
  gnome-control-center crashed with SIGSEGV in finish_with_cleanup()

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

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


[Bug 1029289] Re: Need to authorize my google account each time I boot the computer

2013-03-12 Thread Alberto Mardegan
@Sera: I think that one reauthentication per account should be enough. Did you 
have to reauthenticate the accounts more than that?
Rebooting once might also be necessary (with the new signond from raring this 
won't be necessary anymore) -- it all depends on whether the old authentication 
plugin is still loaded, so indeed it's safer to reboot (or just killall 
signond).

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

Title:
  Need to authorize my google account each time I boot the computer

To manage notifications about this bug go to:
https://bugs.launchpad.net/account-plugins/+bug/1029289/+subscriptions

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


[Bug 952185] Re: ~/.pam_environment not parsed by default

2013-03-12 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/precise-proposed/lightdm

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

Title:
  ~/.pam_environment not parsed by default

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

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


[Bug 1153771] Re: SyntaxWarning during installation

2013-03-12 Thread Johannes Ring
This has been fixed in the upstream development version:

http://code.google.com/p/scitools/source/detail?r=302c9bbdf7bc38ac6da152e61eec81ed98cd99ab

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

Title:
  SyntaxWarning during installation

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

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


[Bug 1151310] Re: udev rule in /etc

2013-03-12 Thread Launchpad Bug Tracker
This bug was fixed in the package ubuntustudio-default-settings - 0.42

---
ubuntustudio-default-settings (0.42) raring; urgency=low

  [ Len Ovens ]
  * Moved 40-timer-permissions.rules to /lib/udev/rules.d (LP: #1151310)

  [ Kaj Ailomaa ]
  * Made ubuntustudio-rock.png the default backdrop
  * bumped dependency to ubuntustudio-look to 0.45~ to pick up new backdrop
 -- Kaj Ailomaa zeque...@mousike.me   Tue, 12 Mar 2013 00:52:31 -0500

** Changed in: ubuntustudio-default-settings (Ubuntu Raring)
   Status: Fix Committed = 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/1151310

Title:
  udev rule in /etc

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntustudio-default-settings/+bug/1151310/+subscriptions

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


[Bug 1135759] Re: Random freeze with RC6

2013-03-12 Thread Hans
freezes even with 3.5.24 here. 
See https://bugs.launchpad.net/ubuntu/+source/linux/+bug/946899

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

Title:
  Random freeze with RC6

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

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


[Bug 991002] Re: Change name for bn-BD from 'Bengali(Bangladesh)' to 'Bangla(Bangladesh)')

2013-03-12 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/raring-proposed/localechooser

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

Title:
  Change name for bn-BD from 'Bengali(Bangladesh)' to
  'Bangla(Bangladesh)')

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

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


[Bug 946899] Re: [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung

2013-03-12 Thread Hans
Seems related to this:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1135759

I tried all the versions before this bug happening 3.5.24 and earlier with no 
success. 
915.i915_enable_rc6=0 does not make a change really here although gpu isn't 
hanging that often.

-- 
You received this bug notification because you are a member of Kubuntu
Bugs, which is subscribed to a duplicate bug report (644740).
https://bugs.launchpad.net/bugs/946899

Title:
  [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU
  hung

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

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


[Bug 1153923] Re: xfce4-volumed crashed with SIGABRT in raise()

2013-03-12 Thread Apport retracing service
*** This bug is a duplicate of bug 970792 ***
https://bugs.launchpad.net/bugs/970792

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

** Attachment removed: CoreDump.gz
   
https://bugs.launchpad.net/bugs/1153923/+attachment/3569588/+files/CoreDump.gz

** Attachment removed: Disassembly.txt
   
https://bugs.launchpad.net/bugs/1153923/+attachment/3569590/+files/Disassembly.txt

** Attachment removed: ProcMaps.txt
   
https://bugs.launchpad.net/bugs/1153923/+attachment/3569591/+files/ProcMaps.txt

** Attachment removed: ProcStatus.txt
   
https://bugs.launchpad.net/bugs/1153923/+attachment/3569592/+files/ProcStatus.txt

** Attachment removed: Registers.txt
   
https://bugs.launchpad.net/bugs/1153923/+attachment/3569593/+files/Registers.txt

** Attachment removed: Stacktrace.txt
   
https://bugs.launchpad.net/bugs/1153923/+attachment/3569594/+files/Stacktrace.txt

** Attachment removed: ThreadStacktrace.txt
   
https://bugs.launchpad.net/bugs/1153923/+attachment/3569595/+files/ThreadStacktrace.txt

** This bug has been marked a duplicate of bug 970792
   xfce4-volumed crashed with SIGABRT in __assert_fail_base()

** Information type changed from Private to Public

** Tags removed: need-i386-retrace

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

Title:
  xfce4-volumed crashed with SIGABRT in raise()

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

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


[Bug 1150737] Re: live-build causes installation old /sbin/initctl and start-stop-daemon to be installed in Cloud Images

2013-03-12 Thread Bug Watch Updater
** Changed in: live-build (Debian)
   Status: Unknown = Fix Committed

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

Title:
  live-build causes installation old /sbin/initctl and start-stop-daemon
  to be installed in Cloud Images

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/live-build/+bug/1150737/+subscriptions

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


[Bug 1137681] Re: Raring Ringtail still packages mnemosyne 2.0~RC1-3 although 2.2 is available

2013-03-12 Thread Bug Watch Updater
** Changed in: mnemosyne (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/1137681

Title:
  Raring Ringtail still packages mnemosyne 2.0~RC1-3 although 2.2 is
  available

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

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


[Bug 1135633]

2013-03-12 Thread Jakub-gcc
Started with http://gcc.gnu.org/viewcvs?root=gccview=revrev=188526
but it was merely latent before that, so it isn't LRA bug, because it fails 
with reload equally.
I think the problem is in combine, where we have:
ax = call ...
flags = r59 != 0
r60 = flags = 0 ? ax : r59
r65 = buf
r68 = 768
rep stosd [r65 .. r65 + r68 - 4] = 0
r59 = r60

and the combiner combines the r60 = flags = 0 ? ax : r59 instruction with
r59 = r60 into r59 = flags = 0 ? ax : r59 instruction in the last spot, thus 
extending the lifetime of the ax and flags hard registers across various other 
instructions.

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

Title:
  [linaro regression] alsa-tools FTBFS with error unable to find a
  register to spill in class ‘AREG’

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

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

[Bug 1135633]

2013-03-12 Thread Venkataramanan-kumar-e
-fno-tree-coalesce-vars for workarround

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

Title:
  [linaro regression] alsa-tools FTBFS with error unable to find a
  register to spill in class ‘AREG’

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

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

[Bug 1135633]

2013-03-12 Thread Ubizjak
(In reply to comment #4)

 and the combiner combines the r60 = flags = 0 ? ax : r59 instruction with
 r59 = r60 into r59 = flags = 0 ? ax : r59 instruction in the last spot, thus
 extending the lifetime of the ax and flags hard registers across various other
 instructions.

But AX is member of likely spilled class, so combine should take some
more care with this insn. Should we just prevent propagations of all
insns that mention likely spilled hard regs?

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

Title:
  [linaro regression] alsa-tools FTBFS with error unable to find a
  register to spill in class ‘AREG’

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

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

[Bug 1135633]

2013-03-12 Thread Jakub-gcc
Actually, looking more at this, I'd say combiner is innocent here, the problem 
is earlier , during ce1 pass, which transforms:
   16: ax:SI=call [`output_play'] argc:0
  REG_DEAD di:DI
  REG_DEAD si:SI
   17: r60:SI=ax:SI
  REG_DEAD ax:SI
   18: flags:CCGOC=cmp(r59:SI,0)
   19: pc={(flags:CCGOC=0)?L21:pc}
  REG_DEAD flags:CCGOC
  REG_BR_PROB 0x1c84
   20: NOTE_INSN_BASIC_BLOCK 4
6: r60:SI=r59:SI
  REG_DEAD r59:SI
   21: L21:
   22: NOTE_INSN_BASIC_BLOCK 5
into:
   16: ax:SI=call [`output_play'] argc:0
  REG_DEAD di:DI
  REG_DEAD si:SI
   17: r60:SI=ax:SI
  REG_DEAD ax:SI
   18: flags:CCGOC=cmp(r59:SI,0)
   53: flags:CCGOC=cmp(r59:SI,0)
   54: r60:SI={(flags:CCGOC=0)?ax:SI:r59:SI}
   22: NOTE_INSN_BASIC_BLOCK 4

i.e. does what combiner tries to avoid with hard registers.  I don't understand
why it can't use r60:SI instead of ax:SI.

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

Title:
  [linaro regression] alsa-tools FTBFS with error unable to find a
  register to spill in class ‘AREG’

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

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

[Bug 1135633]

2013-03-12 Thread Jakub-gcc
Created attachment 29583
gcc48-pr56484.patch

Untested fix.

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

Title:
  [linaro regression] alsa-tools FTBFS with error unable to find a
  register to spill in class ‘AREG’

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

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

[Bug 1135633]

2013-03-12 Thread Jakub-gcc
Author: jakub
Date: Tue Mar  5 22:25:43 2013
New Revision: 196478

URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=196478
Log:
PR rtl-optimization/56484
* ifcvt.c (noce_process_if_block): If else_bb is NULL, avoid extending
lifetimes of hard registers on small register class machines.

Added:
trunk/gcc/testsuite/gcc.c-torture/compile/pr56484.c
Modified:
trunk/gcc/ifcvt.c

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

Title:
  [linaro regression] alsa-tools FTBFS with error unable to find a
  register to spill in class ‘AREG’

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

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

[Bug 1135633]

2013-03-12 Thread Jakub-gcc
Fixed.

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

Title:
  [linaro regression] alsa-tools FTBFS with error unable to find a
  register to spill in class ‘AREG’

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

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

[Bug 970792] Re: xfce4-volumed crashed with SIGABRT in __assert_fail_base()

2013-03-12 Thread Apport retracing service
** Tags added: raring

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

Title:
  xfce4-volumed crashed with SIGABRT in __assert_fail_base()

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

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


[Bug 98886]

2013-03-12 Thread Ma5l
This is a bootable iso image, you can not install this as software on
gentoo.

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

Title:
  [needs-packaging] drbl / clonezilla

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

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


[Bug 1135633] Re: [linaro regression] alsa-tools FTBFS with error unable to find a register to spill in class ‘AREG’

2013-03-12 Thread Bug Watch Updater
** Changed in: gcc
   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/1135633

Title:
  [linaro regression] alsa-tools FTBFS with error unable to find a
  register to spill in class ‘AREG’

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

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

[Bug 1071922] Re: double tap does not open folders or files in Nautilus

2013-03-12 Thread Bug Watch Updater
** Changed in: nautilus
   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/1071922

Title:
  double tap does not open folders or files in Nautilus

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

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


[Bug 249910] Re: Perl: escaped characters not recognized after non-plain variables in double-quoted strings and regexes

2013-03-12 Thread Bug Watch Updater
** Changed in: gtksourceview
   Status: New = Expired

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

Title:
  Perl: escaped characters not recognized after non-plain variables in
  double-quoted strings and regexes

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

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


[Bug 98886] Re: [needs-packaging] drbl / clonezilla

2013-03-12 Thread Bug Watch Updater
** Changed in: gentoo
   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/98886

Title:
  [needs-packaging] drbl / clonezilla

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

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


[Bug 1057546] Re: gvfsd-obexftp crashed with SIGSEGV

2013-03-12 Thread Bug Watch Updater
Launchpad has imported 4 comments from the remote bug at
https://bugs.gentoo.org/show_bug.cgi?id=456760.

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 2013-02-11T11:28:02+00:00 Serge Gavrilov wrote:

Software: Gentoo ~amd64, Gnome 3.6, G-bluetooth 3.6.1, gvfs 1.14.2, obexd 0.46,
0.4.6, bluez 4.101 

To reproduce: try to browse a cell phone via bt menu on G-shell top bar.

gvfsd-obexftp[1815]: segfault at 4 ip 7fe2ee4f3e60 sp 7fff9d8408b8
error 6 in libdbus-1.so.3.7.2[7fe2ee4d2000+3c000]
pool[1862]: segfault at 0 ip 7f305235b6a3 sp 7f3049677940 error 4 in
libdbus-1.so.3.7.2[7f3052339000+3c000]

Reproducible 100%

Downgrade gvfs up to 1.12.3 fixes the problem.

Reproducible: Always

Reply at:
https://bugs.launchpad.net/ubuntu/+source/gvfs/+bug/1057546/comments/9


On 2013-02-11T14:05:52+00:00 Alexandre Rostovtsev wrote:

We need a gdb backtrace to determine what caused the crash.

Please re-emerge gvfs, glib, bluez, dbus, and dbus-glib with -ggdb in
CFLAGS and splitdebug in FEATURES (see
http://www.gentoo.org/proj/en/qa/backtraces.xml for more details).

Then emerge app-admin/abrt (if you don't have it already), do
/etc/init.d/abrt start, do whatever needs to be done to crash gvfsd-
obexftp, obtain the backtrace from abrt-gui, and attach it here.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/gvfs/+bug/1057546/comments/10


On 2013-02-15T20:44:43+00:00 Jussi Saarinen wrote:

This bug has been reported also upstream:

https://bugzilla.gnome.org/show_bug.cgi?id=693574

Reply at:
https://bugs.launchpad.net/ubuntu/+source/gvfs/+bug/1057546/comments/11


On 2013-02-26T15:42:54+00:00 Serge Gavrilov wrote:

Created attachment 340182
backtrace of the crash

Sorry for delay. Backtrace is attached. Please, help!

Reply at:
https://bugs.launchpad.net/ubuntu/+source/gvfs/+bug/1057546/comments/13


** Changed in: gvfs (Gentoo Linux)
   Status: Unknown = New

** Changed in: gvfs (Gentoo Linux)
   Importance: Unknown = Critical

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

Title:
  gvfsd-obexftp crashed with SIGSEGV

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

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


[Bug 1153927] [NEW] fwts reports High failures

2013-03-12 Thread Tim Chen
Public bug reported:

High failures: 1
 dmi_decode: Out of range string index 0x06 while accessing entry 'Portable 
Battery (Type 22)' @ 0x000e7040, field 'Device Chemistry', offset 0x09

The full log is attached.

ProblemType: Bug
DistroRelease: Ubuntu 12.04
Package: fwts 0.25.06precise1
ProcVersionSignature: Ubuntu 3.5.0-23.35~precise1-generic 3.5.7.2
Uname: Linux 3.5.0-23-generic x86_64
NonfreeKernelModules: fglrx
ApportVersion: 2.0.1-0ubuntu17.1
Architecture: amd64
Date: Tue Mar 12 02:43:53 2013
InstallationMedia: Ubuntu 12.04.2 LTS Precise Pangolin - Release amd64 
(20130213)
MarkForUpload: True
ProcEnviron:
 TERM=xterm
 PATH=(custom, no user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: fwts
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: 201208-11538 201208-11539 amd64 apport-bug precise taipei-lab

** Package changed: fwts (Ubuntu) = linux (Ubuntu)

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

** Changed in: linux (Ubuntu)
 Assignee: Firmware Test Suite Bug Team (firmware-bug-team) = (unassigned)

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

Title:
  fwts reports High failures

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

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


[Bug 1063350] Re: add-apt-repository/apt-add-repository fails with ValueError: cannot convert float NaN to integer

2013-03-12 Thread b3nmore
I get:
Object: lp.services.webapp.servers.WebServiceClientRequest instance 
URL=https://launchpad.net, name: ''
before: 0.5 0.5
after: nan 0.5

with following cpu flags:
fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 mmx fxsr 
sse syscall mmxext 3dnowext 3dnow up

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

Title:
  add-apt-repository/apt-add-repository fails with ValueError: cannot
  convert float NaN to integer

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

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


[Bug 410432]

2013-03-12 Thread adaptee
*** Bug 236705 has been marked as a duplicate of this bug. ***

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

Title:
  QDragManger crashes in various applications

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

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


[Bug 1153929] [NEW] package samba4 4.0.0~alpha18.dfsg1-4ubuntu2 failed to install/upgrade: サブプロセス インストール済みの post-installation スクリプト はエラー終了ステータス 126 を返しました

2013-03-12 Thread Masahiro Suzuki
Public bug reported:

i don't know more

ProblemType: Package
DistroRelease: Ubuntu 12.04
Package: samba4 4.0.0~alpha18.dfsg1-4ubuntu2
ProcVersionSignature: Ubuntu 3.2.0-30.48-generic 3.2.27
Uname: Linux 3.2.0-30-generic x86_64
ApportVersion: 2.0.1-0ubuntu17.1
Architecture: amd64
Date: Tue Mar 12 15:48:28 2013
ErrorMessage: サブプロセス インストール済みの post-installation スクリプト はエラー終了ステータス 126 を返しました
InstallationMedia: Ubuntu-Server 12.04 LTS Precise Pangolin - Release amd64 
(20120424.1)
MarkForUpload: True
SourcePackage: samba4
Title: package samba4 4.0.0~alpha18.dfsg1-4ubuntu2 failed to install/upgrade: 
サブプロセス インストール済みの post-installation スクリプト はエラー終了ステータス 126 を返しました
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-package precise

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

Title:
  package samba4 4.0.0~alpha18.dfsg1-4ubuntu2 failed to install/upgrade:
  サブプロセス インストール済みの post-installation スクリプト はエラー終了ステータス 126 を返しました

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

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

[Bug 1153930] [NEW] fwts reports high failure: Out of range string index 0x06 while accessing entry 'Portable Battery'

2013-03-12 Thread Tim Chen
Public bug reported:

 High failures: 1
 dmi_decode: Out of range string index 0x06 while accessing entry 'Portable 
Battery (Type 22)' @ 0x000e7040, field 'Device Chemistry', offset 0x09

The full log is attached.

ProblemType: Bug
DistroRelease: Ubuntu 12.04
Package: linux-image-3.5.0-23-generic 3.5.0-23.35~precise1
ProcVersionSignature: Ubuntu 3.5.0-23.35~precise1-generic 3.5.7.2
Uname: Linux 3.5.0-23-generic x86_64
NonfreeKernelModules: fglrx
AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.25.
ApportVersion: 2.0.1-0ubuntu17.1
Architecture: amd64
ArecordDevices:
  List of CAPTURE Hardware Devices 
 card 0: PCH [HDA Intel PCH], device 0: ALC282 Analog [ALC282 Analog]
   Subdevices: 0/1
   Subdevice #0: subdevice #0
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  ubuntu 1592 F pulseaudio
 /dev/snd/pcmC0D0c:   ubuntu 1592 F...m pulseaudio
Card0.Amixer.info:
 Card hw:0 'PCH'/'HDA Intel PCH at 0xc161 irq 49'
   Mixer name   : 'Intel PantherPoint HDMI'
   Components   : 'HDA:10ec0282,10280598,0013 
HDA:80862806,80860101,0010'
   Controls  : 26
   Simple ctrls  : 11
Date: Tue Mar 12 02:59:28 2013
HibernationDevice: RESUME=UUID=881fef85-8510-4069-855f-bad0e0f80988
InstallationMedia: Ubuntu 12.04.2 LTS Precise Pangolin - Release amd64 
(20130213)
MachineType: Dell Inc. Inspiron 3521
MarkForUpload: True
ProcEnviron:
 TERM=xterm
 PATH=(custom, no user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
ProcFB: 0 inteldrmfb
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.5.0-23-generic 
root=UUID=04baa098-043b-4e80-b289-e96ad64d52aa ro quiet splash initcall_debug 
vt.handoff=7
PulseList:
 Error: command ['pacmd', 'list'] failed with exit code 1: Home directory 
/home/ubuntu not ours.
 No PulseAudio daemon running, or not running as session daemon.
RelatedPackageVersions:
 linux-restricted-modules-3.5.0-23-generic N/A
 linux-backports-modules-3.5.0-23-generic  N/A
 linux-firmware1.79.1
SourcePackage: linux
StagingDrivers: rts5139
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 09/08/2012
dmi.bios.vendor: Dell Inc.
dmi.bios.version: A00
dmi.board.asset.tag: PCBApass
dmi.board.name: Type2 - Board Product Name1
dmi.board.vendor: Dell Inc.
dmi.board.version: Type2 - Board Version
dmi.chassis.asset.tag: PCBApass
dmi.chassis.type: 8
dmi.chassis.vendor: Dell Inc.
dmi.chassis.version: A00
dmi.modalias: 
dmi:bvnDellInc.:bvrA00:bd09/08/2012:svnDellInc.:pnInspiron3521:pvrA00:rvnDellInc.:rnType2-BoardProductName1:rvrType2-BoardVersion:cvnDellInc.:ct8:cvrA00:
dmi.product.name: Inspiron 3521
dmi.product.version: A00
dmi.sys.vendor: Dell Inc.

** Affects: linux (Ubuntu)
 Importance: Undecided
 Assignee: Firmware Test Suite Bug Team (firmware-bug-team)
 Status: New


** Tags: 201208-11538 201208-11539 amd64 apport-bug precise 
qa-kernel-lts-testing staging taipei-lab

** Attachment added: fwts_results.log
   
https://bugs.launchpad.net/bugs/1153930/+attachment/3569614/+files/fwts_results.log

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

Title:
   fwts reports high failure: Out of range string index 0x06 while
  accessing entry 'Portable Battery'

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

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


[Bug 1069874] Re: Can't browse devices with bluetooth

2013-03-12 Thread Bill Duetschler
Having this issue on xubuntu quantal.

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

Title:
  Can't browse devices with bluetooth

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

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


[Bug 410432] Re: QDragManger crashes in various applications

2013-03-12 Thread Bug Watch Updater
** Changed in: kdelibs
   Status: Confirmed = Unknown

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

Title:
  QDragManger crashes in various applications

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

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


[Bug 334052] Re: Network Manager Plasmoid won't connect to WPA Enterprise AP's in Jaunty

2013-03-12 Thread Bug Watch Updater
Launchpad has imported 33 comments from the remote bug at
https://bugs.kde.org/show_bug.cgi?id=192597.

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 2009-05-13T20:43:36+00:00 Per Hermansson wrote:

Version:(using KDE 4.2.2)
OS:Linux
Installed from:Ubuntu Packages

When configuring WPA-Enterprise connections the plasma widget gives four
auth methods that can be used with PEAP and TTLS.

During transmission over DBUS to network manager the auth method is send
using the autheap key in which not all auth methods are available.
Changing the key to auth makes all specified auth methods work.

The provided patch updates the widget to set the auth variable instead
of the autheap one. Note this might break already configured
connections.

The fix is reported to work by me and here
https://bugs.launchpad.net/ubuntu/+source/plasma-widget-network-
manager/+bug/334052/comments/42

Reply at: https://bugs.launchpad.net/ubuntu/+source/plasma-widget-
network-manager/+bug/334052/comments/43


On 2009-05-13T20:44:29+00:00 Per Hermansson wrote:

Created attachment 33638
patch for using auth instead of autheap

Reply at: https://bugs.launchpad.net/ubuntu/+source/plasma-widget-
network-manager/+bug/334052/comments/44


On 2009-05-13T20:47:58+00:00 Per Hermansson wrote:

Sorry invalid, wrong component

Reply at: https://bugs.launchpad.net/ubuntu/+source/plasma-widget-
network-manager/+bug/334052/comments/45


On 2009-05-13T20:59:41+00:00 Per Hermansson wrote:

thanks for moving moving this, should be correct now

Reply at: https://bugs.launchpad.net/ubuntu/+source/plasma-widget-
network-manager/+bug/334052/comments/46


On 2009-07-27T12:10:04+00:00 X-wstephenson wrote:

I'm looking hard at this right now but I can't commit the patch as is as
it will break connections that do use autheap as the phase2 auth style.

To make it work right i have to rework a lot of the UI.

Reply at: https://bugs.launchpad.net/ubuntu/+source/plasma-widget-
network-manager/+bug/334052/comments/73


On 2009-07-31T06:49:36+00:00 X-wstephenson wrote:

*** Bug 186325 has been marked as a duplicate of this bug. ***

Reply at: https://bugs.launchpad.net/ubuntu/+source/plasma-widget-
network-manager/+bug/334052/comments/74


On 2009-07-31T20:16:59+00:00 X-wstephenson wrote:

*** Bug 191040 has been marked as a duplicate of this bug. ***

Reply at: https://bugs.launchpad.net/ubuntu/+source/plasma-widget-
network-manager/+bug/334052/comments/77


On 2009-08-16T23:03:49+00:00 X-wstephenson wrote:

Fixed, please test with knetworkmanager trunk and kdebase-workspace 4.3
branch.

Reply at: https://bugs.launchpad.net/ubuntu/+source/plasma-widget-
network-manager/+bug/334052/comments/81


On 2009-08-25T14:23:03+00:00 3-info-k wrote:

I didn't get my university network to work with the new revision, too, trying 
both PEAP and TTLS.
The applet tries to connect, but after some time it asks again for the security 
settings.

I attach the log of a failed connection attempt. Something seems wrong
with the certificate, at least the name does not conform with the
certificates I wrote in (use system CA certs is unchecked).

Reply at: https://bugs.launchpad.net/ubuntu/+source/plasma-widget-
network-manager/+bug/334052/comments/83


On 2009-08-25T14:24:22+00:00 3-info-k wrote:

Created attachment 36434
log of NetworkManager - failed connection

Reply at: https://bugs.launchpad.net/ubuntu/+source/plasma-widget-
network-manager/+bug/334052/comments/84


On 2009-08-30T11:04:56+00:00 X-wstephenson wrote:

Cyril: Are you using SVN or packages? which revision?

Aug 25 13:37:29 linux-oqzl NetworkManager: WARN
connection_get_settings_cb(): connection_get_settings_cb: Invalid
connection: 'NMSettingConnection' / 'id' invalid: 1

This indicates one of your connections is invalid.  Can you delete all
other connections and see if NM still prints this warning when you start
KNetworkManager (tail -f /var/log/whatever-ubuntu-uses-for-nm-logs).  If
it persists, delete and recreate the EAP-PEAP connection 

[Bug 1153224] Re: [FFE] Move to logind for session tracking

2013-03-12 Thread Martin Pitt
libudev1 migration: I searched for all packages which use symbols that
got dropped in libudev1. Detailled notes are in the spec, but summary is
that only one package (lvm2) needs a sourceful upload. I cherry-picked
the upstream fix for that into the PPA. For udev we only need to drop
the libudev0/-dev binary package and drop udev's unnecessary dependency
to libudev0.

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

Title:
  [FFE] Move to logind for session tracking

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

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


[Bug 1153211] Re: Not recent enough version on Raring

2013-03-12 Thread hyper_ch
This can be closed, today/last night there were udpates and now it works
again.

** Changed in: libreoffice (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/1153211

Title:
  Not recent enough version on Raring

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

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


[Bug 1153931] Re: No option to disable guest login from login screen

2013-03-12 Thread Stuart Bishop
It may be better to target this bug against the Unity System Settings
control panel.

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

Title:
  No option to disable guest login from login screen

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

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


[Bug 1153931] [NEW] No option to disable guest login from login screen

2013-03-12 Thread Stuart Bishop
*** This bug is a security vulnerability ***

Public security bug reported:

The ability to log in as a guest is unsuitable in many environments, but
it is enabled by default.

There is no easy, discoverable way of disabling this feature. After
sifting through obsolete how-tos, users of 13.04 find they need to drop
to a terminal and edit /etc/lightdm/lightdm.conf, adding 'allow-
guest=false'.

ProblemType: Bug
DistroRelease: Ubuntu 13.04
Package: lightdm 1.4.0-0ubuntu5
ProcVersionSignature: Ubuntu 3.8.0-11.20-generic 3.8.2
Uname: Linux 3.8.0-11-generic x86_64
NonfreeKernelModules: nvidia
ApportVersion: 2.9.1-0ubuntu1
Architecture: amd64
Date: Tue Mar 12 13:34:13 2013
EcryptfsInUse: Yes
InstallationDate: Installed on 2013-02-26 (14 days ago)
InstallationMedia: Ubuntu 13.04 Raring Ringtail - Alpha amd64 (20130225)
MarkForUpload: True
SourcePackage: lightdm
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug raring

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

Title:
  No option to disable guest login from login screen

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

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


[Bug 1114872] Re: Xorg freeze

2013-03-12 Thread kevin.liu
I didn't find the crash report under /var/crash, but re-produced the issue and 
save the crashed kernel log as the attachment.
Thanks

** Attachment added: log.txt
   
https://bugs.launchpad.net/ubuntu/+source/fglrx-installer/+bug/1114872/+attachment/3569638/+files/log.txt

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

Title:
  Xorg freeze

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

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


  1   2   3   4   5   6   7   8   9   10   >