[Bug 1669420] [NEW] udevadm unconfigured script leaks into initrd causing boot failure

2017-03-02 Thread C Filorux
Public bug reported:

If update-initramfs is run while udevadm is "unconfigured", then the
system is rendered unbootable.  Instead of containing a working version
of udevadm, the "initrd" is built with the wrapper script that reports
an error, and proceeds no further (as per code below).

Please incorporate the check for 'unconfigured' into the code for
udevadm, so that the udevadm binary can work correctly whether it is on
an unconfigured system, or an initrd.

This was a sticky problem, because no amount of 'dpkg-reconfigure udev'
did the required 'mv udevadm.upgrade udevadm'

#!/bin/sh

if [ "$1" = "trigger" ]; then
echo "udevadm trigger is not permitted while udev is unconfigured." 1>&2
exit 1
fi
# ... snip ...
exec /bin/bash -c "exec -a \"\$0\" /bin/udevadm.upgrade \"\$@\"" "$0" "$@"

** Affects: udev (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/1669420

Title:
  udevadm unconfigured script leaks into initrd causing boot failure

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

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


[Bug 1357093] Re: Kernels not autoremoving, causing out of space error on LVM or Encrypted installation or on any installation, when /boot partition gets full

2016-11-21 Thread C Filorux
The fix is failing in xenial: I have to repeatedly clean up after the
installer, when it complains that it cannot do its work due to disk
space on the tiny /boot partition.  "My disk is full again!"

The bug remains: The automatic update is not considered an unattended
update, since the user is there attending it via an interactive
application (tell me I'm wrong).

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

Title:
  Kernels not autoremoving, causing out of space error on LVM or
  Encrypted installation or on any installation, when /boot partition
  gets full

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

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


[Bug 1101647] Re: VFS491 Validity Sensor on HP Probook 4540s

2014-02-11 Thread C Filorux
I attempted to get a USB trace by installing the Digital Persona / HP
fingerprint software on a windows installation in a virtual machine --
that didn't go well.  The installer says it can only be installed on
certain types of hardware, which the virtual machine is not.  Anybody
thinking of this approach, don't - nothing but bare metal will do for
this fine hardware and software.

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

Title:
  VFS491 Validity Sensor on HP Probook 4540s

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libfprint/+bug/1101647/+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-12-09 Thread C Filorux
Confirmed still unfixed on 13.10 ... WPA+EAP or Linux: pick one.

-- 
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/network-manager/+bug/1104476/+subscriptions

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


[Bug 1067106] Re: possible to run out of space on /boot partition when installed using auto recipe & full-disk-encryption

2013-10-22 Thread C Filorux
The essence of the bug here is that the system accumulates a pile of
kernel versions that are entirely unused.  (When this happens, the
partition fills up, and things break.)  Stated another way, the system
breaks deterministically by failing to clean up unused kernel versions
that it installed itself.  This bug is not confined to full disk
encryption, but affects all configurations with a limited /boot
partition.

This wasteful behaviour is bad, even if there is plenty disk space due
to being able to boot from LUKS with some future (eagerly awaited) grub
amazingness.

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

Title:
  possible to run out of space on /boot partition when installed using
  auto recipe & full-disk-encryption

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/partman-auto-crypto/+bug/1067106/+subscriptions

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


[Bug 1222690] [NEW] small /boot partition for full system encryption becomes full after 7 updates and leads to failures

2013-09-09 Thread C Filorux
Public bug reported:

During installation with full system encryption, the Ubuntu installer
creates an adequate /boot partition of around 100Mb.

However, after 10 updates to linux-image over the next few months, along
with the running of update-initramfs the /boot partition becomes full.
This causes further linux-image kernel updates to fail.  Additionally,
there are (undiagnosed) edge cases where improper handling of out-of-
disk-space conditions in update-initramfs and/or update-grub this leads
to additional failures.  (I fixed a computer yesterday where /boot ran
out of space, which caused grub to fail, which ended with "No Operating
System" being displayed by the EFI BIOS.  I previously fixed a system
where a trivial upgrade failed on account of historical kernels in /boot
- not a system failure, but a user interface disaster for Aunt Tilly.)

To prevent /boot from filling up, it would help if there was a limit to
the number of historic kernel versions maintained.  Older kernel
versions are of interest to many developers, but having multiple
revisions of kernels that are not used is not helpful for regular users.

A possible solution would be to "expire" automatically installed /boot
updates which are not in active use.  A wilder approach would be to move
the large kernel files from /boot to some garbage collection point in
/var ... or maybe not.  Allocating more space to be wasted in /boot
doesn't seem like a good idea.

The following workaround is published to remove all kernel versions
except the current one:

dpkg --get-selections | \
  grep 'linux-image*' | \
  awk '{print $1}' | \
  egrep -v "linux-image-$(uname -r)|linux-image-generic" | \
  while read n
  do
apt-get -y remove $n
  done

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


** Tags: boot cryptsetup encryption full system update-grub update-initramfs

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

Title:
  small /boot partition for full system encryption becomes full after 7
  updates and leads to failures

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

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


[Bug 1051032] Re: [138a:003c] Validity VFS471 Fingerprint Reader not recognized

2013-09-03 Thread C Filorux
I have attempted to run Wireshark to sniff the USB traffic for this
device under Windows, but the installer for the fingerprint software
will not install on a Windos Virtual machine -- it complains that I
should only be installing it on an authorised HP platform.  I turfed the
Windows installation a while back, so I don't have one.

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

Title:
  [138a:003c] Validity VFS471 Fingerprint Reader not recognized

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

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


[Bug 948944] Re: after upgrade from oneiric python applications may use the wrong version of wxpython and fail as a result

2013-06-13 Thread C Filorux
I have this behaviour on "12.10, Quantal Quetzal" using python-wxgtk2.8
under XFCE4.  When I run the command as another user via a rather
complex sudo script that grants permission to use the X display, the
menu DOES display.  (Sorry about the bare post containing the run-as-
another-user hack - the comment system is not working so well for me).

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

Title:
  after upgrade from oneiric python applications may use the wrong
  version of wxpython and fail as a result

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/wxwidgets2.8/+bug/948944/+subscriptions

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


[Bug 948944] Re: after upgrade from oneiric python applications may use the wrong version of wxpython and fail as a result

2013-06-13 Thread C Filorux
** Attachment added: "This is a script that runs a gui command as the user 
'eyebrow' or whatever you call the script"
   
https://bugs.launchpad.net/ubuntu/+source/wxwidgets2.8/+bug/948944/+attachment/3702541/+files/eyebrow

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

Title:
  after upgrade from oneiric python applications may use the wrong
  version of wxpython and fail as a result

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/wxwidgets2.8/+bug/948944/+subscriptions

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


[Bug 1027075] Re: SSL support broken, despite SSL support in command line mysql client

2013-04-11 Thread C Filorux
Looks correct to me: The "/proposed" package fixes this problem - I
tested the "precise" package on a "quantal" installation which was
broken before the fix (no SSL support).  After the fix the mysql SSL
connection worked.

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

Title:
  SSL support broken, despite SSL support in command line mysql client

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

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


[Bug 1059827] Re: Non trival grub2 installs no longer fit in small embed areas

2013-03-19 Thread C Filorux
I managed to get this problem by creating a little partition - sda2 in
the list below - trying to make use of that 'unused' space.  This worked
well enough when grub was on a regular partition, but it does not work
when setting up /boot and grub on a LVM.  The fix was to delete the
partition with fdisk and run partprobe.

   Device Boot  Start End  Blocks   Id  System
/dev/sda1   *204815624191 7811072   83  Linux
/dev/sda2   31727 862+  83  Linux
/dev/sda315624192   625142447   3047591285  Extended
/dev/sda515624195   625142447   304759126+  8e  Linux LVM

It would be good for grub to display "there are 3 sectors before the
first partition available for core.img, and we need 65" (or whatever the
case is) rather than to only say that the core image is large - it's not
particularly large.

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

Title:
  Non trival grub2 installs no longer fit in small embed areas

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

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


[Bug 1045758] Re: Disable touchpad while typing default delay too long

2013-01-23 Thread C Filorux
It is a little unhelpful that mouse movement is disabled as well as clicking.  
Waiting to move the mouse is a little bit bad.
These settings allow mouse movement, but suppress clicks, which is the most 
problematic part of hovering a hand over the touchpad:
syndaemon -i .5 -K -t -R -d
Ideally there should be a visual or audio cue that says that a mouse click (or 
movement) was dropped due to it being too early.

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

Title:
  Disable touchpad while typing default delay too long

To manage notifications about this bug go to:
https://bugs.launchpad.net/xfce4-settings/+bug/1045758/+subscriptions

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


[Bug 1027075] Re: SSL support broken, despite SSL support in command line mysql client

2012-08-15 Thread C Filorux
I hacked mine to work by defining HAVE_OPENSSL in _mysql.c so that SSL
is compiled despite what mysql_config doesn't say:

diff -ur MySQL-python-1.2.3/_mysql.c python-mysqldb-1.2.3/_mysql.c
--- MySQL-python-1.2.3/_mysql.c 2010-06-17 09:21:56.0 +0200
+++ python-mysqldb-1.2.3/_mysql.c   2012-08-16 08:23:36.567236117 +0200
@@ -475,6 +475,7 @@
MYSQL *conn = NULL;
PyObject *conv = NULL;
PyObject *ssl = NULL;
+#define HAVE_OPENSSL 1
 #if HAVE_OPENSSL
char *key = NULL, *cert = NULL, *ca = NULL,
*capath = NULL, *cipher = NULL;

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

Title:
  SSL support broken, despite SSL support in command line mysql client

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

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


[Bug 1027075] [NEW] SSL support broken, despite SSL support in command line mysql client

2012-07-20 Thread C Filorux
Public bug reported:

With python-mysqldb 1.2.3-1build1 in Ubuntu "precise", when connecting
with SSL enabled, mysqldb fails due to missing support:

  File "/usr/lib/python2.7/dist-packages/MySQLdb/__init__.py", line 81, in 
Connect
return Connection(*args, **kwargs)
  File "/usr/lib/python2.7/dist-packages/MySQLdb/connections.py", line 187, in 
__init__
super(Connection, self).__init__(*args, **kwargs2)
_mysql_exceptions.NotSupportedError: client library does not have SSL support

Here's a test script:

#! /usr/bin/python
import MySQLdb
ssl =  { 'key':  'key.pem', 'cert': 'cert.pm', 'ca': 'ca.pem', }
self.mysqlconnection = MySQLdb.connect( ssl=ssl, host='localhost', 
user='anyuser', db='anydb', passwd='anypassword' )

There is some rumour of a change in the output of mysql_config, which no
longer says -lssl -lcrypto and -DHAVE_OPENSSL:

$ mysql_config 
Usage: /usr/bin/mysql_config [OPTIONS]
Options:
--cflags [-I/usr/include/mysql -DBIG_JOINS=1  
-fno-strict-aliasing  -g]
--include[-I/usr/include/mysql]
--libs   [-L/usr/lib/i386-linux-gnu -lmysqlclient -lpthread -lz 
-lm -lrt -ldl]
--libs_r [-L/usr/lib/i386-linux-gnu -lmysqlclient_r -lpthread 
-lz -lm -lrt -ldl]
--plugindir  [/usr/lib/mysql/plugin]
--socket [/var/run/mysqld/mysqld.sock]
--port   [0]
--version[5.5.24]
--libmysqld-libs [-L/usr/lib/i386-linux-gnu -lmysqld -lpthread -lz -lm 
-lrt -lwrap -lcrypt -ldl]

Suddenly SSL based mysql connections that worked are busted.  This is
possibly part of a larger conspiracy to make SSL suck even more than it
already does :-)

