[Bug 623342] Re: ntlm_auth returns invalid NT_KEY

2010-11-28 Thread Kai Blin
As of 2010-11-16, this bug is not yet confirmed to be fixed. If you want
to help, please test the bugfix on the corresponding Samba bug and
report your results on the Samba bugzilla.

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

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


[Bug 682219] Re: Please merge nagios-plugins 1.4.15-2 (main) from debian unstable (main)

2010-11-28 Thread Alessio Treglia
Misspelling:

+  + Keep on building with libradius1-dev to avoid pusing radiusclient-ng 
to 
+main.

Please do *NOT* just copypaste old changelog entries.

-- 
Please merge nagios-plugins 1.4.15-2 (main) from debian unstable (main)
https://bugs.launchpad.net/bugs/682219
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to nagios-plugins in ubuntu.

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


[Bug 138436] Re: Delay during installation of master server

2010-11-28 Thread Teej
We are closing this bug report because there was no answer, as described
in the previous comments. Please reopen it if you can give us the
missing information, and don't hesitate to submit bug reports in the
future. To reopen the bug report you can click on the current status,
under the Status column, and change the Status back to New. Thanks
again!

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

-- 
Delay during installation of master server
https://bugs.launchpad.net/bugs/138436
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to nis in ubuntu.

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


[Bug 681167] Re: php seg faults if both php5-xcache and php-apc installed

2010-11-28 Thread Clint Byrum
I do agree that the two should conflict, but the segfault is a different
issue that may still be a problem with xcache:


(gdb) run
Starting program: /usr/bin/php 
[Thread debugging using libthread_db enabled]
PHP Warning:  Cannot load module 'XCache' because conflicting module 'apc' is 
already loaded in Unknown on line 0

Program received signal SIGSEGV, Segmentation fault.
0x7561de50 in ?? ()
(gdb) bt
#0  0x7561de50 in ?? ()
#1  0x0068fa69 in zend_execute_scripts (type=8, retval=0x0, 
file_count=3) at /build/buildd/php5-5.3.3/Zend/zend.c:1258
#2  0x0063ca73 in php_execute_script (primary_file=0x7fffdd30) at 
/build/buildd/php5-5.3.3/main/main.c:2288
#3  0x00729694 in main (argc=-5000, argv=0x0) at 
/build/buildd/php5-5.3.3/sapi/cli/php_cli.c:1196


Still I think its most likely that PHP or php-apc is handling the error 
condition poorly since xcache clearly isn't getting loaded.

Interestingly enough, php -i does not segfault, so its only when we try
to execute a script.

Marking Confirmed in php5 *and* php-apc. Setting Importance to Low,
since there are very few conflicting zend caching modules.

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

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

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

