[Bug 301794] Re: D-Link DNS323 NAS / Ubuntu 8.10 cannot connect windows share

2009-01-19 Thread Thierry Carrez
** Summary changed:

- Ubuntu 8.1 cannot connect windows share
+ D-Link DNS323 NAS / Ubuntu 8.10 cannot connect windows share

-- 
D-Link DNS323 NAS / Ubuntu 8.10 cannot connect windows share
https://bugs.launchpad.net/bugs/301794
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in ubuntu.

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


[Bug 301794] Re: D-Link DNS323 NAS / Ubuntu 8.10 cannot connect windows share

2009-01-19 Thread Thierry Carrez
** Changed in: samba (Ubuntu)
   Status: Incomplete = Invalid

** bug changed to question:
   https://answers.launchpad.net/ubuntu/+source/samba/+question/58004

-- 
D-Link DNS323 NAS / Ubuntu 8.10 cannot connect windows share
https://bugs.launchpad.net/bugs/301794
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in ubuntu.

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


[Bug 311350] Re: Auto mount of windows shares doesn't work.

2009-01-19 Thread Thierry Carrez
This might be by design...

In Ubuntu 8.10 network connections are handled by the new network-
manager. By default wireless connections are defined by user and the
wireless connection only happens when the user logs in. However network
mounts from fstab are run before the user logs in, when the wireless
connection is not yet available...

If you want to use the (wireless) network before being logged in (for
example to automount network shares) you might want to try to convert
your wireless connection to a system connection in network-manager
(then it should be more like how it worked in 8.04). Let us know if it
solves it.

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

-- 
Auto mount of windows shares doesn't work.
https://bugs.launchpad.net/bugs/311350
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in ubuntu.

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


[Bug 306168] Re: Unable to connect network drive SAMBA Share

