[Bug 885042] Re: edit filesystem label appends characters "nA" when underscores are used

2013-01-28 Thread Norbert
** Tags added: precise

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

Title:
  edit filesystem label appends characters "nA" when underscores are
  used

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-disk-utility/+bug/885042/+subscriptions

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


[Bug 1021691] Re: soffice.bin crashed with SIGSEGV

2013-01-28 Thread Christopher M. Penalver
Kangarooo Jānis, there are no new official OpenOffice.org releases in
Ubuntu, as we have transitioned to LibreOffice. => Won't Fix

You are welcome to test for this problem in LibreOffice. If reproducible, 
please click the button:
Also affects distribution 

Distribution: Ubuntu
Source Package Name: (Optional) libreoffice

For more on installing LibreOffice please see
https://wiki.ubuntu.com/LibreOffice .

Thank you for your understanding.

** Changed in: openoffice.org (Ubuntu)
   Status: New => Won't Fix

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

Title:
  soffice.bin crashed with SIGSEGV

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/openoffice.org/+bug/1021691/+subscriptions

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

Re: [Bug 1103022] Re: 70-udev-acl.rules needs to put g+rw on /dev/kvm

2013-01-28 Thread Martin Pitt
Serge Hallyn [2013-01-29  6:22 -]:
> I'm assuming (hoping) comment #2 as entered before we proceeded with our
> irc conversation?

Yes, I did after the first part when it seemed to me that we agreed
that this was only an upgrade fix for the wrong
40-qemu-system.rules.
 
> The 40-qemu-system.rules is not the problem and we're not trying to recover 
> from it.

Well, it is a problem in the sense that the setfacl call there should
not be necessary and also should be redundant, as it is essentially
equivalent to "chmod g+rw"?

>  1. set up a new ubuntu system, it modprobes kvm_intel, /dev/kvm gets created,
>  2. 70-udev-acl.rules sets /dev/kvm to root:root rwx--, and tags it with 
> acl

No, 70-udev-acl.rules does not change the ownership or permissions of
/dev/kvm, the kernel default is 600 root:root. 70-udev-acl.rules
merely tags it with UDEV_ACL, which causes udev-acl.ck to add
additional user ACLs for the user currently owning the foreground
console.

>  3. user logs in, something (consolekit?) adds a group::--- acl

That's the bit which I don't understand. I seriously doubt that this
is udev-acl, as that only adds additional user ACLs. What makes you
sure that this is actually an ACL, as opposed to just being the
ACL representation of the original "600" permissions that /dev/kvm
gets without 40-qemu-system.rules? 

 - The udev-acl.ck code does not look like it would be able to do it
 - As far as I know, ACLs are additive to Unix file permissions, i. e.
   they can never remove access.
 - I don't see any call to *facl in any installed postinst script.

>  4. admin logs in remotely, installs qemu-system and libvirt-bin, which 
> triggers udev with new rules,
>  5. udev chowns /dev/kvm to root:kvm, and sets it to rwxrw, but the 
> group::--- acl remains
> [...]
> As discussed on irc, I'll see if I can figure out what exactly is causing that
> group acl to be (needlessly) written.

Right, that seems to be the crux of the problem.

I tried to reproduce this:

  $ sudo mv /lib/udev/rules.d/40-qemu-system.rules{,.disabled}
  $ sudo rmmod kvm_intel kvm
  $ sudo passwd root
  # log into VT1 as root, to avoid having a CK session
  # modprobe kvm_intel
  # ls -l /dev/kvm; getfacl /dev/kvm
  crw--- 1 root root 10, 232 Jan 29 08:36 /dev/kvm
  # file: dev/kvm
  # owner: root
  # group: root
  user::rw-
  group::---
  other::---

So far so good. We should be after step 2 now. Now I switch back to my
desktop session, so that 70-udev-acl.rules kicks in:

  $ ls -l /dev/kvm; getfacl /dev/kvm
  crw-rw+ 1 root root 10, 232 Jan 29 08:36 /dev/kvm
  getfacl: Entferne führende '/' von absoluten Pfadnamen
  # file: dev/kvm
  # owner: root
  # group: root
  user::rw-
  user:martin:rw-
  group::---
  mask::rw-
  other::---

We see that udev added the dynamic ACL. That's step 3. Now let's
"install" the new rules:

  $ sudo mv /lib/udev/rules.d/40-qemu-system.rules{.disabled,}
  $ udevadm trigger --subsystem-match=misc --action=change --verbose
  [...]
  /sys/devices/virtual/misc/kvm

  $ ls -l /dev/kvm; getfacl /dev/kvm
  crw-rw+ 1 root root 10, 232 Jan 29 08:36 /dev/kvm
  # file: dev/kvm
  # owner: root
  # group: root
  user::rw-
  user:martin:rw-
  group::---
  mask::rw-
  other::---

And that's indeed where things go haywire, the group is overwritten to
"root" because of /40-qemu-system.rules. So let's replace this with a
rule as it should be:

  $ sudo rmmod kvm_intel kvm
  $ echo 'KERNEL=="kvm", GROUP="kvm", MODE="0660"' | sudo tee 
/lib/udev/rules.d/40-qemu-system.rule
  # switch back to VT1
  # ls -l /dev/kvm; getfacl /dev/kvm
  crw-rw 1 root kvm 10, 232 Jan 29 08:46 /dev/kvm
  getfacl: Entferne führende '/' von absoluten Pfadnamen
  # file: dev/kvm
  # owner: root
  # group: kvm
  user::rw-
  group::rw-
  other::---

Everything as expected. Now switch back to desktop session:

  $ ls -l /dev/kvm; getfacl /dev/kvm
  crw-rw+ 1 root kvm 10, 232 Jan 29 08:46 /dev/kvm
  # file: dev/kvm
  # owner: root
  # group: kvm
  user::rw-
  user:martin:rw-
  group::rw-
  mask::rw-
  other::---

Still everything as expected.

So I'm still convinced that 40-qemu-system.rule is the only problem
here, and that it should be replaced with something like

  KERNEL=="kvm", GROUP="kvm", MODE="0660"

-- 
Martin Pitt| http://www.piware.de
Ubuntu Developer (www.ubuntu.com)  | Debian Developer  (www.debian.org)

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

Title:
  70-udev-acl.rules needs to put g+rw on /dev/kvm

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

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

[Bug 1107658] Re: Add 9p modules to virtual/essential package

2013-01-28 Thread Stefan Bader
** Changed in: linux (Ubuntu)
   Status: Triaged => Fix Committed

** Changed in: linux (Ubuntu Precise)
   Status: Triaged => Fix Committed

** Changed in: linux (Ubuntu Quantal)
   Status: Triaged => 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/1107658

Title:
  Add 9p modules to virtual/essential package

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

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


[Bug 1108637] [NEW] backspace key no longer works in nautilus

2013-01-28 Thread Rocko
Public bug reported:

I know that that it's not Ubuntu's fault that the gnome-devs have
removed so much of the useful functionality from nautilus 3.6, but one
regression that I find particularly annoying is that the backspace key
no longer works as a 'back' button. Instead, you have to press ALT-left
arrow, which is much more complex, as well as non-intuitive (non-
intuitive in the sense that many users tend to use backspace to go back
in browsers).