** Also affects: php-apc (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: php-apc (Ubuntu)
   Status: New = Confirmed

** Changed in: php-apc (Ubuntu)
   Importance: Undecided = Low

-- 
php seg faults if both php5-xcache and php-apc installed
https://bugs.launchpad.net/bugs/681167
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to php5 in ubuntu.

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


[Bug 681713] Re: package apache2.2-common 2.2.16-1ubuntu3 failed to install/upgrade: ErrorMessage: subprocess installed post-installation script returned error exit status 1

2010-11-28 Thread Clint Byrum
Hello Zer0wl, thank you for taking the time to file this bug report and
help us make Ubuntu better.

I believe this is a duplicate of bug #562370 , but to confirm that, can
you try running

sudo a2dismod reqtimeout

and then

sudo dpkg-reconfigure -a

That should complete the upgrade. It may also mean we need to reopen bug
#562370 for maverick as the problem is still happening.

Marking Incomplete pending response from Zer0wl.

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

-- 
package apache2.2-common 2.2.16-1ubuntu3 failed to install/upgrade: 
ErrorMessage: subprocess installed post-installation script returned error exit 
status 1
https://bugs.launchpad.net/bugs/681713
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to apache2 in ubuntu.

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


[Bug 497149] Re: Packages using DKMS should make use of /usr/lib/dkms/common.postinst

2010-11-28 Thread Sven Eckelmann
kqemu isn't part of Ubuntu since lucid

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

-- 
Packages using DKMS should make use of /usr/lib/dkms/common.postinst
https://bugs.launchpad.net/bugs/497149
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to drbd8 in ubuntu.

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


[Bug 681891] Re: Problem with table 'key' and similar 'keys' etc.

2010-11-28 Thread Clint Byrum
Hello Dmitry, thank you for taking the time to file this bug report and
help us make Ubuntu better!

The statement

select * from key;

does indeed have a reserved word, key, that is unquoted, and so its
syntax is invalid.

select * from `key`;

Works fine.

Closing as Invalid.

** Changed in: mysql-5.1 (Ubuntu)
   Status: New = Invalid

-- 
Problem with table 'key' and similar 'keys' etc.
https://bugs.launchpad.net/bugs/681891
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-5.1 in ubuntu.

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


[Bug 681701] Re: openvswitch postinst fails

2010-11-28 Thread Launchpad Bug Tracker
This bug was fixed in the package openvswitch - 1.1.0~pre2-5ubuntu4

---
openvswitch (1.1.0~pre2-5ubuntu4) natty; urgency=low

  * debian/rules, debian/dkms.conf.in: Fix up dkms
support a bit better. (LP: #681701)
  * debian/patches/fix-openvswitch-2.6.37.patch: Fix build on 2.6.37.
 -- Chuck Short zul...@ubuntu.com   Sat, 27 Nov 2010 22:25:05 -0500

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

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

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


[Bug 681427] Re: Please merge ipsec-tools 1:0.7.3-12 (main) from debian unstable (main)

2010-11-28 Thread Bug Watch Updater
** Changed in: ipsec-tools (Debian)
   Status: Unknown = Fix Released

-- 
Please merge ipsec-tools 1:0.7.3-12 (main) from debian unstable (main)
https://bugs.launchpad.net/bugs/681427
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to ipsec-tools in ubuntu.

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


[Bug 332606] Re: Racoon 0.7 fails with address already in use

2010-11-28 Thread Bug Watch Updater
** Changed in: ipsec-tools (Debian)
   Status: Unknown = Fix Released

-- 
Racoon 0.7 fails with address already in use
https://bugs.launchpad.net/bugs/332606
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to ipsec-tools in ubuntu.

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


[Bug 681713] Re: package apache2.2-common 2.2.16-1ubuntu3 failed to install/upgrade: ErrorMessage: subprocess installed post-installation script returned error exit status 1

2010-11-28 Thread Zer0wL
I found a problem,
it was because of not taking last version of apache configuration from new dpkg.
So when I really merged all the new configuration files.
Everething fine now.

-- 
package apache2.2-common 2.2.16-1ubuntu3 failed to install/upgrade: 
ErrorMessage: subprocess installed post-installation script returned error exit 
status 1
https://bugs.launchpad.net/bugs/681713
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to apache2 in ubuntu.

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


[Bug 668042] Re: If Libvirtd is restarted, libvirt drops active domains lose network interface info.

2010-11-28 Thread Steven Wagner
I installed the package Dave. So far so good, ill let it run for a
while. Thank you.

-- 
If Libvirtd is restarted, libvirt drops active domains lose network interface 
info.
https://bugs.launchpad.net/bugs/668042
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to libvirt in ubuntu.

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


[Bug 494141] Re: CUPS starts after SAMBA; printers are not available (convert cups to upstart)

2010-11-28 Thread Matt Burkhardt
I've been running Ubuntu LTS Versions since 6.06 and doing the upgrades.
I'm currently at 10.04 and I've got this exact same problem.

I've tried adding in the fix listed in Comments #18 and #25 (the same
fix), but that doesn't work at all - meaning Samba does not load at all
and running smbtree gives me nothing.

I have also tried putting the /etc/rc2.d/S50cups and move it to S05cups
- but still doesn't work.

I'm not sending the cups.conf file because I'm not on Maverick and it
runs just fine if I stop and start cups then smbd

Samba has been running fine with CUPS the last 3 1/2 years on that box
with all the LTS updates applied and this last set broke a couple of
things - but mostly CUPS / XSANE related.  Any help or pointers
appreciated

-- 
CUPS starts after SAMBA; printers are not available (convert cups to upstart)
https://bugs.launchpad.net/bugs/494141
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in ubuntu.

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


[Bug 682500] [NEW] Agent admitted failure to sign using the key.

2010-11-28 Thread Pedro Bessa
Public bug reported:

.ssh dir is chmodded 700, id_rsa.pub 600, id_rsa 400.

I ran ssh-keygen -t rsa, imported key to launchpad, ran bzr branch lp:unity, 
got error message:
Agent admitted failure to sign using the key.
Permission denied (publickey).
bzr: ERROR: Connection closed: Unexpected end of message. Please check 
connectivity and permissions, and report a bug if problems persist.

auth.log:

Nov 28 20:23:13 ubuntu sudo:  deltrem : TTY=pts/0 ; 
PWD=/home/deltrem/Documentos/repositories ; USER=root ; COMMAND=/usr/bin/bzr 
branch lp:unity
Nov 28 20:39:01 ubuntu CRON[2959]: pam_unix(cron:session): session opened for 
user root by (uid=0)
Nov 28 20:39:01 ubuntu CRON[2959]: pam_unix(cron:session): session closed for 
user root
Nov 28 20:41:04 ubuntu gnome-screensaver-dialog: gkr-pam: unlocked login keyring

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

-- 
Agent admitted failure to sign using the key.
https://bugs.launchpad.net/bugs/682500
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openssh in ubuntu.

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


[Bug 682501] [NEW] php5 5.3.3-1 causing segfaults - 5.3.3-4 backport for maverick?

2010-11-28 Thread c_t
Public bug reported:

Binary package hint: php5

With the current php packages in lucid (5.3.2) and maverick (5.3.3-1)
some php applications including e.g. egroupware 1.8 cause php to
segfault. My apache error.log is full of messages like these:

[Sun Nov 28 23:43:18 2010] [notice] child pid 3924 exit signal Segmentation 
fault (11)
[Sun Nov 28 23:43:19 2010] [notice] child pid 2373 exit signal Segmentation 
fault (11)

Users in the egroupware mailinglist have reported
(http://egroupware.219119.n3.nabble.com/Zwei-Module-UserMgmt-
Dateimanager-funktionieren-nicht-out-of-the-box-tp1776310p1962159.html)
that most of the segfaults are gone with php 5.3.3-4 from debian
unstable (http://packages.debian.org/sid/php5).

Would it be possible to provide a package of php5 5.3.3-4 in maverick-
backports?

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

-- 
php5 5.3.3-1 causing segfaults - 5.3.3-4 backport for maverick?
https://bugs.launchpad.net/bugs/682501
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to php5 in ubuntu.

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


[Bug 682501] Re: php5 5.3.3-1 causing segfaults - 5.3.3-4 backport for maverick?

2010-11-28 Thread Micah Gersten
Unfortunately, it's not possible to provide backports of a heavily used
library like PHP, but if you can find the commit that fixes the segfault
you are having, we can try to SRU
(https://wiki.ubuntu.com/StableReleaseUpdates) it.

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

-- 
php5 5.3.3-1 causing segfaults - 5.3.3-4 backport for maverick?
https://bugs.launchpad.net/bugs/682501
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to php5 in ubuntu.

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


[Bug 682500] Re: Agent admitted failure to sign using the key.

2010-11-28 Thread Max Bowsher
Pedro,

Please reproduce the failure, then run echo $SSH_AUTH_SOCK in the same
shell, and tell us whether the result begins /tmp/ssh- or /tmp/keyring-
: this will ascertain whether you are using the openssh ssh-agent, or
the reimplementation of the ssh-agent protocol in gnome-keyring-daemon.

I suspect the latter, in which case this bug needs to be on the gnome-
keyring package, not the openssh one.

-- 
Agent admitted failure to sign using the key.
https://bugs.launchpad.net/bugs/682500
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openssh in ubuntu.

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


Re: [Bug 682085] Re: Tryd sharing installed samba Unknown process runing not allowing log out

2010-11-28 Thread Kangarooo
Got on next shut down this again but from different programm: Power
Manager ingibit Applet, Manual Inhibit


** Attachment added: Screenshot-Untitled Window.png
   
https://bugs.launchpad.net/bugs/682085/+attachment/1748392/+files/Screenshot-Untitled%20Window.png

-- 
Tryd sharing installed samba Unknown process runing not allowing log out
https://bugs.launchpad.net/bugs/682085
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in ubuntu.

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


[Bug 540121] Re: does not terminate at computer shutdown

2010-11-28 Thread Launchpad Bug Tracker
[Expired for openssh (Ubuntu) because there has been no activity for 60
days.]

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

-- 
does not terminate at computer shutdown
https://bugs.launchpad.net/bugs/540121
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openssh in ubuntu.

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


[Bug 537327] Re: kvm in karmic: smp win2003 guests crash on reboot

2010-11-28 Thread Launchpad Bug Tracker
[Expired for qemu-kvm (Ubuntu) because there has been no activity for 60
days.]

** Changed in: qemu-kvm (Ubuntu)
   Status: Incomplete = Expired

-- 
kvm in karmic: smp win2003 guests crash on reboot
https://bugs.launchpad.net/bugs/537327
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to qemu-kvm in ubuntu.

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


[Bug 263398] Re: spamassassin sends some mails to junk

2010-11-28 Thread Launchpad Bug Tracker
[Expired for spamassassin (Ubuntu) because there has been no activity
for 60 days.]

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

-- 
spamassassin sends some mails to junk
https://bugs.launchpad.net/bugs/263398
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to spamassassin in ubuntu.

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


[Bug 681713] Re: package apache2.2-common 2.2.16-1ubuntu3 failed to install/upgrade: ErrorMessage: subprocess installed post-installation script returned error exit status 1

2010-11-28 Thread Clint Byrum
Zer0wl, thanks for the response.

Closing the bug as Invalid.

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

-- 
package apache2.2-common 2.2.16-1ubuntu3 failed to install/upgrade: 
ErrorMessage: subprocess installed post-installation script returned error exit 
status 1
https://bugs.launchpad.net/bugs/681713
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to apache2 in ubuntu.

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


[Bug 674093] Re: No Such Object at OID 1.3.6.1.2.1.25.6.3.1.2

2010-11-28 Thread Thomas Häcker
** Changed in: net-snmp (Ubuntu)
   Status: Incomplete = New

-- 
No Such Object at OID 1.3.6.1.2.1.25.6.3.1.2
https://bugs.launchpad.net/bugs/674093
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to net-snmp in ubuntu.

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


[Bug 678050] Re: support for apt:package-name?minver=1.0 syntax

2010-11-28 Thread Greg Auger
My apologies, I only had only tested this on packages I had already
installed.

However I think if the package is already installed then a message
should be displayed regardless. I think this is what the specification
says also.

I'm not sure what the anticipated use cases for the ?minver syntax is
but I imagine the scenario of someone in the forums or Ask Ubuntu
saying, The newer versions of Banshee have that feature with a ?minver
link. I think it should be made to stand out on the resulting software
centre screen that the version is not the one requested - whether the
software be installed or not.

So when the package is already installed I would advocate either a
second bar or for the single one to read Installed on 2010-10-28,
Version 0.7 or later not available.


** Changed in: software-center (Ubuntu)
   Status: Incomplete = New

-- 
support for apt:package-name?minver=1.0 syntax
https://bugs.launchpad.net/bugs/678050
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 450493] Re: xorg: failed to load module nvidia

2010-11-28 Thread sudhir gaikwad

X.Org X Server 1.7.6
Release Date: 2010-03-17
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.24-28-server i686 Ubuntu
Current Operating System: Linux ubuntu 2.6.32-26-generic #47-Ubuntu SMP Wed Nov 
17 15:59:05 UTC 2010 i686
Kernel command line: BOOT_IMAGE=/boot/vmlinuz-2.6.32-26-generic 
root=UUID=8d18815c-0cde-4d66-aa7f-1f8c728269cf ro quiet splash
Build Date: 10 November 2010  11:25:26AM
xorg-server 2:1.7.6-2ubuntu7.4 (For technical support please see 
http://www.ubuntu.com/support) 
Current version of pixman: 0.16.4
Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: /var/log/Xorg.0.log, Time: Sat Nov 27 08:52:16 2010
(==) Using config file: /etc/X11/xorg.conf
(==) Using config directory: /usr/lib/X11/xorg.conf.d
(==) No Layout section.  Using the first Screen section.
(**) |--Screen Default Screen (0)
(**) |   |--Monitor default monitor
(==) No device specified for screen Default Screen.
Using the first device section listed.
(**) |   |--Device Default Device
(==) No monitor specified for screen Default Screen.
Using a default monitor configuration.
(==) Automatically adding devices
(==) Automatically enabling devices
(WW) The directory /usr/share/fonts/X11/cyrillic does not exist.
Entry deleted from font path.
(==) FontPath set to:
/usr/share/fonts/X11/misc,
/usr/share/fonts/X11/100dpi/:unscaled,
/usr/share/fonts/X11/75dpi/:unscaled,
/usr/share/fonts/X11/Type1,
/usr/share/fonts/X11/100dpi,
/usr/share/fonts/X11/75dpi,
/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType,
built-ins
(==) ModulePath set to /usr/lib/xorg/extra-modules,/usr/lib/xorg/modules
(II) The server relies on udev to provide the list of input devices.
If no devices become available, reconfigure udev or disable 
AutoAddDevices.
(II) Loader magic: 0x81f1b20
(II) Module ABI versions:
X.Org ANSI C Emulation: 0.4
X.Org Video Driver: 6.0
X.Org XInput driver : 7.0
X.Org Server Extension : 2.0
(++) using VT number 7

(--) PCI: (0:0:1:3) 10de:03f4:1043:8234 nVidia Corporation MCP61 SMU rev 162, 
Mem @ 0x7800/524288
(--) PCI:*(0:0:13:0) 10de:03d0:1043:8234 nVidia Corporation C61 [GeForce 6150SE 
nForce 430] rev 162, Mem @ 0xde00/16777216, 0xc000/268435456, 
0xdd00/16777216, BIOS @ 0x/131072
(II) Open ACPI successful (/var/run/acpid.socket)
(II) extmod will be loaded by default.
(II) dbe will be loaded by default.
(II) glx will be loaded. This was enabled by default and also specified in 
the config file.
(II) record will be loaded by default.
(II) dri will be loaded by default.
(II) dri2 will be loaded by default.
(II) LoadModule: glx
(II) Loading /usr/lib/xorg/extra-modules/libglx.so
(II) Module glx: vendor=NVIDIA Corporation
compiled for 4.0.2, module version = 1.0.0
Module class: X.Org Server Extension
(II) NVIDIA GLX Module  195.36.24  Thu Apr 22 10:38:29 PDT 2010
(II) Loading extension GLX
(II) LoadModule: extmod
(II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
(II) Module extmod: vendor=X.Org Foundation
compiled for 1.7.6, module version = 1.0.0
Module class: X.Org Server Extension
ABI class: X.Org Server Extension, version 2.0
(II) Loading extension MIT-SCREEN-SAVER
(II) Loading extension XFree86-VidModeExtension
(II) Loading extension XFree86-DGA
(II) Loading extension DPMS
(II) Loading extension XVideo
(II) Loading extension XVideo-MotionCompensation
(II) Loading extension X-Resource
(II) LoadModule: dbe
(II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
(II) Module dbe: vendor=X.Org Foundation
compiled for 1.7.6, module version = 1.0.0
Module class: X.Org Server Extension
ABI class: X.Org Server Extension, version 2.0
(II) Loading extension DOUBLE-BUFFER
(II) LoadModule: record
(II) Loading /usr/lib/xorg/modules/extensions/librecord.so
(II) Module record: vendor=X.Org Foundation
compiled for 1.7.6, module version = 1.13.0
Module class: X.Org Server Extension
ABI class: X.Org Server Extension, version 2.0
(II) Loading extension RECORD
(II) LoadModule: dri
(II) Loading /usr/lib/xorg/modules/extensions/libdri.so
(II) Module dri: vendor=X.Org Foundation
compiled for 1.7.6, module version = 1.0.0
ABI class: X.Org Server Extension, version 2.0
(II) Loading extension XFree86-DRI
(II) LoadModule: dri2
(II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
(II) Module dri2: vendor=X.Org Foundation
compiled for 1.7.6, module version = 1.1.0
ABI class: X.Org Server Extension, version 2.0
(II) Loading extension DRI2
(II) LoadModule: nvidia
(II) Loading 

[Bug 662365] Re: eeepc_wmi: Unknown key 88 pressed when pressing Fn+F2 on Asus EEE1005HA

2010-11-28 Thread PrebenR
Hi

I tested the kernel linked above. It removed the complaints about
unknown key, but wireless is not turned on. The kernel modules are not
loaded etc... Does this mean there is another problem, or is it still
related to this error?

-- 
eeepc_wmi: Unknown key 88 pressed when pressing Fn+F2 on Asus EEE1005HA
https://bugs.launchpad.net/bugs/662365
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 682297] [NEW] Apport crashes when using ubuntu-bug for acroread

2010-11-28 Thread Tor Klingberg
Public bug reported:

Binary package hint: apport

I was trying to report a bug in Acrobat Reader by typing
 ubuntu-bug 26258
on the terminal, where 26258 is the pid of acroread. I then get the error 
message
hook /usr/share/apport/general-hooks/medibuntu.py crashed:
Traceback (most recent call last):
  File /usr/lib/python2.6/dist-packages/apport/report.py, line 598, in 
add_hooks_info
symb['add_info'](self)
  File /usr/share/apport/general-hooks/medibuntu.py, line 15, in add_info
if report['Package'].split()[1].find('medibuntu') != -1:
  File /usr/lib/python2.6/UserDict.py, line 22, in __getitem__
raise KeyError(key)
KeyError: 'Package'

There is also a popup dialog Invalid problem report saying Could not 
determine the package or source package name.
Screenshot attached.

ProblemType: Bug
DistroRelease: Ubuntu 10.10
Package: apport-gtk 1.14.1-0ubuntu8
ProcVersionSignature: Ubuntu 2.6.35-22.35-generic 2.6.35.4
Uname: Linux 2.6.35-22-generic i686
NonfreeKernelModules: wl
ApportLog:
 
Architecture: i386
Date: Sun Nov 28 08:58:14 2010
ExecutablePath: /usr/share/apport/apport-gtk
InterpreterPath: /usr/bin/python2.6
PackageArchitecture: all
ProcEnviron:
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: apport

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


** Tags: apport-bug i386 maverick ubuntu-une

-- 
Apport crashes when using ubuntu-bug for acroread
https://bugs.launchpad.net/bugs/682297
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 682297] Re: Apport crashes when using ubuntu-bug for acroread

2010-11-28 Thread Tor Klingberg

** Attachment added: apport.png
   https://bugs.launchpad.net/bugs/682297/+attachment/1747468/+files/apport.png

-- 
Apport crashes when using ubuntu-bug for acroread
https://bugs.launchpad.net/bugs/682297
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 682299] [NEW] [ICH4 - Intel 82801DB-ICH4] PA test tone failed (alsa tone succeeded)

2010-11-28 Thread grassed
Public bug reported:

Binary package hint: pulseaudio

sound does not work.there is no sound. i ran alsmixer to make sure
nothing is muted. also checked my user priveleges to make sure i can use
audio devices.

ProblemType: Bug
DistroRelease: Ubuntu 10.10
Package: pulseaudio 1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu21
ProcVersionSignature: Ubuntu 2.6.35-22.33-generic 2.6.35.4
Uname: Linux 2.6.35-22-generic i686
AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.23.
Architecture: i386
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  vs 1581 F pulseaudio
 /dev/snd/pcmC0D0p:   vs 1581 F...m pulseaudio
Card0.Amixer.info:
 Card hw:0 'I82801DBICH4'/'Intel 82801DB-ICH4 with CMI9738 at irq 17'
   Mixer name   : 'C-Media Electronics CMI9738'
   Components   : 'AC97a:434d4941'
   Controls  : 32
   Simple ctrls  : 21
Card1.Amixer.info:
 Card hw:1 'UART'/'MPU-401 UART at 0x300, irq 5'
   Mixer name   : ''
   Components   : ''
   Controls  : 0
   Simple ctrls  : 0
Card1.Amixer.values:
 
CurrentDmesg:
 [   17.367455] eth0: link up, 100Mbps, full-duplex, lpa 0x41E1
 [   25.523600] EXT4-fs (sda4): re-mounted. Opts: errors=remount-ro,commit=0
 [   28.344042] eth0: no IPv6 routers present
 [   31.514678] EXT4-fs (sda4): re-mounted. Opts: errors=remount-ro,commit=0
Date: Sun Nov 28 13:12:24 2010
InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release i386 (20101007)
ProcEnviron:
 LANG=en_US.utf8
 SHELL=/bin/bash
SelectedCard: 0 I82801DBICH4 ICH4 - Intel 82801DB-ICH4
SourcePackage: pulseaudio
Symptom: audio
Title: [ICH4 - Intel 82801DB-ICH4] PA test tone failed (alsa tone succeeded)
dmi.bios.date: 04/02/01
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: 07.00T
dmi.board.name: M903LR
dmi.board.vendor: ECS
dmi.board.version: 1.0
dmi.chassis.asset.tag: 0123ABC
dmi.chassis.type: 3
dmi.chassis.vendor: ECS
dmi.chassis.version: 1.0
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr07.00T:bd04/02/01:svnECS:pnM903LR:pvr1.0:rvnECS:rnM903LR:rvr1.0:cvnECS:ct3:cvr1.0:
dmi.product.name: M903LR
dmi.product.version: 1.0
dmi.sys.vendor: ECS

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


** Tags: apport-bug i386 maverick

-- 
[ICH4 - Intel 82801DB-ICH4] PA test tone failed (alsa tone succeeded)
https://bugs.launchpad.net/bugs/682299
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 682299] Re: [ICH4 - Intel 82801DB-ICH4] PA test tone failed (alsa tone succeeded)

2010-11-28 Thread grassed


-- 
[ICH4 - Intel 82801DB-ICH4] PA test tone failed (alsa tone succeeded)
https://bugs.launchpad.net/bugs/682299
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 682241] Re: mozplugger wants to install Firefox on Kubuntu

2010-11-28 Thread Alessio Treglia
I'll apply the patch with my next upload to Debian.
Assigning to me for now.

** Changed in: mozplugger (Ubuntu)
   Importance: Wishlist = Low

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

** Changed in: mozplugger (Ubuntu)
 Assignee: (unassigned) = Alessio Treglia (quadrispro)

** Changed in: mozplugger (Ubuntu)
   Importance: Low = Wishlist

-- 
mozplugger wants to install Firefox on Kubuntu
https://bugs.launchpad.net/bugs/682241
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 681423] Re: [MIR] libssh2