2009-01-19 Thread Thierry Carrez
Let us know if purging winbind removed the idmap errors.
The rest of this bug looks a lot like bug 264943, could you try the PPA release 
posted there (see 
https://bugs.launchpad.net/ubuntu/+source/samba/+bug/264943/comments/89)

-- 
Unable to connect network drive SAMBA Share
https://bugs.launchpad.net/bugs/306168
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in ubuntu.

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


[Bug 318679] Re: snmpd error

2009-01-19 Thread Marco1971

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/21350707/Dependencies.txt

** Attachment added: DpkgTerminalLog.txt
   http://launchpadlibrarian.net/21350708/DpkgTerminalLog.txt

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

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


[Bug 318703] [NEW] nagios check_smtp expects integer instead of double

2009-01-19 Thread Roman Fiedler
Public bug reported:

Binary package hint: nagios-plugins-basic

Command execution returns error with double value:
# /usr/lib/nagios/plugins/check_smtp -H  localhost -w 0.2
check_smtp: Warning time must be a positive integer
Usage:check_smtp -H host [-p port] [-e expect] [-C command] [-f from addr][-A 
authtype -U authuser -P authpass] [-w warn] [-c crit] [-t timeout]
[-S] [-D days] [-n] [-v] [-4|-6]

But docu ( /usr/lib/nagios/plugins/check_smtp -h) says:
 -w, --warning=DOUBLE
Response time to result in warning status (seconds)
 -c, --critical=DOUBLE
Response time to result in critical status (seconds)

I think, that the integer check is done on error, since all other
commands with -w / -c option take double arguments and sub second
response time checks are really useful.

-
Current package:

Status: install ok installed
Priority: extra
Section: net
Installed-Size: 1252
Maintainer: Ubuntu Core Developers ubuntu-devel-disc...@lists.ubuntu.com
Architecture: i386
Source: nagios-plugins
Version: 1.4.11-1ubuntu5



Patch vs nagios-plugins-1.4.12 source (untested):

--- check_smtp.orig 2009-01-19 10:57:05.0 +0100
+++ check_smtp.c2009-01-19 11:34:04.0 +0100
@@ -103,9 +103,9 @@
 char *authtype = NULL;
 char *authuser = NULL;
 char *authpass = NULL;
-int warning_time = 0;
+double warning_time = 0;
 int check_warning_time = FALSE;
-int critical_time = 0;
+double critical_time = 0;
 int check_critical_time = FALSE;
 int verbose = 0;
 int use_ssl = FALSE;
@@ -432,9 +432,9 @@
elapsed_time = (double)microsec / 1.0e6;
 
if (result == STATE_OK) {
-   if (check_critical_time  elapsed_time  (double) 
critical_time)
+   if (check_critical_time  elapsed_time  critical_time)
result = STATE_CRITICAL;
-   else if (check_warning_time  elapsed_time  (double) 
warning_time)
+   else if (check_warning_time  elapsed_time  warning_time)
result = STATE_WARNING;
}
 
@@ -565,21 +565,19 @@
nresponses++;
break;
case 'c':  
/* critical time threshold */
-   if (is_intnonneg (optarg)) {
-   critical_time = atoi (optarg);
-   check_critical_time = TRUE;
-   }
+   if (!is_nonnegative (optarg))
+   usage4 (_(Critical time must be a positive));
else {
-   usage4 (_(Critical time must be a positive 
integer));
+   critical_time = strtod (optarg, NULL);
+   check_critical_time = TRUE;
}
break;
case 'w':  
/* warning time threshold */
-   if (is_intnonneg (optarg)) {
-   warning_time = atoi (optarg);
-   check_warning_time = TRUE;
-   }
+   if (!is_nonnegative (optarg))
+   usage4 (_(Warning time must be a positive));
else {
-   usage4 (_(Warning time must be a positive 
integer));
+   warning_time = strtod (optarg, NULL);
+   check_warning_time = TRUE;
}
break;
case 'v':  
/* verbose */


Cross comparison with other files (e.g. check_http.c) showed that there might 
be more of these  issues, e.g. wrong message outputs/conversions

case 'w': /* warning time threshold */
  if (!is_nonnegative (optarg))
usage2 (_(Warning threshold must be integer), optarg);
  else {
warning_time = strtod (optarg, NULL);
check_warning_time = TRUE;
  }
  break;

** Affects: nagios-plugins (Ubuntu)
 Importance: Undecided
 Status: New

-- 
nagios check_smtp expects integer instead of double
https://bugs.launchpad.net/bugs/318703
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to nagios-plugins in ubuntu.

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


[Bug 318703] Re: nagios check_smtp expects integer instead of double

2009-01-19 Thread Roman Fiedler

** Attachment added: Untested patch for check_smtp
   http://launchpadlibrarian.net/21351361/patch-nagios-plugins-1.4.12

-- 
nagios check_smtp expects integer instead of double
https://bugs.launchpad.net/bugs/318703
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to nagios-plugins in ubuntu.

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


[Bug 286828] Re: Access to samba 3.0.24-3.0.25 shares using CIFS is broken on 8.10

2009-01-19 Thread Thierry Carrez
Marking verification-done following Vide/mipper/Tom reporting success.

** Tags added: verification-done

** Tags removed: verification-needed

-- 
Access to samba 3.0.24-3.0.25 shares using CIFS is broken on 8.10
https://bugs.launchpad.net/bugs/286828
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in ubuntu.

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


[Bug 283852] Re: tomcat6 does not include tomcat-dbcp.jar

2009-01-19 Thread Thierry Carrez
In fact it is uploaded, it's just sitting in the Unapproved queue at the moment.
https://edge.launchpad.net/ubuntu/intrepid/+queue?queue_state=1queue_text=tomcat6

-- 
tomcat6 does not include tomcat-dbcp.jar
https://bugs.launchpad.net/bugs/283852
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to tomcat6 in ubuntu.

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


Re: [Bug 306168] Re: Unable to connect network drive SAMBA Share

2009-01-19 Thread Louis-Xavier Brusset
Hello,
as the log file does not exist anymore we can see that purging winbind
removed the idmap errors.

For samba_3.2.3-1ubuntu3.5~ppa1 in your PPA, is there a procedure to install
this whithout uninstalling ubuntu-desktop ?
I tried to install your .deb files but as
samba-common_3.2.3-1ubuntu3.5~ppa1_i386 broke my dependencies I had to
reinstall the standard version.
I can't install samba_3.2.3-1ubuntu3.5~ppa1_i386 without installing your
version of samba-common.

I am blocked by my inexperiency of installing non standard versions ...

Regards,
LBT

-- 
Unable to connect network drive SAMBA Share
https://bugs.launchpad.net/bugs/306168
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in ubuntu.

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


[Bug 244925] Re: slapd reports wrong ssf using gnutls

2009-01-19 Thread Martin Pitt
** Tags added: verification-done

** Tags removed: verification-needed

-- 
slapd reports wrong ssf using gnutls
https://bugs.launchpad.net/bugs/244925
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openldap2.3 in ubuntu.

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


[Bug 315303] Re: smbclient crashes on mget command

2009-01-19 Thread Thierry Carrez
This was fixed upstream with
http://git.samba.org/?p=samba.git;a=commitdiff;h=2ad41fedc50f


** Bug watch added: Samba Bugzilla #6014
   https://bugzilla.samba.org/show_bug.cgi?id=6014

** Also affects: samba via
   https://bugzilla.samba.org/show_bug.cgi?id=6014
   Importance: Unknown
   Status: Unknown

** Changed in: samba (Ubuntu)
   Status: Confirmed = Triaged

-- 
smbclient crashes on mget command
https://bugs.launchpad.net/bugs/315303
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in ubuntu.

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


Re: [Bug 306168] Re: Unable to connect network drive SAMBA Share

2009-01-19 Thread Louis-Xavier Brusset
OK I «take the risk» for one of my computers, if it does not work I will
remove the line from my sources.

I will give you the result of this experiment.

2009/1/19 Thierry Carrez thierry.car...@ubuntu.com

 The idea is to enable the PPA as a valid source of packages and run a
 regular upgrade.
 I'd not recommend it if this is not a test environment. Better wait for the
 regular updated package in that case...

 If you still accept to do it here is a quick recipe:
 Add deb http://ppa.launchpad.net/tcarrez/ubuntu intrepid main at the end
 of your /etc/apt/sources.list
 $ sudo apt-get update
 $ sudo apt-get upgrade
 This will upgrade all your samba packages to samba_3.2.3-1ubuntu3.5~ppa1
 (including samba-common).
 The PPA package will be replaced when the regular 3.2.3-1ubuntu3.5 is
 released.

 --
 Unable to connect network drive SAMBA Share
 https://bugs.launchpad.net/bugs/306168
 You received this bug notification because you are a direct subscriber
 of the bug.



-- 
Cordialement,
Louis-Xavier BRUSSET

-- 
Unable to connect network drive SAMBA Share
https://bugs.launchpad.net/bugs/306168
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in ubuntu.

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


[Bug 306168] Re: Unable to connect network drive SAMBA Share

2009-01-19 Thread Louis-Xavier Brusset
I cross fingers, but it seems to work.

I will try this on my other computer to confirm the bug is corrected.

-- 
Unable to connect network drive SAMBA Share
https://bugs.launchpad.net/bugs/306168
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in ubuntu.

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


[Bug 318828] [NEW] bind9-host does not respect /etc/nsswitch.conf

2009-01-19 Thread Deeps
Public bug reported:

Binary package hint: bind9-host

Description:Ubuntu 8.04.2
Release:8.04
Package version: bind9-host   1:9.4.2.dfsg.P2-2ubuntu0.1

egrep ^host /etc/nsswitch.conf:
hosts:  files dns

`host localhost` times out if no dns servers are reachable, despite:

# head /etc/hosts
127.0.0.1   localhost


this behaviour does not occur with package: host  2331-9

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

-- 
bind9-host does not respect /etc/nsswitch.conf
https://bugs.launchpad.net/bugs/318828
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to bind9 in ubuntu.

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


[Bug 227410] Re: [SRU] catalog Backup fails because .my.cnf is not read

2009-01-19 Thread Ante Karamatić
Martin, reported reported that version from proposed works for him:

https://bugs.edge.launchpad.net/ubuntu/+source/bacula/+bug/227410/comments/11

Could we get verification-done tag?

-- 
[SRU] catalog Backup fails because .my.cnf is not read
https://bugs.launchpad.net/bugs/227410
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to bacula in ubuntu.

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


[Bug 318828] Re: bind9-host does not respect /etc/nsswitch.conf

2009-01-19 Thread Ante Karamatić
Not a bug. That's by design.

** Changed in: bind9 (Ubuntu)
   Status: New = Won't Fix

-- 
bind9-host does not respect /etc/nsswitch.conf
https://bugs.launchpad.net/bugs/318828
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to bind9 in ubuntu.

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


[Bug 318828] Re: bind9-host does not respect /etc/nsswitch.conf

2009-01-19 Thread Mattias Wadenstein
The man page for bind9-host:s host say: host is a simple utility for
performing DNS lookups, and as far as I know it has never supposed to
be more than a user friendly alternative to dig. Since host is there
among other things for diagnosing DNS problems, it has its own query and
resolve logic, which makes it hard for it to follow nsswitch.conf.

If you want to get the view of what the libc resolver thinks getent
hosts is a much better idea, and from IRC discussion this started out
with a problem with sendmail using host instead of getent host.

-- 
bind9-host does not respect /etc/nsswitch.conf
https://bugs.launchpad.net/bugs/318828
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to bind9 in ubuntu.

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


[Bug 318781] Re: D-Bus Policy needs checking

2009-01-19 Thread Scott James Remnant
** Bug watch added: Debian Bug tracker #510649
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=510649

** Also affects: dnsmasq (Debian) via
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=510649
   Importance: Unknown
   Status: Unknown

-- 
D-Bus Policy needs checking
https://bugs.launchpad.net/bugs/318781
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to dnsmasq in ubuntu.

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


[Bug 227410] Re: [SRU] catalog Backup fails because .my.cnf is not read

2009-01-19 Thread Martin Pitt
Please get this fixed in Jaunty ASAP.

** Tags added: verification-done

** Tags removed: verification-needed

** Changed in: bacula (Ubuntu Jaunty)
 Assignee: (unassigned) = Chuck Short (zulcss)

-- 
[SRU] catalog Backup fails because .my.cnf is not read
https://bugs.launchpad.net/bugs/227410
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to bacula in ubuntu.

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


[Bug 307408] Re: System freeze when working on Samba or Cifs mounted share of NetApp server

2009-01-19 Thread Alex
I just tested with the new kernel from intrepid-proposed, it indeed
works with it with and without nodfs.

-- 
System freeze when working on Samba or Cifs mounted share of NetApp server
https://bugs.launchpad.net/bugs/307408
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in ubuntu.

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


[Bug 316974] Re: Mysql dead after update

2009-01-19 Thread jyio
Aww darn... I have run into this issue as well on the Jaunty Jackalope.
I'll post if I find anything useful in the future.

-- 
Mysql dead after update
https://bugs.launchpad.net/bugs/316974
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.1 in ubuntu.

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


[Bug 318915] [NEW] max_connections fixed to 886

2009-01-19 Thread Fridolin Heyer
Public bug reported:

On ubuntu 8.04 AMD64 the mysql-server-5.0 pkg 
is not accepting a max_connections value higher than 886.

No matter how big your iron is, how much ram you have.

This bug didn't harm most mysql users cause who needs more than 886
simultanous connections.

If i set the variable inside my.cnf to a value higher than 886,
it will be reduced to 886.

Entering mysql it is possibly to set the variable to every value.

mysql  set global max_connections = '1';

will work but this get lost with your next reboot.

Older version and even the 32bit version,
don't have that bug.

It's crazy that just the 64bit pkg has this bug.


best regards
fridolin

** Affects: mysql-dfsg-5.0 (Ubuntu)
 Importance: Undecided
 Status: New

-- 
max_connections fixed to 886
https://bugs.launchpad.net/bugs/318915
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.0 in ubuntu.

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


[Bug 318915] Re: max_connections fixed to 886

2009-01-19 Thread Andreas Olsson
I can confirm this. I can replicate the limitation on Hardy amd64 but
not on Hardy i386.

** Changed in: mysql-dfsg-5.0 (Ubuntu)
   Status: New = Confirmed

-- 
max_connections fixed to 886
https://bugs.launchpad.net/bugs/318915
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.0 in ubuntu.

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


[Bug 223191] Re: Lost keyboard in ssh connection in terminal

2009-01-19 Thread bartekw
I have updated my Ubuntu to 8.10 version.
I have a one machine at work and I have to say that open ssh sometimes hang on 
different hardware/connection. Especially when I change a window application to 
another in local PC and come back to terminal (or putty).

-- 
Lost keyboard in ssh connection in terminal
https://bugs.launchpad.net/bugs/223191
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openssh in ubuntu.

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


[Bug 318954] [NEW] Please sync krb5 1.6.dfsg.4~beta1-5 (main) from Debian unstable (main).

2009-01-19 Thread Mathias Gug
Public bug reported:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

 affects ubuntu/krb5
 status confirmed
 importance wishlist
 subscribe ubuntu-archive

Please sync krb5 1.6.dfsg.4~beta1-5 (main) from Debian unstable (main).

Changelog since current jaunty version 1.6.dfsg.4~beta1-4:

krb5 (1.6.dfsg.4~beta1-5) unstable; urgency=low

  * Correct the actions of krb5_newrealm in its man page.  It doesn't
create a keytab for kadmind since kadmind no longer needs one.
Mention that it does create a stash file and that it starts the KDC
and kadmind daemons.  Thanks, David Medberry.  (Closes: #504126)
  * Translation updates:
- Spanish, thanks Ignacio Mondino.  (Closes: #504766)

 -- Russ Allbery r...@debian.org  Mon, 29 Dec 2008 22:21:21 -0800


-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEARECAAYFAkl05XwACgkQM0thG+z3pVg1VwCeIO9Rv51WNzHX6dzVYAUxCSyh
fFIAoNPJYx388SkZTVKZX6FonmwPGZEB
=FzK0
-END PGP SIGNATURE-

** Affects: krb5 (Ubuntu)
 Importance: Wishlist
 Status: Confirmed

-- 
Please sync krb5 1.6.dfsg.4~beta1-5 (main) from Debian unstable (main).
https://bugs.launchpad.net/bugs/318954
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to krb5 in ubuntu.

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


[Bug 316974] Re: Mysql dead after update

2009-01-19 Thread Arenlor
Can we get someone to at least set the importance, as MySQL does not
work, so I'd guess it'd be a blocking level bug?

-- 
Mysql dead after update
https://bugs.launchpad.net/bugs/316974
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.1 in ubuntu.

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


[Bug 316974] Re: Mysql dead after update

2009-01-19 Thread Niels Egberts
Agreed, amarok depends on mysql so that one also does not want to work.

-- 
Mysql dead after update
https://bugs.launchpad.net/bugs/316974
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.1 in ubuntu.

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


[Bug 316974] Re: Mysql dead after update

2009-01-19 Thread jyio
Ah, right. I guess I'll try to get Amarok to use SQLite in the interim,
but I heard it's slow...

-- 
Mysql dead after update
https://bugs.launchpad.net/bugs/316974
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.1 in ubuntu.

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


[Bug 318975] [NEW] Please sync kerberos-configs 1.22 (main) from Debian unstable (main).

2009-01-19 Thread Mathias Gug
Public bug reported:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

 affects ubuntu/kerberos-configs
 status confirmed
 importance wishlist
 subscribe ubuntu-archive

Please sync kerberos-configs 1.22 (main) from Debian unstable (main).

Changelog since current jaunty version 1.21:

kerberos-configs (1.22) unstable; urgency=low

  * Suppress errors from dnsdomainname when attempting to find a default
for the local realm.  (LP: #296719)
  * Set the default Kerberos v4 realm in the template to ATHENA.MIT.EDU
instead of a bogus value, following the practice for krb5.conf.
This setting is only used if determining the default realm during
configure fails.
  * Translation updates:
- Italian, thanks Luca Monducci.  (Closes: #508191)

 -- Russ Allbery r...@debian.org  Mon, 29 Dec 2008 22:23:18 -0800


-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEARECAAYFAkl09N0ACgkQM0thG+z3pVgfqQCgx+Hv8dLvBPv/X6HCjV9X9RfD
Au0AoOKa4pE+bwVOVXGbzaUGQotgrVYt
=oU5h
-END PGP SIGNATURE-

** Affects: kerberos-configs (Ubuntu)
 Importance: Wishlist
 Status: Confirmed

-- 
Please sync kerberos-configs 1.22 (main) from Debian unstable (main).
https://bugs.launchpad.net/bugs/318975
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to kerberos-configs in ubuntu.

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


[Bug 316849] Re: mysql-server-5.1 doesn't start - skip-bdb option unsupported

2009-01-19 Thread Simon
The same worked for me when installing amarok 2.

-- 
mysql-server-5.1 doesn't start - skip-bdb option unsupported
https://bugs.launchpad.net/bugs/316849
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.1 in ubuntu.

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


[Bug 318994] [NEW] package mysql-server-5.0 5.0.67-0ubuntu6 failed to install/upgrade: subprocess post-installation script returned error exit status 1, server cannot bind to port

2009-01-19 Thread elakug
Public bug reported:

I have been using mysql-5.0 for months. Yesterday, it refused to start.
I backed up /var/lib/mysql and purged, then reinstalled. The server
still cannot be started.

/var/log/syslog is below.

Rebooting, restarting networking, etc. does not work. Neither does
changing the port.

System: Ubuntu 8.10 
Linux bashful 2.6.27-9-generic #1 SMP Thu Nov 20 21:57:00 UTC 2008 i686 
GNU/Linux

#
Jan 18 23:35:29 bashful mysqld_safe[11823]: started
#
Jan 18 23:35:29 bashful mysqld[11827]: 090118 23:35:29  InnoDB: Started; log 
sequence number 0 329830
#
Jan 18 23:35:29 bashful mysqld[11827]: 090118 23:35:29 [ERROR] Can't start 
server: Bind on TCP/IP port: Cannot assign requested address
#
Jan 18 23:35:29 bashful mysqld[11827]: 090118 23:35:29 [ERROR] Do you already 
have another mysqld server running on port: 3306 ?
#
Jan 18 23:35:29 bashful mysqld[11827]: 090118 23:35:29 [ERROR] Aborting
#
Jan 18 23:35:29 bashful mysqld[11827]:
#
Jan 18 23:35:29 bashful mysqld[11827]: 090118 23:35:29  InnoDB: Starting 
shutdown...
#
Jan 18 23:35:30 bashful mysqld[11827]: 090118 23:35:30  InnoDB: Shutdown 
completed; log sequence number 0 329830
#
Jan 18 23:35:30 bashful mysqld[11827]: 090118 23:35:30 [Note] /usr/sbin/mysqld: 
Shutdown complete
#
Jan 18 23:35:30 bashful mysqld[11827]:
#
Jan 18 23:35:30 bashful mysqld_safe[11847]: ended
#
Jan 18 23:35:43 bashful /etc/init.d/mysql[12013]: 0 processes alive and 
'/usr/bin/mysqladmin --defaults-file=/etc/mysql/debian.cnf ping' resulted in
#
Jan 18 23:35:43 bashful /etc/init.d/mysql[12013]: ^G/usr/bin/mysqladmin: 
connect to server at 'localhost' failed
#
Jan 18 23:35:43 bashful /etc/init.d/mysql[12013]: error: 'Can't connect to 
local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2)'
#
Jan 18 23:35:43 bashful /etc/init.d/mysql[12013]: Check that mysqld is running 
and that the socket: '/var/run/mysqld/mysqld.sock' exists!
#
Jan 18 23:35:43 bashful /etc/init.d/mysql[12013]:

ProblemType: Package
Architecture: i386
DistroRelease: Ubuntu 8.10
ErrorMessage: subprocess post-installation script returned error exit status 1
NonfreeKernelModules: ath_hal
Package: mysql-server-5.0 5.0.67-0ubuntu6
SourcePackage: mysql-dfsg-5.0
Title: package mysql-server-5.0 5.0.67-0ubuntu6 failed to install/upgrade: 
subprocess post-installation script returned error exit status 1
Uname: Linux 2.6.27-9-generic i686

** Affects: mysql-dfsg-5.0 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package

-- 
package mysql-server-5.0 5.0.67-0ubuntu6 failed to install/upgrade: subprocess 
post-installation script returned error exit status 1, server cannot bind to 
port
https://bugs.launchpad.net/bugs/318994
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.0 in ubuntu.

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


[Bug 318994] Re: package mysql-server-5.0 5.0.67-0ubuntu6 failed to install/upgrade: subprocess post-installation script returned error exit status 1, server cannot bind to port

2009-01-19 Thread elakug

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/21448935/Dependencies.txt

** Attachment added: DpkgTerminalLog.gz
   http://launchpadlibrarian.net/21448936/DpkgTerminalLog.gz

-- 
package mysql-server-5.0 5.0.67-0ubuntu6 failed to install/upgrade: subprocess 
post-installation script returned error exit status 1, server cannot bind to 
port
https://bugs.launchpad.net/bugs/318994
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.0 in ubuntu.

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


[Blueprint kerberize-main-servers] Kerberize Services in main

2009-01-19 Thread Mathias Gug
Blueprint changed by Mathias Gug:

Definition Status: Drafting = Review

-- 
  Kerberize Services in main
  https://blueprints.launchpad.net/ubuntu/+spec/kerberize-main-servers

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


[Bug 316974] Re: Mysql dead after update

2009-01-19 Thread Mathias Gug
Dinxter: did you upgrade from mysql-dfsg-5.0?

Others: you're probably running into the issue reported in bug 316849.

** Changed in: mysql-dfsg-5.1 (Ubuntu)
   Status: Confirmed = Incomplete

-- 
Mysql dead after update
https://bugs.launchpad.net/bugs/316974
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.1 in ubuntu.

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


[Bug 316957] Re: package mysql-server-5.1 5.1 .30-2ubuntu1 failed to install/upgrade: 子 进程 post-installation script 返回了 错误号 1

2009-01-19 Thread Mathias Gug
*** This bug is a duplicate of bug 316849 ***
https://bugs.launchpad.net/bugs/316849

** This bug has been marked a duplicate of bug 316849
   mysql-server-5.1 doesn't start - skip-bdb option unsupported

-- 
package mysql-server-5.1 5.1.30-2ubuntu1 failed to install/upgrade: 子进程 
post-installation script 返回了错误号 1
https://bugs.launchpad.net/bugs/316957
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.1 in ubuntu.

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


[Bug 316594] Re: /etc/lsb-base-logging.sh: line 84: INITOUTPUT: unbound variable

2009-01-19 Thread Mathias Gug
** Changed in: mysql-dfsg-5.0 (Ubuntu)
Sourcepackagename: mysql-dfsg-5.1 = mysql-dfsg-5.0

-- 
/etc/lsb-base-logging.sh: line 84: INITOUTPUT: unbound variable 
https://bugs.launchpad.net/bugs/316594
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.0 in ubuntu.

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


[Bug 318649] Re: not sure was loading update and system reported a bug

2009-01-19 Thread Mathias Gug
Thank you for taking the time to report this bug and helping to make
Ubuntu better. Could you post the content of /var/log/daemon.log around
the time of the failed upgrade?

** Changed in: mysql-dfsg-5.0 (Ubuntu)
   Status: New = Incomplete

-- 
not sure was loading update and system reported a bug
https://bugs.launchpad.net/bugs/318649
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.0 in ubuntu.

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


[Bug 317734] Re: mysql initscript fails

2009-01-19 Thread Mathias Gug
** Changed in: mysql-dfsg-5.0 (Ubuntu)
   Importance: Undecided = Low
   Status: New = Confirmed

-- 
mysql initscript fails
https://bugs.launchpad.net/bugs/317734
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.0 in ubuntu.

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


[Bug 317465] Re: libmysqlclient15-dev_5.1.30really5.0.75-0ubuntu1_i386.deb error 1

2009-01-19 Thread Mathias Gug
Should be fixed now withlibmysqlclient15-dev
5.1.30really5.0.75-0ubuntu1

** Changed in: mysql-dfsg-5.0 (Ubuntu)
   Status: New = Fix Released

-- 
libmysqlclient15-dev_5.1.30really5.0.75-0ubuntu1_i386.deb error 1
https://bugs.launchpad.net/bugs/317465
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.0 in ubuntu.

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


[Bug 314267] Re: package mysql-server-5.0 5.0.67-0ubuntu6 failed to install/upgrade: sub-processo post-installation script retornou estado de sa?da de erro 1

2009-01-19 Thread Mathias Gug
Thank you for taking the time to report this bug and helping to make
Ubuntu better. Could you post the content of /var/log/daemon.log around
the time of the failed upgrade?

** Changed in: mysql-dfsg-5.0 (Ubuntu)
   Status: New = Incomplete

-- 
package mysql-server-5.0 5.0.67-0ubuntu6 failed to install/upgrade: 
sub-processo post-installation script retornou estado de sa?da de erro 1
https://bugs.launchpad.net/bugs/314267
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.0 in ubuntu.

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


[Bug 313650] Re: package mysql-server-5.0 5.0.67-0ubuntu6 [modified: /var/lib/dpkg/info/mysql-server-5.0.list] failed to install/upgrade: subprocess pre-installation script returned error exit status

2009-01-19 Thread Mathias Gug
Thank you for taking the time to report this bug and helping to make
Ubuntu better. Where you trying to install another package at the same
time?

The error in the log file is:

debconf: DbDriver config: /var/cache/debconf/config.dat is locked by
another process: Resource temporarily unavailable


** Changed in: mysql-dfsg-5.0 (Ubuntu)
   Status: New = Incomplete

-- 
package mysql-server-5.0 5.0.67-0ubuntu6 [modified: 
/var/lib/dpkg/info/mysql-server-5.0.list] failed to install/upgrade: subprocess 
pre-installation script returned error exit status 1
https://bugs.launchpad.net/bugs/313650
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.0 in ubuntu.

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


[Bug 310019] Re: package mysql-server None [modified: /var/lib/dpkg/info/mysql-server.list] failed to install/upgrade: subprocess pre-installation script returned error exit status 1

2009-01-19 Thread Mathias Gug
*** This bug is a duplicate of bug 313735 ***
https://bugs.launchpad.net/bugs/313735

** This bug has been marked a duplicate of bug 313735
   ysql-server-5.0: il sottoprocesso pre-removal script ha restituito un codice 
di errore 1

-- 
package mysql-server None [modified: /var/lib/dpkg/info/mysql-server.list] 
failed to install/upgrade: subprocess pre-installation script returned error 
exit status 1
https://bugs.launchpad.net/bugs/310019
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.0 in ubuntu.

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


[Bug 313735] Re: ysql-server-5.0: il sottoprocesso pre-removal script ha restituito un codice di errore 1

2009-01-19 Thread Mathias Gug
Thank you for taking the time to report this bug and helping to make
Ubuntu better. Could you post the content of /var/log/daemon.log around
the time of the failed install?

** Changed in: mysql-dfsg-5.0 (Ubuntu)
   Status: New = Incomplete

** Summary changed:

- ysql-server-5.0: il sottoprocesso pre-removal script ha restituito un codice 
di errore 1
+ mysql-server-5.0: pre-removal script fails with error 1 while installing 
mythtv

-- 
mysql-server-5.0: pre-removal script fails with error 1 while installing mythtv
https://bugs.launchpad.net/bugs/313735
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.0 in ubuntu.

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


[Bug 313698] Re: server eror i guess

2009-01-19 Thread Mathias Gug
Thank you for taking the time to report this bug and helping to make
Ubuntu better. Could you post the content of /var/log/daemon.log around 
the time of the failed upgrade?

** Changed in: mysql-dfsg-5.0 (Ubuntu)
   Status: New = Incomplete

-- 
server eror i guess
https://bugs.launchpad.net/bugs/313698
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.0 in ubuntu.

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


[Bug 304907] Re: File conflict between mysql-client-5.0 and mysql-server-5.0

2009-01-19 Thread Mathias Gug
According to the log file:

Preparing to replace mysql-client-5.0 5.0.37-5103gg2 (using
.../mysql-client-5.0_5.0.51a-3ubuntu5.1_amd64.deb) ...

5.0.37-5103gg2 is not a version from the Ubuntu archive. Marking invalid
in jaunty.


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

-- 
File conflict between mysql-client-5.0 and mysql-server-5.0
https://bugs.launchpad.net/bugs/304907
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.0 in ubuntu.

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


[Bug 304194] Re: package mysql-server-5.0 5.0.67-0ubuntu6 failed to install/upgrade: el subproceso post-installation script devolvi? el c?digo de salida de error 1

2009-01-19 Thread Mathias Gug
Thank you for taking the time to report this bug and helping to make
Ubuntu better. Could you post the content of /var/log/daemon.log around
the time of the failed upgrade?

** Changed in: mysql-dfsg-5.0 (Ubuntu)
   Status: New = Incomplete

-- 
package mysql-server-5.0 5.0.67-0ubuntu6 failed to install/upgrade: el 
subproceso post-installation script devolvi? el c?digo de salida de error 1
https://bugs.launchpad.net/bugs/304194
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.0 in ubuntu.

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


[Bug 316849] Re: mysql-server-5.1 doesn't start - skip-bdb option unsupported

2009-01-19 Thread Alfredo Deza
I confirm I have the same bug with a fresh install of Ubuntu 9.04
Alpha-3 release desktop i386 edition.

The solution of commenting out the skip-bdb line worked and Mysql was
able to finish the installation.

-- 
mysql-server-5.1 doesn't start - skip-bdb option unsupported
https://bugs.launchpad.net/bugs/316849
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.1 in ubuntu.

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


[Bug 318915] Re: max_connections fixed to 886

2009-01-19 Thread Connor Imes
** Changed in: mysql-dfsg-5.0 (Ubuntu)
   Importance: Undecided = Medium

-- 
max_connections fixed to 886
https://bugs.launchpad.net/bugs/318915
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.0 in ubuntu.

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


[Bug 291161] Re: Invalid multi values domain string generated by network manager

2009-01-19 Thread Bug Watch Updater
** Changed in: network-manager
   Status: New = Invalid

-- 
Invalid multi values domain string generated by network manager
https://bugs.launchpad.net/bugs/291161
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to bind9 in ubuntu.

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


[Bug 316849] Re: mysql-server-5.1 doesn't start - skip-bdb option unsupported

2009-01-19 Thread jyio
Interesting... this worked for me. But this is of course not an ideal
solution as I'd rather not deal with the overhead.

-- 
mysql-server-5.1 doesn't start - skip-bdb option unsupported
https://bugs.launchpad.net/bugs/316849
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.1 in ubuntu.

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


[Bug 306168] Re: Unable to connect network drive SAMBA Share

2009-01-19 Thread Thierry Carrez
*** This bug is a duplicate of bug 264943 ***
https://bugs.launchpad.net/bugs/264943

** This bug has been marked a duplicate of bug 264943
   gvfsd-smb crashed with SIGSEGV in strlen()

-- 
Unable to connect network drive SAMBA Share
https://bugs.launchpad.net/bugs/306168
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in ubuntu.

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


[Bug 301929] Re: Brasero locks up while creating audio CD

2009-01-19 Thread mirage
Ok so what kind of informations do you need ?

-- 
Brasero locks up while creating audio CD
https://bugs.launchpad.net/bugs/301929
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 292239] Re: [intrepid] Bluetooth mouse does not re-establish connection after reboot

2009-01-19 Thread mirage
*** This bug is a duplicate of bug 281949 ***
https://bugs.launchpad.net/bugs/281949

** This bug has been marked a duplicate of bug 281949
   no bluetooth after kernel update to 2.6.27-7-generic

-- 
[intrepid] Bluetooth mouse does not re-establish connection after reboot
https://bugs.launchpad.net/bugs/292239
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 237317] Re: /usr/share/doc/libcupsys2/changelog.gz: broken symbolic link to `../libcupsys2/changelog.gz'

2009-01-19 Thread Loïc Minier
I don't; I suspect it was a case of a directory/symlink change in some
cupsys package, but we never were able to point out which and it's not
reproducible anymore.

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

-- 
/usr/share/doc/libcupsys2/changelog.gz: broken symbolic link to 
`../libcupsys2/changelog.gz' 
https://bugs.launchpad.net/bugs/237317
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 192496] Re: Brightness OSD graphics need improvement

2009-01-19 Thread Bug Watch Updater
** Changed in: gnome-power
   Status: New = Invalid

-- 
Brightness OSD graphics need improvement
https://bugs.launchpad.net/bugs/192496
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 118788] Re: interface to download source code tree

