[Bug 1242321] Re: USB 3.0 Harddrive not recognised

2016-05-25 Thread Bolick
Indeed hardware might be buggy and special tweaks could be required in
drivers to recover functionality of any given hardware. But given we
cannot influence (usually) hardware manufacturers to fix stuff (or even
to do better stuff next time) the only thing we may do is to "improve"
Linux drivers so they allow us to use the hardware in question.

And this is all doable. But what really helps here is ability to capture
more lower-level logs (like with enabled dynamic debugging of usb/xhci
driver), ability to build and run Linux kernel with proposed
changes/patches. If above is ok for you just report your issue to USB
mailing list and let developers of USB drivers to help you. Info about
mentioned mailing list is available here - http://www.linux-
usb.org/mailing.html

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

Title:
  USB 3.0 Harddrive not recognised

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

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


[Bug 1242321] Re: USB 3.0 Harddrive not recognised

2015-03-12 Thread Bolick
Probably this thread discussed a similar problem - 
http://thread.gmane.org/gmane.linux.usb.general/110579/focus=114763
And if my assumption correct then fix is already committed in kernel v4.0rc3 
and to be applied to stable 3.18 and 3.19 (hopefully) - 
http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/drivers/usb/host?id=27082e2654dc148078b0abdfc3c8e5ccbde0ebfa

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

Title:
  USB 3.0 Harddrive not recognised

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

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


[Bug 1159361] Re: zoneminder not creating local unix sockets for streaming

2014-08-18 Thread Bolick
For me the same problem was resolved with disabled authentication in ZM
options (uncheck OPT_USE_AUTH).

The reason to make this conclusion is here in logs:
===
Aug 19 00:21:00 ubuntu-server zms[5623]: ERR [Unable to authenticate user]
...
Aug 19 00:21:00 ubuntu-server zms[5633]: ERR [Unable to authenticate user]
Aug 19 00:21:10 ubuntu-server web_php[5446]: ERR [socket_sendto( 
/tmp/zm/zms-289356s.sock ) failed: No such file or directory]
===

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

Title:
  zoneminder not creating local unix sockets for streaming

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

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


[Bug 1104476] Re: Network manager cannot connect to WPA2/PEAP/MSCHAPv2 network without CA_Certificate

2013-08-11 Thread Bolick
Another note from my side - even though as I mentioned above I see 
configuration file stays on reboot but I cannot get my password saved. So EVERY 
REBOOT I have to enter my Wi-Fi password manually. Which is a bit more than 
inconvenient especially keeping in mind that this is a LAPTOP and I toggle its 
power at least twice a day when traveling to the office and back.
I'm wondering if others see the same experience or there's something I didn't 
do properly (I do set a checkbox remeber my password every time I enter 
password).

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

Title:
  Network manager cannot connect to WPA2/PEAP/MSCHAPv2 network without
  CA_Certificate

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

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


[Bug 1104476] Re: Network manager cannot connect to WPA2/PEAP/MSCHAPv2 network without CA_Certificate

2013-08-02 Thread Bolick
Disagree. In my case (fresh  updated 13.04 64-bit) I don't see configuration 
file changes on reboot.
I may expect it to be modified if you remove your current Wi-Fi connections 
from known ones in NetworkManager and then will try to connect to it again - 
this indeed will create a new config file in 
/etc/NetworkManager/system-connections/ that will have system-ca-certs=true.

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

Title:
  Network manager cannot connect to WPA2/PEAP/MSCHAPv2 network without
  CA_Certificate

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

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


[Bug 1136432] Re: luaL_loadfile segfault in _IO_file_underflow

2013-04-02 Thread Bolick
Luckily I found out that this issue was caused by 1 special .so I had loaded 
automatically with LD_PRELOAD.
It was libusb-driver.so used by Xilinx Impact tool for communication with 
JTAG.
So with this library preloaded this simple test (built with gcc test.c) 
crashes on the second getc:
=
#include stdio.h
char * filename = luac.out;