** Affects: python-mysqldb (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: 1.2.3-1build1

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

Title:
  SSL support broken, despite SSL support in command line mysql client

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

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


[Bug 193550] Re: [hardy] traceback when plugging in usb-audio device

2008-11-04 Thread C Filorux
By way of confirmation, I'm running 2.6.24-19-generic.  While playing
sound through the headset, I bumped the connector, and got the crash
below - this is unusual on my system.  The device is .. Bus 004 Device
007: ID 046d:0a0c Logitech, Inc.  dmesg says this - from when I
originally plugged it in (time+1021), to when I bumped it (time+2176),
to when I plugged it in again (in a different slot) (time+2184).:

[ 1021.218771] usb 4-1: USB disconnect, address 3
[ 1021.298316] usb 4-1: new full speed USB device using uhci_hcd and address 4
[ 1021.331405] usb 4-1: configuration #1 chosen from 1 choice
[ 1021.409206] input: Logitech Logitech USB Headset as 
/devices/pci:00/:00:1d.0/usb4/4-1/4-1:1.3/input/input10
[ 1021.449868] input,hidraw0: USB HID v1.00 Device [Logitech Logitech USB 
Headset] on usb-:00:1d.0-1
[ 2176.936148] usb 4-1: USB disconnect, address 4
[ 2177.224556] usb 4-1: new full speed USB device using uhci_hcd and address 5
[ 2177.437552] usb 4-1: configuration #1 chosen from 1 choice
[ 2177.512373] sysfs: duplicate filename 'card1' can not be created
[ 2177.512379] WARNING: at /build/buildd/linux-2.6.24/fs/sysfs/dir.c:424 
sysfs_add_one()
[ 2177.512383] Pid: 1671, comm: khubd Not tainted 2.6.24-19-generic #1
[ 2177.512404]  [] sysfs_add_one+0x9f/0xe0
[ 2177.512418]  [] sysfs_create_link+0x8a/0x110
[ 2177.512431]  [] device_add+0x14c/0x510
[ 2177.512441]  [] kobject_init+0x29/0x40
[ 2177.512450]  [] device_create+0x88/0xc0
[ 2177.512458]  [] snd_card_register+0x284/0x320 [snd]
[ 2177.512478]  [] usb_audio_probe+0x3b1/0x8b0 [snd_usb_audio]
[ 2177.512497]  [] sysfs_addrm_finish+0x14/0x1c0
[ 2177.512513]  [] usb_probe_interface+0xb9/0x140 [usbcore]
[ 2177.512544]  [] driver_probe_device+0x88/0x190
[ 2177.512550]  [] klist_next+0x55/0xb0
[ 2177.512559]  [] bus_for_each_drv+0x44/0x70
[ 2177.512568]  [] device_attach+0x86/0x90
[ 2177.512571]  [] __device_attach+0x0/0x10
[ 2177.512578]  [] bus_attach_device+0x45/0x90
[ 2177.512586]  [] device_add+0x418/0x510
[ 2177.512597]  [] usb_set_configuration+0x392/0x5d0 [usbcore]
[ 2177.512633]  [] generic_probe+0x76/0xb0 [usbcore]
[ 2177.512663]  [] usb_probe_device+0x33/0x40 [usbcore]
[ 2177.512679]  [] driver_probe_device+0x88/0x190
[ 2177.512692]  [] klist_next+0x55/0xb0
[ 2177.512703]  [] bus_for_each_drv+0x44/0x70
[ 2177.512712]  [] device_attach+0x86/0x90
[ 2177.512715]  [] __device_attach+0x0/0x10
[ 2177.512721]  [] bus_attach_device+0x45/0x90
[ 2177.512729]  [] device_add+0x418/0x510
[ 2177.512740]  [] usb_new_device+0x56/0xa0 [usbcore]
[ 2177.512768]  [] hub_thread+0x687/0xcb0 [usbcore]
[ 2177.512805]  [] autoremove_wake_function+0x0/0x40
[ 2177.512816]  [] hub_thread+0x0/0xcb0 [usbcore]
[ 2177.512839]  [] kthread+0x42/0x70
[ 2177.512843]  [] kthread+0x0/0x70
[ 2177.512849]  [] kernel_thread_helper+0x7/0x10
[ 2177.512858]  ===
[ 2177.520618] input: Logitech Logitech USB Headset as 
/devices/pci:00/:00:1d.0/usb4/4-1/4-1:1.3/input/input11
[ 2177.555261] input,hidraw0: USB HID v1.00 Device [Logitech Logitech USB 
Headset] on usb-:00:1d.0-1
[ 2177.854864] usb 4-1: USB disconnect, address 5
[ 2178.012016] usb 4-1: new full speed USB device using uhci_hcd and address 6
[ 2178.058211] usb 4-1: configuration #1 chosen from 1 choice
[ 2178.144001] input: Logitech Logitech USB Headset as 
/devices/pci:00/:00:1d.0/usb4/4-1/4-1:1.3/input/input12
[ 2178.187855] input,hidraw0: USB HID v1.00 Device [Logitech Logitech USB 
Headset] on usb-:00:1d.0-1
[ 2184.042606] usb 4-1: USB disconnect, address 6
[ 2184.393339] usb 4-2: new full speed USB device using uhci_hcd and address 7
[ 2184.420965] usb 4-2: configuration #1 chosen from 1 choice
[ 2184.505719] input: Logitech Logitech USB Headset as 
/devices/pci:00/:00:1d.0/usb4/4-2/4-2:1.3/input/input13
[ 2184.540251] input,hidraw0: USB HID v1.00 Device [Logitech Logitech USB 
Headset] on usb-:00:1d.0-2

-- 
[hardy] traceback when plugging in usb-audio device
https://bugs.launchpad.net/bugs/193550
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 39732] Er, cleaning my DVD doesn't fix the software problem