2009-01-19 Thread Martin Pitt
Thanks, Julian. However, that's actually even more complicated than my
current code. :-)

However, if that was a standard function in python-apt, it would be
great to have an use. Michael, do you think something like this would
fit into python-apt? Thanks!

-- 
interface to download source code tree
https://bugs.launchpad.net/bugs/118788
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 318338] Re: udevd[926] unable to open /etc/udev/rules.d: no such file or directory.

2009-01-19 Thread Graziano
It appears on my ubuntu jaunty 64bit in early boot. Something different
in initrd creation not reflecting udev changes? It came up together with
Bug #318338 which is due to missing link /etc/udev/rules.d -
/lib/udev/rules.d in initrd. Is something missing for udev management in
/usr/share/initramfs-tools/hooks/udev ?

-- 
udevd[926] unable to open /etc/udev/rules.d: no such file or directory.
https://bugs.launchpad.net/bugs/318338
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 260106] Re: Bluetooth adapter detached when using Virtualbox

2009-01-19 Thread Michael Nagel
** Changed in: virtualbox-ose (Ubuntu)
   Status: Incomplete = Invalid

-- 
Bluetooth adapter detached when using Virtualbox
https://bugs.launchpad.net/bugs/260106
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 317944] Re: Wrong permissions in /dev after Intrepid-Jaunty upgrade