int main (void)
{
FILE* f;
int c;

f = fopen(filename, r);
if (f == NULL) {
printf(Cannot open file %s\n, filename);
return -1;
}
printf(File %s opened successfully\n, filename);
c = getc(f);
printf(c: %x\n, c);

f = freopen(filename, rb, f);
if (f == NULL) {
printf(Cannot re-open file %s in binary mode\n, filename);
return -1;
}
printf(File %s re-opened in binary mode successfully\n, filename);
c = getc(f);
printf(c: %x\n, c);

if (filename)
fclose(f);
return 0;
}
=

If I disable library preload application gets executed without problems.
Moreover if I build this test statically everything will work as well.

So it is definitely not a problem in Lua.
Might be eglibc or dynamic linker.

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

Title:
  luaL_loadfile segfault in _IO_file_underflow

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

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


[Bug 1136432] Re: luaL_loadfile segfault in _IO_file_underflow

2013-04-01 Thread Bolick
I also may confirm this issue with lua.
I faced it trying to play a video from public web-cam.
===
$ gdb --args vlc http://83.64.164.6/mjpg/video.mjpg
GNU gdb (GDB) 7.5-ubuntu
Reading symbols from /usr/bin/vlc...Reading symbols from 
/usr/lib/debug/usr/bin/vlc...done.
done.
(gdb) run
Starting program: /usr/bin/vlc http://83.64.164.6/mjpg/video.mjpg
[Thread debugging using libthread_db enabled]
Using host libthread_db library /lib/i386-linux-gnu/libthread_db.so.1.
VLC media player 2.0.5 Twoflower (revision 2.0.5-0-g1661b7d)

Program received signal SIGSEGV, Segmentation fault.
0xb7b4425d in __GI___uflow (fp=0x80dc9c0) at genops.c:394
394 genops.c: No such file or directory.
(gdb) bt
#0  0xb7b4425d in __GI___uflow (fp=0x80dc9c0) at genops.c:394
#1  0xb7b3a772 in _IO_getc (fp=0x80dc9c0) at getc.c:41
#2  0xb4e4cd8c in luaL_loadfile (L=L@entry=0x81905a0, 
filename=filename@entry=0x81904e0 
/usr/lib/vlc/lua/meta/reader/filename.luac) at lauxlib.c:577
#3  0xb4e8c055 in run (p_this=p_this@entry=0x8188cc0, 
psz_filename=psz_filename@entry=0x81904e0 
/usr/lib/vlc/lua/meta/reader/filename.luac, 
L=L@entry=0x81905a0, luafunction=luafunction@entry=0xb4ea3f61 read_meta) 
at meta.c:100
#4  0xb4e8c2a0 in read_meta (p_this=p_this@entry=0x8188cc0, 
psz_filename=0x81904e0 /usr/lib/vlc/lua/meta/reader/filename.luac, 
user_data=user_data@entry=0x81c8dd8) at meta.c:192
#5  0xb4e8f689 in vlclua_scripts_batch_execute (p_this=p_this@entry=0x8188cc0, 
luadirname=luadirname@entry=0xb4ea3fa6 meta/reader, 
func=func@entry=0xb4e8c250 read_meta, 
user_data=0x81c8dd8) at vlc.c:317
#6  0xb4e8c506 in ReadMeta (p_this=0x8188cc0) at meta.c:227
#7  0xb7d2c6a0 in generic_start (func=0xb4e8c4d0 ReadMeta, ap=0xbfffe2c8 
\350\342\377\277, 
ap@entry=0xbfffe2c4 \300\214\030\b\350\342\377\277) at 
modules/modules.c:422
#8  0xb7d2cde3 in vlc_module_load (p_this=p_this@entry=0x8188cc0, 
psz_capability=psz_capability@entry=0xb7d7067f meta reader, 
psz_name=optimized out, 
psz_name@entry=0x0, b_strict=b_strict@entry=false, 
probe=probe@entry=0xb7d2c690 generic_start)
at modules/modules.c:347
#9  0xb7d2d302 in module_need (obj=obj@entry=0x8188cc0, 
cap=cap@entry=0xb7d7067f meta reader, 
name=name@entry=0x0, strict=strict@entry=false) at modules/modules.c:437
#10 0xb7ce679b in InputSourceMeta (p_input=p_input@entry=0x80d7188, 
p_meta=p_meta@entry=0x818c8d0, 
p_source=optimized out, p_source=optimized out) at input/input.c:2741
#11 0xb7ce9b5d in Init (p_input=p_input@entry=0x80d7188) at input/input.c:1315
#12 0xb7cedd5b in input_Read (p_parent=p_parent@entry=0x818af40, 
p_item=p_item@entry=0x81c8dd8)
at input/input.c:175
#13 0xb7cc6c05 in playlist_MLLoad (p_playlist=p_playlist@entry=0x818af40) at 
playlist/loadsave.c:171
#14 0xb7cc21a9 in playlist_Create (p_parent=p_parent@entry=0x804db78) at 
playlist/engine.c:271
#15 0xb7ca9fb5 in libvlc_InternalInit (p_libvlc=p_libvlc@entry=0x804db78, 
i_argc=4, 
ppsz_argv=ppsz_argv@entry=0xbfffe77c) at libvlc.c:557
#16 0xb7d9c1d8 in libvlc_new (argc=argc@entry=3, argv=argv@entry=0xbfffe7e4) at 
core.c:59
#17 0x08048f68 in main (i_argc=2, ppsz_argv=0xbfffea04) at vlc.c:217
===

