[Bug 268929] Re: Wrong escape character processing in dash

2010-05-16 Thread Martti Kuparinen
Same bug exists in 10.04...

# ls -l /bin/sh
lrwxrwxrwx 1 root root 4 2010-04-27 13:20 /bin/sh -> dash

# dpkg -l dash
ii  dash   0.5.5.1-3ubunt POSIX-compliant shell

-- 
Wrong escape character processing in dash
https://bugs.launchpad.net/bugs/268929
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 571577] Re: Valgrind's thread checker not working correctly

2010-04-29 Thread Martti Kuparinen
Uh, sorry for the bad indentation...

-- 
Valgrind's thread checker not working correctly
https://bugs.launchpad.net/bugs/571577
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 571577] [NEW] Valgrind's thread checker not working correctly

2010-04-29 Thread Martti Kuparinen
Public bug reported:

Binary package hint: valgrind

I have Ubuntu 10.04 with Valgrind 3.6.0~svn20100212-0ubuntu5. I created
a simple test program like this


#include 
#include 
#include 
#include 

static void *func(void *a)
{
a = NULL;
while (1) {
sleep(1);
}
return NULL;
}

int main()
{
pthread_t trd;

if (pthread_create(&trd, NULL, func, NULL)) {
exit(1);
}
pthread_detach(trd);
sleep(60);
return 0;
}


but I get an error when running the helgrind


# gcc -Wall vgtest.c -lpthread
# valgrind --trace-children=yes --verbose --tool=helgrind ./a.out
...
==13694== Thread #2 was created
==13694==at 0x513365E: clone (clone.S:77)
==13694==by 0x4E37172: pthread_create@@GLIBC_2.2.5 (createthread.c:75)
==13694==by 0x4C2C42C: pthread_create_WRK (hg_intercepts.c:230)
==13694==by 0x4C2C4CF: pthread_cre...@* (hg_intercepts.c:257)
==13694==by 0x4006B6: main (in /var/tmp/a.out)
==13694==
==13694== Thread #1 is the program's root thread
==13694==
==13694== Possible data race during write of size 8 at 0x7ff0009e0 by thread #2
==13694==at 0x4C2C54C: mythread_wrapper (hg_intercepts.c:200)
==13694==  This conflicts with a previous read of size 8 by thread #1
==13694==at 0x4C2C440: pthread_create_WRK (hg_intercepts.c:235)
==13694==by 0x4C2C4CF: pthread_cre...@* (hg_intercepts.c:257)
==13694==by 0x4006B6: main (in /var/tmp/a.out)
==13694==


I also tried with the SVN version (2) and it works correctly. Please update 
the Ubuntu package...

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

-- 
Valgrind's thread checker not working correctly
https://bugs.launchpad.net/bugs/571577
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 295172] Re: usb-creator does not work when $HOME is on NFS

2009-05-17 Thread Martti Kuparinen
I confirm this, my NFS client is Ubuntu 9.04...

-- 
usb-creator does not work when $HOME is on NFS
https://bugs.launchpad.net/bugs/295172
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 76288] Re: sysctl IPv6 forwarding example is incorrect

2008-10-03 Thread Martti Kuparinen
This is NOT fixed in 8.04.1:

# sudo sysctl -p /etc/sysctl.conf
error: "net.ipv6.ip_forward" is an unknown key

The correct keyword is maybe "net.ipv6.conf.all.forwarding".

# cat /etc/lsb-release
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=8.04
DISTRIB_CODENAME=hardy
DISTRIB_DESCRIPTION="Ubuntu 8.04.1"

# dpkg -S /etc/sysctl.conf
procps: /etc/sysctl.conf

# dpkg -l procps
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Installed/Config-f/Unpacked/Failed-cfg/Half-inst/t-aWait/T-pend
|/ Err?=(none)/Hold/Reinst-required/X=both-problems (Status,Err: uppercase=bad)
||/ Name   VersionDescription
+++-==-==-
ii  procps 1:3.2.7-5ubunt /proc file system utilities

-- 
sysctl IPv6 forwarding example is incorrect
https://bugs.launchpad.net/bugs/76288
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 268929] [NEW] Wrong escape character processing in dash

2008-09-11 Thread Martti Kuparinen
Public bug reported:

Binary package hint: dash

It seems dash does not handle escape characters correctly. Below is how
I can trigger (what I think is) an error on Ubuntu 8.04.1.