2009-01-19 Thread Scott James Remnant
Strange that every single device has lost its world ownership
permission; the only ones I note with it left are:

232040680 srw-rw-rw-   1 root root0 Jan 16 15:12 /dev/log
  58620 crw-rw-rw-   1 root root  Oct 10 16:25 /dev/null
  13050 crw-rw-rw-   1 root root  Oct 21 10:25 /dev/urandom

Do you think something might have actually done find | chmod and
escaped and run across /dev for some reason?

Do you happen to have system logs from the upgrade time, there may be
messages that give us a clue what happened.

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

-- 
Wrong permissions in /dev after Intrepid-Jaunty upgrade
https://bugs.launchpad.net/bugs/317944
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 256216] Re: Ubuntu is missing /dev/infiniband/rdma_cm group ownership udev rule

2009-01-19 Thread Scott James Remnant
Just winding back this discussion briefly:

 D-Bus/PolicyKit seems very much overengineered and too complex for this 
 issue, and it doesn't fit the model of 
 RDMA very well anyway, since the whole point of RDMA is that unprivileged 
 userspace applications use RDMA 
 hardware directly without the overhead of a system call into the kernel, let 
 alone a D-Bus method call to another 
 process.
 
I missed a key part of this paragraph before.  You say that the whole point is 
that unprivileged userspace applications can use RDMA directly?