ProblemType: Bug
DistroRelease: Ubuntu 13.04
Package: nautilus 1:3.6.3-0ubuntu5
ProcVersionSignature: Ubuntu 3.8.0-2.6-generic 3.8.0-rc4
Uname: Linux 3.8.0-2-generic x86_64
ApportVersion: 2.8-0ubuntu2
Architecture: amd64
Date: Tue Jan 29 15:39:50 2013
GsettingsChanges: b'org.gnome.nautilus.window-state' b'geometry' 
b"'800x550+853+1291'"
InstallationDate: Installed on 2012-08-25 (156 days ago)
InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Alpha amd64 (20120724.2)
MarkForUpload: True
SourcePackage: nautilus
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug raring running-unity

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

Title:
  backspace key no longer works in nautilus

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

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


[Bug 1039397] Re: [Dell Precision M6700] HDMI audio fails, HDMI/Displayport output has blank frame

2013-01-28 Thread Tim Chen
Confirmed bug fixed with fglrx-installer-updates (2:9.000-0ubuntu0.1) in
precise-proposed, tried on 201205-11051.

** Tags added: cid201205-11051

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

Title:
  [Dell Precision M6700] HDMI audio fails, HDMI/Displayport output has
  blank frame

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

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


[Bug 1070773] Re: system hangs on boot (at loading radeon related modules)

2013-01-28 Thread Christopher M. Penalver
** Tags removed: kernel-bug-exists-upstream-v3.7-rc2-raring
** Tags added: kernel-bug-exists-upstream-v3.7-rc2

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

Title:
  system hangs on boot (at loading radeon related modules)

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

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


[Bug 1067667] Re: Last logged in user is not selected

2013-01-28 Thread Mark Fraser
I have 3 users - mfraser, pfraser & tfraser. Even though the last user
to log-in was tfraser, mfraser is the one that is selected.

sudo cat /var/lib/lightdm/.kde/share/config/state-kde
 
[lightdm]
lastUser=tfraser

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

Title:
  Last logged in user is not selected

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

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


[Bug 1108457] Re: Kernel 3.5 is not booting

2013-01-28 Thread Christopher M. Penalver
Fibonacci, thank you for reporting this and helping make Ubuntu better.
Could you please test http://kernel.ubuntu.com/~kernel-
ppa/mainline/v3.8-rc5-raring/ ?

** Tags removed: kernel-bug-exists-upstream
** Tags added: needs-bisect needs-upstream-testing

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

** Changed in: linux (Ubuntu)
   Status: Confirmed => Incomplete

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

Title:
  Kernel 3.5 is not booting

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

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


[Bug 1108636] [NEW] Submenus disappear in Python3 AppIndicator

2013-01-28 Thread Bernmeister
Public bug reported:

Two of the appindicators I have written refresh themselves periodically
and on each refresh, rebuild their menu (and submenus).

I have noticed over time that the submenus disappear - the submenus look
as if each is a single space.  The indicator itself, including the menu
items, is no longer responsive and the underlying process must be
killed.  Memory does not seem to be increasing beyond what would seem to
be normal levels for a small script.  Running the indicator from a
terminal reveals no error message.

I have attached a sample script which creates an indicator and a mock
menu/submenu.  The update rate is every three (3) seconds: after a
couple of minutes, the submenu will change to the "space" version.

The script attached must be run using Python3.

The issue appears on Ubuntu 12.04/12.10/13.04 and Lubuntu 12.10 but NOT
Lubuntu 12.04.

I have written other indicators which use a single menu (no submenus)
and these indicators also periodically refresh (and rebuild their menu).
At this time, I've not noticed if these indicators become unresponsive
so I'm not sure if this is related to the submenus or if that is a red
herring.

** Affects: ubuntu
 Importance: Undecided
 Status: New

** Attachment added: "Sample script to demonstrate missing submenus."
   
https://bugs.launchpad.net/bugs/1108636/+attachment/3505449/+files/indicator-submenu-test.py

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

Title:
  Submenus disappear in Python3 AppIndicator

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

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


[Bug 1067667] Re: Last logged in user is not selected

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

** Changed in: lightdm-kde (Ubuntu)
   Status: New => Confirmed

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

Title:
  Last logged in user is not selected

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

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


[Bug 1108630] [NEW] mysql-workbench SQL Editor does not show any schemas

2013-01-28 Thread Rocko
Public bug reported:

mysql-workbench was working correctly in Quantal, but when I open it in
Raring and connect to the mysqld at localhost using a 'query database'
connection, SQL Editor opens but does not show any of the available
schemas (see attached screenshot - the schemas should appear in the
left-hand pane), either when connecting as root or as another user.

'Test Connection' indicates that the connection parameters are correct
for the connection, and the command 'mysql' can access schemas, as can
the 'Emma' application.

mysql-workbench Server Administration does work  - eg if I connect as
root, it shows users and I can add/remove/modify their details, and Data
Export shows the available schemas.

ProblemType: Bug
DistroRelease: Ubuntu 13.04
Package: mysql-workbench 5.2.40+dfsg-2
ProcVersionSignature: Ubuntu 3.8.0-2.6-generic 3.8.0-rc4
Uname: Linux 3.8.0-2-generic x86_64
ApportVersion: 2.8-0ubuntu2
Architecture: amd64
Date: Tue Jan 29 15:27:29 2013
InstallationDate: Installed on 2012-08-25 (156 days ago)
InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Alpha amd64 (20120724.2)
MarkForUpload: True
SourcePackage: mysql-workbench
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug raring running-unity

** Attachment added: "screenshot showing SQL Editor with no schema information"
   
https://bugs.launchpad.net/bugs/1108630/+attachment/3505446/+files/mysqlwb.png

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

Title:
  mysql-workbench SQL Editor does not show any schemas

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

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


[Bug 1105736] Re: Headphone Jack not working with HP Pavillion dv6

2013-01-28 Thread Simon Biggs
This is the upload link of the alsa-info.sh:

http://www.alsa-
project.org/db/?f=198581856915f93ff18ba05527add830aaa18b7d

Thank you for your help.
Cheers,
Simon

** Description changed:

  Running Ubuntu 12.04 64-bit with latest updates as of 26th January.
  The bug appeared late December (I think).
  
  All other sound is working, just simply not the headphone jack.
+ 
+ alsa-info.sh link:
+ http://www.alsa-project.org/db/?f=198581856915f93ff18ba05527add830aaa18b7d

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

Title:
  Headphone Jack not working with HP Pavillion dv6

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

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


[Bug 962402] Re: keyboard stops responding after backlight toggle

2013-01-28 Thread Pierce Gerhart
Similar problem with Dell Studio 1555 on Quantal. Let me know if I can
post any logs that might be useful.

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

Title:
  keyboard stops responding after backlight toggle

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

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


[Bug 1075050] Re: [Dell E6530] Precise installer can't boot to desktop without "nomodeset"

2013-01-28 Thread Anthony Wong
@ctf
Can you verify again with 12.10?

** Changed in: linux (Ubuntu)
   Status: Confirmed => Incomplete

** Changed in: linux (Ubuntu)
 Assignee: Anthony Wong (anthonywong) => Tim Chen (ctf)

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

Title:
  [Dell E6530] Precise installer can't boot to desktop without
  "nomodeset"

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

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