2010-11-28 Thread Andreas Schneider
Hi,

does this mean you want to rewrite kio_sftp and maintain it in future
cause you believe the FUD written down at http://www.libssh2.org/libssh2
-vs-libssh.html ?

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

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


[Bug 682269] Re: clock applet does not support certain obvious locations

2010-11-28 Thread Fabio Marconi
I confirm the issue

** Package changed: ubuntu = alarm-clock-applet (Ubuntu)

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

-- 
clock applet does not support certain obvious locations
https://bugs.launchpad.net/bugs/682269
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 682202] Re: Beamer documentation is in the wrong location.

2010-11-28 Thread Bug Watch Updater
** Changed in: latex-beamer (Debian)
   Status: Unknown = New

-- 
Beamer documentation is in the wrong location.
https://bugs.launchpad.net/bugs/682202
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 664647] Re: acroread menu captions not transfered

2010-11-28 Thread Tor Klingberg

** Attachment added: Screenshot
   
https://bugs.launchpad.net/ubuntu/+source/indicator-appmenu/+bug/664647/+attachment/1747482/+files/acroread.png

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

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


[Bug 623342] Re: ntlm_auth returns invalid NT_KEY

2010-11-28 Thread Kai Blin
As of 2010-11-16, this bug is not yet confirmed to be fixed. If you want
to help, please test the bugfix on the corresponding Samba bug and
report your results on the Samba bugzilla.

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

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


[Bug 512188] Re: [0eef:0001] eGalax touch screen recognized but not working properly

2010-11-28 Thread Frank AFRIAT
thanks, for me also it is working using kernel 2.6.37-rc2 with my eGalax Touch 
Screen.
I also used xinput_callibrator successfully.

-- 
[0eef:0001] eGalax touch screen recognized but not working properly
https://bugs.launchpad.net/bugs/512188
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 682269] Re: clock applet does not support certain obvious locations

2010-11-28 Thread Andreas Noteng
** Changed in: alarm-clock-applet (Ubuntu)
   Importance: Undecided = Wishlist

-- 
clock applet does not support certain obvious locations
https://bugs.launchpad.net/bugs/682269
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 682295] Re: Frescobaldi fails to open

2010-11-28 Thread Tomas Cassidy
I got it to start by purging frescobaldi and all dependency packages and
removing the ~/.kde directory and then reinstalling the frescobaldi
package.

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

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


[Bug 682304] [NEW] bug when resize any window with keyboard in GNOME

2010-11-28 Thread LexRiver
Public bug reported:

Binary package hint: xorg