If that's the case, should these devices not simply have -rw-rw-rw
permissions (like /dev/net/tun, /dev/fuse, etc.) so that all userspace
applications can use them?

-- 
Ubuntu is missing /dev/infiniband/rdma_cm group ownership udev rule
https://bugs.launchpad.net/bugs/256216
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


Re: [Bug 317161] [NEW] udev init script should use partition size from /etc/default/tmpfs

2009-01-19 Thread Scott James Remnant
Also, does adding the option in a remount actually have any effect?

Scott
-- 
Scott James Remnant
sc...@canonical.com

-- 
udev init script should use partition size from /etc/default/tmpfs 
https://bugs.launchpad.net/bugs/317161
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 316329] Re: [Intrepid] [965GM] Blank screen when X starts on internal LCD / Works with external monitor

2009-01-19 Thread Brahim Hamdouni
Is there anything I can do to make this bug complete ?

Thanks,

Brahim

-- 
[Intrepid] [965GM] Blank screen when X starts on internal LCD / Works with 
external monitor
https://bugs.launchpad.net/bugs/316329
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 310854] Re: Printing Photos with Canon original drivers stopped working in Intrepid

2009-01-19 Thread Till Kamppeter
krisse, the Poppler packages in -proposed fix a problem of printing big
photos (large format and/or high resolution) on any printer where the
pdftops CUPS filter is called somewhere in the filter chain. These are
all PostScript printers, the printers using the foo2... drivers (foo2zjs
package), and most printers using a third-party driver (driver not
shipped with Ubuntu). The fix corrects the PostScript which the pdftops
filter generates, as originally for large images invalid PostScript was
produced.

-- 
Printing Photos with Canon original drivers stopped working in Intrepid
https://bugs.launchpad.net/bugs/310854
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 318625] Re: Rhythmbox shouldn't set illegal / special characters on filenames (i.e. ?; question mark) when ripping to NTFS volumes

2009-01-19 Thread Chris Coulson
Can you set these illegal filenames in Nautilus?

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

** Tags removed: characters convention extracting filenames illegal
incompatible mark naming ntfs question rhythmbox ripping special windows

-- 
Rhythmbox shouldn't set illegal / special characters on filenames (i.e. ?; 
question mark) when ripping to NTFS volumes
https://bugs.launchpad.net/bugs/318625
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 314408] Re: Please separate autodetected from locally configured printers

2009-01-19 Thread Martin Pitt
** Tags added: pet-bug

** Changed in: gtk+2.0 (Ubuntu)
 Assignee: (unassigned) = Martin Pitt (pitti)

-- 
Please separate autodetected from locally configured printers
https://bugs.launchpad.net/bugs/314408
You received this bug notification because you are a member of Kubuntu
Bugs, which is subscribed to qt4-x11 in ubuntu.

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


[Bug 301794] Re: D-Link DNS323 NAS / Ubuntu 8.10 cannot connect windows share

2009-01-19 Thread Thierry Carrez
** Summary changed:

- Ubuntu 8.1 cannot connect windows share
+ D-Link DNS323 NAS / Ubuntu 8.10 cannot connect windows share

-- 
D-Link DNS323 NAS / Ubuntu 8.10 cannot connect windows share
https://bugs.launchpad.net/bugs/301794
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 318637] Re: no sound on HP Pavilion tx2510us

2009-01-19 Thread crashfourit
I used that quirk and it still does not quirk.

I attached the output of dmesg with the quirk enabled.

** Attachment added: dmesg2.txt
   http://launchpadlibrarian.net/21349816/dmesg2.txt