So from this back-trace I made an assumption that lua falls in segfault 
processing /usr/lib/vlc/lua/meta/reader/filename.luac.
And indeed:
===
$ gdb --args lua /usr/lib/vlc/lua/meta/reader/filename.luac
GNU gdb (GDB) 7.5-ubuntu
Reading symbols from /usr/bin/lua...Reading symbols from 
/usr/lib/debug/.build-id/fc/b9cc5f5115c7a1dab4b5544c40751cb9ecdf4b.debug...done.
done.
(gdb) run
Starting program: /usr/bin/lua /usr/lib/vlc/lua/meta/reader/filename.luac
[Thread debugging using libthread_db enabled]
Using host libthread_db library /lib/i386-linux-gnu/libthread_db.so.1.

Program received signal SIGSEGV, Segmentation fault.
0xb7c1025d in __GI___uflow (fp=0x8078188) at genops.c:394
394 genops.c: No such file or directory.
(gdb) bt
#0  0xb7c1025d in __GI___uflow (fp=0x8078188) at genops.c:394
#1  0xb7c06772 in _IO_getc (fp=0x8078188) at getc.c:41
#2  0x0805a32c in luaL_loadfile (L=L@entry=0x8073278, 
filename=0xbfffec02 /usr/lib/vlc/lua/meta/reader/filename.luac) at 
lauxlib.c:577
#3  0x0804ba47 in handle_script (n=optimized out, argv=optimized out, 
L=optimized out)
at lua.c:247
#4  pmain (L=0x8073278) at lua.c:362
#5  0x0804f343 in luaD_precall (L=L@entry=0x8073278, func=optimized out, 
func@entry=0x80734ac, 
nresults=nresults@entry=0) at ldo.c:320
#6  0x0804f718 in luaD_call (L=L@entry=0x8073278, func=0x80734ac, 
nResults=nResults@entry=0)
at ldo.c:377
#7  0x0804bbb8 in f_Ccall (L=L@entry=0x8073278, ud=ud@entry=0xbfffe928) at 
lapi.c:846
#8  0x0804ea74 in luaD_rawrunprotected (L=L@entry=0x8073278, 
f=f@entry=0x804bb40 f_Ccall, 
ud=ud@entry=0xbfffe928) at ldo.c:116
#9  0x0804f8ff in luaD_pcall (L=L@entry=0x8073278, func=func@entry=0x804bb40 
f_Ccall, 
u=u@entry=0xbfffe928, old_top=12, ef=ef@entry=0) at 

[Bug 1136432] Re: luaL_loadfile segfault in _IO_file_underflow

2013-04-01 Thread Bolick
Snap-shot of filename.lua from VLC's git:
http://git.videolan.org/?p=vlc.git;a=blob_plain;f=share/lua/meta/reader/filename.lua;hb=HEAD

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

Title:
  luaL_loadfile segfault in _IO_file_underflow

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

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


[Bug 1136432] Re: luaL_loadfile segfault in _IO_file_underflow

2013-04-01 Thread Bolick
Confirm that only 32-bit machine is affected.
On 64-bit machine compiled script gets correctly executed.

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

