[Bug 1080267] [NEW] package samba-common 2:3.6.3-2ubuntu2.3 failed to install/upgrade: subprocess installed post-installation script was killed by signal (Terminated)

2012-11-18 Thread jimallen
Public bug reported:

just upgraded unbuntu now getting this warning

ProblemType: Package
DistroRelease: Ubuntu 12.04
Package: samba-common 2:3.6.3-2ubuntu2.3
ProcVersionSignature: Ubuntu 3.2.0-34.53-generic 3.2.33
Uname: Linux 3.2.0-34-generic i686
ApportVersion: 2.0.1-0ubuntu15
Architecture: i386
Date: Sat Nov 17 22:10:42 2012
ErrorMessage: subprocess installed post-installation script was killed by 
signal (Terminated)
MarkForUpload: True
PackageArchitecture: all
RelatedPackageVersions:
 nautilus 1:3.4.2-0ubuntu5
 gvfs 1.12.1-0ubuntu1.1
SambaClientRegression: Yes
SourcePackage: samba
Title: package samba-common 2:3.6.3-2ubuntu2.3 failed to install/upgrade: 
subprocess installed post-installation script was killed by signal (Terminated)
UpgradeStatus: Upgraded to precise on 2012-11-17 (0 days ago)

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


** Tags: apport-package i386 precise

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

Title:
  package samba-common 2:3.6.3-2ubuntu2.3 failed to install/upgrade:
  subprocess installed post-installation script was killed by signal
  (Terminated)

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

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


[Bug 308952] Re: FireFTP(Mozilla) cannot LIST files

2012-11-18 Thread Bug Watch Updater
Launchpad has imported 13 comments from the remote bug at
https://bugzilla.mozilla.org/show_bug.cgi?id=478322.

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


On 2009-02-13T02:25:45+00:00 quendi wrote:

User-Agent:   Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.0.6) 
Gecko/2009020911 Ubuntu/8.04 (hardy) Firefox/3.0.6
Build Identifier: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.0.6) 
Gecko/2009020911 Ubuntu/8.04 (hardy) Firefox/3.0.6

during the past months various FTP servers have changed their behavior
how to shut down encrypted connections. this has been inspired by a
change in the filezilla ftp client implementation, see http://forum
.filezilla-project.org/viewtopic.php?f=2t=7688

vsftpd since version 2.0.7 also changed the way tls connections are closed. 
since then fireftp, a popular ftp addon for firefox, is awfully slow. this has 
been reported here: https://www.mozdev.org/bugs/show_bug.cgi?id=20043
since fireftp uses the mozilla framework for ssl bugzilla.mozilla.org is the 
right place to report the bug.

from what i've seen the problem is as follows:
# fireftp opens an encrypted connection
# command channel (e.g. authentication or noop) works fine
# when you do a directory listing or file transfer it opens a new data 
connection using passive ftp
# the server replies with the requested data on the new conncetion and sends a 
tls close notify
# fireftp simply acks this and waits for more data
# after 5 minutes the server times out and sends a fin/ack packet
# fireftp closes the connection using fin/ack and finally displays the 
directory / dowloads the file

this means you have to wait 5 minutes for each directory listing or file
transfer!

i'll attach an decrypted wireshark screenshot of the data connection

Reproducible: Always

Reply at:
https://bugs.launchpad.net/ubuntu/+source/vsftpd/+bug/308952/comments/6


On 2009-02-13T02:27:28+00:00 quendi wrote:

Created attachment 362167
wireshark screenshot of the data connection

Reply at:
https://bugs.launchpad.net/ubuntu/+source/vsftpd/+bug/308952/comments/7


On 2009-02-13T16:24:55+00:00 Bugzilla-tf wrote:

Does this happen without Fireftp ?
If not: what is Fireftp doing different from the Mozilla ftp implementation ?
Example FTP URL ?

Reply at:
https://bugs.launchpad.net/ubuntu/+source/vsftpd/+bug/308952/comments/8


On 2009-02-13T17:44:21+00:00 quendi wrote:

(In reply to comment #2)
 Does this happen without Fireftp ?

it can't happen without fireftp since firefox only offers a standard
(non ftps) client.

 If not: what is Fireftp doing different from the Mozilla ftp
implementation ?

don't know, this is what the fireftp maintainer says at 
https://www.mozdev.org/bugs/show_bug.cgi?id=20043
FireFTP just runs off of the Mozilla APIs as far as sockets and SSL and the
like is concerned.  This sounds like something that should be handled at that
level.

 Example FTP URL ?

you could try lnxnt.org, it runs vsftpd 2.0.7 and currently has tls for
anonymous users enabled.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/vsftpd/+bug/308952/comments/9


On 2009-02-13T17:54:22+00:00 Bugzilla-tf wrote:

We don't accept extension bugs in bugzilla unless the developer of that
addon explains what he is doing. Only with this information a Gecko
developer can deceide if the bug is valid. You can't expect that our
developers waste their time with digging through every addon that gets
reported here and 90% of such issues are bugs in the addon itself.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/vsftpd/+bug/308952/comments/10


On 2009-02-13T21:10:41+00:00 Mimecuvalo wrote:

Matthias,
I'm the developer of FireFTP.  Sorry for not weighing in earlier.

The code in question is here:
http://www.mozdev.org/source/browse/fireftp/src/content/js/connection/dataSocket.js?rev=1.52

Basically, all FireFTP does is, when it comes to SSL sockets:
this.dataTransport = this.transportService.createTransport([ssl], 1, 
this.host, this.port, proxyInfo);

There isn't anything that the extension does beyond that in messing
around with the socket.  It seems that something underlying in Mozilla's
socket code is conflicting with vsftpd patched code.

Is vsftpd at fault or is Mozilla code at fault?  I'm not sure - I think
a networking engineer at Mozilla might need to take a look.

FWIW, my guess is this bug should be filed under Core-Networking.

Reply at:

[Bug 939300] Re: Update Apache to 2.4

2012-11-18 Thread dfrg.msc
No 2.4 with 12.10, and how about 13.04?

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

Title:
  Update Apache to 2.4

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

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


[Bug 1078922] Re: Fan runs unnecessary

2012-11-18 Thread T J Schemkes
What a pity.
I was hoping to find a solution for the remarkable difference in the behavior 
of the fan in Ubuntu 12.04 LTS and Ubuntu 12.10.
Occasionally quietly running in 12.04 LTS and almost fully running in 12.10.
The BIOS has no setting for temperature or fan.
Maybe newer Intel microcode can help me.

** Changed in: lm-sensors (Ubuntu)
   Status: Invalid = Confirmed

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

Title:
  Fan runs unnecessary

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lm-sensors/+bug/1078922/+subscriptions

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


[Bug 1080363] [NEW] module 'citrixxml' not found

2012-11-18 Thread TJ
Public bug reported:

The following two commands run at the command-line (the latter generated
by zenmap's Intense Scan option) cause a failure due to missing script
and library support. Apt suggests the scripts aren't in the Ubuntu
archives.

Details of the missing script are at
http://nmap.org/nsedoc/lib/citrixxml.html

$ apt-file search citrix | grep nselib
$

$ sudo nmap -T4 -A -v --script all 192.168.0.20
$ sudo nmap -sS -sU -T4 -A -v -PE -PP -PS21,22,23,25,80,113,31339 
-PA80,113,443,10042 -PO --script all 192.168.0.20

Starting Nmap 5.21 ( http://nmap.org ) at 2012-11-18 14:30 GMT
NSE: failed to initialize the script engine:
/usr/share/nmap/nse_main.lua:276: 
/usr/share/nmap/scripts/citrix-brute-xml.nse:35: module 'citrixxml' not found:
no field package.preload['citrixxml']
no file '/usr/share/nmap/nselib/citrixxml.lua'
no file './citrixxml.lua'
no file '/usr/local/share/lua/5.1/citrixxml.lua'
no file '/usr/local/share/lua/5.1/citrixxml/init.lua'
no file '/usr/local/lib/lua/5.1/citrixxml.lua'
no file '/usr/local/lib/lua/5.1/citrixxml/init.lua'
no file '/usr/share/lua/5.1/citrixxml.lua'
no file '/usr/share/lua/5.1/citrixxml/init.lua'
no file './citrixxml.so'
no file '/usr/local/lib/lua/5.1/citrixxml.so'
no file '/usr/lib/x86_64-linux-gnu/lua/5.1/citrixxml.so'
no file '/usr/lib/lua/5.1/citrixxml.so'
no file '/usr/local/lib/lua/5.1/loadall.so'
stack traceback:
[C]: in function 'assert'
/usr/share/nmap/nse_main.lua:276: in function 'new'
/usr/share/nmap/nse_main.lua:434: in function 'Entry'
/usr/share/nmap/scripts/script.db:5: in function 'db_closure'
/usr/share/nmap/nse_main.lua:454: in function 'get_chosen_scripts'
/usr/share/nmap/nse_main.lua:766: in main chunk
[C]: ?

QUITTING!


Installing the script directly doesn't completely solve the issue:

$ sudo wget -O /usr/share/nmap/nselib/citrixxml.lua
http://nmap.org/svn/nselib/citrixxml.lua

$ sudo nmap -T4 -A -v --script all 192.168.0.20

Starting Nmap 5.21 ( http://nmap.org ) at 2012-11-18 14:40 GMT
NSE: failed to initialize the script engine:
/usr/share/nmap/nse_main.lua:276: /usr/share/nmap/nselib/citrixxml.lua:25: 
attempt to call field 'module' (a nil value)
stack traceback:
[C]: in function 'assert'
/usr/share/nmap/nse_main.lua:276: in function 'new'
/usr/share/nmap/nse_main.lua:434: in function 'Entry'
/usr/share/nmap/scripts/script.db:5: in function 'db_closure'
/usr/share/nmap/nse_main.lua:454: in function 'get_chosen_scripts'
/usr/share/nmap/nse_main.lua:766: in main chunk
[C]: ?

QUITTING!

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

** Patch added: Fix for citrixxml.lua
   
https://bugs.launchpad.net/bugs/1080363/+attachment/3437624/+files/citrixxml.lua.diff

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

Title:
  module 'citrixxml' not found

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

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


[Bug 1080363] Re: module 'citrixxml' not found

2012-11-18 Thread TJ
** Description changed:

  The following two commands run at the command-line (the latter generated
  by zenmap's Intense Scan option) cause a failure due to missing script
  and library support. Apt suggests the scripts aren't in the Ubuntu
  archives.
  
  Details of the missing script are at
  http://nmap.org/nsedoc/lib/citrixxml.html
+ 
+ The original script plus my attached patch are required to solve the
+ issue.
  
  $ apt-file search citrix | grep nselib
  $
  
  $ sudo nmap -T4 -A -v --script all 192.168.0.20
  $ sudo nmap -sS -sU -T4 -A -v -PE -PP -PS21,22,23,25,80,113,31339 
-PA80,113,443,10042 -PO --script all 192.168.0.20
  
  Starting Nmap 5.21 ( http://nmap.org ) at 2012-11-18 14:30 GMT
  NSE: failed to initialize the script engine:
  /usr/share/nmap/nse_main.lua:276: 
/usr/share/nmap/scripts/citrix-brute-xml.nse:35: module 'citrixxml' not found:
-   no field package.preload['citrixxml']
-   no file '/usr/share/nmap/nselib/citrixxml.lua'
-   no file './citrixxml.lua'
-   no file '/usr/local/share/lua/5.1/citrixxml.lua'
-   no file '/usr/local/share/lua/5.1/citrixxml/init.lua'
-   no file '/usr/local/lib/lua/5.1/citrixxml.lua'
-   no file '/usr/local/lib/lua/5.1/citrixxml/init.lua'
-   no file '/usr/share/lua/5.1/citrixxml.lua'
-   no file '/usr/share/lua/5.1/citrixxml/init.lua'
-   no file './citrixxml.so'
-   no file '/usr/local/lib/lua/5.1/citrixxml.so'
-   no file '/usr/lib/x86_64-linux-gnu/lua/5.1/citrixxml.so'
-   no file '/usr/lib/lua/5.1/citrixxml.so'
-   no file '/usr/local/lib/lua/5.1/loadall.so'
+  no field package.preload['citrixxml']
+  no file '/usr/share/nmap/nselib/citrixxml.lua'
+  no file './citrixxml.lua'
+  no file '/usr/local/share/lua/5.1/citrixxml.lua'
+  no file '/usr/local/share/lua/5.1/citrixxml/init.lua'
+  no file '/usr/local/lib/lua/5.1/citrixxml.lua'
+  no file '/usr/local/lib/lua/5.1/citrixxml/init.lua'
+  no file '/usr/share/lua/5.1/citrixxml.lua'
+  no file '/usr/share/lua/5.1/citrixxml/init.lua'
+  no file './citrixxml.so'
+  no file '/usr/local/lib/lua/5.1/citrixxml.so'
+  no file '/usr/lib/x86_64-linux-gnu/lua/5.1/citrixxml.so'
+  no file '/usr/lib/lua/5.1/citrixxml.so'
+  no file '/usr/local/lib/lua/5.1/loadall.so'
  stack traceback:
-   [C]: in function 'assert'
-   /usr/share/nmap/nse_main.lua:276: in function 'new'
-   /usr/share/nmap/nse_main.lua:434: in function 'Entry'
-   /usr/share/nmap/scripts/script.db:5: in function 'db_closure'
-   /usr/share/nmap/nse_main.lua:454: in function 'get_chosen_scripts'
-   /usr/share/nmap/nse_main.lua:766: in main chunk
-   [C]: ?
+  [C]: in function 'assert'
+  /usr/share/nmap/nse_main.lua:276: in function 'new'
+  /usr/share/nmap/nse_main.lua:434: in function 'Entry'
+  /usr/share/nmap/scripts/script.db:5: in function 'db_closure'
+  /usr/share/nmap/nse_main.lua:454: in function 'get_chosen_scripts'
+  /usr/share/nmap/nse_main.lua:766: in main chunk
+  [C]: ?
  
  QUITTING!
- 
  
  Installing the script directly doesn't completely solve the issue:
  
  $ sudo wget -O /usr/share/nmap/nselib/citrixxml.lua
  http://nmap.org/svn/nselib/citrixxml.lua
  
  $ sudo nmap -T4 -A -v --script all 192.168.0.20
  
  Starting Nmap 5.21 ( http://nmap.org ) at 2012-11-18 14:40 GMT
  NSE: failed to initialize the script engine:
  /usr/share/nmap/nse_main.lua:276: /usr/share/nmap/nselib/citrixxml.lua:25: 
attempt to call field 'module' (a nil value)
  stack traceback:
-   [C]: in function 'assert'
-   /usr/share/nmap/nse_main.lua:276: in function 'new'
-   /usr/share/nmap/nse_main.lua:434: in function 'Entry'
-   /usr/share/nmap/scripts/script.db:5: in function 'db_closure'
-   /usr/share/nmap/nse_main.lua:454: in function 'get_chosen_scripts'
-   /usr/share/nmap/nse_main.lua:766: in main chunk
-   [C]: ?
+  [C]: in function 'assert'
+  /usr/share/nmap/nse_main.lua:276: in function 'new'
+  /usr/share/nmap/nse_main.lua:434: in function 'Entry'
+  /usr/share/nmap/scripts/script.db:5: in function 'db_closure'
+  /usr/share/nmap/nse_main.lua:454: in function 'get_chosen_scripts'
+  /usr/share/nmap/nse_main.lua:766: in main chunk
+  [C]: ?
  
  QUITTING!
+ 
+ Applying the attached patch to the manually downloaded script allows
+ nmap to run.

** Description changed:

  The following two commands run at the command-line (the latter generated
- by zenmap's Intense Scan option) cause a failure due to missing script
- and library support. Apt suggests the scripts aren't in the Ubuntu
- archives.
+ by zenmap's Slow comprehensive scan option) cause a failure due to
+ missing script and library support. Apt suggests the scripts aren't in
+ the Ubuntu archives.
  
  Details of the missing script are at
  http://nmap.org/nsedoc/lib/citrixxml.html
  
  The original script plus my attached patch are required to solve the
  issue.
  
  $ apt-file search citrix | grep nselib
  $
  
  $ sudo nmap -T4 -A -v --script all 192.168.0.20
  $ 

[Bug 1078922] Re: Fan runs unnecessary

2012-11-18 Thread Phillip Susi
Please stop changing the status.


** Changed in: lm-sensors (Ubuntu)
   Status: Confirmed = Invalid

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

Title:
  Fan runs unnecessary

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lm-sensors/+bug/1078922/+subscriptions

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


[Bug 1080369] [NEW] FreeDOS fails to boot in Qemu/kvm

2012-11-18 Thread Dave Gilbert
Public bug reported:

To repeat:
  * Grab freedos ISO from from http://www.freedos.org/download/
  * Add it as a CD to your KVM guest
  * Boot and go through the defaults (I'm using a small - ~90MB - IDE hard 
drive raw image as the 1st IDE disk)
  * Go through all the defaults
  * Install FreeDOS to MBR (option 1 at the last question in the install - I 
also tried syslinux - it didn't help)

Watch it fail to reboot off the hard disk.

It hangs for me at 'Booting from Hard disk...'

(I also tried chainloading it off a Grub iso - didn't work, and I'm
seeing the same symptom with OpenDOS).

Dave

ProblemType: Bug
DistroRelease: Ubuntu 12.10
Package: qemu-kvm 1.2.0+noroms-0ubuntu2
ProcVersionSignature: Ubuntu 3.5.0-18.29-generic 3.5.7
Uname: Linux 3.5.0-18-generic x86_64
ApportVersion: 2.6.1-0ubuntu6
Architecture: amd64
Date: Sun Nov 18 14:57:48 2012
InstallationDate: Installed on 2012-07-17 (123 days ago)
InstallationMedia: Kubuntu 12.10 Quantal Quetzal - Alpha amd64 (20120717)
KvmCmdLine: Error: command ['ps', '-C', 'kvm', '-F'] failed with exit code 1: 
UIDPID  PPID  CSZ   RSS PSR STIME TTY  TIME CMD
MachineType: To Be Filled By O.E.M. To Be Filled By O.E.M.
MarkForUpload: True
ProcEnviron:
 LANGUAGE=en_GB:en
 TERM=xterm
 PATH=(custom, no user)
 LANG=en_GB.UTF-8
 SHELL=/bin/bash
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.5.0-18-generic 
root=UUID=711860b7-f028-46b1-83bb-c2be5dc8044d ro nointremap quiet splash 
vt.handoff=7
SourcePackage: qemu-kvm
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 09/10/2009
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: P1.50
dmi.board.name: P55M Pro
dmi.board.vendor: ASRock
dmi.chassis.asset.tag: To Be Filled By O.E.M.
dmi.chassis.type: 3
dmi.chassis.vendor: To Be Filled By O.E.M.
dmi.chassis.version: To Be Filled By O.E.M.
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrP1.50:bd09/10/2009:svnToBeFilledByO.E.M.:pnToBeFilledByO.E.M.:pvrToBeFilledByO.E.M.:rvnASRock:rnP55MPro:rvr:cvnToBeFilledByO.E.M.:ct3:cvrToBeFilledByO.E.M.:
dmi.product.name: To Be Filled By O.E.M.
dmi.product.version: To Be Filled By O.E.M.
dmi.sys.vendor: To Be Filled By O.E.M.

** Affects: qemu-kvm (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug quantal

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

Title:
  FreeDOS fails to boot in Qemu/kvm

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/qemu-kvm/+bug/1080369/+subscriptions

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


[Bug 1080369] Re: FreeDOS fails to boot in Qemu/kvm

2012-11-18 Thread Dave Gilbert
** Attachment added: libvirt config for the vm
   
https://bugs.launchpad.net/ubuntu/+source/qemu-kvm/+bug/1080369/+attachment/3437655/+files/DOS.xml

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

Title:
  FreeDOS fails to boot in Qemu/kvm

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/qemu-kvm/+bug/1080369/+subscriptions

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


[Bug 1080363] Re: module 'citrixxml' not found

2012-11-18 Thread Ubuntu Foundations Team Bug Bot
The attachment Fix for citrixxml.lua of this bug report has been
identified as being a patch.  The ubuntu-reviewers team has been
subscribed to the bug report so that they can review the patch.  In the
event that this is in fact not a patch you can resolve this situation by
removing the tag 'patch' from the bug report and editing the attachment
so that it is not flagged as a patch.  Additionally, if you are member
of the ubuntu-reviewers team please also unsubscribe the team from this
bug report.

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

** Tags added: patch

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

Title:
  module 'citrixxml' not found

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

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


[Bug 1080363] Re: module 'citrixxml' not found

2012-11-18 Thread Logan Rosen
Thank you for taking the time to report this bug and helping to make
Ubuntu better. However, I am closing it because the bug has been fixed
in the latest development version of Ubuntu - Raring Ringtail.

This is a significant bug in Ubuntu. If you need a fix for the bug in
previous versions of Ubuntu, please do steps 1 and 2 of the SRU
Procedure [1] to bring the need to a developer's attention.

[1]: https://wiki.ubuntu.com/StableReleaseUpdates#Procedure

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

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

Title:
  module 'citrixxml' not found

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

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


[Bug 996162] Re: Please update Asterisk from Debian Sid

2012-11-18 Thread Logan Rosen
asterisk 1:1.8.13.1~dfsg-1ubuntu2 is available in both Quantal and
Raring.

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

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

Title:
  Please update Asterisk from Debian Sid

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

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


[Bug 972829] Re: maas-server setting requires port even when using http default

2012-11-18 Thread Julian Edwards
Can someone please SRU this fix to precise?  It is causing a lot of
problems for people.

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

Title:
  maas-server setting requires port even when using http default

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

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


[Bug 1080262] [NEW] package libcdaudio1 0.99.12p2-12 failed to install/upgrade: package libcdaudio1 is already installed and configured

2012-11-18 Thread Marnel J. Rodriguez
Public bug reported:

it suddenly crashed

ProblemType: Package
DistroRelease: Ubuntu 12.10
Package: libcdaudio1 0.99.12p2-12
ProcVersionSignature: Ubuntu 3.5.0-18.29-generic 3.5.7
Uname: Linux 3.5.0-18-generic x86_64
ApportVersion: 2.6.1-0ubuntu6
Architecture: amd64
Date: Sun Nov 18 15:48:07 2012
ErrorMessage: package libcdaudio1 is already installed and configured
MarkForUpload: True
SourcePackage: libcdaudio
Title: package libcdaudio1 0.99.12p2-12 failed to install/upgrade: package 
libcdaudio1 is already installed and configured
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-package quantal

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

Title:
  package libcdaudio1 0.99.12p2-12 failed to install/upgrade: package
  libcdaudio1 is already installed and configured

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

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


[Bug 1052323] Re: [regression][lucid] system frequently reboots after update in august 2012, path via rtkit and AptDaemon

2012-11-18 Thread jan
** Changed in: aptdaemon (Ubuntu)
   Status: Invalid = New

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

Title:
  [regression][lucid] system frequently reboots after update in august
  2012, path via rtkit and AptDaemon

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

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


[Bug 1080264] [NEW] Cheese is not working correctly

2012-11-18 Thread Devin Thomas
Public bug reported:

when i get on to cheese only a black screen and cant click on any tabs
in cheese

ProblemType: Bug
DistroRelease: Ubuntu 12.04
Package: cheese 3.4.1-0ubuntu2.1
ProcVersionSignature: Ubuntu 3.2.0-33.52-generic-pae 3.2.31
Uname: Linux 3.2.0-33-generic-pae i686
NonfreeKernelModules: fglrx
ApportVersion: 2.0.1-0ubuntu15
Architecture: i386
Date: Sun Nov 18 03:11:51 2012
InstallationMedia: Ubuntu 12.04.1 LTS Precise Pangolin - Release i386 
(20120817.3)
MachineType: Dell Inc. Inspiron M5010
MarkForUpload: True
ProcEnviron:
 TERM=xterm
 PATH=(custom, no user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
RelatedPackageVersions:
 cheese3.4.1-0ubuntu2.1
 cheese-common 3.4.1-0ubuntu2.1
SourcePackage: linux
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 07/27/2010
dmi.bios.vendor: Dell Inc.
dmi.bios.version: A06
dmi.board.name: Inspiron M5010
dmi.board.vendor: Dell Inc.
dmi.board.version: A06
dmi.chassis.type: 8
dmi.chassis.vendor: Dell Inc.
dmi.chassis.version: A06
dmi.modalias: 
dmi:bvnDellInc.:bvrA06:bd07/27/2010:svnDellInc.:pnInspironM5010:pvrA06:rvnDellInc.:rnInspironM5010:rvrA06:cvnDellInc.:ct8:cvrA06:
dmi.product.name: Inspiron M5010
dmi.product.version: A06
dmi.sys.vendor: Dell Inc.

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


** Tags: apport-bug gstreamer-error i386 precise 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/1080264

Title:
  Cheese is not working correctly

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

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


[Bug 1080267] [NEW] package samba-common 2:3.6.3-2ubuntu2.3 failed to install/upgrade: subprocess installed post-installation script was killed by signal (Terminated)

2012-11-18 Thread jimallen
Public bug reported:

just upgraded unbuntu now getting this warning

ProblemType: Package
DistroRelease: Ubuntu 12.04
Package: samba-common 2:3.6.3-2ubuntu2.3
ProcVersionSignature: Ubuntu 3.2.0-34.53-generic 3.2.33
Uname: Linux 3.2.0-34-generic i686
ApportVersion: 2.0.1-0ubuntu15
Architecture: i386
Date: Sat Nov 17 22:10:42 2012
ErrorMessage: subprocess installed post-installation script was killed by 
signal (Terminated)
MarkForUpload: True
PackageArchitecture: all
RelatedPackageVersions:
 nautilus 1:3.4.2-0ubuntu5
 gvfs 1.12.1-0ubuntu1.1
SambaClientRegression: Yes
SourcePackage: samba
Title: package samba-common 2:3.6.3-2ubuntu2.3 failed to install/upgrade: 
subprocess installed post-installation script was killed by signal (Terminated)
UpgradeStatus: Upgraded to precise on 2012-11-17 (0 days ago)

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


** Tags: apport-package i386 precise

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

Title:
  package samba-common 2:3.6.3-2ubuntu2.3 failed to install/upgrade:
  subprocess installed post-installation script was killed by signal
  (Terminated)

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

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


[Bug 1080260]

2012-11-18 Thread Ubuntu Foundations Team Bug Bot
Thank you for taking the time to report this bug and helping to make
Ubuntu better.  It seems that your bug report is not filed about a
specific source package though, rather it is just filed against Ubuntu
in general.  It is important that bug reports be filed about source
packages so that people interested in the package can find the bugs
about it.  You can find some hints about determining what package your
bug might be about at https://wiki.ubuntu.com/Bugs/FindRightPackage.
You might also ask for help in the #ubuntu-bugs irc channel on Freenode.

To change the source package that this bug is filed about visit
https://bugs.launchpad.net/ubuntu/+bug/1080260/+editstatus and add the
package name in the text box next to the word Package.

[This is an automated message.  I apologize if it reached you
inappropriately; please just reply to this message indicating so.]

** Tags added: bot-comment

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

Title:
  cannot even change shortcut key

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

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


[Bug 1052323] Re: [regression][lucid] system frequently reboots after update in august 2012, path via rtkit and AptDaemon

2012-11-18 Thread jan
If the problem was only in the log, I wouldn't have filed a bug.

As a result, the Dell system actually reboots, and the calculations (running in 
batch, needing 3 days) on the system are thus invalid.
Manual intervention (re-starting the calculation) is needed almost daily, 
rendering the computer useless.
The workaround is now to boot with kernel option noacpi or acpi=ht.

This is only at my Dell system. Another computer keeps running fine,
even with the new rtkit messages in the logging.

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

Title:
  [regression][lucid] system frequently reboots after update in august
  2012, path via rtkit and AptDaemon

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

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


[Bug 1080270] [NEW] Since last update and restart, graphics are out

2012-11-18 Thread ken brockman
Public bug reported:

The last time i had update Ubuntu 12.04, I had to restart the computer
to finish the installation. When i rebooted my graphics were out. The
screen was totally dark except for a few pixels are the top of the
display, Maybe 5 pixels at the top and the entire length of the screen.
If i moved my cursor to the top of the screen i could see a small bit of
it.

The only way to get on is by choosing an older install from the boot
screen.

ATI Radeon 2 gig HD6450 graphics
Biostar A880GZ MB 8 gig ram
BIOS vendor: American Megatrends Inc. version: 4.6.4
CPU  AMD Athlon(tm) II X4 645 Processor
Kernel Linux 3.2.0-32-generic-pae is the one i am running from now

I have have issues with graphics on and off since upgrading from  ubunut
11.04


Ubuntu 12.04.1 LTS
Release:12.04

** Affects: cairo-dock (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/1080270

Title:
  Since last update and restart, graphics are out

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cairo-dock/+bug/1080270/+subscriptions

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


[Bug 1080264] Missing required logs.

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

apport-collect 1080264

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

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

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

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

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

Title:
  Cheese is not working correctly

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

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


[Bug 1072135] Re: Cancelling a file transfer should delete the incomplete file on the destination path

2012-11-18 Thread sampo555
** Bug watch added: GNOME Bug Tracker #403652
   https://bugzilla.gnome.org/show_bug.cgi?id=403652

** Changed in: nautilus
   Importance: Undecided = Unknown

** Changed in: nautilus
   Status: New = Unknown

** Changed in: nautilus
 Remote watch: None = GNOME Bug Tracker #403652

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

Title:
  Cancelling a file transfer should delete the incomplete file on the
  destination path

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

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


[Bug 308952] Re: FireFTP(Mozilla) cannot LIST files

2012-11-18 Thread Bug Watch Updater
Launchpad has imported 13 comments from the remote bug at
https://bugzilla.mozilla.org/show_bug.cgi?id=478322.

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


On 2009-02-13T02:25:45+00:00 quendi wrote:

User-Agent:   Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.0.6) 
Gecko/2009020911 Ubuntu/8.04 (hardy) Firefox/3.0.6
Build Identifier: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.0.6) 
Gecko/2009020911 Ubuntu/8.04 (hardy) Firefox/3.0.6

during the past months various FTP servers have changed their behavior
how to shut down encrypted connections. this has been inspired by a
change in the filezilla ftp client implementation, see http://forum
.filezilla-project.org/viewtopic.php?f=2t=7688

vsftpd since version 2.0.7 also changed the way tls connections are closed. 
since then fireftp, a popular ftp addon for firefox, is awfully slow. this has 
been reported here: https://www.mozdev.org/bugs/show_bug.cgi?id=20043
since fireftp uses the mozilla framework for ssl bugzilla.mozilla.org is the 
right place to report the bug.

from what i've seen the problem is as follows:
# fireftp opens an encrypted connection
# command channel (e.g. authentication or noop) works fine
# when you do a directory listing or file transfer it opens a new data 
connection using passive ftp
# the server replies with the requested data on the new conncetion and sends a 
tls close notify
# fireftp simply acks this and waits for more data
# after 5 minutes the server times out and sends a fin/ack packet
# fireftp closes the connection using fin/ack and finally displays the 
directory / dowloads the file

this means you have to wait 5 minutes for each directory listing or file
transfer!

i'll attach an decrypted wireshark screenshot of the data connection

Reproducible: Always

Reply at:
https://bugs.launchpad.net/ubuntu/+source/vsftpd/+bug/308952/comments/6


On 2009-02-13T02:27:28+00:00 quendi wrote:

Created attachment 362167
wireshark screenshot of the data connection

Reply at:
https://bugs.launchpad.net/ubuntu/+source/vsftpd/+bug/308952/comments/7


On 2009-02-13T16:24:55+00:00 Bugzilla-tf wrote:

Does this happen without Fireftp ?
If not: what is Fireftp doing different from the Mozilla ftp implementation ?
Example FTP URL ?

Reply at:
https://bugs.launchpad.net/ubuntu/+source/vsftpd/+bug/308952/comments/8


On 2009-02-13T17:44:21+00:00 quendi wrote:

(In reply to comment #2)
 Does this happen without Fireftp ?

it can't happen without fireftp since firefox only offers a standard
(non ftps) client.

 If not: what is Fireftp doing different from the Mozilla ftp
implementation ?

don't know, this is what the fireftp maintainer says at 
https://www.mozdev.org/bugs/show_bug.cgi?id=20043
FireFTP just runs off of the Mozilla APIs as far as sockets and SSL and the
like is concerned.  This sounds like something that should be handled at that
level.

 Example FTP URL ?

you could try lnxnt.org, it runs vsftpd 2.0.7 and currently has tls for
anonymous users enabled.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/vsftpd/+bug/308952/comments/9


On 2009-02-13T17:54:22+00:00 Bugzilla-tf wrote:

We don't accept extension bugs in bugzilla unless the developer of that
addon explains what he is doing. Only with this information a Gecko
developer can deceide if the bug is valid. You can't expect that our
developers waste their time with digging through every addon that gets
reported here and 90% of such issues are bugs in the addon itself.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/vsftpd/+bug/308952/comments/10


On 2009-02-13T21:10:41+00:00 Mimecuvalo wrote:

Matthias,
I'm the developer of FireFTP.  Sorry for not weighing in earlier.

The code in question is here:
http://www.mozdev.org/source/browse/fireftp/src/content/js/connection/dataSocket.js?rev=1.52

Basically, all FireFTP does is, when it comes to SSL sockets:
this.dataTransport = this.transportService.createTransport([ssl], 1, 
this.host, this.port, proxyInfo);

There isn't anything that the extension does beyond that in messing
around with the socket.  It seems that something underlying in Mozilla's
socket code is conflicting with vsftpd patched code.

Is vsftpd at fault or is Mozilla code at fault?  I'm not sure - I think
a networking engineer at Mozilla might need to take a look.

FWIW, my guess is this bug should be filed under Core-Networking.

Reply at:

[Bug 1080271] [NEW] AssertionError: [(('README', ) reg), (('README', ) reg), (('README', ) reg)]

2012-11-18 Thread typo
Public bug reported:

Mit unbekanntem Fehler fehlgeschlagen.

Error messages:

Traceback (most recent call last):
  File /usr/bin/duplicity, line 1404, in module
with_tempdir(main)
  File /usr/bin/duplicity, line 1397, in with_tempdir
fn()
  File /usr/bin/duplicity, line 1331, in main
restore(col_stats)
  File /usr/bin/duplicity, line 624, in restore
restore_get_patched_rop_iter(col_stats)):
  File /usr/lib/python2.7/dist-packages/duplicity/patchdir.py, line 522, in 
Write_ROPaths
for ropath in rop_iter:
  File /usr/lib/python2.7/dist-packages/duplicity/patchdir.py, line 495, in 
integrate_patch_iters
final_ropath = patch_seq2ropath( normalize_ps( patch_seq ) )
  File /usr/lib/python2.7/dist-packages/duplicity/patchdir.py, line 462, in 
patch_seq2ropath
assert first.difftype != diff, patch_seq
AssertionError: [(('README',) reg), (('README',) reg), (('README',) reg)]

ProblemType: Bug
DistroRelease: Ubuntu 12.10
Package: deja-dup 24.0-0ubuntu1
ProcVersionSignature: Ubuntu 3.5.0-18.29-generic 3.5.7
Uname: Linux 3.5.0-18-generic x86_64
NonfreeKernelModules: nvidia
ApportVersion: 2.6.1-0ubuntu6
Architecture: amd64
Date: Sun Nov 18 09:33:31 2012
EcryptfsInUse: Yes
MarkForUpload: True
SourcePackage: deja-dup
UpgradeStatus: Upgraded to quantal on 2012-11-04 (13 days ago)

** Affects: deja-dup (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug quantal

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

Title:
  AssertionError: [(('README',) reg), (('README',) reg), (('README',)
  reg)]

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/deja-dup/+bug/1080271/+subscriptions

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


[Bug 1080272] [NEW] ubuntu login not working. ubuntu 2d logs in fine

2012-11-18 Thread Devin Thomas
Public bug reported:

When i try to login using regular ubuntu the screen freezes when it gets
to the desktop. I have been using Ubuntu 2D to login.

ProblemType: Bug
DistroRelease: Ubuntu 12.04
Package: login 1:4.1.4.2+svn3283-3ubuntu5.1
ProcVersionSignature: Ubuntu 3.2.0-33.52-generic-pae 3.2.31
Uname: Linux 3.2.0-33-generic-pae i686
NonfreeKernelModules: fglrx
ApportVersion: 2.0.1-0ubuntu15
Architecture: i386
Date: Sun Nov 18 03:34:34 2012
InstallationMedia: Ubuntu 12.04.1 LTS Precise Pangolin - Release i386 
(20120817.3)
MarkForUpload: True
ProcEnviron:
 TERM=xterm
 PATH=(custom, no user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: shadow
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: apport-bug i386 precise 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/1080272

Title:
  ubuntu login not working. ubuntu 2d logs in fine

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

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


[Bug 1052323] Re: [regression][lucid] system frequently reboots after update in august 2012, path via rtkit and AptDaemon

2012-11-18 Thread Sebastian Heinlein
I don't see why the reboot should be tiggered by aptdaemon.  You seem to
be confused by the aptdaemon log message which includes the words
shutting down. But this only refers to aptdaemon itself and not the
system. That is why renamed the log messages.

** Changed in: aptdaemon (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/1052323

Title:
  [regression][lucid] system frequently reboots after update in august
  2012, path via rtkit and AptDaemon

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

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


[Bug 1052323] Re: [regression][lucid] system frequently reboots after update in august 2012, path via rtkit and AptDaemon

2012-11-18 Thread Sebastian Heinlein
Ah sorry. Now I am confused: I mixed this bug report with another one.
You are already getting the new qutting log message. Why should
aptdaemon cause the reboot?

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

Title:
  [regression][lucid] system frequently reboots after update in august
  2012, path via rtkit and AptDaemon

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

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


[Bug 1080274] [NEW] [needs-packaging] python-qatracker

2012-11-18 Thread Howard Chan
Public bug reported:

python-qatracker is the API for the Ubuntu QA Trackers.

Code URL: 
https://code.launchpad.net/~ubuntu-qa-website-devel/ubuntu-qa-website/python-qatracker
URL: http://iso.qa.ubuntu.com/qatracker/api
License: GNU Lesser Public License ver. 2.1 or later
Notes: Developed by Ubuntu QA Website Team

** Affects: ubuntu
 Importance: Undecided
 Status: New


** Tags: needs-packaging

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

Title:
  [needs-packaging] python-qatracker

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

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


[Bug 835833] Re: spurious syslog error message because of use of -w on boot [rpcbind.xdr / portmap.xdr : errno 2 (no such file)]

2012-11-18 Thread dino99
Latest feedback while using RR i386:

at boot time, if fsck is forced to check a partition, then the
rpcbind.xdr / portmap.xdr error appear, otherwise that error is not
shown. Looks like a conflict or race situation.

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

Title:
  spurious syslog error message because of use of -w on boot
  [rpcbind.xdr / portmap.xdr : errno 2 (no such file)]

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

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


[Bug 1080276] [NEW] Dash invoked by Super Key twice as slow to show

2012-11-18 Thread Bucic
Public bug reported:

Dash invoked by Super Key twice as slow to show up compared to when invoked by 
clicking on the Ubuntu logo. I observed this behavior both in Ubuntu 12.04 x64 
and 12.10 x64 with every single Ubuntu vs hardware/driver combination:
Intel HD 4500
AMD mobility radeon 3650 with open source driver
AMD mobility radeon 3650 with Catalyst 12.6 (installed from various sources - 
didn't impact the behavior)

So at least 6 in total. I've athered quite a few command line off-line
report files for the combinations.

Also it's not only me. See http://askubuntu.com/questions/138622/how-to-
disable-all-unity-animations/169634#169634 , Point 3.

ProblemType: Bug
DistroRelease: Ubuntu 12.10
Package: unity 6.10.0-0ubuntu2
ProcVersionSignature: Ubuntu 3.5.0-18.29-generic 3.5.7
Uname: Linux 3.5.0-18-generic x86_64
NonfreeKernelModules: fglrx
ApportVersion: 2.6.1-0ubuntu6
Architecture: amd64
CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
Date: Sun Nov 18 09:27:21 2012
InstallationDate: Installed on 2012-11-12 (5 days ago)
InstallationMedia: Ubuntu 12.10 Quantal Quetzal - Release amd64 (20121017.5)
MarkForUpload: True
ProcEnviron:
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=set
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: unity
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug quantal 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/1080276

Title:
  Dash invoked by Super Key twice as slow to show

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

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


[Bug 1080264] Re: Cheese is not working correctly

2012-11-18 Thread Devin Thomas
apport information

** Tags added: apport-collected

** Description changed:

  when i get on to cheese only a black screen and cant click on any tabs
  in cheese
  
  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: cheese 3.4.1-0ubuntu2.1
  ProcVersionSignature: Ubuntu 3.2.0-33.52-generic-pae 3.2.31
  Uname: Linux 3.2.0-33-generic-pae i686
  NonfreeKernelModules: fglrx
  ApportVersion: 2.0.1-0ubuntu15
  Architecture: i386
  Date: Sun Nov 18 03:11:51 2012
  InstallationMedia: Ubuntu 12.04.1 LTS Precise Pangolin - Release i386 
(20120817.3)
  MachineType: Dell Inc. Inspiron M5010
  MarkForUpload: True
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  RelatedPackageVersions:
   cheese3.4.1-0ubuntu2.1
   cheese-common 3.4.1-0ubuntu2.1
  SourcePackage: linux
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 07/27/2010
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: A06
  dmi.board.name: Inspiron M5010
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A06
  dmi.chassis.type: 8
  dmi.chassis.vendor: Dell Inc.
  dmi.chassis.version: A06
  dmi.modalias: 
dmi:bvnDellInc.:bvrA06:bd07/27/2010:svnDellInc.:pnInspironM5010:pvrA06:rvnDellInc.:rnInspironM5010:rvrA06:cvnDellInc.:ct8:cvrA06:
  dmi.product.name: Inspiron M5010
  dmi.product.version: A06
  dmi.sys.vendor: Dell Inc.
+ --- 
+ AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.24.
+ ApportVersion: 2.0.1-0ubuntu15
+ Architecture: i386
+ ArecordDevices:
+   List of CAPTURE Hardware Devices 
+  card 0: SB [HDA ATI SB], device 0: STAC92xx Analog [STAC92xx Analog]
+Subdevices: 1/1
+Subdevice #0: subdevice #0
+ AudioDevicesInUse:
+  USERPID ACCESS COMMAND
+  /dev/snd/controlC1:  devin  2158 F pulseaudio
+  /dev/snd/controlC0:  devin  2158 F pulseaudio
+ Card0.Amixer.info:
+  Card hw:0 'SB'/'HDA ATI SB at 0xff70 irq 16'
+Mixer name : 'IDT 92HD81B1X5'
+Components : 'HDA:111d7605,10280448,00100105'
+Controls  : 17
+Simple ctrls  : 10
+ Card1.Amixer.info:
+  Card hw:1 'HDMI'/'HDA ATI HDMI at 0xff41 irq 10'
+Mixer name : 'ATI RS690/780 HDMI'
+Components : 'HDA:1002791a,00791a00,0010'
+Controls  : 4
+Simple ctrls  : 1
+ Card1.Amixer.values:
+  Simple mixer control 'IEC958',0
+Capabilities: pswitch pswitch-joined penum
+Playback channels: Mono
+Mono: Playback [on]
+ DistroRelease: Ubuntu 12.04
+ HibernationDevice: RESUME=UUID=83f8d7a9-7047-463f-9dbb-e3e02f7ee4b2
+ InstallationMedia: Ubuntu 12.04.1 LTS Precise Pangolin - Release i386 
(20120817.3)
+ MachineType: Dell Inc. Inspiron M5010
+ MarkForUpload: True
+ NonfreeKernelModules: fglrx
+ Package: linux (not installed)
+ ProcEnviron:
+  TERM=xterm
+  PATH=(custom, no user)
+  LANG=en_US.UTF-8
+  SHELL=/bin/bash
+ ProcFB:
+  
+ ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.2.0-33-generic-pae 
root=UUID=a8cb0163-1b13-4582-824a-cbe2bc787ee8 ro recovery nomodeset
+ ProcVersionSignature: Ubuntu 3.2.0-33.52-generic-pae 3.2.31
+ RelatedPackageVersions:
+  linux-restricted-modules-3.2.0-33-generic-pae N/A
+  linux-backports-modules-3.2.0-33-generic-pae  N/A
+  linux-firmware1.79.1
+ Tags:  precise running-unity
+ Uname: Linux 3.2.0-33-generic-pae i686
+ UpgradeStatus: No upgrade log present (probably fresh install)
+ UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
+ dmi.bios.date: 07/27/2010
+ dmi.bios.vendor: Dell Inc.
+ dmi.bios.version: A06
+ dmi.board.name: Inspiron M5010
+ dmi.board.vendor: Dell Inc.
+ dmi.board.version: A06
+ dmi.chassis.type: 8
+ dmi.chassis.vendor: Dell Inc.
+ dmi.chassis.version: A06
+ dmi.modalias: 
dmi:bvnDellInc.:bvrA06:bd07/27/2010:svnDellInc.:pnInspironM5010:pvrA06:rvnDellInc.:rnInspironM5010:rvrA06:cvnDellInc.:ct8:cvrA06:
+ dmi.product.name: Inspiron M5010
+ dmi.product.version: A06
+ dmi.sys.vendor: Dell Inc.

** Attachment added: AcpiTables.txt
   
https://bugs.launchpad.net/bugs/1080264/+attachment/3437171/+files/AcpiTables.txt

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

Title:
  Cheese is not working correctly

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

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


[Bug 1080264] AlsaDevices.txt

2012-11-18 Thread Devin Thomas
apport information

** Attachment added: AlsaDevices.txt
   
https://bugs.launchpad.net/bugs/1080264/+attachment/3437172/+files/AlsaDevices.txt

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

Title:
  Cheese is not working correctly

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

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


[Bug 1080264] AplayDevices.txt

2012-11-18 Thread Devin Thomas
apport information

** Attachment added: AplayDevices.txt
   
https://bugs.launchpad.net/bugs/1080264/+attachment/3437173/+files/AplayDevices.txt

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

Title:
  Cheese is not working correctly

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

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


[Bug 1080264] BootDmesg.txt

2012-11-18 Thread Devin Thomas
apport information

** Attachment added: BootDmesg.txt
   
https://bugs.launchpad.net/bugs/1080264/+attachment/3437174/+files/BootDmesg.txt

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

Title:
  Cheese is not working correctly

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

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


[Bug 1080264] CRDA.txt

2012-11-18 Thread Devin Thomas
apport information

** Attachment added: CRDA.txt
   https://bugs.launchpad.net/bugs/1080264/+attachment/3437175/+files/CRDA.txt

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

Title:
  Cheese is not working correctly

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

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


[Bug 1080264] Card0.Amixer.values.txt

2012-11-18 Thread Devin Thomas
apport information

** Attachment added: Card0.Amixer.values.txt
   
https://bugs.launchpad.net/bugs/1080264/+attachment/3437176/+files/Card0.Amixer.values.txt

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

Title:
  Cheese is not working correctly

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

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


[Bug 1080264] Card0.Codecs.codec.0.txt

2012-11-18 Thread Devin Thomas
apport information

** Attachment added: Card0.Codecs.codec.0.txt
   
https://bugs.launchpad.net/bugs/1080264/+attachment/3437177/+files/Card0.Codecs.codec.0.txt

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

Title:
  Cheese is not working correctly

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

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


[Bug 1080264] Card1.Codecs.codec.0.txt

2012-11-18 Thread Devin Thomas
apport information

** Attachment added: Card1.Codecs.codec.0.txt
   
https://bugs.launchpad.net/bugs/1080264/+attachment/3437178/+files/Card1.Codecs.codec.0.txt

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

Title:
  Cheese is not working correctly

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

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


[Bug 1080264] CurrentDmesg.txt

2012-11-18 Thread Devin Thomas
apport information

** Attachment added: CurrentDmesg.txt
   
https://bugs.launchpad.net/bugs/1080264/+attachment/3437179/+files/CurrentDmesg.txt

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

Title:
  Cheese is not working correctly

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

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


[Bug 1080264] IwConfig.txt

2012-11-18 Thread Devin Thomas
apport information

** Attachment added: IwConfig.txt
   
https://bugs.launchpad.net/bugs/1080264/+attachment/3437180/+files/IwConfig.txt

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

Title:
  Cheese is not working correctly

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

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


[Bug 1080264] Lspci.txt

2012-11-18 Thread Devin Thomas
apport information

** Attachment added: Lspci.txt
   https://bugs.launchpad.net/bugs/1080264/+attachment/3437181/+files/Lspci.txt

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

Title:
  Cheese is not working correctly

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

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


[Bug 1080264] Lsusb.txt

2012-11-18 Thread Devin Thomas
apport information

** Attachment added: Lsusb.txt
   https://bugs.launchpad.net/bugs/1080264/+attachment/3437182/+files/Lsusb.txt

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

Title:
  Cheese is not working correctly

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

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


[Bug 1080264] PciMultimedia.txt

2012-11-18 Thread Devin Thomas
apport information

** Attachment added: PciMultimedia.txt
   
https://bugs.launchpad.net/bugs/1080264/+attachment/3437183/+files/PciMultimedia.txt

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

Title:
  Cheese is not working correctly

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

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


[Bug 1080264] ProcCpuinfo.txt

2012-11-18 Thread Devin Thomas
apport information

** Attachment added: ProcCpuinfo.txt
   
https://bugs.launchpad.net/bugs/1080264/+attachment/3437184/+files/ProcCpuinfo.txt

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

Title:
  Cheese is not working correctly

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

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


[Bug 1080264] ProcInterrupts.txt

2012-11-18 Thread Devin Thomas
apport information

** Attachment added: ProcInterrupts.txt
   
https://bugs.launchpad.net/bugs/1080264/+attachment/3437185/+files/ProcInterrupts.txt

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

Title:
  Cheese is not working correctly

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

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


[Bug 1080264] ProcModules.txt

2012-11-18 Thread Devin Thomas
apport information

** Attachment added: ProcModules.txt
   
https://bugs.launchpad.net/bugs/1080264/+attachment/3437186/+files/ProcModules.txt

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

Title:
  Cheese is not working correctly

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

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


[Bug 1080264] PulseList.txt

2012-11-18 Thread Devin Thomas
apport information

** Attachment added: PulseList.txt
   
https://bugs.launchpad.net/bugs/1080264/+attachment/3437187/+files/PulseList.txt

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

Title:
  Cheese is not working correctly

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

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


[Bug 1080264] RfKill.txt

2012-11-18 Thread Devin Thomas
apport information

** Attachment added: RfKill.txt
   https://bugs.launchpad.net/bugs/1080264/+attachment/3437188/+files/RfKill.txt

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

Title:
  Cheese is not working correctly

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

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


[Bug 1080264] UdevDb.txt

2012-11-18 Thread Devin Thomas
apport information

** Attachment added: UdevDb.txt
   https://bugs.launchpad.net/bugs/1080264/+attachment/3437189/+files/UdevDb.txt

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

Title:
  Cheese is not working correctly

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

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


[Bug 1080264] UdevLog.txt

2012-11-18 Thread Devin Thomas
apport information

** Attachment added: UdevLog.txt
   
https://bugs.launchpad.net/bugs/1080264/+attachment/3437190/+files/UdevLog.txt

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

Title:
  Cheese is not working correctly

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

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


[Bug 1080115] Re: Kubuntu 13.04 Splash Screen has Debian Branding

2012-11-18 Thread Launchpad Bug Tracker
This bug was fixed in the package lightdm-kde - 0.3.0-1ubuntu2

---
lightdm-kde (0.3.0-1ubuntu2) raring; urgency=low

  * Drop recommends-relationship with desktop-base. It contains Debian
branding that we don't need nor want. Philip will contact Ralf about that.
LP: #1080115
 -- Harald Sitter apachelog...@kubuntu.org   Sat, 17 Nov 2012 17:08:09 +0100

** Changed in: lightdm-kde (Ubuntu)
   Status: Fix Committed = Fix Released

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

Title:
  Kubuntu 13.04 Splash Screen has Debian Branding

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

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


[Bug 1080264] WifiSyslog.txt

2012-11-18 Thread Devin Thomas
apport information

** Attachment added: WifiSyslog.txt
   
https://bugs.launchpad.net/bugs/1080264/+attachment/3437191/+files/WifiSyslog.txt

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

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

Title:
  Cheese is not working correctly

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

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


[Bug 1080264] Re: Cheese is not working correctly

2012-11-18 Thread Devin Thomas
im not sure if i add the apport information or not im not sure how to do
it

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

Title:
  Cheese is not working correctly

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

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


[Bug 1080276] Re: Dash invoked by Super Key twice as slow to show

2012-11-18 Thread Bucic
** Description changed:

- Dash invoked by Super Key twice as slow to show up compared to when invoked 
by clicking on the Ubuntu logo. I observed this behavior both in Ubuntu 12.04 
x64 and 12.10 x64 with every single Ubuntu vs hardware/driver combination:
+ When Launcher auto-hide is disabled, Dash invoked by Super Key twice as slow 
to show up compared to when invoked by clicking on the Ubuntu logo. I observed 
this behavior both in Ubuntu 12.04 x64 and 12.10 x64 with every single Ubuntu 
vs hardware/driver combination:
  Intel HD 4500
  AMD mobility radeon 3650 with open source driver
  AMD mobility radeon 3650 with Catalyst 12.6 (installed from various sources - 
didn't impact the behavior)
  
  So at least 6 in total. I've athered quite a few command line off-line
  report files for the combinations.
  
  Also it's not only me. See http://askubuntu.com/questions/138622/how-to-
  disable-all-unity-animations/169634#169634 , Point 3.
  
  ProblemType: Bug
  DistroRelease: Ubuntu 12.10
  Package: unity 6.10.0-0ubuntu2
  ProcVersionSignature: Ubuntu 3.5.0-18.29-generic 3.5.7
  Uname: Linux 3.5.0-18-generic x86_64
  NonfreeKernelModules: fglrx
  ApportVersion: 2.6.1-0ubuntu6
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  Date: Sun Nov 18 09:27:21 2012
  InstallationDate: Installed on 2012-11-12 (5 days ago)
  InstallationMedia: Ubuntu 12.10 Quantal Quetzal - Release amd64 (20121017.5)
  MarkForUpload: True
  ProcEnviron:
-  PATH=(custom, no user)
-  XDG_RUNTIME_DIR=set
-  LANG=en_US.UTF-8
-  SHELL=/bin/bash
+  PATH=(custom, no user)
+  XDG_RUNTIME_DIR=set
+  LANG=en_US.UTF-8
+  SHELL=/bin/bash
  SourcePackage: unity
  UpgradeStatus: No upgrade log present (probably fresh install)

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

Title:
  Dash invoked by Super Key twice as slow to show

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

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

[Bug 1068796] Re: [needs-packaging] wsl - Wsman Shell commandLine (client)

2012-11-18 Thread Bug Watch Updater
** Changed in: debian
   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/1068796

Title:
  [needs-packaging] wsl - Wsman Shell commandLine (client)

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

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


[Bug 1005861] Re: gnome-mplayer cant play .mid files

2012-11-18 Thread Bug Watch Updater
** Changed in: gnome-mplayer (Debian)
   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/1005861

Title:
  gnome-mplayer cant play .mid files

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

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


[Bug 907196] Re: [needs-packaging] Cinnamon

2012-11-18 Thread Bug Watch Updater
** Changed in: debian
   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/907196

Title:
  [needs-packaging] Cinnamon

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

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


[Bug 999765] Re: Dash search won't return results when typing the exact name of an app containing a capital letter inside it

2012-11-18 Thread Stéphane Guillou
*** This bug is a duplicate of bug 1056743 ***
https://bugs.launchpad.net/bugs/1056743

Please keep in mind that this bug is a duplicate of bug #1056743. You
should comment on it. Thank you!

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

Title:
  Dash search won't return results when typing the exact name of an app
  containing a capital letter inside it

To manage notifications about this bug go to:
https://bugs.launchpad.net/unity-lens-applications/+bug/999765/+subscriptions

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


[Bug 1080279] [NEW] Crashes while reporting Unity bug

2012-11-18 Thread Jeroen T. Vermeulen
Public bug reported:

I'm trying to report a bug in Unity, but ubuntu-bug crashes when I try
to do so.  It's a UnicodeDecodeError in
__AptDpkgPackageInfo.get_modified_files (packaging_impl.py line 256 in
this version).

Traceback: http://paste.ubuntu.com/1367075/

Based on that error I'd expect to find a weird character in
/var/lib/dpkg/info/unity.md5sums, but I don't see it with the naked eye:
http://paste.ubuntu.com/1367074/

ProblemType: Bug
DistroRelease: Ubuntu 12.10
Package: apport 2.6.1-0ubuntu6
ProcVersionSignature: Ubuntu 3.5.0-18.29-generic 3.5.7
Uname: Linux 3.5.0-18-generic i686
NonfreeKernelModules: nvidia
ApportLog:
 
ApportVersion: 2.6.1-0ubuntu6
Architecture: i386
Date: Sun Nov 18 09:58:06 2012
InstallationDate: Installed on 2011-02-17 (639 days ago)
InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release i386 (20101007)
MarkForUpload: True
PackageArchitecture: all
SourcePackage: apport
UpgradeStatus: Upgraded to quantal on 2012-11-13 (5 days ago)

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


** Tags: apport-bug i386 quantal 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/1080279

Title:
  Crashes while reporting Unity bug

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

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


[Bug 1080272] Re: ubuntu login not working. ubuntu 2d logs in fine

2012-11-18 Thread Devin Thomas
i got this to work by removing unity and reinstalling it.

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

Title:
  ubuntu login not working. ubuntu 2d logs in fine

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

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


[Bug 1034041] Re: [Aspire 5920G, Realtek ALC1200, Black Headphone Out, Front] No automute

2012-11-18 Thread Raymond
if both headphone and internal speaker are connected to same audio ouput
0x02 through audio mixer 0x0c

hp_automute need to mute 0x14  amp out values 0x80


Node 0x0c [Audio Mixer] wcaps 0x20010f: Stereo Amp-In Amp-Out
  Control: name=Front Playback Volume, index=0, device=0
ControlAmp: chs=3, dir=Out, idx=0, ofs=0
  Amp-In caps: ofs=0x00, nsteps=0x00, stepsize=0x00, mute=1
  Amp-In vals:  [0x00 0x00] [0x00 0x00]
  Amp-Out caps: ofs=0x1f, nsteps=0x1f, stepsize=0x05, mute=0
  Amp-Out vals:  [0x1f 0x1f]
  Connection: 2
 0x02 0x0b
Node 0x0d [Audio Mixer] wcaps 0x20010f: Stereo Amp-In Amp-Out
  Amp-In caps: ofs=0x00, nsteps=0x00, stepsize=0x00, mute=1
  Amp-In vals:  [0x80 0x80] [0x80 0x80]
  Amp-Out caps: ofs=0x1f, nsteps=0x1f, stepsize=0x05, mute=0
  Amp-Out vals:  [0x00 0x00]
  Connection: 2
 0x03 0x0b

Node 0x14 [Pin Complex] wcaps 0x40018f: Stereo Amp-In Amp-Out
  Control: name=Headphone Playback Switch, index=0, device=0
ControlAmp: chs=3, dir=Out, idx=0, ofs=0
  Amp-In caps: ofs=0x00, nsteps=0x03, stepsize=0x27, mute=0
  Amp-In vals:  [0x00 0x00]
  Amp-Out caps: ofs=0x00, nsteps=0x00, stepsize=0x00, mute=1
  Amp-Out vals:  [0x00 0x00]
  Pincap 0x003e: IN OUT HP Detect Trigger
  Pin Default 0x0221101f: [Jack] HP Out at Ext Front
Conn = 1/8, Color = Black
DefAssociation = 0x1, Sequence = 0xf
  Pin-ctls: 0xc0: OUT HP
  Unsolicited: tag=04, enabled=1
  Connection: 5
 0x0c* 0x0d 0x0e 0x0f 0x26
Node 0x15 [Pin Complex] wcaps 0x40018f: Stereo Amp-In Amp-Out
  Amp-In caps: ofs=0x00, nsteps=0x03, stepsize=0x27, mute=0
  Amp-In vals:  [0x00 0x00]
  Amp-Out caps: ofs=0x00, nsteps=0x00, stepsize=0x00, mute=1
  Amp-Out vals:  [0x00 0x00]
  Pincap 0x003e: IN OUT HP Detect Trigger
  Pin Default 0x99130110: [Fixed] Speaker at Int ATAPI
Conn = ATAPI, Color = Unknown
DefAssociation = 0x1, Sequence = 0x0
Misc = NO_PRESENCE
  Pin-ctls: 0x40: OUT
  Unsolicited: tag=00, enabled=0
  Connection: 5
 0x0c* 0x0d 0x0e 0x0f 0x26

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

Title:
  [Aspire 5920G, Realtek ALC1200, Black Headphone Out, Front] No
  automute

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

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


[Bug 1034041] Re: [Aspire 5920G, Realtek ALC1200, Black Headphone Out, Front] No automute

2012-11-18 Thread Raymond
should be mute node 0x15 amp out values 0x80

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

Title:
  [Aspire 5920G, Realtek ALC1200, Black Headphone Out, Front] No
  automute

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

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


[Bug 772986] Re: Launcher - Unity launcher single missing/invisible/blank icon

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

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

Title:
  Launcher - Unity launcher single missing/invisible/blank icon

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

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


[Bug 1080281] [NEW] [System Product Name, VIA VT1708S, Green Line Out, Rear] Underruns, dropouts or crackling sound

2012-11-18 Thread Alistair Buxton
Public bug reported:

Crackling sound in Skype. I can fix the problem by setting

load-module module-hal-detect tsched=0

ProblemType: Bug
DistroRelease: Ubuntu 12.10
Package: alsa-base 1.0.25+dfsg-0ubuntu3
ProcVersionSignature: Ubuntu 3.5.0-18.29-generic 3.5.7
Uname: Linux 3.5.0-18-generic x86_64
NonfreeKernelModules: nvidia
ApportVersion: 2.6.1-0ubuntu6
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC3:  al 2025 F pulseaudio
 /dev/snd/controlC1:  al 2025 F pulseaudio
 /dev/snd/controlC0:  al 2025 F pulseaudio
Date: Sun Nov 18 09:13:07 2012
InstallationDate: Installed on 2012-11-08 (9 days ago)
InstallationMedia: Ubuntu 12.10 Quantal Quetzal - Release amd64 (20121017.5)
MarkForUpload: True
PackageArchitecture: all
SourcePackage: alsa-driver
Symptom: audio
Symptom_AlsaPlaybackTest: ALSA playback test through plughw:SB successful
Symptom_Card: Built-in Audio - HDA ATI SB
Symptom_Jack: Green Line Out, Rear
Symptom_PulsePlaybackTest: PulseAudio playback test successful
Symptom_Type: Underruns, dropouts, or crackling sound
Title: [System Product Name, VIA VT1708S, Green Line Out, Rear] Underruns, 
dropouts or crackling sound
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 11/25/2009
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: 0704
dmi.board.asset.tag: To Be Filled By O.E.M.
dmi.board.name: M4A79XTD EVO
dmi.board.vendor: ASUSTeK Computer INC.
dmi.board.version: Rev X.0X
dmi.chassis.asset.tag: Asset-1234567890
dmi.chassis.type: 3
dmi.chassis.vendor: Chassis Manufacture
dmi.chassis.version: Chassis Version
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr0704:bd11/25/2009:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnM4A79XTDEVO:rvrRevX.0X:cvnChassisManufacture:ct3:cvrChassisVersion:
dmi.product.name: System Product Name
dmi.product.version: System Version
dmi.sys.vendor: System manufacturer

** Affects: alsa-driver (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug quantal

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

Title:
  [System Product Name, VIA VT1708S, Green Line Out, Rear] Underruns,
  dropouts or crackling sound

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

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


[Bug 1080282] [NEW] [System Product Name, VIA VT1708S, Green Line Out, Rear] No sound at all

2012-11-18 Thread Alistair Buxton
Public bug reported:

No sound at all unless I select Independent HP ON. This indicates that
something is muting the line out because it believes headphones are
connected when they are in fact not connected. There seems to be several
similar bugs but I cannot say for sure if they are the same issue.

ProblemType: Bug
DistroRelease: Ubuntu 12.10
Package: alsa-base 1.0.25+dfsg-0ubuntu3
ProcVersionSignature: Ubuntu 3.5.0-18.29-generic 3.5.7
Uname: Linux 3.5.0-18-generic x86_64
NonfreeKernelModules: nvidia
ApportVersion: 2.6.1-0ubuntu6
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC3:  al 2025 F pulseaudio
 /dev/snd/controlC1:  al 2025 F pulseaudio
 /dev/snd/controlC0:  al 2025 F pulseaudio
  al22129 F alsamixer
Date: Sun Nov 18 09:17:22 2012
InstallationDate: Installed on 2012-11-08 (9 days ago)
InstallationMedia: Ubuntu 12.10 Quantal Quetzal - Release amd64 (20121017.5)
MarkForUpload: True
PackageArchitecture: all
SourcePackage: alsa-driver
Symptom: audio
Symptom_AlsaPlaybackTest: ALSA playback test through plughw:SB failed
Symptom_Card: Built-in Audio - HDA ATI SB
Symptom_DevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC3:  al 2025 F pulseaudio
 /dev/snd/controlC1:  al 2025 F pulseaudio
 /dev/snd/controlC0:  al 2025 F pulseaudio
  al22129 F alsamixer
Symptom_Jack: Green Line Out, Rear
Symptom_Type: No sound at all
Title: [System Product Name, VIA VT1708S, Green Line Out, Rear] No sound at all
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 11/25/2009
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: 0704
dmi.board.asset.tag: To Be Filled By O.E.M.
dmi.board.name: M4A79XTD EVO
dmi.board.vendor: ASUSTeK Computer INC.
dmi.board.version: Rev X.0X
dmi.chassis.asset.tag: Asset-1234567890
dmi.chassis.type: 3
dmi.chassis.vendor: Chassis Manufacture
dmi.chassis.version: Chassis Version
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr0704:bd11/25/2009:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnM4A79XTDEVO:rvrRevX.0X:cvnChassisManufacture:ct3:cvrChassisVersion:
dmi.product.name: System Product Name
dmi.product.version: System Version
dmi.sys.vendor: System manufacturer

** Affects: alsa-driver (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug quantal

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

Title:
  [System Product Name, VIA VT1708S, Green Line Out, Rear] No sound at
  all

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

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


[Bug 1052323] Re: [regression][lucid] system frequently reboots after update in august 2012, path via rtkit and AptDaemon

2012-11-18 Thread jan
I am not familiar with the design of the aptdaemon. I just see the message each 
time before the reboot, and thus I think that the aptdaemon plays a role in the 
process. 
The way I understand is that apt may request a reboot (eg after kernel upgrade) 
and that a sequence triggered by the rtkit message gets the aptdaemon to do 
something.
In my understanding, I see the rtkit message (which was not present a few 
months ago) as the initial trigger.

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

Title:
  [regression][lucid] system frequently reboots after update in august
  2012, path via rtkit and AptDaemon

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

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


[Bug 1034041] Re: [Aspire 5920G, Realtek ALC1200, Black Headphone Out, Front] No automute

2012-11-18 Thread Raymond
send email to the author if you think it is regression !

http://git.kernel.org/?p=linux/kernel/git/tiwai/sound.git;a=commitdiff;h=8812c4f96178620ebaabbd6e32401411b244d26b;hp=25da1f86b4e7f5fef26cec1f65be3b120f2d36ac

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

Title:
  [Aspire 5920G, Realtek ALC1200, Black Headphone Out, Front] No
  automute

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

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


[Bug 1030630] Re: System freeze on logout and shutdown

2012-11-18 Thread William H. Allen
I am running an older build (11.10)  on the same system (64 bit Toshiba
A665).  Same problem - purple bar at top and frozen system at shutdown.
The thread above indicates the problem is back - does this mean there is
no resolution yet? Will this continue after I upgrade to 12.04 or 12.10?

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

Title:
  System freeze on logout and shutdown

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

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


[Bug 1077583] Re: 3.7 kernel wrong i8042 pnp

2012-11-18 Thread dino99
@ Joseph
your script seems ignoring that new kernel 3.7 serie, as it cant identify the 
latest serie. Either update it or drop it.

** Summary changed:

- 3.7.0.0.5 wrong i8042 pnp
+ 3.7 kernel wrong i8042 pnp

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

Title:
  3.7 kernel wrong i8042 pnp

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

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


[Bug 1079348] Re: Please update Skype to new upstream v.4.1

2012-11-18 Thread LocutusOfBorg
Just click on overview and Other versions of 'skype' in untrusted
archives.

and here too
https://launchpad.net/ubuntu/+ppas?name_filter=skype
(here is a collection of programs containing the word skype, so you will find 
e.g. pidgin-skype too)

---
Ubuntu Bug Squad volunteer triager
http://wiki.ubuntu.com/BugSquad

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

Title:
  Please update Skype to new upstream v.4.1

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

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


[Bug 1077583] Re: 3.7 kernel wrong i8042 pnp

2012-11-18 Thread dino99
of cource the latest 3.7 rc6 still have that issue.

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

Title:
  3.7 kernel wrong i8042 pnp

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

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


[Bug 1080289] [NEW] jsalisbury script dont identify the latest 3.7 kernel serie, and so declare it as not supported

2012-11-18 Thread dino99
Public bug reported:

see that report set as wontfix due to this borked script:

https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1077583

** Affects: linux (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/1080289

Title:
  jsalisbury script dont identify the latest 3.7 kernel serie, and so
  declare it as not supported

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

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


[Bug 1080282] Re: [System Product Name, VIA VT1708S, Green Line Out, Rear] No sound at all

2012-11-18 Thread Raymond
when independent hp is OFF and headphon is plugged . it is normal that
rear line out is muted be default

dou you mean hp jack detect is incorrect


Simple mixer control 'Independent HP',0
  Capabilities: enum
  Items: 'OFF' 'ON'
  Item0: 'OFF'


control.43 {
iface CARD
name 'Front Headphone Jack'
value true
comment {
access read
type BOOLEAN
count 1
}
}

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

Title:
  [System Product Name, VIA VT1708S, Green Line Out, Rear] No sound at
  all

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

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


[Bug 162396] Re: Mouse jumps to other screen when using enhanced zoom desktop

2012-11-18 Thread Alistair Buxton
Bug watch is pointing at a parked domain.

** Changed in: compizfusion-plugins-extra
   Importance: Unknown = Undecided

** Changed in: compizfusion-plugins-extra
   Status: In Progress = New

** Changed in: compizfusion-plugins-extra
 Remote watch: Compiz Plugins / Config Bugs #712 = None

** Changed in: compizfusion-plugins-extra
   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/162396

Title:
  Mouse jumps to other screen when using enhanced zoom desktop

To manage notifications about this bug go to:
https://bugs.launchpad.net/compizfusion-plugins-extra/+bug/162396/+subscriptions

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


[Bug 752542] Re: ACPI DSDT info

2012-11-18 Thread woju
** Attachment added: HP ProBook 4539s
   
https://bugs.launchpad.net/lpbugreporter/+bug/752542/+attachment/3437211/+files/Hewlett-Packard-HP_ProBook_4530s.tar.gz

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

Title:
  ACPI DSDT info

To manage notifications about this bug go to:
https://bugs.launchpad.net/bumblebee-project/+bug/752542/+subscriptions

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


[Bug 979477] Re: ttf-mscorefonts-installer installation popup and probable failure

2012-11-18 Thread Arup
I have the exact issue on my Quantal 12.10x64 as described by Steve
above


sudo apt-get install ttf-mscorefonts-installer 
[sudo] password for arup: 
Reading package lists... Done
Building dependency tree   
Reading state information... Done
The following extra packages will be installed:
  cabextract
The following NEW packages will be installed:
  cabextract ttf-mscorefonts-installer
0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded.
Need to get 0 B/70.1 kB of archives.
After this operation, 281 kB of additional disk space will be used.
Do you want to continue [Y/n]? y
Preconfiguring packages ...
Selecting previously unselected package cabextract.
(Reading database ... 142546 files and directories currently installed.)
Unpacking cabextract (from .../cabextract_1.4-3_amd64.deb) ...
Selecting previously unselected package ttf-mscorefonts-installer.
Unpacking ttf-mscorefonts-installer (from 
.../ttf-mscorefonts-installer_3.4ubuntu3_all.deb) ...
Processing triggers for man-db ...
Processing triggers for fontconfig ...
Processing triggers for update-notifier-common ...
ttf-mscorefonts-installer: downloading 
http://downloads.sourceforge.net/corefonts/andale32.exe
Traceback (most recent call last):
  File /usr/lib/update-notifier/package-data-downloader, line 234, in 
process_download_requests
dest_file = urllib.urlretrieve(files[i])[0]
  File /usr/lib/python2.7/urllib.py, line 93, in urlretrieve
return _urlopener.retrieve(url, filename, reporthook, data)
  File /usr/lib/python2.7/urllib.py, line 239, in retrieve
fp = self.open(url, data)
  File /usr/lib/python2.7/urllib.py, line 207, in open
return getattr(self, name)(url)
  File /usr/lib/python2.7/urllib.py, line 358, in open_http
return self.http_error(url, fp, errcode, errmsg, headers)
  File /usr/lib/python2.7/urllib.py, line 371, in http_error
result = method(url, fp, errcode, errmsg, headers)
  File /usr/lib/python2.7/urllib.py, line 664, in http_error_301
return self.http_error_302(url, fp, errcode, errmsg, headers, data)
  File /usr/lib/python2.7/urllib.py, line 634, in http_error_302
data)
  File /usr/lib/python2.7/urllib.py, line 660, in redirect_internal
return self.open(newurl)
  File /usr/lib/python2.7/urllib.py, line 207, in open
return getattr(self, name)(url)
  File /usr/lib/python2.7/urllib.py, line 358, in open_http
return self.http_error(url, fp, errcode, errmsg, headers)
  File /usr/lib/python2.7/urllib.py, line 371, in http_error
result = method(url, fp, errcode, errmsg, headers)
  File /usr/lib/python2.7/urllib.py, line 634, in http_error_302
data)
  File /usr/lib/python2.7/urllib.py, line 660, in redirect_internal
return self.open(newurl)
  File /usr/lib/python2.7/urllib.py, line 207, in open
return getattr(self, name)(url)
  File /usr/lib/python2.7/urllib.py, line 344, in open_http
h.endheaders(data)
  File /usr/lib/python2.7/httplib.py, line 958, in endheaders
self._send_output(message_body)
  File /usr/lib/python2.7/httplib.py, line 818, in _send_output
self.send(msg)
  File /usr/lib/python2.7/httplib.py, line 780, in send
self.connect()
  File /usr/lib/python2.7/httplib.py, line 761, in connect
self.timeout, self.source_address)
  File /usr/lib/python2.7/socket.py, line 553, in create_connection
for res in getaddrinfo(host, port, 0, SOCK_STREAM):
IOError: [Errno socket error] [Errno -2] Name or service not known
Setting up cabextract (1.4-3) ...
Setting up ttf-mscorefonts-installer (3.4ubuntu3) ...

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

Title:
  ttf-mscorefonts-installer installation popup and probable failure

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/update-notifier/+bug/979477/+subscriptions

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


[Bug 304345] Re: File chooser dialog doesn't provide network access

2012-11-18 Thread Timothy Arceri
Turns out this was not fixed in gtk+3 either but I have submitted a
patch upstream that allows mounted network locations to appear in the
file chooser

** Also affects: gtk+3.0 (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: gtk+3.0 (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/304345

Title:
  File chooser dialog doesn't provide network access

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

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


[Bug 1080290] [NEW] ttf-mscorefonts installer error

2012-11-18 Thread Arup
Public bug reported:

Trying to install ms fonts gives me the following error on my 12.10
Quantal x64

sudo apt-get install ttf-mscorefonts-installer 
[sudo] password for arup: 
Reading package lists... Done
Building dependency tree   
Reading state information... Done
The following extra packages will be installed:
  cabextract
The following NEW packages will be installed:
  cabextract ttf-mscorefonts-installer
0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded.
Need to get 0 B/70.1 kB of archives.
After this operation, 281 kB of additional disk space will be used.
Do you want to continue [Y/n]? y
Preconfiguring packages ...
Selecting previously unselected package cabextract.
(Reading database ... 142546 files and directories currently installed.)
Unpacking cabextract (from .../cabextract_1.4-3_amd64.deb) ...
Selecting previously unselected package ttf-mscorefonts-installer.
Unpacking ttf-mscorefonts-installer (from 
.../ttf-mscorefonts-installer_3.4ubuntu3_all.deb) ...
Processing triggers for man-db ...
Processing triggers for fontconfig ...
Processing triggers for update-notifier-common ...
ttf-mscorefonts-installer: downloading 
http://downloads.sourceforge.net/corefonts/andale32.exe
Traceback (most recent call last):
  File /usr/lib/update-notifier/package-data-downloader, line 234, in 
process_download_requests
dest_file = urllib.urlretrieve(files[i])[0]
  File /usr/lib/python2.7/urllib.py, line 93, in urlretrieve
return _urlopener.retrieve(url, filename, reporthook, data)
  File /usr/lib/python2.7/urllib.py, line 239, in retrieve
fp = self.open(url, data)
  File /usr/lib/python2.7/urllib.py, line 207, in open
return getattr(self, name)(url)
  File /usr/lib/python2.7/urllib.py, line 358, in open_http
return self.http_error(url, fp, errcode, errmsg, headers)
  File /usr/lib/python2.7/urllib.py, line 371, in http_error
result = method(url, fp, errcode, errmsg, headers)
  File /usr/lib/python2.7/urllib.py, line 664, in http_error_301
return self.http_error_302(url, fp, errcode, errmsg, headers, data)
  File /usr/lib/python2.7/urllib.py, line 634, in http_error_302
data)
  File /usr/lib/python2.7/urllib.py, line 660, in redirect_internal
return self.open(newurl)
  File /usr/lib/python2.7/urllib.py, line 207, in open
return getattr(self, name)(url)
  File /usr/lib/python2.7/urllib.py, line 358, in open_http
return self.http_error(url, fp, errcode, errmsg, headers)
  File /usr/lib/python2.7/urllib.py, line 371, in http_error
result = method(url, fp, errcode, errmsg, headers)
  File /usr/lib/python2.7/urllib.py, line 634, in http_error_302
data)
  File /usr/lib/python2.7/urllib.py, line 660, in redirect_internal
return self.open(newurl)
  File /usr/lib/python2.7/urllib.py, line 207, in open
return getattr(self, name)(url)
  File /usr/lib/python2.7/urllib.py, line 344, in open_http
h.endheaders(data)
  File /usr/lib/python2.7/httplib.py, line 958, in endheaders
self._send_output(message_body)
  File /usr/lib/python2.7/httplib.py, line 818, in _send_output
self.send(msg)
  File /usr/lib/python2.7/httplib.py, line 780, in send
self.connect()
  File /usr/lib/python2.7/httplib.py, line 761, in connect
self.timeout, self.source_address)
  File /usr/lib/python2.7/socket.py, line 553, in create_connection
for res in getaddrinfo(host, port, 0, SOCK_STREAM):
IOError: [Errno socket error] [Errno -2] Name or service not known
Setting up cabextract (1.4-3) ...
Setting up ttf-mscorefonts-installer (3.4ubuntu3) ...

ProblemType: Bug
DistroRelease: Ubuntu 12.10
Package: update-notifier 0.126
ProcVersionSignature: Ubuntu 3.5.0-18.29-generic 3.5.7
Uname: Linux 3.5.0-18-generic x86_64
ApportVersion: 2.6.1-0ubuntu6
Architecture: amd64
Date: Sun Nov 18 15:14:45 2012
InstallationDate: Installed on 2012-11-17 (0 days ago)
InstallationMedia: Ubuntu 12.10 Quantal Quetzal - Release amd64 (20121017.5)
MarkForUpload: True
SourcePackage: update-notifier
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: update-notifier (Ubuntu)
 Importance: Undecided
 Status: New


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

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

Title:
  ttf-mscorefonts installer error

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/update-notifier/+bug/1080290/+subscriptions

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


[Bug 1070150] Re: Intermittent low graphics mode with Intel HD graphics

2012-11-18 Thread Fiorenzo De Santis
I was affected as well but after I upgraded with the software from xorg-
edgers PPA, and I selected lightdm again, the problem has gone.

So I think that this isn't a problem of lightdm rather it's a problem of
xorg related software.

If you want to upgrade too, you should refer to https://launchpad.net
/~xorg-edgers/+archive/ppa

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

Title:
  Intermittent low graphics mode with Intel HD graphics

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

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


[Bug 1080282] Re: [System Product Name, VIA VT1708S, Green Line Out, Rear] No sound at all

2012-11-18 Thread Raymond
vt1708s is a 8 channel codec

as your motherboard has a grey jack

when independent hp is ON

only support 5.1 by rear panel and hp use 0x25 audio output

Node 0x1d [Pin Complex] wcaps 0x40058d: Stereo Amp-Out
  Control: name=Headphone Playback Switch, index=0, device=0
ControlAmp: chs=3, dir=Out, idx=0, ofs=0
  Control: name=Independent HP, index=0, device=0
  Control: name=Front Headphone Jack, index=0, device=0
  Amp-Out caps: ofs=0x00, nsteps=0x00, stepsize=0x00, mute=1
  Amp-Out vals:  [0x00 0x00]
  Pincap 0x233c: IN OUT HP Detect
Vref caps: HIZ 50 100
  Pin Default 0x0221401f: [Jack] HP Out at Ext Front
Conn = 1/8, Color = Green
DefAssociation = 0x1, Sequence = 0xf
  Pin-ctls: 0xc0: OUT HP VREF_HIZ
  Unsolicited: tag=01, enabled=1
  Power states:  D0 D1 D2 D3
  Power: setting=D0, actual=D0
  Connection: 2
 0x16* 0x25


Simple mixer control 'Headphone',0
  Capabilities: pswitch penum
  Playback channels: Front Left - Front Right
  Mono:
  Front Left: Playback [on]
  Front Right: Playback [on]


off: Off (priority 0)
active profile: output:analog-stereo
sinks:
alsa_output.pci-_00_14.2.analog-stereo/#1: Built-in Audio 
Analogue Stereo
sources:
alsa_output.pci-_00_14.2.analog-stereo.monitor/#2: Monitor 
of Built-in Audio Analogue Stereo
ports:
analog-output: Analogue Output (priority 9900, available: 
unknown)
properties:

analog-output-headphones: Headphones (priority 9000, available: 
yes)
properties:

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

Title:
  [System Product Name, VIA VT1708S, Green Line Out, Rear] No sound at
  all

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

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


[Bug 1080289] Missing required logs.

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

apport-collect 1080289

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

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

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

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

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

Title:
  jsalisbury script dont identify the latest 3.7 kernel serie, and so
  declare it as not supported

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

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


[Bug 931682] Re: booting with persistent=cryptsetup + debug messes askpass output

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

** Changed in: live-initramfs (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/931682

Title:
  booting with persistent=cryptsetup + debug messes askpass output

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

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


[Bug 1080281] Re: [System Product Name, VIA VT1708S, Green Line Out, Rear] Underruns, dropouts or crackling sound

2012-11-18 Thread Raymond
[150488.898221] INFO: task openshot:18102 blocked for more than 120 seconds.
[150488.898230] echo 0  /proc/sys/kernel/hung_task_timeout_secs disables 
this message.
[150488.898234] openshotD 880437cd39c0 0 18102  1 0x
[150488.898244]  88032cc07c78 0082 88041ced 
88032cc07fd8
[150488.898255]  88032cc07fd8 88032cc07fd8 8803f2432e00 
88041ced
[150488.898263]  88041ced 88041ced 880404101f80 
880404101fe0
[150488.898271] Call Trace:
[150488.898287]  [81682459] schedule+0x29/0x70
[150488.898296]  [81057705] exit_mm+0x85/0x130
[150488.898302]  [81057909] do_exit+0x159/0x8e0
[150488.898309]  [810583ef] do_group_exit+0x3f/0xa0
[150488.898317]  [81067e19] get_signal_to_deliver+0x1b9/0x5d0
[150488.898325]  [810132bf] do_signal+0x3f/0x610
[150488.898332]  [8101a369] ? read_tsc+0x9/0x20
[150488.898340]  [81194893] ? poll_select_copy_remaining+0xf3/0x140
[150488.898348]  [81013938] do_notify_resume+0x88/0xc0
[150488.898356]  [8168b8e2] int_signal+0x12/0x17
[150488.898362] INFO: task gdbus:18104 blocked for more than 120 seconds.
[150488.898365] echo 0  /proc/sys/kernel/hung_task_timeout_secs disables 
this message.
[150488.898368] gdbus   D 880437c539c0 0 18104  1 0x
[150488.898376]  8803f93dbc78 0082 88018ba11700 
8803f93dbfd8
[150488.898384]  8803f93dbfd8 8803f93dbfd8 8803d0c51700 
88018ba11700
[150488.898391]  88018ba11700 88018ba11700 880404101f80 
880404101fe0
[150488.898398] Call Trace:
[150488.898407]  [81682459] schedule+0x29/0x70
[150488.898412]  [81057705] exit_mm+0x85/0x130
[150488.898418]  [81057909] do_exit+0x159/0x8e0
[150488.898424]  [81194730] ? __pollwait+0xf0/0xf0
[150488.898430]  [81194730] ? __pollwait+0xf0/0xf0
[150488.898436]  [810583ef] do_group_exit+0x3f/0xa0
[150488.898443]  [81067e19] get_signal_to_deliver+0x1b9/0x5d0
[150488.898450]  [810132bf] do_signal+0x3f/0x610
[150488.898457]  [811c8c44] ? eventfd_ctx_read+0xa4/0x1e0
[150488.898464]  [81013938] do_notify_resume+0x88/0xc0
[150488.898472]  [8168b8e2] int_signal+0x12/0x17

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

Title:
  [System Product Name, VIA VT1708S, Green Line Out, Rear] Underruns,
  dropouts or crackling sound

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

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


[Bug 1079937] Re: Do something with App Showdown submissions

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

** Changed in: ubuntu-meta (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/1079937

Title:
  Do something with App Showdown submissions

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

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


[Bug 995715] Re: X defaulting keyboard locale to US at login after upgrading distribution if a Logitech Unifying Receiver is plugged in

2012-11-18 Thread Sommartel
Same bug with an other logitech unify keyboard (k400) and Ubuntu 12.04
for keybord swiss-french

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

Title:
  X defaulting keyboard locale to US at login after upgrading
  distribution if a Logitech Unifying Receiver is plugged in

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

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


[Bug 669708] Re: Please drop obsolete package

2012-11-18 Thread Bug Watch Updater
** Changed in: powernowd (Debian)
   Status: Incomplete = New

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

Title:
  Please drop obsolete package

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

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


[Bug 1080291] [NEW] Overheating Lenovo Thinkpad T500

2012-11-18 Thread Bucic
Public bug reported:

Lenovo Thinkpad T500 runs hot / on high fan RPM when configured to use
the discrete Mobility Radeon 3650 instead Intel graphics. I haven't
noticed any differences between Catalyst and open source driver so I'm
reporting from Catalyst-configured configuration. Open source is a no-
go!

I use sensors command in terminal to verify temp values:
For intel it's below 2000 RPM and temps circa 40
For AMD it's close to 3000 RPM and temps 45 and higher. Once RPM reaches higher 
threshold, it never goes to lower RPM values.

ProblemType: Bug
DistroRelease: Ubuntu 12.10
Package: xorg 1:7.7+1ubuntu4
ProcVersionSignature: Ubuntu 3.5.0-18.29-generic 3.5.7
Uname: Linux 3.5.0-18-generic x86_64
NonfreeKernelModules: fglrx
.tmp.unity.support.test.0:
 
ApportVersion: 2.6.1-0ubuntu6
Architecture: amd64
CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
CompositorRunning: compiz
Date: Sun Nov 18 11:01:31 2012
DistUpgraded: Fresh install
DistroCodename: quantal
DistroVariant: ubuntu
DkmsStatus: fglrx-legacy, 8.97.100.3, 3.5.0-18-generic, x86_64: installed
ExtraDebuggingInterest: Yes
GraphicsCard:
 Advanced Micro Devices [AMD] nee ATI RV635 [Mobility Radeon HD 3650] 
[1002:9591] (prog-if 00 [VGA controller])
   Subsystem: Lenovo Device [17aa:2117]
InstallationDate: Installed on 2012-11-12 (5 days ago)
InstallationMedia: Ubuntu 12.10 Quantal Quetzal - Release amd64 (20121017.5)
MachineType: LENOVO 20823HU
MarkForUpload: True
PccardctlIdent:
 Socket 0:
   no product info available
PccardctlStatus:
 Socket 0:
   no card
ProcEnviron:
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=set
 LANG=en_US.UTF-8
 SHELL=/bin/bash
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.5.0-18-generic 
root=UUID=a144bb5d-50ba-49c4-aadc-c57f5a0e5d4d ro quiet splash vt.handoff=7
SourcePackage: xorg
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 12/14/2011
dmi.bios.vendor: LENOVO
dmi.bios.version: 6FET92WW (3.22 )
dmi.board.name: 20823HU
dmi.board.vendor: LENOVO
dmi.board.version: Not Available
dmi.chassis.asset.tag: No Asset Information
dmi.chassis.type: 10
dmi.chassis.vendor: LENOVO
dmi.chassis.version: Not Available
dmi.modalias: 
dmi:bvnLENOVO:bvr6FET92WW(3.22):bd12/14/2011:svnLENOVO:pn20823HU:pvrThinkPadT500:rvnLENOVO:rn20823HU:rvrNotAvailable:cvnLENOVO:ct10:cvrNotAvailable:
dmi.product.name: 20823HU
dmi.product.version: ThinkPad T500
dmi.sys.vendor: LENOVO
version.compiz: compiz 1:0.9.8.4+bzr3407-0ubuntu1
version.fglrx-installer: fglrx-installer N/A
version.ia32-libs: ia32-libs 20090808ubuntu36
version.libdrm2: libdrm2 2.4.39-0ubuntu1
version.libgl1-mesa-dri: libgl1-mesa-dri 9.0-0ubuntu1
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 9.0-0ubuntu1
version.xserver-xorg-core: xserver-xorg-core 3:1.12.4+git20121105-makson1~ppa2
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 
2:2.7.3+git20120928~quantal2
version.xserver-xorg-video-ati: xserver-xorg-video-ati 
2:6.14.6+git20120928~quantal1
version.xserver-xorg-video-intel: xserver-xorg-video-intel 
3:2.20.8+git20120928~quantal2
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
2:1.0.2+git20120928~quantal1

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


** Tags: amd64 apport-bug compiz-0.9 quantal running-unity third-party-packages 
ubuntu

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

Title:
  Overheating Lenovo Thinkpad T500

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

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


[Bug 1079937] Re: Do something with App Showdown submissions

2012-11-18 Thread Сергій Загорія
** Attachment removed: ProcEnviron.txt
   
https://bugs.launchpad.net/ubuntu/+source/ubuntu-meta/+bug/1079937/+attachment/3436149/+files/ProcEnviron.txt

** Tags removed: i386

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

Title:
  Do something with App Showdown submissions

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

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


[Bug 1016976] Re: crystalhd-dkms crashes on installation on 3.5.0-1 kernel

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

** Changed in: crystalhd (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/1016976

Title:
  crystalhd-dkms crashes on installation on 3.5.0-1 kernel

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

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


[Bug 1002176] Re: graphical glitches with applets when using gnome-panel and compiz-0.9

2012-11-18 Thread Alistair Buxton
** Changed in: gnome-panel (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/1002176

Title:
  graphical glitches with applets when using gnome-panel and compiz-0.9

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

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


[Bug 1080291] Re: Overheating Lenovo Thinkpad T500

2012-11-18 Thread Bucic
** Description changed:

  Lenovo Thinkpad T500 runs hot / on high fan RPM when configured to use
  the discrete Mobility Radeon 3650 instead Intel graphics. I haven't
  noticed any differences between Catalyst and open source driver so I'm
  reporting from Catalyst-configured configuration. Open source is a no-
  go!
  
  I use sensors command in terminal to verify temp values:
  For intel it's below 2000 RPM and temps circa 40
  For AMD it's close to 3000 RPM and temps 45 and higher. Once RPM reaches 
higher threshold, it never goes to lower RPM values.
  
+ Observed in both 12.04 x64 and 12.10 x64. 100% sure
+ Observed across all kernel versions available for 12.10 (official) and most 
recent 12.04 kernel versions. As for the previous kernels - I'm not sure.
+ 
+ I've gathered some *.apport files from different configurations, so let
+ me know if it's needed.
+ 
  ProblemType: Bug
  DistroRelease: Ubuntu 12.10
  Package: xorg 1:7.7+1ubuntu4
  ProcVersionSignature: Ubuntu 3.5.0-18.29-generic 3.5.7
  Uname: Linux 3.5.0-18-generic x86_64
  NonfreeKernelModules: fglrx
  .tmp.unity.support.test.0:
-  
+ 
  ApportVersion: 2.6.1-0ubuntu6
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  Date: Sun Nov 18 11:01:31 2012
  DistUpgraded: Fresh install
  DistroCodename: quantal
  DistroVariant: ubuntu
  DkmsStatus: fglrx-legacy, 8.97.100.3, 3.5.0-18-generic, x86_64: installed
  ExtraDebuggingInterest: Yes
  GraphicsCard:
-  Advanced Micro Devices [AMD] nee ATI RV635 [Mobility Radeon HD 3650] 
[1002:9591] (prog-if 00 [VGA controller])
-Subsystem: Lenovo Device [17aa:2117]
+  Advanced Micro Devices [AMD] nee ATI RV635 [Mobility Radeon HD 3650] 
[1002:9591] (prog-if 00 [VGA controller])
+    Subsystem: Lenovo Device [17aa:2117]
  InstallationDate: Installed on 2012-11-12 (5 days ago)
  InstallationMedia: Ubuntu 12.10 Quantal Quetzal - Release amd64 (20121017.5)
  MachineType: LENOVO 20823HU
  MarkForUpload: True
  PccardctlIdent:
-  Socket 0:
-no product info available
+  Socket 0:
+    no product info available
  PccardctlStatus:
-  Socket 0:
-no card
+  Socket 0:
+    no card
  ProcEnviron:
-  PATH=(custom, no user)
-  XDG_RUNTIME_DIR=set
-  LANG=en_US.UTF-8
-  SHELL=/bin/bash
+  PATH=(custom, no user)
+  XDG_RUNTIME_DIR=set
+  LANG=en_US.UTF-8
+  SHELL=/bin/bash
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.5.0-18-generic 
root=UUID=a144bb5d-50ba-49c4-aadc-c57f5a0e5d4d ro quiet splash vt.handoff=7
  SourcePackage: xorg
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 12/14/2011
  dmi.bios.vendor: LENOVO
  dmi.bios.version: 6FET92WW (3.22 )
  dmi.board.name: 20823HU
  dmi.board.vendor: LENOVO
  dmi.board.version: Not Available
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Not Available
  dmi.modalias: 
dmi:bvnLENOVO:bvr6FET92WW(3.22):bd12/14/2011:svnLENOVO:pn20823HU:pvrThinkPadT500:rvnLENOVO:rn20823HU:rvrNotAvailable:cvnLENOVO:ct10:cvrNotAvailable:
  dmi.product.name: 20823HU
  dmi.product.version: ThinkPad T500
  dmi.sys.vendor: LENOVO
  version.compiz: compiz 1:0.9.8.4+bzr3407-0ubuntu1
  version.fglrx-installer: fglrx-installer N/A
  version.ia32-libs: ia32-libs 20090808ubuntu36
  version.libdrm2: libdrm2 2.4.39-0ubuntu1
  version.libgl1-mesa-dri: libgl1-mesa-dri 9.0-0ubuntu1
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 9.0-0ubuntu1
  version.xserver-xorg-core: xserver-xorg-core 3:1.12.4+git20121105-makson1~ppa2
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 
2:2.7.3+git20120928~quantal2
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 
2:6.14.6+git20120928~quantal1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
3:2.20.8+git20120928~quantal2
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
2:1.0.2+git20120928~quantal1

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

Title:
  Overheating Lenovo Thinkpad T500

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

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

[Bug 1059633] Re: Emacs 'Ediff' Window Shrinks Horizontally To One Column Wide

2012-11-18 Thread JonHurst
Bug apparent in standard Unity environment, but not in Gnome Classic or
Unity 2D environments.

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

Title:
  Emacs 'Ediff' Window Shrinks Horizontally To One Column Wide

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

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


[Bug 922196] Re: openshot cuts off the last second of video when exporting to bluray

2012-11-18 Thread Alistair Buxton
Ran into this again the other day. This time when exporting to OGG.

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

Title:
  openshot cuts off the last second of video when exporting to bluray

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

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


[Bug 620295] Re: hamster-applet crashed with AttributeError in __init__()

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

** Changed in: hamster-applet (Ubuntu)
   Status: New = Confirmed

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

Title:
  hamster-applet crashed with AttributeError in __init__()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/hamster-applet/+bug/620295/+subscriptions

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


[Bug 1016976] Re: crystalhd-dkms crashes on installation on 3.5.0-1 kernel

2012-11-18 Thread Megagolgoth
Same issue. I've tried your solution, without success.  However
computilation through DKMS work fine, but VLC open CrystalHD hardware,
but i got a black window.

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

Title:
  crystalhd-dkms crashes on installation on 3.5.0-1 kernel

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

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


[Bug 1072288] Re: package libwildmidi-config (not installed) failed to install/upgrade: trying to overwrite '/etc/wildmidi/wildmidi.cfg', which is also in package libwildmidi0 0.2.2-2

2012-11-18 Thread Rolf Leggewie
*** This bug is a duplicate of bug 924508 ***
https://bugs.launchpad.net/bugs/924508

** This bug has been marked a duplicate of bug 924508
   Lucid to Precise: must Conflicts and Provides/Break older wildmidi to 
prevent APT loops during upgrade

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

Title:
  package libwildmidi-config (not installed) failed to install/upgrade:
  trying to overwrite '/etc/wildmidi/wildmidi.cfg', which is also in
  package libwildmidi0 0.2.2-2

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

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


[Bug 1079940] Re: [Sony VAIO VPCS137GG] Laptop suspend fails

2012-11-18 Thread Damian Beltrami
No.  I have always been able to suspend and resume.  The last few
releases has seen the issue appear at release time but it has been
addressed shortly after.

Frankly, Suspend/Resume is a critical function and it is disappointing
that it continues to be an issue with each new release.  I note that
there are a number of other users, on different hardware, impacted by
this issue also.

Thanks for your ongoing help Chistopher.

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

Title:
  [Sony VAIO VPCS137GG] Laptop suspend fails

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

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


[Bug 1042518] Re: package libwildmidi-config 0.2.3.4-2.1 failed to install/upgrade: intentando sobreescribir `/etc/wildmidi/wildmidi.cfg', que está también en el paquete libwildmidi0 0.2.2-2

2012-11-18 Thread Rolf Leggewie
*** This bug is a duplicate of bug 924508 ***
https://bugs.launchpad.net/bugs/924508

** This bug has been marked a duplicate of bug 924508
   Lucid to Precise: must Conflicts and Provides/Break older wildmidi to 
prevent APT loops during upgrade

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

Title:
  package libwildmidi-config 0.2.3.4-2.1 failed to install/upgrade:
  intentando sobreescribir `/etc/wildmidi/wildmidi.cfg', que está
  también en el paquete libwildmidi0 0.2.2-2

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

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

[Bug 1041765] Re: package libwildmidi-config 0.2.3.4-2.1 failed to install/upgrade: Versuche, »/etc/wildmidi/wildmidi.cfg« zu überschreiben, welches auch in Paket libwildmidi0 0.2.2-3~ppa1~lucid1 ist

2012-11-18 Thread Rolf Leggewie
*** This bug is a duplicate of bug 924508 ***
https://bugs.launchpad.net/bugs/924508

** This bug has been marked a duplicate of bug 924508
   Lucid to Precise: must Conflicts and Provides/Break older wildmidi to 
prevent APT loops during upgrade

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

Title:
  package libwildmidi-config 0.2.3.4-2.1 failed to install/upgrade:
  Versuche, »/etc/wildmidi/wildmidi.cfg« zu überschreiben, welches auch
  in Paket libwildmidi0 0.2.2-3~ppa1~lucid1 ist

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

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

[Bug 924508] Re: Lucid to Precise: must Conflicts and Provides/Break older wildmidi to prevent APT loops during upgrade

2012-11-18 Thread Rolf Leggewie
a real shame this still isn't fixed

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

** Changed in: wildmidi (Ubuntu)
   Status: New = Triaged

** Changed in: wildmidi (Ubuntu)
Milestone: None = precise-updates

** Tags added: lucid2precise

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

Title:
  Lucid to Precise: must Conflicts and Provides/Break older wildmidi to
  prevent APT loops during upgrade

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