2008-07-20 Thread C Filorux
We have improved the quality of playback of especially rented DVD's by
using furniture polish (filling in cracks) and brasso (smoothing down
flat surface) on the physical media. These hardware changes help to
reduce the number of hardware errors, but the impact of a hardware error
remains software failure of DVD playback (imagine that!)  The software
remains unable to gracefully handle hardware and media errors.

-- 
DVD Playback errors should be handled gracefully
https://bugs.launchpad.net/bugs/39732
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 247190] It's hardy (gutsy doesn't have otpw)

2008-07-10 Thread C Filorux
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=8.04
DISTRIB_CODENAME=hardy
DISTRIB_DESCRIPTION="Ubuntu 8.04"

% dpkg -s libpam-otpw
Package: libpam-otpw
Status: install ok installed
Priority: optional
Section: libs
Installed-Size: 116
Maintainer: Ubuntu MOTU Developers <[EMAIL PROTECTED]>
Architecture: i386
Source: otpw
Version: 1.3-2
Depends: libc6 (>= 2.6.1-1), libpam0g (>= 0.99.7.1)
Recommends: otpw-bin
Description: Use OTPW for PAM authentication
 OTPW is a one-time password system which is robust against
 the password list being stolen and race for the last digit
 attacks.
 .
 This package contains the PAM library to use OTPW in any
 program which uses PAM.