Title:
  luaL_loadfile segfault in _IO_file_underflow

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

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


[Bug 1136432] Re: luaL_loadfile segfault in _IO_file_underflow

2013-04-01 Thread Bolick
As for Ubuntu-specific patches I don't agree.
Just got lua built from latest 5.2.2 sources from lua.org: 
http://www.lua.org/ftp/lua-5.2.2.tar.gz
and got the same behavior as with Ubuntu's binary packages:
==
$ gdb --args ./lua luac.out 
(gdb) run
Starting program: lua luac.out
[Thread debugging using libthread_db enabled]
Using host libthread_db library /lib/i386-linux-gnu/libthread_db.so.1.

Program received signal SIGSEGV, Segmentation fault.
0xb7c1025d in __GI___uflow (fp=0x807bd08) at genops.c:394
394 genops.c: No such file or directory.
(gdb) bt
#0  0xb7c1025d in __GI___uflow (fp=0x807bd08) at genops.c:394
#1  0xb7c06772 in _IO_getc (fp=0x807bd08) at getc.c:41
#2  0x0805aac3 in skipBOM ()
#3  0x0805c2df in luaL_loadfilex ()
#4  0x0804bf27 in pmain ()
#5  0x0804f9f3 in luaD_precall ()
#6  0x0804fc46 in luaD_call ()
#7  0x0804c218 in f_call ()
#8  0x0804f2b4 in luaD_rawrunprotected ()
#9  0x0804fe9d in luaD_pcall ()
#10 0x0804dac5 in lua_pcallk ()
#11 0x0804b091 in main ()
==

Once again on 64-bit machine everything works flawlessly.

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

Title:
  luaL_loadfile segfault in _IO_file_underflow

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

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


[Bug 1010794] Re: Graphics/text corruptions in some applications with nouveau drivers

2012-11-27 Thread Bolick
I'm on Ubuntu 12.10 32-bit with GF108GLM [Quadro 1000M]
Just updated xorg-server to those latest packets 2:1.13.0-0ubuntu6.1 from 
proposed updates.
For 30 minutes I didn't get any visible corruptions as I saw before.

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

Title:
  Graphics/text corruptions in some applications with nouveau drivers

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

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


[Bug 405294] Re: a2dp skips terribly

2012-10-27 Thread Bolick
Personally I still experience this issue on HP Elitebook 8560w with Ubuntu 
12.04 32-bit.
The same Logitech bluetooth receiver works perfectly with my Nexus S.
So definitely there's an issue in Ubuntu/laptop.

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

Title:
  a2dp skips terribly

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

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


[Bug 790183] Re: [138a:0011] Fingerprint reader Validity Sensors not recognized