[Bug 1075050] Re: [Dell E6530] Precise installer can't boot to desktop without "nomodeset"

2013-01-28 Thread Anthony Wong
** Bug watch added: freedesktop.org Bugzilla #41114
   https://bugs.freedesktop.org/show_bug.cgi?id=41114

** Also affects: linux via
   https://bugs.freedesktop.org/show_bug.cgi?id=41114
   Importance: Unknown
   Status: Unknown

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

Title:
  [Dell E6530] Precise installer can't boot to desktop without
  "nomodeset"

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

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


[Bug 1103022] Re: 70-udev-acl.rules needs to put g+rw on /dev/kvm

2013-01-28 Thread Serge Hallyn
In fact udev-acl appears to be doing it.

When logging into a simple ubuntu desktop with qemu-system not
installed, I log in and find /dev/kvm is root:root rwm-- with a
group::--- acl installed.  I verify the acl by doing 'chmod g+rw
/dev/kvm' followed by ls -l /dev/kvm and getfacl /dev/kvm showng that
/dev/kvm is now rwxrw but the group::--- acl is still there.

Next I moved /usr/lib/ConsoleKit/run-seat.d/udev-acl.ck to /root/ and
rebooted, and ssh'd in.  Now /dev/kvm had no acls and was

serge@ubuntu:~$ ls -l /dev/kvm
crw-rw 1 root root 10, 232 Jan 29 01:04 /dev/kvm
serge@ubuntu:~$ getfacl /dev/kvm
getfacl: Removing leading '/' from absolute path names
# file: dev/kvm
# owner: root
# group: root
user::rw-
group::rw-
other::---

(I next undid this by doing 'chmod g-rw /dev/kvm')

Next I manually ran:

/lib/udev/udev-acl -a change --device=/dev/kvm

after this, I got:

root@ubuntu:~# getfacl /dev/kvm
getfacl: Removing leading '/' from absolute path names
# file: dev/kvm
# owner: root
# group: root
user::rw-
user:lightdm:rw-
group::---
mask::rw-
other::---

root@ubuntu:~# chmod g+rw /dev/kvm
root@ubuntu:~# getfacl /dev/kvm
getfacl: Removing leading '/' from absolute path names
# file: dev/kvm
# owner: root
# group: root
user::rw-
user:lightdm:rw-
group::---
mask::rw-
other::---

showing that running udev-acl.ck is what is causing the group acl to be
created, even though it's not obvious, looking at the udev-acl.c code,
how it would do so.

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

Title:
  70-udev-acl.rules needs to put g+rw on /dev/kvm

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

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


[Bug 1108612] Re: side menu (List of Categories) displays links but no names

2013-01-28 Thread Vanamali
I ran "software-center --debug". The results can be found in the
attachement.

** Attachment added: "USC.txt"
   
https://bugs.launchpad.net/ubuntu/+source/software-center/+bug/1108612/+attachment/3505437/+files/USC.txt

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

Title:
  side menu (List of Categories) displays links but no names

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

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


[Bug 1108612] [NEW] side menu (List of Categories) displays links but no names

2013-01-28 Thread Vanamali
Public bug reported:

I use a CQ40 laptop with Ubuntu 12.10 installed.
Software-center version: 5.4.1.3

The attached image shows a screenshot the software center(USC). You may
notice that the list of categories on the left side is missing (One can
find an empty box!). Even though it looks empty, when I hover the mouse
pointer above it, it indicates the presence of hyperlinks. Those
hyperlinks work, but one doesn't know which category it links to until
you click the link. I tried changing the font, font size, it didn't
work. When started through terminal, I got the following messages:

:~$ 2013-01-29 12:37:56,792 - softwarecenter.ui.gtk3.app - INFO - setting up 
proxy 'None'
2013-01-29 12:37:56,828 - softwarecenter.db.database - INFO - open() database: 
path=None use_axi=True use_agent=True
2013-01-29 12:37:58,831 - softwarecenter.backend.reviews - WARNING - Could not 
get usefulness from server, no username in config file
2013-01-29 12:37:58,841 - softwarecenter.fixme - WARNING - logs to the root 
logger: '('/usr/lib/python2.7/dist-packages/gi/importer.py', 51, 'find_module')'
2013-01-29 12:37:58,841 - root - ERROR - Could not find any typelib for 
LaunchpadIntegration
2013-01-29 12:37:59,126 - softwarecenter.ui.gtk3.app - INFO - 
show_available_packages: search_text is '', app is None.
2013-01-29 12:37:59,688 - softwarecenter.db.pkginfo_impl.aptcache - INFO - 
aptcache.open()


Please help.