1) Press Alt+Space to open context menu for any window.
2) Select Resize.
3) Press Right several times, then Left several times
4) Press Down several times, then press Up several times
5) Press Left several times, then press Right several times
6) Pres Up several times, then press Down several times
7) Repeat steps 3 to 6 several times
Resizing becomes completely buggy. Cursor becomes far away from any edge of a 
window. Width and height of window resizes in buggy way, window jumps, etc...

A good example of keyboard resizing is in MsWindows. Only right and down
edge of window can be moved. And also Shift and Alt modificators keys
can be used.

Please fix this!

I'm using Ubuntu 10.10.

ProblemType: Bug
DistroRelease: Ubuntu 10.10
Package: xorg 1:7.5+6ubuntu3
ProcVersionSignature: Ubuntu 2.6.35-23.40-generic 2.6.35.7
Uname: Linux 2.6.35-23-generic x86_64
NonfreeKernelModules: nvidia
.proc.driver.nvidia.version:
 NVRM version: NVIDIA UNIX x86_64 Kernel Module  260.19.06  Mon Sep 13 04:29:19 
PDT 2010
 GCC version:  gcc version 4.4.5 (Ubuntu/Linaro 4.4.4-14ubuntu5)
Architecture: amd64
Date: Sun Nov 28 13:18:30 2010
InstallationMedia: Ubuntu 9.10 Karmic Koala - Release amd64 (20091027)
Lsusb:
 Bus 002 Device 002: ID 045e:0083 Microsoft Corp. Basic Optical Mouse
 Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
MachineType: System manufacturer System Product Name
ProcCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.35-23-generic 
root=UUID=b7f6720c-07a6-4981-827b-f948769f356c ro quiet splash
ProcEnviron:
 PATH=(custom, user)
 LANG=en_US.utf8
 SHELL=/bin/bash
SourcePackage: xorg
Symptom: display
dmi.bios.date: 05/28/2007
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: 0804
dmi.board.asset.tag: To Be Filled By O.E.M.
dmi.board.name: M2N-MX
dmi.board.vendor: ASUSTeK Computer INC.
dmi.board.version: Rev 1.xx
dmi.chassis.asset.tag: Asset-1234567890
dmi.chassis.type: 3
dmi.chassis.vendor: Chassis Manufacture
dmi.chassis.version: Chassis Version
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr0804:bd05/28/2007:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnM2N-MX:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
dmi.product.name: System Product Name
dmi.product.version: System Version
dmi.sys.vendor: System manufacturer
system:
 distro: Ubuntu
 codename:   maverick
 architecture:   x86_64
 kernel: 2.6.35-23-generic

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


** Tags: amd64 apport-bug maverick

-- 
bug when resize any window with keyboard in GNOME
https://bugs.launchpad.net/bugs/682304
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 682304] Re: bug when resize any window with keyboard in GNOME

2010-11-28 Thread LexRiver


-- 
bug when resize any window with keyboard in GNOME
https://bugs.launchpad.net/bugs/682304
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 680521] Re: GIMP: Embed page setup dialog functionality in the print dialog

2010-11-28 Thread Bilal Akhtar
Working on this one upstream.

** Changed in: hundredpapercuts
   Status: Triaged = In Progress

** Changed in: hundredpapercuts
 Assignee: Papercuts Ninja (papercuts-ninja) = Bilal Akhtar (bilalakhtar)

-- 
GIMP: Embed page setup dialog functionality in the print dialog
https://bugs.launchpad.net/bugs/680521
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 610898] Re: grub-pc upgrade renders computer unbootable when Wubi is installed to partition other than Windows

2010-11-28 Thread Lucas
Encounter this problem upgrading from 10.04 to 10.10. Window and Wubi on
the same hard drive but different partition.

After restarted, system changed to grub rescue promote, and error
message unknown file

-- 
grub-pc upgrade renders computer unbootable when Wubi is installed to partition 
other than Windows
https://bugs.launchpad.net/bugs/610898
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 682306] [NEW] package nautilus-data 1:2 .30.1-0ubuntu1 failed to install/upgrade: el subproc eso script post-removal nuevo devolvió el código de salida de error 1

2010-11-28 Thread German Perez
Public bug reported:

Binary package hint: nautilus

No problem in my computer.

ProblemType: Package
DistroRelease: Ubuntu 10.04
Package: nautilus-data 1:2.30.1-0ubuntu1
ProcVersionSignature: Ubuntu 2.6.32-22.36-generic 2.6.32.11+drm33.2
Uname: Linux 2.6.32-22-generic i686
Architecture: i386
Date: Sat Nov 27 22:01:45 2010
ErrorMessage: el subproceso script post-removal nuevo devolvió el código de 
salida de error 1
InstallationMedia: Guadalinex V7 GSD Lince - Final i386 (20100611)
PackageArchitecture: all
SourcePackage: nautilus
Title: package nautilus-data 1:2.30.1-0ubuntu1 failed to install/upgrade: el 
subproceso script post-removal nuevo devolvió el código de salida de error 1

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


** Tags: apport-package i386 lucid

-- 
package nautilus-data 1:2.30.1-0ubuntu1 failed to install/upgrade: el 
subproceso script post-removal nuevo devolvió el código de salida de error 1
https://bugs.launchpad.net/bugs/682306
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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

[Bug 682306] Re: package nautilus-data 1:2.30 .1-0ubuntu1 failed to install/upgrade: el subproceso s cript post-removal nuevo devolvió el código de s alida de error 1

2010-11-28 Thread German Perez


-- 
package nautilus-data 1:2.30.1-0ubuntu1 failed to install/upgrade: el 
subproceso script post-removal nuevo devolvió el código de salida de error 1
https://bugs.launchpad.net/bugs/682306
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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

[Bug 682305] [NEW] crash when clicking on note in preview window

2010-11-28 Thread Tomas Cassidy
Public bug reported:

Binary package hint: frescobaldi

Frescobaldi crashes every time I click on a note in the PDF preview
window.

ProblemType: Bug
DistroRelease: Ubuntu 10.10
Package: frescobaldi 1.0.2-1
ProcVersionSignature: Ubuntu 2.6.35-23.40-generic 2.6.35.7
Uname: Linux 2.6.35-23-generic x86_64
NonfreeKernelModules: nvidia
Architecture: amd64
Date: Sun Nov 28 19:34:12 2010
InstallationMedia: Ubuntu 9.10 Karmic Koala - Release amd64 (20091027)
PackageArchitecture: all
ProcEnviron:
 PATH=(cususername, user)
 LANG=en_AU.UTF-8
 SHELL=/bin/bash
SourcePackage: frescobaldi

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


** Tags: amd64 apport-bug maverick

-- 
crash when clicking on note in preview window
https://bugs.launchpad.net/bugs/682305
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 682305] Re: crash when clicking on note in preview window

2010-11-28 Thread Tomas Cassidy

** Attachment added: fresobaldi-console-output.log
   
https://bugs.launchpad.net/bugs/682305/+attachment/1747511/+files/fresobaldi-console-output.log

-- 
crash when clicking on note in preview window
https://bugs.launchpad.net/bugs/682305
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 682305] Re: crash when clicking on note in preview window

2010-11-28 Thread Tomas Cassidy

** Attachment added: python2-20101128-193634.kcrash
   
https://bugs.launchpad.net/ubuntu/+source/frescobaldi/+bug/682305/+attachment/1747513/+files/python2-20101128-193634.kcrash

-- 
crash when clicking on note in preview window
https://bugs.launchpad.net/bugs/682305
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 682222] Re: Visual inconsistency of input boxes

2010-11-28 Thread Fabio Marconi
** Package changed: ubuntu = emesene (Ubuntu)

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

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


[Bug 681459] Re: display won't go to sleep

2010-11-28 Thread Fabio Marconi
** Package changed: ubuntu = gnome-screensaver (Ubuntu)

-- 
display won't go to sleep
https://bugs.launchpad.net/bugs/681459
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 541512] Re: open-iscsi shutdown failure due to missing dir

2010-11-28 Thread Alkis Georgopoulos
Could we please have this in lucid-updates?
It breaks nbd-client too.

-- 
open-iscsi shutdown failure due to missing dir
https://bugs.launchpad.net/bugs/541512
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 682269] Re: clock applet does not support certain obvious locations

2010-11-28 Thread Omer Akram
** Also affects: alarm-clock
   Importance: Undecided
   Status: New

** Changed in: alarm-clock-applet (Ubuntu)
   Status: Confirmed = Triaged

-- 
clock applet does not support certain obvious locations
https://bugs.launchpad.net/bugs/682269
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 682307] [NEW] OpenBVE loads and then crashes

2010-11-28 Thread Stefan
Public bug reported:

Binary package hint: openbve

The following error message comes up after OpenBVE loads. It says I can
still continue with the error, though promptly crashes the moment I
click continue. What should I do?

Message says:

FileName /usr/share/games/bve/Railway/Route/Birmingham_Cross-
City_South/Day/../../xcs_preview_image.png not found in Route.Image at
line 6, column 1 in file /usr/share/games/bve/Railway/Route
/Birmingham_Cross-City_South/Day/323_Spring_2005_1128_Rain_Overcast.csv

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

-- 
OpenBVE loads and then crashes
https://bugs.launchpad.net/bugs/682307
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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

[Bug 610898] Re: grub-pc upgrade renders computer unbootable when Wubi is installed to partition other than Windows

2010-11-28 Thread bcbc
@Lucas, reinstall the windows bootloader to fix.

-- 
grub-pc upgrade renders computer unbootable when Wubi is installed to partition 
other than Windows
https://bugs.launchpad.net/bugs/610898
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 682126] Re: system freezes while resuming with AC unplugged on Dell Studio 1558

2010-11-28 Thread Fabio Marconi
This bug report is being closed due to your last comment regarding this
being fixed with an update. For future reference you can manage the
status of your own bugs by clicking on the current status in the yellow
line and then choosing a new status in the revealed drop down box. You
can learn more about bug statuses at
https://wiki.ubuntu.com/Bugs/Status. Thank you again for taking the time
to report this bug and helping to make Ubuntu better. Please submit any
future bugs you may find.