2012-10-12 Thread Bolick
We may do 2 things:
1. Convince Validity Inc. to contribute to libfprint with corresponding drivers.
2. Do some study (tips on getting data to look at are here 
https://github.com/andree182/vfs301) and implement those drivers ourselves as 
Andrej Krutak did for vfs301.

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

Title:
  [138a:0011] Fingerprint reader Validity Sensors  not recognized

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

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


[Bug 1056014] [NEW] Improper reference to modulecmd in bash_completion script

2012-09-25 Thread Bolick
Public bug reported:

Bash completion doesn't work for this package.
And this is because path specified to modulecmd binary doesn't match real 
modulecmd location.

$ which modulecmd
/usr/bin/modulecmd


an extract of bash_completion script:

$ cat /etc/bash_completion.d/modules
#
# Bash commandline completion (bash 3.0 and above) for Modules 3.2.9
#
_module_avail() {
/usr/share/modules/3.2.9/bin/modulecmd bash -t avail 21 | sed '
/:$/d;
/:ERROR:/d;
s#^\(.*\)/\(.\+\)(default)#\1\n\1\/\2#;
s#/(default)##g;
s#/*$##g;'
}
...


As a consequence execution of _module_avail gives an error:

$ _module_avail
bash: /usr/share/modules/3.2.9/bin/modulecmd: No such file or directory


Attached is a simple patch that fixes this issue.

My system is:
$lsb_release -rd
Description:Ubuntu 12.04.1 LTS
Release:12.04

Though this package is only available for Quantal so installed it from 
corresponding .deb
$ apt-cache policy environment-modules 
environment-modules:
  Installed: 3.2.9c-2
  Candidate: 3.2.9c-2
  Version table:
 *** 3.2.9c-2 0
100 /var/lib/dpkg/status

BTW it seems like the same issue is present in Debian package
http://packages.debian.org/unstable/main/environment-modules

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

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

Title:
  Improper reference to modulecmd in bash_completion script

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

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


[Bug 1056014] Re: Improper reference to modulecmd in bash_completion script

2012-09-25 Thread Bolick
** Patch added: modules.diff
   
https://bugs.launchpad.net/bugs/1056014/+attachment/3340671/+files/modules.diff

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

Title:
  Improper reference to modulecmd in bash_completion script

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

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


[Bug 1056014] Re: Improper reference to modulecmd in bash_completion script

2012-09-25 Thread Bolick
Attached is a modified patch from modules_3.2.9c-2.debian.tar.gz that
produces expected bash_completion script

** Patch added: Updated path from debian sources package
   
https://bugs.launchpad.net/ubuntu/+source/modules/+bug/1056014/+attachment/3340977/+files/fix_paths_update.patch

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

Title:
  Improper reference to modulecmd in bash_completion script

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

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


[Bug 933212] Re: FBO-using applications unresponsive for a long time after modeswitch

2012-02-18 Thread Bolick
Confirm 295.20 drivers seems like fixed delay on resume.

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

Title:
  FBO-using applications unresponsive for a long time after modeswitch

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

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


[Bug 713088] Re: [natty] plymouth boot screen corrupted with nouveau on Thinkpad T61

2012-02-01 Thread Bolick
unoup11, I believe you have to run: 

sudo update-grub2 

to apply your modification to grub.

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

Title:
  [natty] plymouth boot screen corrupted with nouveau on Thinkpad T61

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

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


[Bug 864739] Re: Ubuntu doesn't work on HP Elitebook 8560w

2012-01-24 Thread Bolick
Hi Dave,

I'm enjoying my laptop of this type without any major issues.
I may list only few inconveniences with it:
1) To install Ubunto (be it 11.10 or 12.04 daily iso) you need to set 
nomodeset in GRUB to get installer working and install proprietary nVidia 
drivers. As you get it (nVidia drivers installed) you'll get system up and 
running generally without issues.
2) There're known issues with Unity in pair with nVidia proprietar drivers:
Unity launcher corruption on resume from suspend 
https://bugs.launchpad.net/oem-priority/+bug/915265
Resume from suspend takes much more time when nvidia-current driver is 
installed.
https://bugs.launchpad.net/ubuntu/+source/unity/+bug/828761
3) If you need fingerprint reader - it won't work. No support in libfprint
Fingerprint reader Validity Sensors not recognized
https://bugs.launchpad.net/ubuntu/+source/libfprint/+bug/790183

All other HW devices working properly if I didn't miss something.
Hope it helps.

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

Title:
  Ubuntu doesn't work on HP Elitebook 8560w

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

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


[Bug 828761] Re: Resume from suspend takes much more time when nvidia-current driver is installed.

2012-01-23 Thread Bolick
Another note - if I had music player running right before suspend it resumes to 
playback music right after I woke up my PC (I mean at least very soon like few 
seconds). Though screen is black for next say 30 seconds with only mouse cursor 
visible and moving with mouse movements.
I'd say that this proves concept of OS being awake and only video output is 
somehow disabled.

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

Title:
  Resume from suspend takes much more time when nvidia-current driver is
  installed.

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

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


[Bug 915265] Re: Unity launcher corruption on resume from suspend

2012-01-16 Thread Bolick
Still persists in 11.10 32-bit (3.0.0-15-generic-pae) even with:
nvidia-current 290.10-0ubuntu1~oneiric~xup1 from ppa:ubuntu-x-swat/x-updates 
for nVidia Quadro 1000M
unity 5.0.0~+bzr1825ubuntu0+611 from ppa:unity-team/ppa

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

Title:
  Unity launcher corruption on resume from suspend

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

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


[Bug 676166] Re: Unity Launcher corruption when resuming from suspend/hibernate