# cat /etc/lsb-release
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=8.04
DISTRIB_CODENAME=hardy
DISTRIB_DESCRIPTION="Ubuntu 8.04.1"
# ls -l /bin/sh
lrwxrwxrwx 1 root root 4 2008-03-19 13:13 /bin/sh -> dash
# dpkg -l dash
ii  dash   0.5.4-8ubuntu1 POSIX-compliant shell

# cat /tmp/runme
echo "printf(\"Hello\\n\");"

# /bin/bash /tmp/runme
printf("Hello\n");

## THE PROBLEM IS HERE
# /bin/sh /tmp/runme
printf("Hello
");

I also tested this on our server running NetBSD/amd64 and I have no
problems with /bin/sh there.

# uname -srm
NetBSD 4.0_STABLE amd64
# ls -l /bin/sh
-r-xr-xr-x  1 root  wheel  167620 Aug 13 08:40 /bin/sh

# /usr/pkg/bin/bash /tmp/runme
printf("Hello\n");

# /bin/sh /tmp/runme
printf("Hello\n");

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

-- 
Wrong escape character processing in dash
https://bugs.launchpad.net/bugs/268929
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 200296] Re: grep -v doesn't work correctly

2008-07-29 Thread Martti Kuparinen
Hmmm, I can't  reproduce this any more on 8.04.1 even though grep is the
same version. Something else (e.g. some regexp call in some library) has
been changed. I think this can be closed now.

-- 
grep -v doesn't work correctly
https://bugs.launchpad.net/bugs/200296
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 134677] Re: Wrong version number in kaffeine.desktop

2008-07-07 Thread Martti Kuparinen
No, everything is fine on Ubuntu 8.04 so case closed...

-- 
Wrong version number in kaffeine.desktop
https://bugs.launchpad.net/bugs/134677
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 200906] Re: in alpha6 broken!

2008-03-31 Thread Martti Kuparinen
And I'm running 8.04 with not previous VDR packages...

-- 
in alpha6 broken!
https://bugs.launchpad.net/bugs/200906
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 197400] Re: vdr-sxfe crashed with SIGSEGV in dbus_g_proxy_call()

2008-03-31 Thread Martti Kuparinen
For me (Ubuntu 8.04) running this with sudo does not help...