-- 
no sound on HP Pavilion tx2510us
https://bugs.launchpad.net/bugs/318637
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


Re: [Bug 317983] Re: ksmserver crashes

2009-01-19 Thread Stefan Bader

The daily image 20090118 still shows the two crash reports, however the system 
is now useable. All the menu frames which only showed nothing before, now have 
content and are usable.
Since the errors were the same with an installed instance, I will now reinstall 
the system and add the debug package before actually launching the desktop.

-- 
ksmserver crashes
https://bugs.launchpad.net/bugs/317983
You received this bug notification because you are a member of Kubuntu
Bugs, which is subscribed to kdebase-workspace in ubuntu.

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


[Bug 310854] Re: Printing Photos with Canon original drivers stopped working in Intrepid

2009-01-19 Thread krisse
@Kamppeter: Sounds grand, it does. I'd just hoped for someone who were
experiencing the problems (say Federico or some such) could confirm that
indeed it fixes it. But I'll just take your word for it then and try it
out.

-- 
Printing Photos with Canon original drivers stopped working in Intrepid
https://bugs.launchpad.net/bugs/310854
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 310575] Re: A3 pdf file is cropped and printed on A4 paper

2009-01-19 Thread ferro
The A3 files still print on A4 paper, but now cropping is lower left
corner for landscape instead of center cropping like before. If i
specify explicitly -o PaperSize=A3 it chooses A3 paper and prints in
correct scaling with correct rotation.

-- 
A3 pdf file is cropped and printed on A4 paper
https://bugs.launchpad.net/bugs/310575
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 306114] Re: Typo in hooks/dmraid

2009-01-19 Thread Giuseppe Iuculano
Fixed:
+ check if 85_dmraid.rules or 85-dmraid.rules exists, and then copy it
  (LP: #306114)


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

-- 
Typo in hooks/dmraid
https://bugs.launchpad.net/bugs/306114
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 305011] Re: dmraid rc15 isw raid 10 could not find disk in metadata

2009-01-19 Thread Giuseppe Iuculano
Fixed:

  * debian/patches/02_scsi_serial_remove_ws.dpatch: remove whitespace from
serial id (LP: #305011)


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

-- 
dmraid rc15 isw raid 10 could not find disk in metadata
https://bugs.launchpad.net/bugs/305011
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 318625] Re: Rhythmbox shouldn't set illegal / special characters on filenames (i.e. ?; question mark) when ripping to NTFS volumes

2009-01-19 Thread Chris Coulson
Actually, you don't need to answer that. I'm going to assign to ntfs-3g
now as this almost certainly isn't a problem in Rhythmbox itself.

** Changed in: ntfs-3g (Ubuntu)
Sourcepackagename: rhythmbox = ntfs-3g
   Status: Incomplete = New

-- 
Rhythmbox shouldn't set illegal / special characters on filenames (i.e. ?; 
question mark) when ripping to NTFS volumes
https://bugs.launchpad.net/bugs/318625
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 247268] Re: libapache2-mod-security not found in 8.04 repositories

2009-01-19 Thread Tim Thomson
This has been resolved in debian and a package is now in sid. (See:
http://packages.debian.org/sid/libapache-mod-security )

Any plans to pull this into ubuntu?

-- 
libapache2-mod-security not found in 8.04 repositories
https://bugs.launchpad.net/bugs/247268
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 300825] Re: having to grep for no raid disks is a poor approach

2009-01-19 Thread Giuseppe Iuculano
dmraid (1.0.0.rc15-1~exp4) experimental; urgency=low

  * [e41f5e6] debian/patches/10_exit_code.dpatch: Fix exit-code for No
RAID disks and no block devices found errors (LP: #300825)


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

-- 
having to grep for no raid disks is a poor approach
https://bugs.launchpad.net/bugs/300825
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 301794] Re: D-Link DNS323 NAS / Ubuntu 8.10 cannot connect windows share

2009-01-19 Thread Thierry Carrez
** Changed in: samba (Ubuntu)
   Status: Incomplete = Invalid

** bug changed to question:
   https://answers.launchpad.net/ubuntu/+source/samba/+question/58004

-- 
D-Link DNS323 NAS / Ubuntu 8.10 cannot connect windows share
https://bugs.launchpad.net/bugs/301794
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 311879] Re: Unable to Install Ubuntu 8.10 32bit Black Screen

2009-01-19 Thread Ecker Sandor
I have just checked the ubuntu 9.04 alpha 3. I breaks also with the
black screen at the same point as before...

It is interesting that the elive distribution (debian based) works
fine...

The dmesg from elive is attached.

Difference is that elive reports:

[   11.059865] ath_hal: module license 'Proprietary' taints kernel.
[   11.061927] AR5210, AR5211, AR5212, AR5416, RF5111, RF5112, RF2413, RF5413, R
F2133, RF2425, RF2417)

This seems to be more that what ubunto does...

Elive also reports:

ath_pci: wifi0: Atheros 5424/2424: mem=0xfe9f, irq=18


** Attachment added: dmesg from elive
   http://launchpadlibrarian.net/21349928/dmesg.out

-- 
Unable to Install Ubuntu 8.10 32bit Black Screen
https://bugs.launchpad.net/bugs/311879
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 311350] Re: Auto mount of windows shares doesn't work.

2009-01-19 Thread Thierry Carrez
This might be by design...

In Ubuntu 8.10 network connections are handled by the new network-
manager. By default wireless connections are defined by user and the
wireless connection only happens when the user logs in. However network
mounts from fstab are run before the user logs in, when the wireless
connection is not yet available...

If you want to use the (wireless) network before being logged in (for
example to automount network shares) you might want to try to convert
your wireless connection to a system connection in network-manager
(then it should be more like how it worked in 8.04). Let us know if it
solves it.

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

-- 
Auto mount of windows shares doesn't work.
https://bugs.launchpad.net/bugs/311350
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 298483] Re: crash/freeze playing Klondike Solitaire, calling ExaCheckPutImage+0x103

2009-01-19 Thread Tony
Hi,

I have exactly the problem described here, also only with Solitaire -
seems to freeze routinely after dragging around 5 cards, and the mouse
cursor moves but nothing else happens.

Tony

-- 
crash/freeze playing Klondike Solitaire, calling ExaCheckPutImage+0x103
https://bugs.launchpad.net/bugs/298483
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 318267] Re: 000record script is non-functional

2009-01-19 Thread Launchpad Bug Tracker
This bug was fixed in the package pm-utils - 1.2.2.1-0ubuntu3

---
pm-utils (1.2.2.1-0ubuntu3) jaunty; urgency=low

  * debian/rules: Make 000record script executable, thanks Matt
Zimmerman! (LP: #318267)

 -- Martin Pitt martin.p...@ubuntu.com   Mon, 19 Jan 2009 09:40:32
+0100

** Changed in: pm-utils (Ubuntu)
   Status: In Progress = Fix Released

-- 
000record script is non-functional
https://bugs.launchpad.net/bugs/318267
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 309003] Re: System freeze with caps lock and scroll lock blinking on Intrepid

2009-01-19 Thread Lilian ROBERT
After a few weeks using the ethernet connection instead of the wireless.
Yesterday, I tried again and my laptop is running for more than 24h
without any freeze. Maybe the problem has been resolved by a kernel
update ?

-- 
System freeze with caps lock and scroll lock blinking on Intrepid
https://bugs.launchpad.net/bugs/309003
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 284331] Re: nepomukservicestub crashed with SIGSEGV

2009-01-19 Thread xytis
Same error happens on AMD64 arch.

-- 
nepomukservicestub crashed with SIGSEGV
https://bugs.launchpad.net/bugs/284331
You received this bug notification because you are a member of Kubuntu
Bugs, which is subscribed to kdebase-runtime in ubuntu.

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


Re: [Bug 318243] Re: booting ubuntu, partition manager, and ubuntu copier critical issue

2009-01-19 Thread Karthick
Hi Watson,
I am installing ubuntu 8.10 version.
I have received the message that uduntu installation completed .
I couldn't find anything indicating that the installation has failed.
I have formated my machine once again in windows vista and removed all the
files in ext3
and hence I can't provide you the log files.I am so sorry

Please let me know If you need more Information.
Thanks  Regards,
Karthick Selvakumaran.P