2012-01-16 Thread Bolick
Still persists in 11.10 32-bit even with:
nvidia-current 290.10-0ubuntu1~oneiric~xup1 from ppa:ubuntu-x-swat/x-updates
unity 5.0.0~+bzr1825ubuntu0+611 from ppa:unity-team/ppa

** Attachment added: Panel on the left is corrupted
   
https://bugs.launchpad.net/unity/+bug/676166/+attachment/2677878/+files/Screenshot.png

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

Title:
  Unity Launcher corruption when resuming from suspend/hibernate

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

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


[Bug 828761] Re: Resume from suspend takes much more time when nvidia-current driver is installed.

2012-01-09 Thread Bolick
Unity panel rendering corruption on wake-up after Suspend state.
On the first mouse-over Unity panel it gets properly rendered.

nvidia-current drivers version 290.10-0ubuntu1~xedgers~oneiric1 on
32-bit Ubuntu 11.10 with nVidia Quadro 1000M

** Attachment added: 1.png
   
https://bugs.launchpad.net/ubuntu/+source/lightdm/+bug/828761/+attachment/2665377/+files/1.png

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

Title:
  Resume from suspend takes much more time when nvidia-current driver is
  installed.

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

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


[Bug 828761] Re: Resume from suspend takes much more time when nvidia-current driver is installed.

2012-01-09 Thread Bolick
I'd say that comment #67 makes sense. I disabled Unity plugin in CCSM and got 
near to immediate wake-up, but on wake-up I got everything black except active 
window and no screen decoration as well.
Attached is a screen-shot of this behavior.

** Attachment added: 2.png
   
https://bugs.launchpad.net/ubuntu/+source/lightdm/+bug/828761/+attachment/2665378/+files/2.png

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

Title:
  Resume from suspend takes much more time when nvidia-current driver is
  installed.

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

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


[Bug 828761] Re: Resume from suspend takes much more time when nvidia-current driver is installed.

2012-01-09 Thread Bolick
Another prove of #67 comment - I switched to Unity 2D and got immediate wake-up 
without any rendering issues.
Also I may mention that on another laptop with nVidia GeForce 8400M GS and free 
(nouveau) drivers Ubuntu 11.10 with Unity (3D) wakes immediately and without 
any issues. So it seems like sort of integration problem between nVidia 
restriced drivers and Unity (3D)

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

Title:
  Resume from suspend takes much more time when nvidia-current driver is
  installed.

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

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


[Bug 790183] Re: Fingerprint reader Validity Sensors not recognized