** Changed in: ubuntu
   Status: New = Invalid

-- 
system freezes while resuming with AC unplugged on Dell Studio 1558
https://bugs.launchpad.net/bugs/682126
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 413657] Re: Please sync tor 0.2.1.19-1 (universe) from Debian testing (main)

2010-11-28 Thread Artur Rona
Aron Xu, do you want to be a maintainer for tor in Ubuntu?

-- 
Please sync tor 0.2.1.19-1 (universe) from Debian testing (main)
https://bugs.launchpad.net/bugs/413657
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 682311] [NEW] Sync felix-latin 2.0-2 (universe) from Debian unstable (main)

2010-11-28 Thread Artur Rona
Public bug reported:

Please sync felix-latin 2.0-2 (universe) from Debian unstable (main)

Explanation of the Ubuntu delta and why it can be dropped:
I forwarded patch to Debian and maintainer has committed it.

Changelog entries since current natty version 2.0-1ubuntu1:

felix-latin (2.0-2) unstable; urgency=low

  * applied Artur Rona's patch, which allows a compilation with gcc 4.5

 -- Georges Khaznadar georg...@ofset.org  Sat, 27 Nov 2010 14:02:32
+0100

** Affects: felix-latin (Ubuntu)
 Importance: Wishlist
 Status: Confirmed

** Changed in: felix-latin (Ubuntu)
   Importance: Undecided = Wishlist

** Changed in: felix-latin (Ubuntu)
   Status: New = Confirmed

-- 
Sync felix-latin 2.0-2 (universe) from Debian unstable (main)
https://bugs.launchpad.net/bugs/682311
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 682310] [NEW] Copy to clipboard does not work

2010-11-28 Thread ToMe
Public bug reported:

In application GeoGebra (package  geogebra 3.2.44.0+dfsg1-1 , maverick 64 
bit), the copy to clipboard function does not work.
When trying to paste the clipboard entry in OpenOffice (3.2.1), nothing 
happens. 
When trying to paste the clipboard entry in GIMP (2.6.10), GIMP reports an 
error (no valid data in clipboard).

It's not clear to me, which application is responsible for this problem
(jre or geogebra).

It would be great if someone could confirm this issue...
Thanks.

** Affects: sun-java6 (Ubuntu)
 Importance: Undecided
 Status: New

-- 
Copy to clipboard does not work
https://bugs.launchpad.net/bugs/682310
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 682309] Re: jockey-gtk crashed with BackendCrashError in convert_dbus_exceptions()

2010-11-28 Thread Apport retracing service
*** This bug is a duplicate of bug 645922 ***
https://bugs.launchpad.net/bugs/645922

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

** Tags removed: need-duplicate-check

** Attachment removed: Dependencies.txt
   
https://bugs.edge.launchpad.net/bugs/682309/+attachment/1747532/+files/Dependencies.txt

** Attachment removed: ProcMaps.txt
   
https://bugs.edge.launchpad.net/bugs/682309/+attachment/1747538/+files/ProcMaps.txt

** Attachment removed: ProcStatus.txt
   
https://bugs.edge.launchpad.net/bugs/682309/+attachment/1747540/+files/ProcStatus.txt

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

** Visibility changed to: Public

-- 
jockey-gtk crashed with BackendCrashError in convert_dbus_exceptions()
https://bugs.launchpad.net/bugs/682309
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 682308] Re: indicator-application-service assert failure: *** glibc detected *** /usr/lib/indicator-application/indicator-application-service: double free or corruption (fasttop): 0x08bb6c38 ***

2010-11-28 Thread Apport retracing service
*** This bug is a duplicate of bug 640838 ***
https://bugs.launchpad.net/bugs/640838

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

** Attachment removed: CoreDump.gz
   
https://bugs.edge.launchpad.net/bugs/682308/+attachment/1747520/+files/CoreDump.gz

** Attachment removed: Dependencies.txt
   
https://bugs.edge.launchpad.net/bugs/682308/+attachment/1747521/+files/Dependencies.txt

** Attachment removed: Disassembly.txt
   
https://bugs.edge.launchpad.net/bugs/682308/+attachment/1747522/+files/Disassembly.txt

** Attachment removed: ProcMaps.txt
   
https://bugs.edge.launchpad.net/bugs/682308/+attachment/1747523/+files/ProcMaps.txt

** Attachment removed: ProcStatus.txt
   
https://bugs.edge.launchpad.net/bugs/682308/+attachment/1747524/+files/ProcStatus.txt

** Attachment removed: Registers.txt
   
https://bugs.edge.launchpad.net/bugs/682308/+attachment/1747525/+files/Registers.txt

** Attachment removed: Stacktrace.txt
   
https://bugs.edge.launchpad.net/bugs/682308/+attachment/1747526/+files/Stacktrace.txt

** Attachment removed: ThreadStacktrace.txt
   
https://bugs.edge.launchpad.net/bugs/682308/+attachment/1747527/+files/ThreadStacktrace.txt

** This bug has been marked a duplicate of bug 640838
   indicator-application-service assert failure: *** glibc detected *** 
/usr/lib/indicator-application/indicator-application-service: double free or 
corruption (fasttop): 0x0930ce28 ***
 * You can subscribe to bug 640838 by following this link: 
https://bugs.edge.launchpad.net/ubuntu/+source/indicator-application/+bug/640838/+subscribe

** Visibility changed to: Public

** Tags removed: need-i386-retrace

-- 
indicator-application-service assert failure: *** glibc detected *** 
/usr/lib/indicator-application/indicator-application-service: double free or 
corruption (fasttop): 0x08bb6c38 ***
https://bugs.launchpad.net/bugs/682308
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 682267] Re: command-not-found advice for LLVM programs is wrong

2010-11-28 Thread Matthias Klose
** Package changed: llvm (Ubuntu) = command-not-found (Ubuntu)

-- 
command-not-found advice for LLVM programs is wrong
https://bugs.launchpad.net/bugs/682267
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 682110] Re: Sudden Wifi Loss [FRENCH]

2010-11-28 Thread Fabio Marconi
*** This bug is a duplicate of bug 577189 ***
https://bugs.launchpad.net/bugs/577189

** This bug has been marked a duplicate of bug 577189
   iwl3945 microcode SW error detected under heavy net load
 * You can subscribe to bug 577189 by following this link: 
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/577189/+subscribe

-- 
Sudden Wifi Loss [FRENCH]
https://bugs.launchpad.net/bugs/682110
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 621857] Re: Please remove gstreamer0.10-pitfdll as a dependency (recommend

2010-11-28 Thread dino99
** Changed in: ubuntu-restricted-addons (Ubuntu)
   Status: New = Confirmed

-- 
Please remove gstreamer0.10-pitfdll as a dependency (recommend
https://bugs.launchpad.net/bugs/621857
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 577189] Re: iwl3945 microcode SW error detected under heavy net load

2010-11-28 Thread Fabio Marconi
** Changed in: linux (Ubuntu)
   Status: New = Confirmed

-- 
iwl3945 microcode SW error detected under heavy net load
https://bugs.launchpad.net/bugs/577189
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 504467] Re: hot corners are blocked by overlapping windows

2010-11-28 Thread Pocio
Same issue for me...in my case is gnome bottom panel that prevent me to use 
show-desktop bottom-left hot corner.
Restarting X or remove and re-add the binding solve temporarly the problem...

Has anyone solved?

Thanks a lot

-- 
hot corners are blocked by overlapping windows
https://bugs.launchpad.net/bugs/504467
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


Re: [Bug 413657] Re: Please sync tor 0.2.1.19-1 (universe) from Debian testing (main)

2010-11-28 Thread Aron Xu
On Sun, Nov 28, 2010 at 17:02, Artur Rona ari-tc...@ubuntu.com wrote:
 Aron Xu, do you want to be a maintainer for tor in Ubuntu?


It is okay for me, but I am not a MOTU nor universe-contributor.


-- 
Regards,
Aron Xu

-- 
Please sync tor 0.2.1.19-1 (universe) from Debian testing (main)
https://bugs.launchpad.net/bugs/413657
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 682313] [NEW] package fglrx 2:8.723.1-0ubuntu5 failed to install/upgrade: fglrx kernel module failed to build

2010-11-28 Thread Lorenzo Fedele
Public bug reported:

occurred during updating

Ubuntu Lucid Lynx 10.04

ProblemType: Package
DistroRelease: Ubuntu 10.04
Package: fglrx 2:8.723.1-0ubuntu5
Uname: Linux 2.6.34-020634-generic i686
Architecture: i386
Date: Sun Nov 28 10:12:11 2010
ErrorMessage: fglrx kernel module failed to build
InstallationMedia: Ubuntu 10.04 LTS Lucid Lynx - Release i386 (20100427.1)
PackageVersion: 2:8.723.1-0ubuntu5
SourcePackage: fglrx-installer
Title: package fglrx 2:8.723.1-0ubuntu5 failed to install/upgrade: fglrx kernel 
module failed to build
system:
 distro: Ubuntu
 codename:   lucid
 architecture:   i686
 kernel: 2.6.34-020634-generic

** Affects: fglrx-installer (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package i386 lucid

-- 
package fglrx 2:8.723.1-0ubuntu5 failed to install/upgrade: fglrx kernel module 
failed to build
https://bugs.launchpad.net/bugs/682313
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 682313] Re: package fglrx 2:8.723.1-0ubuntu5 failed to install/upgrade: fglrx kernel module failed to build

2010-11-28 Thread Lorenzo Fedele


-- 
package fglrx 2:8.723.1-0ubuntu5 failed to install/upgrade: fglrx kernel module 
failed to build
https://bugs.launchpad.net/bugs/682313
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 675765] Re: Screen corrupted after boot (white vertical bars)

2010-11-28 Thread Cpp
Okay, I'm out of ideas.