Original-Maintainer: Matthew Johnson <[EMAIL PROTECTED]>


** Changed in: otpw (Ubuntu)
   Status: Incomplete => New

-- 
/lib/security/pam_otpw.so: undefined symbol: __stack_chk_fail_local
https://bugs.launchpad.net/bugs/247190
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 247190] [NEW] /lib/security/pam_otpw.so: undefined symbol: __stack_chk_fail_local

2008-07-10 Thread C Filorux
Public bug reported:

Binary package hint: libpam-otpw

The module doesn't load, and I won a reboot and init=/bin/bash when the
screensaver kicked in during testing.  Bug 66681 appears to be similar,
affecting i386 only.  There "Adding -fno-stack-protector to CFLAGS fixes
the problem."

 Jul 10 06:45:09 filorux kcheckpass[27680]: PAM unable to 
dlopen(/lib/security/pam_otpw.so)
 Jul 10 06:45:09 filorux kcheckpass[27680]: PAM [error: 
/lib/security/pam_otpw.so: undefined symbol: __stack_chk_fail_local]
 Jul 10 06:45:09 filorux kcheckpass[27680]: PAM adding faulty module: 
/lib/security/pam_otpw.so
 Jul 10 06:45:09 filorux unix_chkpwd[27681]: password check failed for user 