2012-01-03 Thread Bolick
Seems like Bus 001 Device 003: ID 138a:003c DigitalPersona, Inc is
VFS451 model from Validity and according to this message
(http://lists.freedesktop.org/archives/fprint/2011-August/46.html)
Validity is going to deliver its own proprietary drivers for wide range
of their fingerprint readers in April of 2012

==
It will support VFS301, 5011, 5111 and 5131 in addition to VFS451, 471  491. 
==

But as for VFS301 it seems like libfprint just got support for this
device. More info in this bug:
https://bugs.launchpad.net/ubuntu/+source/libfprint/+bug/744310

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

Title:
  Fingerprint reader Validity Sensors  not recognized

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

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


[Bug 790183] Re: Fingerprint reader Validity Sensors not recognized

2012-01-02 Thread Bolick
** Tags added: 8560w elitebook hp

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

Title:
  Fingerprint reader Validity Sensors  not recognized

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

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


[Bug 874880] Re: Ubuntu 11.10 Headphone-To-Speaker Switching for Intel HDA

2011-10-30 Thread Bolick
The same issue here with MSI Wind 90.
Workaround works, but I'm talking about netbook which is quite frequently being 
moved around the house and so each time I plug in external jack I have to 
switch output to Analogue speakers in Sound settings.
At the same time on Acer Aspire 7720z I cannot reproduce this issue which is 
quite strange.

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

Title:
  Ubuntu 11.10 Headphone-To-Speaker Switching for Intel HDA

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

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


[Bug 874880] Re: Ubuntu 11.10 Headphone-To-Speaker Switching for Intel HDA

2011-10-30 Thread Bolick
So after reading a bunch of different alsa-related solutions I tried to set my 
audio codec explicitly.
For this I followed this manual: 
https://help.ubuntu.com/community/HdaIntelSoundHowto

Basically I added to the end of /etc/modprobe.d/alsa-base.conf this line:
#
options snd-hda-intel model=targa-2ch-dig
#

At the moment it seems like my problem was solved. Without plugged-in
jack sound comes from built-in speakers, while with plugged jack sound
comes to external amplifier.

Here's a list with most of available model names: 
===
http://www.mjmwired.net/kernel/Documentation/sound/alsa/HD-Audio-Models.txt
===

I picked mine for Targa/MSI with 2-channel based on my netbook name.

So please try to find a proper model for your audio codec and hopefully
your problem will be solved.

But anyway I'm still disappointed why I didn't have this issue before
11.10 (10.04 - 11.04 worked perfectly regarding audio things).

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

Title:
  Ubuntu 11.10 Headphone-To-Speaker Switching for Intel HDA

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

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


[Bug 863604] Re: unity-window-decorator crashed with SIGSEGV in g_slice_alloc()

2011-09-30 Thread Bolick
*** This bug is a duplicate of bug 741395 ***
https://bugs.launchpad.net/bugs/741395

Hint: VLC was running and I tried to open play-list. Right at that
moment I noticed that play-list decoration was absent and in the next
moment compiz crashed.

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

Title:
  unity-window-decorator crashed with SIGSEGV in g_slice_alloc()

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

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


[Bug 713088] Re: [natty] plymouth boot screen corrupted with nouveau on Thinkpad T61

2011-09-27 Thread Bolick
Same here for GeForce 8400M GS with 3.0.0-11-generic-pae on Oneric i386
beta2 plus recent updates.

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

Title:
  [natty] plymouth boot screen corrupted with nouveau on Thinkpad T61

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

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


[Bug 666320] Re: Evolution-MAPI replaces Cyrillic text with [?]

2011-01-27 Thread Bolick
The same here. 

[?]

Instead of cyrillic symbols in messages in HTML

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

Title:
  Evolution-MAPI replaces Cyrillic text with [?]

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


[Bug 666320] Re: Evolution-MAPI replaces Cyrillic text with [?]

2011-01-27 Thread Bolick
Seems like could be fixed with simple switching Character encoding for 
current MAPI account from View menu to Cyrillic (KOI8-R).
Maybe one should try Cyrillic (Windows-1251).

Ubuntu 10.10
Evolution 2.30.3-1ubuntu7.3
evolution-mapi 0.30.3-1ubuntu1

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

Title:
  Evolution-MAPI replaces Cyrillic text with [?]

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


[Bug 31037] Re: Vino-server takes 90% of cpu when only listening for incoming connections

2010-11-02 Thread Bolick
In 10.10
While checked Allow Users to View Your Desktop vino-server process suddenly 
starts eating 50% of my dual-core CPU.
Killing the process helps.

-- 
Vino-server takes 90% of cpu when only listening for incoming connections
https://bugs.launchpad.net/bugs/31037
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

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


[Bug 659257] Re: randomly keyboard layout changes every key i hit until i leave the field

2010-10-13 Thread Bolick
The same here. Fresh installation of Ubuntu 10.10 32-bit.

-- 
randomly keyboard layout changes every key i hit until i leave the field
https://bugs.launchpad.net/bugs/659257
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 659468] Re: Mixed keyboard layout

2010-10-13 Thread Bolick
*** This bug is a duplicate of bug 625793 ***
https://bugs.launchpad.net/bugs/625793

** This bug is no longer a duplicate of bug 659257
   randomly keyboard layout changes every key i hit until i leave the field
** This bug has been marked a duplicate of bug 625793
   Regression: Multiple Keyboard Layouts unusable: continuously changes layout 
+ 100% CPU usage [updated]
 * You can subscribe to bug 625793 by following this link: 
https://bugs.launchpad.net/indicator-application/+bug/625793/+subscribe

-- 
Mixed keyboard layout
https://bugs.launchpad.net/bugs/659468
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 659257] Re: randomly keyboard layout changes every key i hit until i leave the field

2010-10-13 Thread Bolick
*** This bug is a duplicate of bug 625793 ***
https://bugs.launchpad.net/bugs/625793