On 1/19/09, Colin Watson cjwat...@canonical.com wrote:

 There is no need to tell me how bad the problem is; I can work that out
 for myself! :-) It sounds like the installation was perhaps only
 partially completed, but it is not clear.

 I do need some very basic information from you which you haven't
 provided:

 * Which version of Ubuntu were you installing?
 * Did you see the installer's final message indicating that it completed
 successfully? (It will have looked something like Installation is complete.
 You need to restart your computer in order to use the new installation.
 [etc.]) Alternatively, did you see anything indicating that the installer
 had crashed?
 * Assuming that you managed to get the system up and running in the end,
 please attach the files /var/log/installer/syslog and
 /var/log/installer/partman to this bug report. Those files are critical to
 let me discover what happened here, and I will be unable to do anything with
 this bug without those files.

 Thanks in advance.

 ** Changed in: ubiquity (Ubuntu)
 Sourcepackagename: debian-installer = ubiquity
   Status: New = Incomplete

 --
 booting ubuntu,partition manager,and ubuntu copier critical issue
 https://bugs.launchpad.net/bugs/318243
 You received this bug notification because you are a direct subscriber
 of the bug.

 Status in ubiquity source package in Ubuntu: Incomplete

 Bug description:
 Hi,
 I have decided to switch from federo10 to ubuntu .
 I have started to install ubuntu.The ubuntu partition manager has asked to
 define the partition.
 I have selected manually and i have removed the logical partition that i
 have installed federo 10.
 The Partition manager asks that removing  a partition will delete all the
 data in it.
 I ask th partition manager to format and remove the data also.
 then the ubuntu installtion procedure continues.
 the ubuntu founds that there are certain linux file in that system and it
 calculates how many percentage of file it can skip for copying.
 I am raising a question that if partition manager removes all the files and
 deletes the partition and recreates it once again .How could ubuntu finds
 the existing linux file system?.Even though I knew that the inodes will
 deleted in a file system and files will be present in that particular
 location itself as there are too many partition recovery tools are there I
 hope that ubuntu seems to be proactively finding the removed partition
 files.
 that is not the issue.
 the ubuntu then claims that it is removing the conflict files of the other
 operating system.The ubuntu installation procedure continues.
 and the installtion has been over and after rebooting i have received a
 KERNEL PANIC message.
 On analysing this issue in detail I could find that the grub boot loader
 has been pointed to the old and removed (as partition manager
 statement)federo core kernel. and I couldn't locate the kernel image.The
 ubuntu kernel image is found in the second option.
 Please correct this issue,by asking ubuntu installer to remove all the
 existing files in the logical disk and install a fresh copy as we like.Even
 though ubuntu seems to be increase its installation speed by using the
 existing files it couldn't do the process properly.
 sorry guys for this big passage.
 I am trying to improve the open source ubuntu more efficiently.
 Think in a part of a nongeek or non technical fellow if he plans to change
 distro's what will he feel regarding ubuntu when he receives a kernel panic
 message at installing first time our favourite ubuntu?

 ThanksRegards,
 Karthick Selvakumaran.P


-- 
booting ubuntu,partition manager,and ubuntu copier critical issue
https://bugs.launchpad.net/bugs/318243
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 311965] Re: tomcat

2009-01-19 Thread Thierry Carrez
Installing a webapp package like tomcat6-admin will stop a freshly
started tomcat6 and that may fail... This should be solved by the
resolution of bug 302914 in Jaunty, which implements webapp
autodeployment.

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

-- 
tomcat
https://bugs.launchpad.net/bugs/311965
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 256157] Re: nscd crashed with SIGSEGV in start_thread()

2009-01-19 Thread Matthias Klose
uploaded, waiting for approval by SRU. renamed the patch to any/cvs-...
please recheck when the package is built in the archive.


** Changed in: glibc (Ubuntu Intrepid)
   Status: New = Fix Committed

-- 
nscd crashed with SIGSEGV in start_thread()
https://bugs.launchpad.net/bugs/256157
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 318667] [NEW] package libxine1-console 1.1.15-0ubuntu3intrepid1 failed to install/upgrade: package libxine1-console is not ready for configuration

2009-01-19 Thread BrianS
Public bug reported:

I have been trying to update my system and install stuff.. but anytime I try, I 
get this crash report.
using apt-get, it says

E: dpkg was interrupted, you must manually run 'dpkg --configure -a' to
correct the problem.