(cfilorux)
 Jul 10 06:45:09 filorux kcheckpass[27680]: pam_unix(kscreensaver:auth): 
authentication failure; logname=cfilorux uid=1000 euid=1000 tty=:0 ruser= 
rhost=  user=cfilorux

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

-- 
/lib/security/pam_otpw.so: undefined symbol: __stack_chk_fail_local
https://bugs.launchpad.net/bugs/247190
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 39732] Re: DVD Playback errors should be handled gracefully

2008-04-12 Thread C Filorux
This error exists in kaffeine-xine 0.8.5-0ubuntu1 using libxine1
1.1.7-1ubuntu1 (from MediBuntu).  It plays beautifully up to an error,
pauses for around 10 seconds, and then says "the source can't be read.
Maybe you don't have enough rights for this or the source doesn't
contain any data (e.g. no disc in the drive). (Error reading from DVD)."
This is the same error (apart from the last sentence) which is displayed
by xine if you start it with no disc in the drive.  At the same
position, xine says "The source can't be read. Maybe you don't have
enough rights for this or the source doesn't contain data (e.g. not disc
in drive). Error reading NAV packet.)"

These are the error logs in /var/log/messages:

[97829.961174] sr 1:0:0:0: [sr0] Result: hostbyte=DID_OK 
driverbyte=DRIVER_SENSE,SUGGEST_OK
[97829.961183] sr 1:0:0:0: [sr0] Sense Key : Medium Error [current]
[97829.961187] sr 1:0:0:0: [sr0] Add. Sense: Unrecovered read error
[97829.961192] end_request: I/O error, dev sr0, sector 9691360
[97829.961196] printk: 29 messages suppressed.
[97829.961199] Buffer I/O error on device sr0, logical block 2422840
[97829.961205] Buffer I/O error on device sr0, logical block 2422841
[97829.961210] Buffer I/O error on device sr0, logical block 2422842
[97829.961213] Buffer I/O error on device sr0, logical block 2422843
[97829.961215] Buffer I/O error on device sr0, logical block 2422844
[97829.961218] Buffer I/O error on device sr0, logical block 2422845
[97829.961220] Buffer I/O error on device sr0, logical block 2422846
[97829.961223] Buffer I/O error on device sr0, logical block 2422847
[97829.961225] Buffer I/O error on device sr0, logical block 2422848
[97829.961228] Buffer I/O error on device sr0, logical block 2422849

It is possible to play data from the DVD after this by manually
positioning past the error (after telling Kaffeine that you really do
want to play the DVD).

-- 
DVD Playback errors should be handled gracefully
https://bugs.launchpad.net/bugs/39732
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 58102] Re: cryptsetup / LUKS won't work

2008-03-29 Thread C Filorux
The originally reported error occurs when the dm-crypt module is not
loaded.  Since LUKS requires this module (AFAIK), perhaps it could be
loaded by cryptsetup?  A workaround is to manually run ... modprobe dm-
crypt

-- 
cryptsetup / LUKS won't work
https://bugs.launchpad.net/bugs/58102
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 148077] Re: swf-player has wrong dependencies

2007-11-06 Thread C Filorux
*** This bug is a duplicate of bug 156735 ***
https://bugs.launchpad.net/bugs/156735

On the released version of gutsy, I get this:
apt-get install swf-player
//snip
The following packages have unmet dependencies:
  swf-player: Depends: libgtk2.0-0 (>= 2.10.3) but it is not going to be 
installed
E: Broken packages

-- 
swf-player has wrong dependencies
https://bugs.launchpad.net/bugs/148077
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