vdr-sxfe: pulsecore/mutex-posix.c:98: pa_mutex_unlock: Assertion 
`pthread_mutex_unlock(&m->mutex) == 0' failed.
Aborted (core dumped)

-- 
vdr-sxfe crashed with SIGSEGV in dbus_g_proxy_call()
https://bugs.launchpad.net/bugs/197400
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 200906] Re: in alpha6 broken!

2008-03-31 Thread Martti Kuparinen
Any estimate when this will be fixed? It'd be nice to be able to build
this package...

sudo apt-get build-dep xineliboutput-sxfe
sudo apt-get source xineliboutput-sxfe
cd vdr-plugin-xineliboutput-1.0.0~rc2
dpkg-buildpackage -b -rfakeroot
...
g++ -g -O2 -c -D_GNU_SOURCE -DPLUGIN_NAME_I18N='"xineliboutput"' -D_REENTRANT 
-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DXINELIBOUTPUT_VERSION='"1.0.0rc2"' 
 -DUSE_ICONV=1 -DNOSIGNAL_IMAGE_FILE='"/usr/share/libxine1-xvdr/nosignal.mpg"' 
-DHAVE_DBUS_GLIB -Wall -I/usr/include/vdr/include -I/usr/include/dbus-1.0 
-I/usr/lib/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
  -o device.o device.c
device.c: In member function 'virtual void 
cXinelibDevice::MakePrimaryDevice(bool)':
device.c:330: error: cannot allocate an object of abstract type 
'cXinelibOsdProvider'
osd.h:54: note:   because the following virtual functions are pure within 
'cXinelibOsdProvider':
/usr/include/vdr/osd.h:409: note:   virtual cOsd* 
cOsdProvider::CreateOsd(int, int, uint)
make[1]: *** [device.o] Error 1

-- 
in alpha6 broken!
https://bugs.launchpad.net/bugs/200906
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 174162] Re: cannot bind to YP server under AMD64

2008-03-19 Thread Martti Kuparinen
*** This bug is a duplicate of bug 152794 ***
https://bugs.launchpad.net/bugs/152794

No, isn't that the "old way of doing this", I thought modifying
/etc/nsswitch.conf was "the right thing to do"...

-- 
cannot bind to YP server under AMD64
https://bugs.launchpad.net/bugs/174162
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 174162] Re: cannot bind to YP server under AMD64

2008-03-19 Thread Martti Kuparinen
*** This bug is a duplicate of bug 152794 ***
https://bugs.launchpad.net/bugs/152794

With "nis" in /etc/nsswitch.conf

n40:~> id martti
uid=2000(martti) gid=1(tri) groups=...

Without "nis" in /etc/nsswitch.conf

n40:~> id martti
id: martti: No such user

Again with "nis" in /etc/nsswitch.conf

n40:~> id martti
uid=2000(martti) gid=1(tri) groups=...

Please note that the NIS server is not running Linux but NetBSD...

-- 
cannot bind to YP server under AMD64
https://bugs.launchpad.net/bugs/174162
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 174162] Re: cannot bind to YP server under AMD64

2008-03-19 Thread Martti Kuparinen
I didn't have any problems on 7.10 but after performing a clean install
of 32-bit 8.04 today I couldn't login as my NIS user after reboot.
Here's what I did:

# sudo aptitude update && sudo aptitude dist-upgrade
# sudo aptitude install nis
# sudo vi /etc/nsswitch.conf

passwd: compat nis
group:  compat nis
shadow: compat nis

# id mynislogin
uid=1(mynislogin) ..
# sudo reboot

So, after reboot ypbind was not bound to the server. I solved this by

# sudo vi /etc/rc.local

/etc/init.d/nis restart

-- 
cannot bind to YP server under AMD64
https://bugs.launchpad.net/bugs/174162
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 200296] Re: grep -v doesn't work correctly

2008-03-10 Thread Martti Kuparinen
This seems to be related to the Finnish locale...

# echo $LANG
fi_FI.UTF-8
# ls PLUGINS/src | grep -v '[^a-z0-9]'
hello
osddemo
pictures
skincurses
sky
status

# export LANG=C
# ls PLUGINS/src | grep -v '[^a-z0-9]'
hello
osddemo
pictures
servicedemo
skincurses
sky
status
svdrpdemo

-- 
grep -v doesn't work correctly
https://bugs.launchpad.net/bugs/200296
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 200296] [NEW] grep -v doesn't work correctly

2008-03-09 Thread Martti Kuparinen
Public bug reported:

Binary package hint: grep

There's something wrong in Ubuntu's grep, see below how "servicedemo"
and "svdrpdemo" get erroneously deleted from the second ls output...

# wget ftp://ftp.cadsoft.de/vdr/Developer/vdr-1.5.17.tar.bz2
# tar xjf vdr-1.5.17.tar.bz2
# cd vdr-1.5.17

## Works as expected
# ls PLUGINS/src
hello  osddemo  pictures  servicedemo  skincurses  sky  status  svdrpdemo

## Here's the error: servicedemo and svdrpdemo are missing
# ls PLUGINS/src | grep -v '[^a-z0-9]'
hello
osddemo
pictures
skincurses
sky
status

# Works as expected
# ls PLUGINS/src | grep -v NotThereForSure
hello
osddemo
pictures
servicedemo
skincurses
sky
status
svdrpdemo

This happens on Ubuntu 7.10 and 8.04

# cat /etc/lsb-release
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=7.10
DISTRIB_CODENAME=gutsy
DISTRIB_DESCRIPTION="Ubuntu 7.10"

# dpkg -l grep
ii  grep   2.5.1.ds2-6bui GNU grep, egrep and fgrep

and

# cat /etc/lsb-release
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=8.04
DISTRIB_CODENAME=hardy
DISTRIB_DESCRIPTION="Ubuntu hardy (development branch)"

# dpkg -l grep
ii  grep   2.5.3~dfsg-3   GNU grep, egrep and fgrep

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

-- 
grep -v doesn't work correctly
https://bugs.launchpad.net/bugs/200296
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 194960] Re: [Hardy]Battery charge never updates, remaining time always unknown

2008-02-26 Thread Martti Kuparinen
*** This bug is a duplicate of bug 194719 ***
https://bugs.launchpad.net/bugs/194719

Same here with Dell Latitude D630...

** Attachment added: "bugreport.txt"
   http://launchpadlibrarian.net/12242557/bugreport.txt

-- 
[Hardy]Battery charge never updates, remaining time always unknown
https://bugs.launchpad.net/bugs/194960
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 192382] Re: alsamixer broken in hardy - intel hda

2008-02-26 Thread Martti Kuparinen
I haven't done anything except installing the latest updates (I did't
even care to look what those were) but now this morning I had sound in
youtube videos...

-- 
alsamixer broken in hardy - intel hda
https://bugs.launchpad.net/bugs/192382
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 192382] Re: alsamixer broken in hardy - intel hda

2008-02-25 Thread Martti Kuparinen
I see this also on Dell Latitude D630 running 8.04 with all the updates
installed 5 min ago.

# aplay -l
 List of PLAYBACK Hardware Devices 
card 0: Intel [HDA Intel], device 0: STAC92xx Analog [STAC92xx Analog]
  Subdevices: 0/1
  Subdevice #0: subdevice #0
card 0: Intel [HDA Intel], device 1: STAC92xx Digital [STAC92xx Digital]
  Subdevices: 1/1
  Subdevice #0: subdevice #0

# lspci -vv | grep -i audio
00:1b.0 Audio device: Intel Corporation 82801H (ICH8 Family) HD Audio 
Controller (rev 02)

-- 
alsamixer broken in hardy - intel hda
https://bugs.launchpad.net/bugs/192382
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 186297] Re: Regression: No replacement for /proc/acpi/alarm due to missing rtc0

2008-02-04 Thread Martti Kuparinen
Due to some other problems I reinstalled my PC but this time I installed
the i386 version (with 2.6.24-5-generic kernel). To my big surprise I
have  now /proc/acpi/alarm available...

** Attachment added: "dmesg.txt"
   http://launchpadlibrarian.net/11759417/dmesg.txt

-- 
Regression: No replacement for /proc/acpi/alarm due to missing rtc0
https://bugs.launchpad.net/bugs/186297
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 186297] Re: Regression: No replacement for /proc/acpi/alarm due to missing rtc0

2008-01-27 Thread Martti Kuparinen

** Attachment added: "cpuinfo.txt"
   http://launchpadlibrarian.net/11583754/cpuinfo.txt

-- 
Regression: No replacement for /proc/acpi/alarm due to missing rtc0
https://bugs.launchpad.net/bugs/186297
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 186297] Re: Regression: No replacement for /proc/acpi/alarm due to missing rtc0

2008-01-27 Thread Martti Kuparinen
Linux n71 2.6.24-5-generic #1 SMP Thu Jan 24 19:29:14 UTC 2008 x86_64
GNU/Linux

** Attachment added: "dmesg.txt"
   http://launchpadlibrarian.net/11583740/dmesg.txt

-- 
Regression: No replacement for /proc/acpi/alarm due to missing rtc0
https://bugs.launchpad.net/bugs/186297
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 186297] Re: Regression: No replacement for /proc/acpi/alarm due to missing rtc0

2008-01-27 Thread Martti Kuparinen

** Attachment added: "lspci.txt"
   http://launchpadlibrarian.net/11583750/lspci.txt

-- 
Regression: No replacement for /proc/acpi/alarm due to missing rtc0
https://bugs.launchpad.net/bugs/186297
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 186297] [NEW] Regression: No replacement for /proc/acpi/alarm due to missing rtc0

2008-01-27 Thread Martti Kuparinen
Public bug reported:

Binary package hint: linux-source-2.6.24

I performed a clean installation of 8.04 and quickly noticed that the
ACPI wakeup feature provided by /proc/acpi/alarm in Ubuntu 7.10 (with
2.6.22 kernel) is now deprecated and should be replaced by
/sys/class/rtc/rtc0/wakealarm. However, I have nothing in the
/sys/class/rtc directory, i.e. rtc0 was not detected.

http://www.mythtv.org/wiki/index.php/ACPI_Wakeup says this:


Warning: The wakealarm interface is incompatible with the kernel's old 
"Enhanced Real Time Clock Support" and "Generic /dev/rtc emulation" options. If 
your kernel was built with these enabled your kernel log will contain messages 
such as

rtc_cmos: probe of 00:03 failed with error -16

The solution is to rebuild your kernel with the above two options
excluded (find them under Drivers -> Character Devices) and the various
RTC interfaces (found under Drivers -> Real Time Clock) included. From a
.config point of view CONFIG_RTC and CONFIG_GEN_RTC must be unset and,
at a minimum, RTC_INTF_SYSFS must be set.


I don't see that probe failure on my PC but I have 
"/build/buildd/linux-2.6.24/drivers/rtc/hctosys.c: unable to open rtc device 
(rtc0)". Taking a quick look at /boot/config-2.6.24-5-generic shows that I have 
incorrectly(?) CONFIG_RTC set even though CONFIG_RTC_INTF_SYSFS is also set. I 
will try to compile my own kernel and see if rtc0 is detected when CONFIG_RTC 
is unset.

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

-- 
Regression: No replacement for /proc/acpi/alarm due to missing rtc0
https://bugs.launchpad.net/bugs/186297
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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