** This bug has been marked a duplicate of bug 625793
   Regression: Multiple Keyboard Layouts unusable: continuously changes layout 
+ 100% CPU usage [updated]
 * You can subscribe to bug 625793 by following this link: 
https://bugs.launchpad.net/indicator-application/+bug/625793/+subscribe

-- 
randomly keyboard layout changes every key i hit until i leave the field
https://bugs.launchpad.net/bugs/659257
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 516023] Re: Critcally low shown on unplug at 100% full

2010-05-26 Thread Bolick
The gconftool-2 command also helped with MSI Wind U90.
Konstantin, thanks a lot. This issue was a royal pain in ass.

-- 
Critcally low shown on unplug at 100% full
https://bugs.launchpad.net/bugs/516023
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 533409] Re: pidgin do not minimize to notification applet

2010-05-24 Thread Bolick
Diego, Preferences | Interface| Show system tray icon: always helps to get an 
ordinary Pidgin as it always was - Pidgin icon in tray, not in Indicator 
applet.
But as it is set by default in Pidgin's settings and IMHO as it was desired by 
those who developed Lucid, all messaging apps (Empathy, Pidgin, Evolution, 
Gwibber and so on) should use special part of Indicator Applet.
And AFAIK Empathy, Evolution, Gwibber all work well with this Indicator applet. 
Neither does Pidgin.
It seems very strange, that nobody cares.

-- 
pidgin do not minimize to notification applet
https://bugs.launchpad.net/bugs/533409
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 504929] Re: Dell Inpsiron attempts hibernation when power cord is plugged in

2010-05-09 Thread Bolick
Mathieu, could you please clarify which details, logs and so on would be 
helpful for MSI Wind netbook bug report?
Thanks

-- 
Dell Inpsiron attempts hibernation when power cord is plugged in
https://bugs.launchpad.net/bugs/504929
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 403135] Re: Notification area icon wrongly rendered/uses bg_color as a background (multiple apps)

2010-05-06 Thread Bolick
For me it seems like gXNeur version 0.9.8 appears with proper
transparent background in notification area in both Ambiance and
Radiance themes.

-- 
Notification area icon wrongly rendered/uses bg_color as a background (multiple 
apps)
https://bugs.launchpad.net/bugs/403135
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 403135] Re: Notification area icon wrongly rendered/uses bg_color as a background (multiple apps)

2010-05-04 Thread Bolick
betabandido, I guess you use Ambiance Ubuntu Gnome theme and Skype by default 
uses KDE theme.
So, to solve your issue with Skype go to Skype's Options-General and select 
GTK+ style  in Choose style dropdown menu.

-- 
Notification area icon wrongly rendered/uses bg_color as a background (multiple 
apps)
https://bugs.launchpad.net/bugs/403135
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 403135] Re: Notification area icon wrongly rendered/uses bg_color as a background (multiple apps)

2010-04-09 Thread Bolick
This is a screenshot for GxNeur in Lucid

** Attachment added: Screenshot for GxNeur in Lucid
   http://launchpadlibrarian.net/43525458/gxneur.png

-- 
Notification area icon wrongly rendered/uses bg_color as a background (multiple 
apps)
https://bugs.launchpad.net/bugs/403135
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 403135] Re: Notification area icon wrongly rendered/uses bg_color as a background (multiple apps)

2010-04-08 Thread Bolick
I have the same problem in up to date Lucid in gXNeur with
Ambiance/Radiance/Dust themes.

-- 
Notification area icon wrongly rendered/uses bg_color as a background (multiple 
apps)
https://bugs.launchpad.net/bugs/403135
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 504929] Re: Dell Inpsiron attempts hibernation when power cord is plugged in

2010-03-29 Thread Bolick
The same issue as dfme mentioned above. I have MSI Wind U90 with up to date 
Ubuntu Lucid 10.04.
Netbook has fully charged battery, then I unplug DC connector and within 1 
minute (not immediately) netbook falls into hibernate.
After waking it up with power button netbook operates from battery power 
normally, showing 100% battery icon in tray.

-- 
Dell Inpsiron attempts hibernation when power cord is plugged in
https://bugs.launchpad.net/bugs/504929
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