I did some research and it appears this bug is more widespread than I
previously thought. It would seem there is a problem in the maverick
kernel that prevents some nvidia drivers from loading according to
certain reports. I guess my best bet is to wait for a kernel fix.

Related posts:
http://ubuntuforums.org/showthread.php?t=1600063
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/661394
https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers/+bug/661248

-- 
Screen corrupted after boot (white vertical bars)
https://bugs.launchpad.net/bugs/675765
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 682299] Re: [ICH4 - Intel 82801DB-ICH4] PA test tone failed (alsa tone succeeded)

2010-11-28 Thread grassed
This is not bug at all. I realised that my sound prefernces were set to
meute, ehnce no sound was coming. PLease close and get rid of this bug
from your database. I am sorry for the oversight on my part.


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

** Converted to question:
   https://answers.edge.launchpad.net/ubuntu/+source/pulseaudio/+question/135782

-- 
[ICH4 - Intel 82801DB-ICH4] PA test tone failed (alsa tone succeeded)
https://bugs.launchpad.net/bugs/682299
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 682299] Re: [ICH4 - Intel 82801DB-ICH4] PA test tone failed (alsa tone succeeded)

2010-11-28 Thread grassed
This is not a bug. My sound preferences were set to mute hence no sound
was coming. Please delete this bug report and I am sorry for this
oversight.

-- 
[ICH4 - Intel 82801DB-ICH4] PA test tone failed (alsa tone succeeded)
https://bugs.launchpad.net/bugs/682299
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 682269] Re: clock applet does not support certain obvious locations

2010-11-28 Thread Johannes H. Jensen
The project your are looking for is 'gnome-panel', not 'alarm-clock-
applet' which is an entirely different application.

** Package changed: alarm-clock-applet (Ubuntu) = gnome-panel (Ubuntu)

** Changed in: alarm-clock
   Status: New = Invalid

-- 
clock applet does not support certain obvious locations
https://bugs.launchpad.net/bugs/682269
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 675083] Re: Asara B'Tevet should be able to be on Friday

2010-11-28 Thread Micah Gersten
Tested hardy, karmic, and lucid in a chroot and maverick on my local
machine.  All passed verification.

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

-- 
Asara B'Tevet should be able to be on Friday
https://bugs.launchpad.net/bugs/675083
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 662365] Re: eeepc_wmi: Unknown key 88 pressed when pressing Fn+F2 on Asus EEE1005HA

2010-11-28 Thread PrebenR
After adding acpi_osi=Linux in grub, the default ubuntu kernel again
works and wireless is working. If I do the same with the patched kernel
above, it doesn't work. So apart from no error messages the patched
kernel is a regression for me.

System. asus eee 1000H

-- 
eeepc_wmi: Unknown key 88 pressed when pressing Fn+F2 on Asus EEE1005HA
https://bugs.launchpad.net/bugs/662365
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 682269] Re: clock applet does not support certain obvious locations

2010-11-28 Thread Omer Akram
** Changed in: gnome-panel (Ubuntu)
   Status: Triaged = New

-- 
clock applet does not support certain obvious locations
https://bugs.launchpad.net/bugs/682269
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 682241] Re: mozplugger wants to install Firefox on Kubuntu

2010-11-28 Thread Alessio Treglia
** Changed in: mozplugger (Ubuntu)
   Status: In Progress = Fix Committed

** Changed in: mozplugger (Ubuntu)
 Assignee: Alessio Treglia (quadrispro) = (unassigned)

-- 
mozplugger wants to install Firefox on Kubuntu
https://bugs.launchpad.net/bugs/682241
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 682219] Re: Please merge nagios-plugins 1.4.15-2 (main) from debian unstable (main)

2010-11-28 Thread Alessio Treglia
Misspelling:

+  + Keep on building with libradius1-dev to avoid pusing radiusclient-ng 
to 
+main.

Please do *NOT* just copypaste old changelog entries.

-- 
Please merge nagios-plugins 1.4.15-2 (main) from debian unstable (main)
https://bugs.launchpad.net/bugs/682219
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 313357] Re: BOUML package is oudated

2010-11-28 Thread bruno_pages
Hi

Bouml 4.23 is available for Ubuntu 10.04 LTS (i386) , 10.04.1 LTS (x86_64) , 
10.10 (i386 and  x86_64) 
Please refer to http://bouml.sourceforge.net/download.html#Ubuntu or 
https://sourceforge.net/projects/bouml/files/bouml/4.23_ultimate/

Best regards

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

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



[Bug 682065] Re: acer aspire 1551 build in mic is not working in pulseaudio apps

2010-11-28 Thread olksy

** Attachment added: front mic boost produces noise only
   
https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/682065/+attachment/1747567/+files/front%20mic%20boost%20produces%20noise%20only.png

-- 
acer aspire 1551 build in mic is not working in pulseaudio apps
https://bugs.launchpad.net/bugs/682065
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 682065] Re: acer aspire 1551 build in mic is not working in pulseaudio apps

2010-11-28 Thread olksy

** Attachment added: second mic boost produces silenc
   
https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/682065/+attachment/1747568/+files/mic%20boost%20produces%20silence.png

-- 
acer aspire 1551 build in mic is not working in pulseaudio apps
https://bugs.launchpad.net/bugs/682065
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 682241] Re: mozplugger wants to install Firefox on Kubuntu

2010-11-28 Thread Launchpad Bug Tracker
This bug was fixed in the package mozplugger - 1.14.2-3

---
mozplugger (1.14.2-3) experimental; urgency=low

  * Add rekonq to the supported browsers list (LP: #682241).

mozplugger (1.14.2-2) experimental; urgency=low

  * Fix evince behavior when opening PostScript files.
  * Provide an update-mozpluggerrc script to regenerate
/etc/mozpluggerrc from the contents of the directory
/etc/mozpluggerrc.d/ (Closes: #275766).
  * Handle the removal of the old conffile.
  * Pre-Depends on dpkg (= 1.15.7.2).
  * Drop CDBS, switch to DH 7 short-form.
  * Generate debian/mozplugger.links file depending on the distribution
on which the package is built. This reduces the delta to 0.
  * debian/00Makefile.patch:
- Don't install mozpluggerrc.
- Add header DEP-3 compliant.
  * Merge Ubuntu changelog entries.
  * Add NEWS.Debian file.

mozplugger (1.14.2-1ubuntu1) natty; urgency=low

  * Merge from debian experimental, Ubuntu remaining changes:
- Replace ice{weasel,ape} with firefox,xulrunner-addons in
  debian/mozplugger.links file.
 -- Alessio Treglia quadris...@ubuntu.com   Sun, 28 Nov 2010 10:36:45 +0100

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

-- 
mozplugger wants to install Firefox on Kubuntu
https://bugs.launchpad.net/bugs/682241
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 465916] Re: CUPS DNS-SD (Bonjour/mDNS/Zeroconf/Avahi) not broadcasting

2010-11-28 Thread Till Kamppeter
Kim, like our patches these patches only add DNS-SD printer/print server
discovery via the dnssd backend. They do not add functionality with
which the local CUPS daemon gets a DNS-SD server for remote clients.

But thank you anyway for looking this up.

Perhaps the cups-dnssd-deviceid.patch could be useful for us though, to
improve reported device IDs.

-- 
CUPS DNS-SD (Bonjour/mDNS/Zeroconf/Avahi) not broadcasting
https://bugs.launchpad.net/bugs/465916
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 681924] Re: E: dpkg se interrumpió, debe ejecutar manualmente «sudo dpkg --configure -a » para corregir el problema. E: _cache-open () failed, please report.

2010-11-28 Thread Monkey
Entonces cierro el fallo, no dude en enviar más.
Saludos.

** Changed in: gnome-terminal (Ubuntu)
   Status: Incomplete = Invalid

-- 
E: dpkg se interrumpió, debe ejecutar manualmente «sudo dpkg --configure -a» 
para corregir el problema.  E: _cache-open() failed, please report.
https://bugs.launchpad.net/bugs/681924
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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

[Bug 666257] Re: Data is not transferred to the printer by cups

2010-11-28 Thread lsmod
No idea for the reason?

Now i connected the Kyocera mita FS-1010 direct to the parallel port with the 
same result!
The problem is not dependent on the printer.

It is also not dependent if the printer is switched on.
When the printer is switched off the print job goes also direct to the status 
as transferred to the printer.

When it is not possible to print in Kubuntu for me, i must leave Kubuntu in the 
future. :-(
There is also a really nasty problem that Kubuntu can't work with open WLAN 
Hotspots.
Such problems can kill all the good other advantages of Kubuntu at all ...

-- 
Data is not transferred to the printer by cups
https://bugs.launchpad.net/bugs/666257
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 507788] Re: In Help, Table of Contents switches from left to right when user selects topic

2010-11-28 Thread Matthew Paul Thomas
Users go to help for two reasons: (1) they're confused about something,
or (2) they're trying to find something.
https://www.uie.com/articles/online_information/ In both cases, what
they need is *one* particular page. Once they're done, they'll close the
window.

If they end up in the wrong topic, that's probably a problem with bad
information scent.
http://en.wikipedia.org/wiki/Information_foraging#Information_scent If
the help author foresees this problem but can't avoid it, they should
include links at the bottom of that topic to the individual pages users
may want instead. (For example, in Ubuntu Software Center's help, at the
bottom of the Removing software topic, I link to the Why is it asking
me to remove several programs together? topic.)

Otherwise, there's a simple way to get back to the table of contents:
click the Back button.

That's why I suggest getting rid of the table of contents from topic
pages.

-- 
In Help, Table of Contents switches from left to right when user selects topic
https://bugs.launchpad.net/bugs/507788
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 668382] Re: No warning before removing important packages!!

2010-11-28 Thread Eemil Lagerspetz
gdebi-gtk does warn about removing ubuntu-desktop and libsdl1.2-debian-
pulseaudio. However, software center does NOT warn that it's going to do
autoremove and start removing their dependencies too.