running that.. I get..
dpkg: ../../src/packages.c:221: process_queue: Assertion `dependtry = 4' 
failed.
Aborted

so I have no idea..

Description:Ubuntu 8.10
Release:8.10

libxine1:
  Installed: 1.1.15-0ubuntu3intrepid1
  Candidate: 1.1.15-0ubuntu3intrepid1
  Version table:
 *** 1.1.15-0ubuntu3intrepid1 0
500 http://us.archive.ubuntu.com intrepid-proposed/main Packages
100 /var/lib/dpkg/status
 1.1.15-0ubuntu3 0
500 http://us.archive.ubuntu.com intrepid/main Packages

ProblemType: Package
Architecture: i386
DistroRelease: Ubuntu 8.10
ErrorMessage: package libxine1-console is not ready for configuration
NonfreeKernelModules: nvidia
Package: libxine1-console 1.1.15-0ubuntu3intrepid1
SourcePackage: xine-lib
Title: package libxine1-console 1.1.15-0ubuntu3intrepid1 failed to 
install/upgrade: package libxine1-console is not ready for configuration
Uname: Linux 2.6.27-11-generic i686

** Affects: xine-lib (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package

-- 
package libxine1-console 1.1.15-0ubuntu3intrepid1 failed to install/upgrade: 
package libxine1-console is not ready for configuration
https://bugs.launchpad.net/bugs/318667
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 318667] Re: package libxine1-console 1.1.15-0ubuntu3intrepid1 failed to install/upgrade: package libxine1-console is not ready for configuration

2009-01-19 Thread BrianS

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/21350113/Dependencies.txt

** Attachment added: DpkgTerminalLog.gz
   http://launchpadlibrarian.net/21350114/DpkgTerminalLog.gz

-- 
package libxine1-console 1.1.15-0ubuntu3intrepid1 failed to install/upgrade: 
package libxine1-console is not ready for configuration
https://bugs.launchpad.net/bugs/318667
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 318665] [NEW] Please merge netatalk_2.0.4~beta2-1(universe) from debian unstable

2009-01-19 Thread Bhavani Shankar
Public bug reported:

Binary package hint: netatalk

Debian has a new version to be merged.


  * New upstream prerelease:
+ Quote chars in papd popen variables expansion (and other fixes to
  papd). Fixes remote execution security hole CVE-2008-5718. Closes:
  bug#510585.
  * Mangle upstream tarball beta version.
  * Drop patches 000 and 001 contained upstream now.
  * Unfuzz patches 107, 109, 205 and 212.
  * Unfuzz and enable patches 204a, 207a, 208, 209 and 211.
  * Build new DHX2 UAM:
+ Build-depend on libgcrypt11-dev
+ Configure with --with-libgcrypt
+ Drop SSL note from README.Debian
+ Add NEWS entry regarding new and recommended DHX2 UAM
  * Disable CDBS autotools reconfiguration.
  * Update cdbs snippets:
+ Move dependency cleanup to new local snippet package-relations.mk.
+ Update copyright-check output to more closely match proposed new
  copyright file format.
+ Several minor improvements to upstream-tarball.mk.
+ Compact simple licenses (those without ' or later') in
  copyright-check.mk
+ Fix use underscore (not dash) in internal variable
+ Ignore only debian changelog and copyright-related files by
  default in copyright-check.mk
+ Correct and update copyright hints of the snippets themselves
+ Update README.cdbs-tweaks.
  * Add DEB_MAINTAINER_MODE in debian/rules (thanks to Romain Beauxis).
  * Stop installing README.ids no longer provided upstream.
  * Rewrite debian/copyright using new new format specification, and
update copyright hints.
  * Semi-auto-update debian/control to update dependencies:
  DEB_MAINTAINER_MODE=1 fakeroot debian/rules clean
  * Set urgency=high due to security fix.

 -- Jonas Smedegaard d...@jones.dk  Fri, 09 Jan 2009 05:52:18 +0100

** Affects: netatalk (Ubuntu)
 Importance: Undecided
 Status: Confirmed

-- 
Please merge netatalk_2.0.4~beta2-1(universe) from debian unstable 
https://bugs.launchpad.net/bugs/318665
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 318637] Re: no sound on HP Pavilion tx2510us

2009-01-19 Thread crashfourit
I found that pulse audio wasn't loaded and run it.

I did some testing and this:
options snd-hda-intel model=toshiba 
works but this:
options snd-hda-intel model=auto
does not when I got pulse audio to run.

-- 
no sound on HP Pavilion tx2510us
https://bugs.launchpad.net/bugs/318637
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 318665] Re: Please merge netatalk_2.0.4~beta2-1(universe) from debian unstable

2009-01-19 Thread Bhavani Shankar

** Attachment added: Debian - ubuntu debdiff
   http://launchpadlibrarian.net/21350085/debian.debdiff

** CVE added: http://www.cve.mitre.org/cgi-
bin/cvename.cgi?name=2008-5718

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

-- 
Please merge netatalk_2.0.4~beta2-1(universe) from debian unstable 
https://bugs.launchpad.net/bugs/318665
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 317944] Re: Wrong permissions in /dev after Intrepid-Jaunty upgrade

2009-01-19 Thread Matt Zimmerman

** Attachment added: logs from the upgrade
   http://launchpadlibrarian.net/21350106/dist-upgrader-logs.tgz

-- 
Wrong permissions in /dev after Intrepid-Jaunty upgrade
https://bugs.launchpad.net/bugs/317944
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


Re: [Bug 317944] Re: Wrong permissions in /dev after Intrepid-Jaunty upgrade

2009-01-19 Thread Matt Zimmerman
On Mon, Jan 19, 2009 at 08:01:29AM -, Scott James Remnant wrote:
 Strange that every single device has lost its world ownership
 permission; the only ones I note with it left are:
 
 232040680 srw-rw-rw-   1 root root0 Jan 16 15:12 /dev/log
   58620 crw-rw-rw-   1 root root  Oct 10 16:25 /dev/null
   13050 crw-rw-rw-   1 root root  Oct 21 10:25 
 /dev/urandom

/dev/null and /dev/urandom are the two that I manually corrected in order to
get basic functionality working again.  /dev/log I didn't touch, but that
looks like it was recreated during the upgrade (syslogd was presumably
restarted).

 Do you think something might have actually done find | chmod and
 escaped and run across /dev for some reason?

I've looked around the filesystem a bit, and nothing looks out of the
ordinary outside of /dev.

You can see in the stat output that only the ctime changed, so it's the
original device node which was created by udev, but has been mangled by
something.

 Do you happen to have system logs from the upgrade time, there may be
 messages that give us a clue what happened.

I have the dist-upgrader logs which look fairly complete, and will attach
those.  The timestamps in the log confirm that the ctime on /dev/null was
during the upgrade, and narrows down the possible packages (somewhere from
netbase to gsm-utils):

2009-01-16 13:33:36,223 INFO cache.commit()
2009-01-16 14:08:47,065 DEBUG got a conffile-prompt from dpkg for file: 
'/etc/services'
2009-01-16 15:00:50,532 WARNING no activity on terminal for 240 seconds 
(Configuring netbase)
2009-01-16 15:09:13,277 DEBUG got a conffile-prompt from dpkg for file: 
'/etc/init.d/gsm-utils'

I also searched for other similar reports, but didn't find anything which was
obviously a match:

https://bugs.edge.launchpad.net/ubuntu/intrepid/+source/linux/+bug/290153/comments/67
 (intrepid)
http://ubuntuforums.org/showthread.php?t=229938 (dapper to edgy upgrade)
http://ubuntuforums.org/showthread.php?t=1033252 (August 2007)

-- 
 - mdz

-- 
Wrong permissions in /dev after Intrepid-Jaunty upgrade
https://bugs.launchpad.net/bugs/317944
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 294899] Re: No signal with Samsung SyncMaster 750s and ProSavage8

2009-01-19 Thread Tormod Volden
The simplest is if you boot with the text parameter, leave the
xorg.conf as it is (savage should be picked anyway) and install and run
the new driver.

-- 
No signal with Samsung SyncMaster 750s and ProSavage8
https://bugs.launchpad.net/bugs/294899
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 270584] Re: libnm-glib-dev missing dependency on network-manager-dev

2009-01-19 Thread Alexander Sack
committed in lp:~network-manager/network-manager/ubuntu.0.7/rev 2988

** Changed in: network-manager (Ubuntu Jaunty)
   Status: Triaged = Fix Committed

-- 
libnm-glib-dev missing dependency on network-manager-dev
https://bugs.launchpad.net/bugs/270584
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 306168] Re: Unable to connect network drive SAMBA Share

2009-01-19 Thread Thierry Carrez
Let us know if purging winbind removed the idmap errors.
The rest of this bug looks a lot like bug 264943, could you try the PPA release 
posted there (see 
https://bugs.launchpad.net/ubuntu/+source/samba/+bug/264943/comments/89)

-- 
Unable to connect network drive SAMBA Share
https://bugs.launchpad.net/bugs/306168
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 318669] [NEW] Tablet not working properly in Jaunty

2009-01-19 Thread Magnes
Public bug reported:

Binary package hint: wacom-tools

I have an AceCad tablet which used to work in Ubuntu 7.10 perfectly on wacom 
drivers (it's compatible with wacom).
I tested my tablet on Jaunty Alpha LiveCD. It doesn't look good.
1. Tablet is not autodetected. I can't even move the cursor using the tablet.
2. After configuring it as in Ubuntu 7.10 (where it worked):
a) adding /dev/tablet-event on USB Graphics Tablet input device using this 
guide:
https://help.ubuntu.com/community/TabletSetupWizardpenDapper
b) and adding lines to xorg.conf for my tablet:

# commented out by update-manager, HAL is now used
Section InputDevice
 Driver wacom
 Identifier stylus
 Option Device /dev/tablet-event
 Option Type stylus
 Option ForceDevice ISDV4# Tablet PC ONLY
 Option USB on
 Option Mode Absolute
 Option Threshold 1
 #Option Model Flair
EndSection

# commented out by update-manager, HAL is now used
Section InputDevice
 Driver wacom
 Identifier cursor
 Option Device /dev/tablet-event
 Option Type cursor
 Option ForceDevice ISDV4# Tablet PC ONLY
 Option USB on
 Option Mode Absolute
 Option Threshold 1
 #Option Model Flair
EndSection

# commented out by update-manager, HAL is now used
Section InputDevice
 Driver wacom
 Identifier eraser
 Option Device /dev/tablet-event
 Option Type eraser
 Option !ForceDevice ISDV4# Tablet PC ONLY
 Option USB on
 Option Mode Absolute
 Option Threshold 1
 #Option Model Flair
EndSection

Section ServerLayout
 Identifier Default Layout
  screen 0 Default Screen 0 0
# commented out by update-manager, HAL is now used
# Inputdevice Generic Keyboard
# commented out by update-manager, HAL is now used
# Inputdevice Configured Mouse
# commented out by update-manager, HAL is now used
 Inputdevice stylus SendCoreEvents
# commented out by update-manager, HAL is now used
 Inputdevice cursor SendCoreEvents
# commented out by update-manager, HAL is now used
 Inputdevice eraser SendCoreEvents
EndSection

c) and restarting xorg
the tablet works like that:
- I can move the cursor but its moves are eradic (it jumps from place to place) 
- very similar effect as I have right know on Intrepid when I use it
- after using the tablet my left mouse button stops functioning
- I can't click using the tablet, so I can't check if the pressure is working

This bug is also in Intrepid, reported here: 
https://bugs.launchpad.net/intrepid-backports/+bug/309531/
I'll test it on newer wacom-tools drivers from debian unstable soon and update 
this report.

** Affects: wacom-tools (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: tablet wacom

-- 
Tablet not working properly in Jaunty
https://bugs.launchpad.net/bugs/318669
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 317983] Re: ksmserver crashes

2009-01-19 Thread Stefan Bader
This is the ksmserver crash report from the installed system. This is happening 
only when leaving kde (e.g. selecting restart or shutdown from the menu).  In 
those cases (restart / shutdown), the requested operation is not performed but 
kdm restarts and presents the login prompt.
I also got an updated nepomukservicestub crash report but perhaps it would be 
better to add it to bug 284331?

** Attachment added: Crash report ksmserver, installed system
   http://launchpadlibrarian.net/21350189/_usr_bin_ksmserver.1000.crash

-- 
ksmserver crashes
https://bugs.launchpad.net/bugs/317983
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 317944] Re: Wrong permissions in /dev after Intrepid-Jaunty upgrade

2009-01-19 Thread Matt Zimmerman
This is the list of packages whose maintainer scripts were executed
during the timeframe when the permissions appear to have changed.

** Attachment added: suspect packages
   http://launchpadlibrarian.net/21350164/packages

-- 
Wrong permissions in /dev after Intrepid-Jaunty upgrade
https://bugs.launchpad.net/bugs/317944
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 317944] Re: Wrong permissions in /dev after Intrepid-Jaunty upgrade

2009-01-19 Thread Matt Zimmerman
Here's the terminal output from that span of time

** Attachment added: terminal output from suspect packages
   http://launchpadlibrarian.net/21350186/terminal-output

-- 
Wrong permissions in /dev after Intrepid-Jaunty upgrade
https://bugs.launchpad.net/bugs/317944
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


  1   2   3   4   5   6   7   8   9   10   >