ProblemType: Bug
DistroRelease: Ubuntu 12.10
Package: software-center 5.4.1.3
ProcVersionSignature: Ubuntu 3.5.0-22.34-generic 3.5.7.2
Uname: Linux 3.5.0-22-generic i686
NonfreeKernelModules: wl
ApportVersion: 2.6.1-0ubuntu10
Architecture: i386
Date: Tue Jan 29 12:28:42 2013
InstallationDate: Installed on 2012-10-21 (99 days ago)
InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release i386 (20121017.2)
MarkForUpload: True
PackageArchitecture: all
SourcePackage: software-center
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: software-center (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug i386 quantal running-unity third-party-packages

** Attachment added: "Please take a look at the left side "List of categories"."
   
https://bugs.launchpad.net/bugs/1108612/+attachment/3505431/+files/Screenshot%20from%202013-01-29%2012%3A05%3A38.png

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

Title:
  side menu (List of Categories) displays links but no names

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

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


[Bug 1108610] [NEW] Please provide vala bindings.

2013-01-28 Thread Ying-Chun Liu
Public bug reported:

Dear Maintainer,

Please provide vala bindings for telepathy-logger.

Currently we have gir file.
It is easy to generate vala bindings from the gir file by vapigen.
For example, "vapigen --library=telepathy-logger-0.2 --pkg=telepathy-glib 
--vapidir=. /usr/share/gir-1.0/TelepathyLogger-0.2.gir" generates the .vapi 
file.

Yours,
Paul

** Affects: telepathy-logger (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  Please provide vala bindings.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/telepathy-logger/+bug/1108610/+subscriptions

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


[Bug 1096247] Re: [Lenovo E135]: System fails to resume from suspend

2013-01-28 Thread Anthony Wong
** Changed in: linux (Ubuntu Raring)
   Status: Confirmed => Incomplete

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

Title:
  [Lenovo E135]: System fails to resume from suspend

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

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


[Bug 996151] Re: disable apt http pipelining in quantal

2013-01-28 Thread Sandip Bhattacharya
Since it is just a config change, can this fix be enabled in Precise,
since it an LTS after all. We are trying to install Precise in our org,
and our squid proxies are preventing us from using the latest LTS
because of this bug.

If however, there is a way to disable pipelining in a preseed file, that
would work as well as a workaround.

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

Title:
  disable apt http pipelining in quantal

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

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


[Bug 785053] Re: unity-window-decorator moves wrong windows, steals focus, and creates invisible bogus windows

2013-01-28 Thread Matthias Andree
** Changed in: compiz (Ubuntu)
   Status: Expired => Incomplete

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

Title:
  unity-window-decorator moves wrong windows, steals focus, and creates
  invisible bogus windows

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

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


[Bug 1036029] Re: All menus are empty when using Unity Global Menus

2013-01-28 Thread hackel
I am still seeing this behaviour using the official package
1:2.10.6-0ubuntu2.  No one else can reproduce this?

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

Title:
  All menus are empty when using Unity Global Menus

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

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


[Bug 1108370] Re: Wish: Remote control support

2013-01-28 Thread RJ Ryan
Thanks for taking the time to file a bug, Falk.

@Dustin: We (the Mixxx team) use wishlist bugs to track things like this
-- re-targeting all of these against the Mixxx project instead of the
Mixxx package.

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

** Changed in: mixxx
   Status: New => Confirmed

** Changed in: mixxx
   Importance: Undecided => Wishlist

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

Title:
  Wish: Remote control support

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

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


[Bug 1108386] Re: Wish: basic Karaoke support

2013-01-28 Thread RJ Ryan
Thanks for taking the time to file a bug, Falk.

@Dustin: We (the Mixxx team) use wishlist bugs to track things like this
-- re-targeting all of these against the Mixxx project instead of the
Mixxx package.

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

** Changed in: mixxx
   Status: New => Confirmed

** Changed in: mixxx
   Importance: Undecided => Wishlist

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

Title:
  Wish: basic Karaoke support

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

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


[Bug 1108374] Re: Wish: saving several parameters

2013-01-28 Thread RJ Ryan
Thanks for taking the time to file a bug, Falk.

@Dustin: We (the Mixxx team) use wishlist bugs to track things like this
-- re-targeting all of these against the Mixxx project instead of the
Mixxx package.

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

** Changed in: mixxx
   Status: New => Confirmed

** Changed in: mixxx
   Importance: Undecided => Wishlist

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

Title:
  Wish: saving several parameters

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

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


[Bug 1108381] Re: Wish: modification of track parameters should affect the file

2013-01-28 Thread RJ Ryan
Thanks for taking the time to file a bug, Falk.

@Dustin: We (the Mixxx team) use wishlist bugs to track things like this
-- re-targeting all of these against the Mixxx project instead of the
Mixxx package.

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

** Changed in: mixxx
   Status: New => Confirmed

** Changed in: mixxx
   Importance: Undecided => Wishlist

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

Title:
  Wish: modification of track parameters should affect  the file

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

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


[Bug 1108371] Re: Wish: direct loading of play list files

2013-01-28 Thread RJ Ryan
Thanks for taking the time to file a bug, Falk.

@Dustin: We (the Mixxx team) use wishlist bugs to track things like this
-- re-targeting all of these against the Mixxx project instead of the
Mixxx package.


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

** Changed in: mixxx
   Status: New => Confirmed

** Changed in: mixxx
   Importance: Undecided => Wishlist

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

Title:
  Wish: direct loading of play list files

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

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


[Bug 1108373] Re: Wish: permanent sync during auto-play

2013-01-28 Thread RJ Ryan
Thanks for taking the time to file a bug, Falk.

@Dustin: We (the Mixxx team) use wishlist bugs to track things like this
-- re-targeting all of these against the Mixxx project instead of the
Mixxx package.


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

** Changed in: mixxx
   Status: New => Confirmed

** Changed in: mixxx
   Importance: Undecided => Wishlist

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

Title:
  Wish: permanent sync during auto-play

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

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


[Bug 1023166] Re: gm-notify stops updating

2013-01-28 Thread Quin Eirik
As gm-notify kill itself on startup the "killall gm-notify" is not
needed.

Simply add 
gm-notify &
inside the "if" and it takes care of the rest.

REF:
/usr/bn/gm-notify: line 60
class CheckMail():
def __init__(self):
'''initiates DBUS-Messaging interface, creates the MailChecker and 
registers with indicator-applet.
In the end it starts the periodic check timer and a gtk main-loop'''

# Kill running gm-notify processes (UGLY!)
subprocess.call("kill `pgrep -f gm-notify | grep -v %s`" % os.getpid(), 
stdout=open("/dev/null", "w"), shell=True)
   ...

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

Title:
  gm-notify stops updating

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gm-notify/+bug/1023166/+subscriptions

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


[Bug 1108097] Re: [update request] current version 4.1.12 is not fit for linux-meta-LTS-quantal

2013-01-28 Thread Flames_in_Paradise
** Tags added: quantal

** Tags added: regression

** Tags removed: regression
** Tags added: regression-release

** Description changed:

  Linux-meta-lts-quantal provides Kernel Version 3.5 for 12.04 Precise
  
  there will appear build errors... for the kernel-module
  
  Kindly update to Version VirtualBox 4.2.6
  
  4.1.12 was issued on 2012-04-02, so it didn't know about newer kernels
  
  Doing so has the potential to close bug1016165 (57 users affected as per
  today)
  
  If VirtualBox is not maintainable due to SRU restrictions in Ubuntu it
  should get removed from the sources.They provide a vivid help-forum and
  bug-database from their own.
  
  VirtualBox changelog: https://www.virtualbox.org/wiki/Changelog
  
  Sourcecode:
  http://download.virtualbox.org/virtualbox/4.2.6/VirtualBox-4.2.6.tar.bz2
  
- The situation on VirtualBox 4.1.18 on Raring is alike...
+ The situation on VirtualBox 4.1.18 on Quantal 12.10  & Raring 13.04 is
+ alike...
  
  Thanks in advance for helping to make Ubuntu better every day!

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

Title:
  [update request] current version 4.1.12 is not fit for linux-meta-LTS-
  quantal

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

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


[Bug 1103022] Re: 70-udev-acl.rules needs to put g+rw on /dev/kvm

2013-01-28 Thread Serge Hallyn
I'm assuming (hoping) comment #2 as entered before we proceeded with our
irc conversation?

The 40-qemu-system.rules is not the problem and we're not trying to recover 
from it.
As mentioned in irc, the steps are:

 1. set up a new ubuntu system, it modprobes kvm_intel, /dev/kvm gets created,
 2. 70-udev-acl.rules sets /dev/kvm to root:root rwx--, and tags it with acl
 3. user logs in, something (consolekit?) adds a group::--- acl
 4. admin logs in remotely, installs qemu-system and libvirt-bin, which 
triggers udev with new rules,
 5. udev chowns /dev/kvm to root:kvm, and sets it to rwxrw, but the 
group::--- acl remains
 6. libvirt tries to start a vm as group kvm, but the group:--- acl refuses it

The patch I proposed here simply sets GROUP=0660 in the 70-udev-
acl.rules.  That way the group:: acl still gets added on login, but
becomes group::rw-.  So it's a workaround for whatever is adding that
acl in the first place.

As discussed on irc, I'll see if I can figure out what exactly is causing that
group acl to be (needlessly) written.

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

Title:
  70-udev-acl.rules needs to put g+rw on /dev/kvm

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

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


[Bug 1103192] Re: oneconf-query crashed with AttributeError in /usr/bin/oneconf-query: 'GNUTranslations' object has no attribute 'ugettext'

2013-01-28 Thread hongwen luo
经常出现这个情况

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

Title:
  oneconf-query crashed with AttributeError in /usr/bin/oneconf-query:
  'GNUTranslations' object has no attribute 'ugettext'

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

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

[Bug 1108582] [NEW] Crash when display configuration changes during recording

2013-01-28 Thread John Quail
Public bug reported:

While recording my desktop my display configuration changed on my laptop
due to the external monitor plug being pulled out.

I'd be fine with the recording being stopped due to this, but
unfortunately this has caused the output to be corrupt.

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


** Tags: corrupt crash resolution

** Attachment added: "Crash log file"
   
https://bugs.launchpad.net/bugs/1108582/+attachment/3505392/+files/gtk-recordMyDesktop-crash.log

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

Title:
  Crash when display configuration changes during recording

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

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


[Bug 160311] Re: Resizing windows by grabbing window borders is difficult

2013-01-28 Thread Adolfo Jayme Barrientos
** No longer affects: human-gtk-theme (Ubuntu)

** No longer affects: human-gtk-theme (Ubuntu Maverick)

** No longer affects: light-themes (Ubuntu Maverick)

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

Title:
  Resizing windows by grabbing window borders is difficult

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

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


[Bug 913730] Re: Automatic plug-in installation not working under Ubuntu

2013-01-28 Thread Amarnath Chitumalla
Hi Srinivas,

Above attached log in #13 contains following information (see at end):-
--
[34;01mhp-diagnose_plugin[3027]: debug: Starting GUI loop...
Traceback (most recent call last):
  File "/usr/share/hplip/ui4/plugindiagnose.py", line 101, in NextButton_clicked
ok, sudo_ok = pkit.run_plugin_command(plugin == PLUGIN_REQUIRED, 
plugin_reason)
  File "/usr/share/hplip/base/pkit.py", line 472, in run_plugin_command
su_sudo = utils.su_sudo()
  File "/usr/share/hplip/base/utils.py", line 1782, in su_sudo
elif utils.which('/usr/lib/kde4/libexec/kdesu'):
NameError: global name 'utils' is not defined

Done.
---

According to this, "/usr/share/hplip/base/utils.py" file may contains
"utils." at line no. 1782.


I think, please do fresh installation from 
"http://hplipopensource.com/hplip-web/install.html";. If your distro is Ubuntu, 
suse, debian, linux mint or fedora, then follow Auto Installation 
(http://hplipopensource.com/hplip-web/install/install/index.html)

Otherwise go for Manual Installation.
Details installation steps given in this site.


Thanks & Regards,
Amarnath

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

Title:
  Automatic plug-in installation not working under Ubuntu

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

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


[Bug 1105774] Re: hda-intel: spurious response and [pulseaudio] module-udev-detect.c: inotify_init1() failed: Too many open files

2013-01-28 Thread Raymond
** Summary changed:

- hda-intel: spurious response and pulseaudio fails to start with no reason
+ hda-intel: spurious response and [pulseaudio] module-udev-detect.c: 
inotify_init1() failed: Too many open files

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

** Changed in: pulseaudio (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/1105774

Title:
  hda-intel: spurious response and [pulseaudio] module-udev-detect.c:
  inotify_init1() failed: Too many open files

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

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


[Bug 1074313] Re: ldconfig complains about unknown machine 183

2013-01-28 Thread Adam Conrad
This verbosity is fixed in 2.17-0ubuntu1 (and can be restored by running
ldconfig with -v)

** Changed in: eglibc (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/1074313

Title:
  ldconfig complains about unknown machine 183

To manage notifications about this bug go to:
https://bugs.launchpad.net/linaro-aarch64/+bug/1074313/+subscriptions

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


[Bug 1073433] Re: Ext4 corruption associated with shutdown of Ubuntu 12.10

2013-01-28 Thread jim warner
and here's # 7...


** Attachment added: "everything disabled, never connected and still unclean 
shutdown"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1073433/+attachment/3505333/+files/last-shutdown-lsof.7

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

Title:
  Ext4 corruption associated with shutdown of Ubuntu 12.10

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

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


[Bug 1073433] Re: Ext4 corruption associated with shutdown of Ubuntu 12.10

2013-01-28 Thread jim warner
I use wireless exclusively and tried the following combinations but
NEVER achieved a clean shutdown.

   available to all (3 users) ---
1. autoconnect, connected @ shutdown

   available to single user -
2. autoconnect, connected @ shutdown
3. autoconnect, disconnected before shut
4. manually connected, disconnected before shut
5. networking + wireless enabled, but never connected
6. disabled networking, never connected
7. disabled wireless+networking, never connected

My lsof log #1 mentions dhclient as others have. My logs #5 - 7 contain
no suspect programs.  But my logs #1 - 4 also implicate dnsmasq.

I've included the logs from attempt #4 and 7 for what they're worth.


** Attachment added: "disconnect wireless before shutdown"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1073433/+attachment/3505332/+files/last-shutdown-lsof.4

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

Title:
  Ext4 corruption associated with shutdown of Ubuntu 12.10

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

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


[Bug 664647] Re: All menu item text is invisible in Adobe Reader

2013-01-28 Thread Adolfo Jayme Barrientos
** No longer affects: acroread (Ubuntu Natty)

** No longer affects: appmenu-gtk (Ubuntu Natty)

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

Title:
  All menu item text is invisible in Adobe Reader

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

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


[Bug 1073433] Re: Ext4 corruption associated with shutdown of Ubuntu 12.10

2013-01-28 Thread Russell Faull
Clint, I have tried what you suggested (uncomment line 132 at
/etc/init.d/sendsig), and caused an unclean shutdown by checking
'Available to all users' for current NM connection. On reboot, there was
no mention of dhclient in /var/crash.

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

Title:
  Ext4 corruption associated with shutdown of Ubuntu 12.10

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

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


[Bug 836849] Re: Samba starts before static IPs set in network manager, even when only using 'interfaces' and not 'bind interfaces only'

2013-01-28 Thread camden lindsay
Thank you, Clint.

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

Title:
  Samba starts before static IPs set in network manager, even when only
  using 'interfaces' and not 'bind interfaces only'

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

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


[Bug 1073991] Re: Cannot send emails: The reported error was "Could not send message: WriteStream: MAPI error MAPI_E_CALL_FAILED (0x80004005) occurred".

2013-01-28 Thread Samarjit Adhikari
It [post#24] works for me as well. Thanks a lot.

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

Title:
  Cannot send emails: The reported error was "Could not send message:
  WriteStream: MAPI error MAPI_E_CALL_FAILED (0x80004005) occurred".

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

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


[Bug 1106471] Re: libc6-dbg:i386 can't be installed

2013-01-28 Thread Adam Conrad
D'oh, just need some exclusion rules to keep x32 out of the amd64/i386
dbg packages.  Will happen in the next upload.

** Changed in: eglibc (Ubuntu)
 Assignee: (unassigned) => Adam Conrad (adconrad)

** Changed in: eglibc (Ubuntu)
   Importance: Undecided => Medium

** Changed in: eglibc (Ubuntu)
   Status: New => In Progress

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

Title:
  libc6-dbg:i386 can't be installed

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

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


[Bug 213524] Re: u804:scim::typing missbehavior

2013-01-28 Thread Launchpad Bug Tracker
[Expired for scim (Ubuntu) because there has been no activity for 60
days.]

** Changed in: scim (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  u804:scim::typing missbehavior

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

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


[Bug 215104] Re: mozilla-opensc should NONREPUDIATION key instead of SIGN key when creating a digital signature

2013-01-28 Thread Launchpad Bug Tracker
[Expired for opensc (Ubuntu) because there has been no activity for 60
days.]

** Changed in: opensc (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  mozilla-opensc should NONREPUDIATION key instead of SIGN key when
  creating a digital signature

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

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


[Bug 215660] Re: dpkg-reconfigure crashed with SIGSEGV in xcall_QVBoxLayout()

2013-01-28 Thread Launchpad Bug Tracker
[Expired for debconf (Ubuntu) because there has been no activity for 60
days.]

** Changed in: debconf (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  dpkg-reconfigure crashed with SIGSEGV in xcall_QVBoxLayout()

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

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


[Bug 410544] Re: "You have caps lock on" stays on when caps lock is changed

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

** Changed in: gksu (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/410544

Title:
  "You have caps lock on" stays on when caps lock is changed

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

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


[Bug 1106117] Re: [edgers] nvidia-313 issue: (EE) open /dev/dri/card0: No such file or directory

2013-01-28 Thread dino99
** Attachment added: "kmod.log"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1106117/+attachment/3505311/+files/kmod.log

** Tags removed: raring
** Tags added: bot-stop-nagging raringkernel-bug-exists-upstream

** Changed in: linux (Ubuntu)
   Status: Incomplete => Confirmed

** Tags removed: raringkernel-bug-exists-upstream
** Tags added: kernel-bug-exists-upstream raring

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

Title:
  [edgers]  nvidia-313 issue:   (EE) open /dev/dri/card0: No such file
  or directory

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

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


[Bug 678193] Re: gtk-window-decorator crashed with SIGSEGV in meta_draw_window_decoration()

2013-01-28 Thread Launchpad Bug Tracker
[Expired for compiz (Ubuntu) because there has been no activity for 60
days.]

** Changed in: compiz (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  gtk-window-decorator crashed with SIGSEGV in
  meta_draw_window_decoration()

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

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


[Bug 1106117] Re: [edgers] nvidia-313 issue: (EE) open /dev/dri/card0: No such file or directory

2013-01-28 Thread dino99
** Attachment added: "ureadahead.log"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1106117/+attachment/3505310/+files/ureadahead.log

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

Title:
  [edgers]  nvidia-313 issue:   (EE) open /dev/dri/card0: No such file
  or directory

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

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


[Bug 1106117] Re: [edgers] nvidia-313 issue: (EE) open /dev/dri/card0: No such file or directory

2013-01-28 Thread dino99
Still get the same issue with rc5 & nvidia
See xorg.0.log above, and these /var/log/upstart/ additional errors

** Attachment added: "modemmanager.log"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1106117/+attachment/3505309/+files/modemmanager.log

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

Title:
  [edgers]  nvidia-313 issue:   (EE) open /dev/dri/card0: No such file
  or directory

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

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


[Bug 1106117] Re: [edgers] nvidia-313 issue: (EE) open /dev/dri/card0: No such file or directory

2013-01-28 Thread dino99
** Attachment added: "Xorg.0.log"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1106117/+attachment/3505308/+files/Xorg.0.log

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

Title:
  [edgers]  nvidia-313 issue:   (EE) open /dev/dri/card0: No such file
  or directory

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

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


[Bug 688249] Re: Double-clicking a maximized window in expo w/ wobbly "maximize effect" enabled results in permanently deformed window

2013-01-28 Thread Launchpad Bug Tracker
[Expired for compiz (Ubuntu) because there has been no activity for 60
days.]

** Changed in: compiz (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  Double-clicking a maximized window in expo w/ wobbly "maximize effect"
  enabled results in permanently deformed window

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

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


[Bug 1108552] [NEW] mythbuntu-control-centre failed to start

2013-01-28 Thread Jason Cullen
Public bug reported:

When trying to start this on Ubuntu 13.04 I get this:

Traceback (most recent call last):
  File "/usr/bin/mythbuntu-control-centre", line 38, in 
from aptdaemon import client
  File "/usr/lib/python2.7/dist-packages/aptdaemon/client.py", line 55, in 

class AptTransaction(GObject.Object):
AttributeError: 'module' object has no attribute 'Object'

** Affects: mythbuntu-control-centre (Ubuntu)
 Importance: Undecided
 Status: New

** Description changed:

+ When trying to start this on Ubuntu 13.04 I get this:
+ 
  Traceback (most recent call last):
-   File "/usr/bin/mythbuntu-control-centre", line 38, in 
- from aptdaemon import client
-   File "/usr/lib/python2.7/dist-packages/aptdaemon/client.py", line 55, in 

- class AptTransaction(GObject.Object):
+   File "/usr/bin/mythbuntu-control-centre", line 38, in 
+ from aptdaemon import client
+   File "/usr/lib/python2.7/dist-packages/aptdaemon/client.py", line 55, in 

+ class AptTransaction(GObject.Object):
  AttributeError: 'module' object has no attribute 'Object'

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

Title:
  mythbuntu-control-centre failed to start

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mythbuntu-control-centre/+bug/1108552/+subscriptions

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

[Bug 708520] Re: unity-window-decorator crashed with SIGFPE in decor_blend_border_picture()

2013-01-28 Thread Launchpad Bug Tracker
[Expired for compiz (Ubuntu) because there has been no activity for 60
days.]

** Changed in: compiz (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  unity-window-decorator crashed with SIGFPE in
  decor_blend_border_picture()

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

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


[Bug 723002] Re: External monitor not working properly

2013-01-28 Thread Launchpad Bug Tracker
[Expired for compiz (Ubuntu) because there has been no activity for 60
days.]

** Changed in: compiz (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  External monitor not working properly

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

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


[Bug 728571] Re: key bindings for compiz plugins not checked against existing keyboard shortcuts (non compiz

2013-01-28 Thread Launchpad Bug Tracker
[Expired for compiz (Ubuntu) because there has been no activity for 60
days.]

** Changed in: compiz (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  key bindings for compiz plugins not checked against existing keyboard
  shortcuts (non compiz

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

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


[Bug 737210] Re: compiz crashed with SIGSEGV in free()

2013-01-28 Thread Launchpad Bug Tracker
[Expired for compiz (Ubuntu) because there has been no activity for 60
days.]

** Changed in: compiz (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  compiz crashed with SIGSEGV in free()

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

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


[Bug 645428] Re: dreampie crashed when raw_input function gets prompt in cyrilic

2013-01-28 Thread Launchpad Bug Tracker
[Expired for dreampie (Ubuntu) because there has been no activity for 60
days.]

** Changed in: dreampie (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  dreampie crashed when raw_input function gets prompt in cyrilic

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

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


[Bug 418209] Re: NV43 [GeForce 6600 GT] [10de:0140] dual head with full screen tsclient / remote-desktop prevents keyboard focus following mouse focus for previously selected windows.

2013-01-28 Thread Launchpad Bug Tracker
[Expired for compiz (Ubuntu) because there has been no activity for 60
days.]

** Changed in: compiz (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  NV43 [GeForce 6600 GT] [10de:0140] dual head with full screen tsclient
  / remote-desktop prevents keyboard focus following mouse focus for
  previously selected windows.

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

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


[Bug 744044] Re: Using (Super)+(number) to switch windows messes up Alt-Tab order

2013-01-28 Thread Launchpad Bug Tracker
[Expired for compiz (Ubuntu) because there has been no activity for 60
days.]

** Changed in: compiz (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  Using (Super)+(number) to switch windows messes up Alt-Tab order

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

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


[Bug 744495] Re: compiz crashed with SIGSEGV in _int_free()

2013-01-28 Thread Launchpad Bug Tracker
[Expired for compiz (Ubuntu) because there has been no activity for 60
days.]

** Changed in: compiz (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  compiz crashed with SIGSEGV in _int_free()

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

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


[Bug 210909] Re: [Hardy] XSane shows up with "No device available" after suspend

2013-01-28 Thread Launchpad Bug Tracker
[Expired for xsane (Ubuntu) because there has been no activity for 60
days.]

** Changed in: xsane (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  [Hardy] XSane shows up with "No device available" after suspend

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

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


[Bug 755127] Re: compiz crashed with SIGSEGV in pthread_mutex_lock()

2013-01-28 Thread Launchpad Bug Tracker
[Expired for compiz (Ubuntu) because there has been no activity for 60
days.]

** Changed in: compiz (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  compiz crashed with SIGSEGV in pthread_mutex_lock()

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

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


[Bug 755397] Re: Restoring Firefox from minimised is not smooth

2013-01-28 Thread Launchpad Bug Tracker
[Expired for compiz (Ubuntu) because there has been no activity for 60
days.]

** Changed in: compiz (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  Restoring Firefox from minimised is not smooth

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

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


[Bug 755397] Re: Restoring Firefox from minimised is not smooth

2013-01-28 Thread Launchpad Bug Tracker
[Expired for Compiz because there has been no activity for 60 days.]

** Changed in: compiz
   Status: Incomplete => Expired

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

Title:
  Restoring Firefox from minimised is not smooth

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

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


[Bug 760480] Re: compiz --replace leaves behind old compiz process

2013-01-28 Thread Launchpad Bug Tracker
[Expired for compiz (Ubuntu) because there has been no activity for 60
days.]

** Changed in: compiz (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  compiz --replace leaves behind old compiz process

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

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


[Bug 927424] Re: Please backport commit to enable building without irrelevant drm libs on some arches

2013-01-28 Thread Launchpad Bug Tracker
This bug was fixed in the package plymouth - 0.8.2-2ubuntu31

---
plymouth (0.8.2-2ubuntu31) precise-proposed; urgency=low

  * debian/patches/plymouth-optional-drm.patch: backport patch to disable
intel dependency on !x86 (LP: #927424)
  * drop dependency drm-intel1 on !x86
  * debian/patches/plymouth-old-nouveau.patch: updated to use libdrm_nouveau1,
needed for building on the updated libdrm.
  * debian/patches/autoreconf.patch: refreshed for above patches
 -- Maarten LankhorstFri, 18 Jan 2013 
17:59:35 +0100

** Changed in: plymouth (Ubuntu Precise)
   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/927424

Title:
  Please backport commit to enable building without irrelevant drm libs
  on some arches

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

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


[Bug 927424] Update Released

2013-01-28 Thread Colin Watson
The verification of this Stable Release Update has completed
successfully and the package has now been released to -updates.
Subsequently, the Ubuntu Stable Release Updates Team is being
unsubscribed and will not receive messages about this bug report.  In
the event that you encounter a regression using the package from
-updates please report a new bug using ubuntu-bug and tag the bug report
regression-update so we can easily find any regresssions.

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

Title:
  Please backport commit to enable building without irrelevant drm libs
  on some arches

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

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


[Bug 1072442] Re: Adressbook entries not visible after selection "To:" email field

2013-01-28 Thread Stefan Czinczoll
Developer Milan Crha fixed the code for evolution-data-server 3.6.3 and
3.7.3. Please see http://bugzilla.gnome.org/show_bug.cgi?id=688479.

** Bug watch added: GNOME Bug Tracker #688479
   https://bugzilla.gnome.org/show_bug.cgi?id=688479

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

Title:
  Adressbook entries not visible after selection "To:" email field

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

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


[Bug 773587] Re: Focused window doesn't have to be on current workspace

2013-01-28 Thread Launchpad Bug Tracker
[Expired for compiz (Ubuntu) because there has been no activity for 60
days.]

** Changed in: compiz (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  Focused window doesn't have to be on current workspace

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

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


[Bug 225389] Re: disk-1 instead of sda

2013-01-28 Thread Elaina March
This bug is posted to the wrong webpage (Ubuntu) Please edit some
grammar as it is confusing if you did or did not do something

** Changed in: hal (Ubuntu)
   Status: Incomplete => Invalid

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

Title:
  disk-1 instead of sda

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

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


[Bug 1065281] Re: Installer crashed when trying to partition 4k/4k sector hard disks

2013-01-28 Thread Colin Watson
** Changed in: dosfstools (Ubuntu Precise)
Milestone: ubuntu-12.04.2 => ubuntu-12.04.3

** Changed in: efibootmgr (Ubuntu Precise)
Milestone: ubuntu-12.04.2 => ubuntu-12.04.3

** Changed in: partman-basicfilesystems (Ubuntu Precise)
Milestone: ubuntu-12.04.2 => ubuntu-12.04.3

** Changed in: partman-efi (Ubuntu Precise)
Milestone: ubuntu-12.04.2 => ubuntu-12.04.3

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

Title:
  Installer crashed when trying to partition 4k/4k sector hard disks

To manage notifications about this bug go to:
https://bugs.launchpad.net/dell-poweredge/+bug/1065281/+subscriptions

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


[Bug 1069930] Re: chromium-browser package lacks chromedriver binary

2013-01-28 Thread Adolfo Jayme Barrientos
** Changed in: chromium-browser (Ubuntu)
   Status: Triaged => 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/1069930

Title:
  chromium-browser package lacks chromedriver binary

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/chromium-browser/+bug/1069930/+subscriptions

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


[Bug 1108236] Re: Category headers don't respond to touches

2013-01-28 Thread Frank Lister
Does this inlude all other software and/or do other functions respond to
touch?

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

Title:
  Category headers don't respond to touches

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

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


[Bug 225389] Re: disk-1 instead of sda

2013-01-28 Thread Elaina March
** Changed in: hal (Ubuntu)
   Status: New => Incomplete

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

Title:
  disk-1 instead of sda

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

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


[Bug 1023166] Re: gm-notify stops updating

2013-01-28 Thread Quin Eirik
Seems like gm-notify hangs after error. (Never used it before). So, to
extend the ugly hack-fix add something like:

killall gm-notify
sleep 3
gm-notify &

inside the "if".

** Tags added: notification-daemon

** Tags added: gm-notify notification

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

Title:
  gm-notify stops updating

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gm-notify/+bug/1023166/+subscriptions

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


[Bug 1027387] Re: deb archive should use "--extreme" compression option

2013-01-28 Thread Adolfo Jayme Barrientos
Thank you for taking the time to report this bug and helping to make
Ubuntu better. But I don't think 0,9% is really worth the hassle.
Anyway, as Ubuntu no longer ships OpenOffice.org, the corresponding
status for this is "Won't Fix".

** Changed in: openoffice.org (Ubuntu)
   Status: New => Won't Fix

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

Title:
  deb archive should use "--extreme" compression option

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/openoffice.org/+bug/1027387/+subscriptions

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


[Bug 1043118] Re: Shows "Error while adding the file monitor."

2013-01-28 Thread Aaron Roydhouse
I am long-time user of Shutter. I use it on a laptop with 12.04 and
Shutter 0.89.1 with a local home directory. I am not using a network
folder. I test changing the Shutter snapshot folder to /tmp just in
case.

Recently I started seeing the "Error while adding the file monitor."
error while starting Shutter (once for each session image) or when
taking a snapshot.

When I start Shutter from the command line this is what I get:
-- 
WARNING: Net::DBus::GLib is missing --> Ubuntu One support will be disabled!

WARNING: Gtk2::AppIndicator is missing --> there will be no icon showing
up in the status bar when running Unity!

(shutter:2037): gnome-vfs-modules-WARNING **: Could not initialize inotify
-- 

Now command line message is displayed when you take a snapshot, you get
the "Error while adding the file monitor." in a pop-up dialogue. Has
some recent change in vfs or inotify has broken Shutter?

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

Title:
  Shows "Error while adding the file monitor."

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

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


[Bug 225389] Re: disk-1 instead of sda

2013-01-28 Thread Christopher L Weber
It is my understanding that auto mounters will use the volume label or
some other info instead of the /dev device name.

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

Title:
  disk-1 instead of sda

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

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


[Bug 1073433] Re: Ext4 corruption associated with shutdown of Ubuntu 12.10

2013-01-28 Thread Clint Byrum
I wonder if somehow dhclient is being added to omitpids.

If you edit /etc/init.d/sendsigs, and uncomment the '#report_unkillable'
on line 132,  then reproduce agian. Then look in /var/crash for apport
reports mentioning dhclient. If there are some, then its being added to
the list of pids the system is not allowed to kill, but whatever has
added it has not managed it properly.

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

Title:
  Ext4 corruption associated with shutdown of Ubuntu 12.10

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

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


[Bug 1021691] Re: soffice.bin crashed with SIGSEGV

2013-01-28 Thread Adolfo Jayme Barrientos
** Information type changed from Private to Public

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

Title:
  soffice.bin crashed with SIGSEGV

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/openoffice.org/+bug/1021691/+subscriptions

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


[Bug 1108371] Re: Wish: direct loading of play list files

2013-01-28 Thread Dustin Cotton
This is a feature request which should be indicated using a blueprint
(https://blueprints.launchpad.net/ubuntu).  This is not a bug.

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

Title:
  Wish: direct loading of play list files

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

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


[Bug 1108379] Re: Wish: keep the current pitch when locking the tempo

2013-01-28 Thread Dustin Cotton
This is a feature request which should be indicated using a blueprint
(https://blueprints.launchpad.net/ubuntu). This is not a bug.

** Changed in: mixxx (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/1108379

Title:
  Wish: keep the current pitch when locking the tempo

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

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


[Bug 763310] Re: compiz crashed with SIGSEGV in nux::WindowThread::IsInsideLayoutCycle(). I was disabling Unity Plugin from Compiz

2013-01-28 Thread Launchpad Bug Tracker
[Expired for compiz (Ubuntu) because there has been no activity for 60
days.]

** Changed in: compiz (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  compiz crashed with SIGSEGV in
  nux::WindowThread::IsInsideLayoutCycle(). I was disabling Unity Plugin
  from Compiz

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

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


[Bug 761280] Re: Software pop up windows should be closer to the top of the screen

2013-01-28 Thread Launchpad Bug Tracker
[Expired for Compiz because there has been no activity for 60 days.]

** Changed in: compiz
   Status: Incomplete => Expired

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

Title:
  Software pop up windows should be closer to the top of the screen

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

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


[Bug 750404] Re: screen does not adjust correctly when moving an external monitor from left to right orientation

2013-01-28 Thread Launchpad Bug Tracker
[Expired for Compiz because there has been no activity for 60 days.]

** Changed in: compiz
   Status: Incomplete => Expired

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

Title:
  screen does not adjust correctly when moving an external monitor from
  left to right orientation

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

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


[Bug 744647] Re: compiz crashed with SIGSEGV in g_closure_invalidate()

2013-01-28 Thread Launchpad Bug Tracker
[Expired for compiz (Ubuntu) because there has been no activity for 60
days.]

** Changed in: compiz (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  compiz crashed with SIGSEGV in g_closure_invalidate()

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

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


[Bug 1023166] Re: gm-notify stops updating

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

** Changed in: gm-notify (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/1023166

Title:
  gm-notify stops updating

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gm-notify/+bug/1023166/+subscriptions

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


[Bug 1105774] Re: hda-intel: spurious response and pulseaudio fails to start with no reason

2013-01-28 Thread JoseLuisTriana
"pulseaudio -vvv" output.

** Attachment added: "The chronicle of the announced death of pulseaudio"
   
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/1105774/+attachment/3505288/+files/pulseaudiodying.txt

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

Title:
  hda-intel: spurious response and pulseaudio fails to start with no
  reason

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

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


[Bug 1105774] Re: hda-intel: spurious response and pulseaudio fails to start with no reason

2013-01-28 Thread JoseLuisTriana
I managed to reproduce this bug again, it seems that I don't have the
chance to restart sessions (100% functional, with pulseuadio runnign)
the times I want, as before of course.

It happens to me random, I repeat I have sound through my sound card but
not pulseaudio.

I attach the output of "pulseaudio -", It seems that something in
udev is misbehaving, I don't have an idea of why, but that's the reason
that the pulseaudio daemon fails, and there is no way to bring it back
to life.

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

Title:
  hda-intel: spurious response and pulseaudio fails to start with no
  reason

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

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


[Bug 1108371] Re: Wish: direct loading of play list files

2013-01-28 Thread Dustin Cotton
** Changed in: mixxx (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/1108371

Title:
  Wish: direct loading of play list files

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

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


[Bug 739013] Re: gnome-keyboard-properties Add Layout cause the Choose a layout to show on right screen in full width

2013-01-28 Thread Launchpad Bug Tracker
[Expired for compiz (Ubuntu) because there has been no activity for 60
days.]

** Changed in: compiz (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  gnome-keyboard-properties Add Layout cause the Choose a layout to show
  on right screen in full width

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

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


[Bug 356664] Re: GNOME Remote Desktop

2013-01-28 Thread Launchpad Bug Tracker
[Expired for libvncserver (Ubuntu) because there has been no activity
for 60 days.]

** Changed in: libvncserver (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  GNOME Remote Desktop

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

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


[Bug 761865] Re: Screen freezes upon screensaver when playing video

2013-01-28 Thread Launchpad Bug Tracker
[Expired for compiz (Ubuntu) because there has been no activity for 60
days.]

** Changed in: compiz (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  Screen freezes upon screensaver when playing video

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

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


[Bug 212705] Re: hinfo uses deprecated Blars list

2013-01-28 Thread Launchpad Bug Tracker
[Expired for hinfo (Ubuntu) because there has been no activity for 60
days.]

** Changed in: hinfo (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  hinfo uses deprecated Blars list

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

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


[Bug 1108373] Re: Wish: permanent sync during auto-play

2013-01-28 Thread Dustin Cotton
This is a feature or support request, not a bug.

** Changed in: mixxx (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/1108373

Title:
  Wish: permanent sync during auto-play

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