-- 
No warning before removing important packages!!
https://bugs.launchpad.net/bugs/668382
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 682322] [NEW] Sync wireshark 1.4.2-1 (universe) from Debian experimental (main)

2010-11-28 Thread Micah Gersten
Public bug reported:

Please sync wireshark 1.4.2-1 (universe) from Debian experimental (main)

Changelog entries since current natty version 1.2.11-4:

wireshark (1.4.2-1) experimental; urgency=low

  * New upstream release 1.4.2
- release notes:
  http://www.wireshark.org/docs/relnotes/wireshark-1.4.2.html
- security fixes
   - Nephi Johnson of BreakingPoint discovered that the LDSS dissector
 could overflow a buffer. (No assigned CVE number.)
   - The ZigBee ZCL dissector could go into an infinite loop.
 (No assigned CVE number.)
  * drop 05_fix-display-filter-update-when-changing-profile.patch
patch since it has been integrated upstream

 -- Balint Reczey bal...@balintreczey.hu  Sat, 20 Nov 2010 18:41:41
+0100

wireshark (1.4.1-1) experimental; urgency=high

  * New upstream release 1.4.1
- release notes:
  http://www.wireshark.org/docs/relnotes/wireshark-1.4.1.html
- add support for sll.ltype hooks (Closes: #594390)
- security fixes
   - The Penetration Test Team of NCNIPC (China) discovered that the
 ASN.1 BER dissector was susceptible to a stack overflow
 (CVE-2010-3445)
  * pick fix for improperly backported display filter update when changing
profile
  * [Debconf translation updates]
- Basque (Iñaki Larrañaga Murgoitio).
- Vietnamese (Clytie Siddall). (Closes: #598498)
  * make wireshark-dev depend on libwireshark-dev and libwiretap-dev
(Closes: #596108)

 -- Balint Reczey bal...@balintreczey.hu  Fri, 03 Sep 2010 13:20:33
+0200

wireshark (1.4.0-1) experimental; urgency=low

  [ Balint Reczey ]
  * New upstream release 1.4.0
- release notes:
  http://www.wireshark.org/docs/relnotes/wireshark-1.4.0.html
  * drop 26_offline-documentation.patch patch since it has been integrated
upstream
  * [Debconf translation updates]
- French (Simon Paillard). (Closes: #593214)
- Danish (Joe Hansen). (Closes: #594738)
- Brazilian Portuguese (Adriano Rafael Gomes). (Closes: #594780)
- Basque (Iñaki Larrañaga Murgoitio).
  * changed versioned conflicts to conflict with  1.4.0~rc2-1 versions
instead of conflicting with = 1.2.7-1 ones to allow smooth upgrades
from versions between 1.2.7-1 and 1.4.0~rc2-1 (Closes: #593875)
  * debian/control: updated policy to 3.9.1 (Eloy Paris removed the .la
files to become compliant)

  [ Eloy Paris ]
  * Removed /usr/lib/libwiretap.la from the libwiretap-dev package and
/usr/lib/libwireshark.la and /usr/lib/libwsutil.la from the
libwireshark-dev package since external programs linking against
libwiretap and libwireshark do not need them. Refer to the Debian
Policy Manual 10.2 (Libraries) for further information.

 -- Balint Reczey bal...@balintreczey.hu  Wed, 01 Sep 2010 23:52:27
+0200

wireshark (1.4.0~rc2-2) experimental; urgency=low

  * New wireshark-doc package for shipping offline documentation
(Closes: #68746)
  * make libwireshark0-data suggest snmp-mibs-downloader instead of
wireshark-common
  * [Debconf translation updates]
- Japanese (Hideki Yamane (Debian-JP)).  (Closes: #591563)

 -- Balint Reczey bal...@balintreczey.hu  Fri, 30 Jul 2010 16:34:05
+0200

wireshark (1.4.0~rc2-1) experimental; urgency=low

  [ Eloy Paris ]
  * New upstream release.
- Make tshark list interfaces for non-root user (Closes: #582298)
- Fix duplicate inconsistent attributes in RADIUS dictionary.
  (Closes: #570132)
  * New libwireshark0, libwireshark-dev, libwiretap0, libwiretap-dev
packages that reorganize libraries, header files, etc. as follows:
- Moved libwireshark.so.* from package wireshark-common to package
  libwireshark0.
- Moved libwsutil.so.* from package wireshark-common to package
  libwireshark0.
- Moved libwiretap.so.* from package wireshark-common to package
  libwiretap0.
- Moved header files, .so symlinks, and static libraries from package
  wireshark-dev to libwireshark-dev and libwiretap-dev, depending on
  the case.
- Moved plugins in /usr/lib/wireshark/ from package wireshark-common
  to package libwireshark0.
This provides more package granularity and allows easier use of
libraries provided by the Wireshark project by applications that
are not maintained by the Wireshark project (package kismet currently
appears to use services offered by libwiretap, and upcoming package
netexpect will use libwireshark services [see ITP bug #587056]).
  * Dropped 23_lintian-overrides.patch since we no longer have binaries
with RPATHs because after the library separation work mentioned above
our libraries are in /usr/lib and not in /usr/lib/wireshark, eliminating
the need for RPATHs. Also tweaked debian/rules, debian/tshark.files,
and debian/wireshark-common.files so the lintian overrides
are not installed.
  * Dropped the following patches since they have been integrated
upstream:
- 05_libsnmp_path.patch
- 

[Bug 623561] Re: Unlock dialog sometimes triggers without screensaver active

2010-11-28 Thread Rebecca Palmer
Reappeared today, same lack of anything useful in the logs.

** Changed in: gnome-screensaver (Ubuntu)
   Status: Fix Released = New

-- 
Unlock dialog sometimes triggers without screensaver active
https://bugs.launchpad.net/bugs/623561
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 334809] Re: design problem? infinite wait for long queue

2010-11-28 Thread Matthew Paul Thomas
Jeremy, that's a good question. One example that occurs to me is where
two people are chatting with you at once: their messages shouldn't
appear in the same bubble. It would be interesting to collect a sample
of $HOME/.cache/notify-osd.log files and count how many of the
notifications would make sense appended vs. how many would not.

-- 
design problem? infinite wait for long queue
https://bugs.launchpad.net/bugs/334809
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 682324] [NEW] WARNING: at /build/buildd/linux-2.6.31/kernel/power/suspend_test.c:52 suspend_test_finish 0x80/0x90()

2010-11-28 Thread SAG
Public bug reported:

While I am using net, suddenly all windows are closed and this was
reported

ProblemType: KernelOops
Annotation: Your system might become unstable now and might need to be 
restarted.
Architecture: i386
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  salah  1558 F pulseaudio
CRDA: Error: [Errno 2] No such file or directory
Card0.Amixer.info:
 Card hw:0 'Intel'/'HDA Intel at 0xe138 irq 16'
   Mixer name   : 'Realtek ALC883'
   Components   : 'HDA:10ec0883,1458c603,0012'
   Controls  : 41
   Simple ctrls  : 23
Date: Sat Nov 27 21:24:45 2010
DistroRelease: Ubuntu 9.10
Failure: oops
HibernationDevice: RESUME=UUID=6d045bf9-c7cc-4e2e-803d-36f0125b0f46
InstallationMedia: Ubuntu 9.10 Karmic Koala - Release i386 (20091028.5)
IwConfig:
 lono wireless extensions.
 
 eth0  no wireless extensions.
 
 ppp0  no wireless extensions.
MachineType: Gigabyte Technology Co., Ltd. G31M-ES2L
Package: linux-image-2.6.31-14-generic 2.6.31-14.48
ProcCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.31-14-generic 
root=UUID=57fe7dff-e39c-42a7-8b49-a5b060a2b889 ro quiet splash
ProcVersionSignature: Ubuntu 2.6.31-14.48-generic
RelatedPackageVersions:
 linux-backports-modules-2.6.31-14-generic N/A
 linux-firmware 1.24
RfKill:
 
SourcePackage: linux
Tags: kernel-oops
Title: WARNING: at /build/buildd/linux-2.6.31/kernel/power/suspend_test.c:52 
suspend_test_finish+0x80/0x90()
Uname: Linux 2.6.31-14-generic i686
dmi.bios.date: 02/05/2009
dmi.bios.vendor: Award Software International, Inc.
dmi.bios.version: F8
dmi.board.name: G31M-S2L
dmi.board.vendor: Gigabyte Technology Co., Ltd.
dmi.chassis.type: 3
dmi.chassis.vendor: Gigabyte Technology Co., Ltd.
dmi.modalias: 
dmi:bvnAwardSoftwareInternational,Inc.:bvrF8:bd02/05/2009:svnGigabyteTechnologyCo.,Ltd.:pnG31M-ES2L:pvr:rvnGigabyteTechnologyCo.,Ltd.:rnG31M-S2L:rvr:cvnGigabyteTechnologyCo.,Ltd.:ct3:cvr:
dmi.product.name: G31M-ES2L
dmi.sys.vendor: Gigabyte Technology Co., Ltd.

** Affects: ubuntu
 Importance: Undecided
 Status: New


** Tags: apport-kerneloops i386 kernel-oops

-- 
WARNING: at /build/buildd/linux-2.6.31/kernel/power/suspend_test.c:52 
suspend_test_finish 0x80/0x90()
https://bugs.launchpad.net/bugs/682324
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 682324] Re: WARNING: at /build/buildd/linux-2.6.31/kernel/power/suspend_test.c:52 suspend_test_finish 0x80/0x90()

2010-11-28 Thread SAG


-- 
WARNING: at /build/buildd/linux-2.6.31/kernel/power/suspend_test.c:52 
suspend_test_finish 0x80/0x90()
https://bugs.launchpad.net/bugs/682324
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 682327] [NEW] Compiz crashes when hitting Alt-Tab

2010-11-28 Thread Jimmy Xu
Public bug reported:

Binary package hint: compiz

Command-line output:

ji...@home:~$ compiz --replace
Backend : gconf
Integration : true
Profile : default
Adding plugins
Initializing core options...done
Initializing bailer options...done
Initializing detection options...done
Initializing composite options...done
Initializing opengl options...done
Initializing decor options...done
Initializing mousepoll options...done
Initializing snap options...done
Initializing ezoom options...done
Initializing animation options...done
Initializing move options...done
Initializing gnomecompat options...done
Initializing imgsvg options...done
Initializing imgjpeg options...done
Initializing neg options...done
Initializing wall options...done
Initializing place options...done
Initializing obs options...done
Initializing resize options...done
Initializing switcher options...done
Initializing fade options...done
Initializing resizeinfo options...done
Initializing session options...done
Initializing scale options...done
Setting Update command_window_screenshot
Setting Update run_command_window_screenshot_key
Setting Update command_terminal
Setting Update run_command_terminal_key
Setting Update fullscreen_visual_bell
### Hit Alt-Tab ###
Mesa 7.9 implementation error: bad format in _mesa_format_to_type_and_comps
Please report at bugzilla.freedesktop.org
compiz: main/mipmap.c:43: bytes_per_pixel: Assertion `b = 0' failed.
Aborted

Has tried both Application Switcher and Static Application Switcher,
nearly the same output after hitting Alt-Tab. Also deleted
~/.config/compiz/ and ~/.gconf/apps/compiz/, with no good.

ProblemType: Bug
DistroRelease: Ubuntu 11.04
Package: compiz 1:0.9.2.1+glibmainloop2-0ubuntu1
ProcVersionSignature: Ubuntu 2.6.37-6.17-generic 2.6.37-rc3
Uname: Linux 2.6.37-6-generic x86_64
Architecture: amd64
CheckboxSubmission: e83647132cfcb6c12c872863e23826f1
CheckboxSystem: edda5d4f616ca792bf437989cb597002
CompizPlugins: No value set for 
`/apps/compiz/general/allscreens/options/active_plugins'
Date: Sun Nov 28 10:53:05 2010
GconfCompiz:
 /apps/compiz/general:
   /apps/compiz/general/screen0:
/apps/compiz/general/screen0/options:
 hsize = 1
 vsize = 2
InstallationMedia: Ubuntu 10.04 Lucid Lynx - Beta amd64 (20100318)
MachineType: System manufacturer P5K SE
PackageArchitecture: all
PciDisplay: 01:00.0 VGA compatible controller [0300]: ATI Technologies Inc 
RV670PRO [Radeon HD 3850] [1002:9505] (prog-if 00 [VGA controller])
ProcEnviron:
 PATH=(custom, user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.37-6-generic 
root=UUID=cd682236-de5c-4115-9b38-af5e4e8d0358 ro text
RelatedPackageVersions:
 xserver-xorg 1:7.5+6ubuntu3b1
 libgl1-mesa-glx 7.9+repack-1ubuntu2
 libdrm2 2.4.22-2ubuntu1
 xserver-xorg-video-intel N/A
 xserver-xorg-video-ati 1:6.13.2-1ubuntu2
SourcePackage: compiz
XorgConf: Error: [Errno 2] No such file or directory: '/etc/X11/xorg.conf'
XsessionErrors: Error: [Errno 13] Permission denied: 
'/home/jimmy/.xsession-errors'
dmi.bios.date: 01/02/2008
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: 0901
dmi.board.asset.tag: To Be Filled By O.E.M.
dmi.board.name: P5K SE
dmi.board.vendor: ASUSTeK Computer INC.
dmi.board.version: Rev 1.xx
dmi.chassis.asset.tag: Asset-1234567890
dmi.chassis.type: 3
dmi.chassis.vendor: Chassis Manufacture
dmi.chassis.version: Chassis Version
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr0901:bd01/02/2008:svnSystemmanufacturer:pnP5KSE:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP5KSE:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
dmi.product.name: P5K SE
dmi.product.version: System Version
dmi.sys.vendor: System manufacturer
system: distro = Ubuntu, architecture = x86_64, kernel = 2.6.37-6-generic

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


** Tags: amd64 apport-bug natty

-- 
Compiz crashes when hitting Alt-Tab
https://bugs.launchpad.net/bugs/682327
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 682327] Re: Compiz crashes when hitting Alt-Tab

2010-11-28 Thread Jimmy Xu


-- 
Compiz crashes when hitting Alt-Tab
https://bugs.launchpad.net/bugs/682327
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 682328] [NEW] Unable to cleanly shutdown with an nbd root filesystem

2010-11-28 Thread Alkis Georgopoulos
Public bug reported:

In /etc/init.d/nbd-client, I don't see any way that would permit me to
use an nbd-mounted root filesystem and have a clean shutdown process.
With the current code, rmmod nbd is executed and then the client gets
a bunch of read errors instead of shutting down.

Test case:
 * In /etc/nbd-server/config on the server, I export a whole partition with an 
OS in it:
[generic]
[sda2]
exportname = /dev/sda2
port = 10809

 * In pxelinux.cfg/default on the server, I pass these kernel parameters to 
netboot a client:
APPEND ro initrd=nbdclient/initrd.img root=/dev/nbd0 nbdroot=10.160.31.14,10809 
ip=10.160.31.101:10.160.31.1:10.160.31.1:255.255.255.0:nbd101:eth0:none

 * In the client /etc/network/interfaces (i.e. in /dev/sda2), I put a
manual eth0 to prevent network manager to break the existing
connection.

Then I need the following 2 workarounds so cleanly shutdown:

 1) In the client /etc/fstab, I put the following *commented* entry, just to 
prevent /etc/init.d/nbd-client from unmounting the root filesystem on shutdown. 
Some documentation for a better way to do that would be appreciated:
#/dev/nbd0  /   ext4_netdev,errors=remount-ro   0   1

 2) In the client /etc/init.d/nbd-client, I move the marked if after the 
rmmod command:
if [ $KILLALL != false ]
then
if [ -d /dev/nbd ]
then
DEVICES=/dev/nbd/*
else
DEVICES=/dev/nb*
fi
-   fi
echo Invoking swapoff on NBD devices...
swapoff $DEVICES 2/dev/null
echo Disconnecting $DESCes...
for i in $DEVICES
  do
  $DAEMON -d $i 2/dev/null /dev/null
done
rmmod nbd
+   fi


Is there any better way to make nbd-mounted root filesystems shutdown properly?

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

-- 
Unable to cleanly shutdown with an nbd root filesystem
https://bugs.launchpad.net/bugs/682328
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 673072] Re: gnome-wm erroneously detects card as compiz capable

2010-11-28 Thread gcc
Same here. Works fine without compiz, but usually cannot log in with
compiz enabled. Sometimes, randomly, it works and I can log in.


** Attachment added: .xsession-errors with Compiz enabled, crashing
   
https://bugs.launchpad.net/ubuntu/+source/gnome-session/+bug/673072/+attachment/1747604/+files/.xsession-errors-compiz

-- 
gnome-wm erroneously detects card as compiz capable
https://bugs.launchpad.net/bugs/673072
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 673072] Re: gnome-wm erroneously detects card as compiz capable

2010-11-28 Thread gcc
The gconf2 command given in the bug description also fixes it for me:

sudo gconftool-2 --direct --config-source
xml:readwrite:/etc/gconf/gconf.xml.mandatory --type string --set
/desktop/gnome/session/required_components/windowmanager metacity

** Attachment added: .xsession-errors with Compiz disabled, working
   
https://bugs.launchpad.net/ubuntu/+source/gnome-session/+bug/673072/+attachment/1747605/+files/.xsession-errors-nocompiz

-- 
gnome-wm erroneously detects card as compiz capable
https://bugs.launchpad.net/bugs/673072
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 413657] Re: Please sync tor 0.2.1.19-1 (universe) from Debian testing (main)

2010-11-28 Thread Artur Rona
You don't need to be. Apply to upload rights for tor. More information 
https://wiki.ubuntu.com/UbuntuDevelopers#PerPackage.
Template: 
https://wiki.ubuntu.com/UbuntuDevelopment/DeveloperApplicationTemplate.

-- 
Please sync tor 0.2.1.19-1 (universe) from Debian testing (main)
https://bugs.launchpad.net/bugs/413657
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 682329] [NEW] Brasero don't detect cdrdao

2010-11-28 Thread cameleon078
Public bug reported:

Binary package hint: brasero

When I want to copy a CD to an image file, I have this error message in brasero 
All applications or libraries are not installed. Install manually the software 
below and try again cddao (application). However cdrdao is already installed in 
my mverick ubuntu :
dpkg -l | grep cdrdao = 
ii  cdrdao1:1.2.3-0.1ubuntu1
records CDs in Disk-At-Once (DAO) mode

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

-- 
Brasero don't detect cdrdao
https://bugs.launchpad.net/bugs/682329
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 682252] Re: Evince opens PDFs completely above screen, not listed in task-list or alt-tab

2010-11-28 Thread Mingming Ren
** Changed in: evince (Ubuntu)
   Status: New = Confirmed

-- 
Evince opens PDFs completely above screen, not listed in task-list or alt-tab
https://bugs.launchpad.net/bugs/682252
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 662365] Re: eeepc_wmi: Unknown key 88 pressed when pressing Fn+F2 on Asus EEE1005HA

2010-11-28 Thread Ike Panhc
Hi PrebenR,

Can you attach the DSDT so that I can try to know what happen..

Here is the step by step for get DSDT from BIOS.

# sudo cp /sys/firmware/acpi/tables/DSDT .
# sudo iasl -d ./DSDT # sudo apt-get install iasl if iasl is not installed.

Then please attach DSDT.dsl

-- 
eeepc_wmi: Unknown key 88 pressed when pressing Fn+F2 on Asus EEE1005HA
https://bugs.launchpad.net/bugs/662365
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


  1   2   3   4   5   6   7   8   9   10   >