[Bug 326768] Re: mysqld_safe thinks mysqld has crashed when it hasn't

2009-05-12 Thread MarcRandolph
I'm not sure if I'm late to the party or not here... but on the off
chance that it would be helpful, I threw together a program to print out
the source process ID for a SIGHUP signal.  I have attached the source
to this bug.   Very simple to use... in this case:

1. mv mysqld_safe mysqld_safe_real
2. gcc sig_src.c -o mysqld_safe
3. Launch programs/services that cause crash
4. Watch stderr output, wherever that happens to be going.  This could be 
modified to log to a file.

** Attachment added: Determine the process ID of SIGHUP source
   http://launchpadlibrarian.net/26623864/sig_src.c

-- 
mysqld_safe thinks mysqld has crashed when it hasn't
https://bugs.launchpad.net/bugs/326768
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 370464] Re: package samba 2:3.3.2-1ubuntu3 failed to install/upgrade: subprocess post-installation script returned error exit status 139

2009-05-12 Thread Thierry Carrez
Could you attach your /etc/samba/smb.conf file ? Looks like it's using a
non-default setting for the passdb backend...

Also you can try sudo apt-get purge samba samba-common and then sudo
apt-get install samba to restart with cleaned up configuration files.

-- 
package samba 2:3.3.2-1ubuntu3 failed to install/upgrade: subprocess 
post-installation script returned error exit status 139
https://bugs.launchpad.net/bugs/370464
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 372737] Re: Samba Chokes Randomly

2009-05-12 Thread Thierry Carrez
Does replacing references to cusvr by cusvr's IP address solve your
problem ?

-- 
Samba Chokes  Randomly 
https://bugs.launchpad.net/bugs/372737
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 373999] Re: CIFS loops endlessly when remote host is down

2009-05-12 Thread Thierry Carrez
Thank you for taking the time to report this bug and helping to make
Ubuntu better. Unfortunately we can't fix it without more information.

Please include the information requested at
https://wiki.ubuntu.com/DebuggingSamba#samba-client

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

-- 
CIFS loops endlessly when remote host is down
https://bugs.launchpad.net/bugs/373999
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 374501] Re: Likewise-open5 login gives error code 0x0000200c

2009-05-12 Thread Thierry Carrez
Looking at the log, it apparently chokes on reading the workgroup value from 
a previous /etc/samba/lwiauthd.conf
Do you have an existing /etc/samba/lwiauthd.conf file, like a leftover of 
previous likewise-open (4.x) installation ?

If yes, could you try sudo apt-get purge likewise-open to get rid of
that file and retry your domain join ? Thanks !

** Changed in: likewise-open5 (Ubuntu)
   Status: New = Incomplete

-- 
Likewise-open5 login gives error code 0x200c
https://bugs.launchpad.net/bugs/374501
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to likewise-open5 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 374567] Re: tomcat6 with spring throws org/springframework/core/NestedExceptionUtils

2009-05-12 Thread Thierry Carrez
Yes, by default we run Tomcat with a security manager, which means you
need to configure rights for your application in the policy files.

See instructions at:
http://tomcat.apache.org/tomcat-6.0-doc/security-manager-howto.html

Given the complexity of getting security policy files right, depending
on your environment it may make sense to run without the security
manager (i.e. disabling TOMCAT_SECURITY). The security manager is just
another layer for security in depth, restricting what the code run can
ultimately do with your system.

By the way, this is not a specificity in our Tomcat packaging... It
would also fail with a stock Tomcat 6 if you enabled the security
manager without configuring policy files to give proper rights to your
application.

Closing as invalid as this is not a bug.

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

-- 
tomcat6 with spring throws org/springframework/core/NestedExceptionUtils
https://bugs.launchpad.net/bugs/374567
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


[Bug 375371] [NEW] MySQL must not use /tmp

2009-05-12 Thread Launchpad Bug Tracker
You have been subscribed to a public bug:

I noticed that the my.cnd points the tmpdir to /tmp, which IMHO might be
fatal.

From the MySQL site:
If the MySQL server is acting as a replication slave, you should not set 
--tmpdir to point to a directory on a memory-based file system or to a 
directory that is cleared when the server host restarts. A replication slave 
needs some of its temporary files to survive a machine restart so that it can 
replicate temporary tables or LOAD DATA INFILE operations. If files in the 
temporary file directory are lost when the server restarts, replication fails. 
http://dev.mysql.com/doc/refman/5.0/en/temporary-files.html

From the FHS:
/tmp/   Temporary files (see also /var/tmp). Often not preserved between system 
reboots.
http://en.wikipedia.org/wiki/Filesystem_Hierarchy_Standard

It might even be, that Ubuntu clears /tmp.

Anyhow, /tmp can be considered lost upon system restart - any file that
should survive a system restart belong to /var/tmp

/var/tmp/   Temporary files to be preserved between reboots.

so please consider 
tmpdir=/var/tmp

I dunno if apparmor needs to be adjusted, but I guess I will soon find
out...

regards
Philipp

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

-- 
MySQL must not use /tmp
https://bugs.launchpad.net/bugs/375371
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 375371] Re: MySQL must not use /tmp

2009-05-12 Thread Mathieu Comandon
** Package changed: ubuntu = mysql-dfsg-5.0 (Ubuntu)

-- 
MySQL must not use /tmp
https://bugs.launchpad.net/bugs/375371
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 326768] Re: mysqld_safe thinks mysqld has crashed when it hasn't

2009-05-12 Thread Will Uther
I just tried Marc's signal tracker:  Here is the output after boot:

Executing (/usr/bin/mysqld_safe_real )
signo: [1], errno: [0], code: [128], pid: [0], uid: [0]

It looks like a code of 0x80 corresponds to a code of SI_KERNEL.

What does the kernel have against mysqld_safe?

-- 
mysqld_safe thinks mysqld has crashed when it hasn't
https://bugs.launchpad.net/bugs/326768
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 374501] Re: Likewise-open5 login gives error code 0x0000200c

2009-05-12 Thread Jacco van Koll
After a mv /etc/samba/lwiauthd.conf /root  domainjoin-cli --log domainjoin 
--loglevel verbose join hellema.loc Administrator, it works!
Thank you very much!

-- 
Likewise-open5 login gives error code 0x200c
https://bugs.launchpad.net/bugs/374501
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to likewise-open5 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 372737] Re: Samba Chokes Randomly

2009-05-12 Thread Amanda Bee
Nope.

Curiously, the problem hasn't recurred in a few days. I'm crossing my
fingers here and will close this if I go a whole week without a lockout.

-- 
Samba Chokes  Randomly 
https://bugs.launchpad.net/bugs/372737
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 374501] Re: Likewise-open5 login gives error code 0x0000200c

2009-05-12 Thread Thierry Carrez
This needs to be doublechecked for the 4.x - 5.x upgrade scenario.

** Changed in: likewise-open5 (Ubuntu)
   Importance: Undecided = Low

** Changed in: likewise-open5 (Ubuntu)
   Status: Incomplete = Triaged

** Summary changed:

- Likewise-open5 login gives error code 0x200c
+ Likewise-open5 error code 0x200c when /etc/samba/lwiauthd.conf exists

-- 
Likewise-open5 error code 0x200c when /etc/samba/lwiauthd.conf exists
https://bugs.launchpad.net/bugs/374501
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to likewise-open5 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 347503] Re: Samba/Winbind: INTERNAL ERROR: Signal 11

2009-05-12 Thread raaboof
Yes, this seems to be fixed in Jaunty.

-- 
Samba/Winbind: INTERNAL ERROR: Signal 11
https://bugs.launchpad.net/bugs/347503
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 326768] Re: mysqld_safe thinks mysqld has crashed when it hasn't

2009-05-12 Thread Mathias Gug
** Description changed:

  --Impact--
  I'm running mythtv on jaunty with mysql-server-5.0 version 
5.1.30really5.0.75-0ubuntu5.  During boot mysql starts, then mythtv starts, 
then mysql restarts and mythtv gets confused.
  
  This is caused by some portions of a debian patch that is applied on top
  of MySQL.  It has not been accepted yet at upstream MySQL.  The MySQL
  server is receiving a SIGHUP which the behavior is changed because of
  the debian patch.
  
  Here are some relevant syslog sections:
  
  Feb  8 12:35:07 willvo mysqld_safe[3668]: started
  Feb  8 12:35:08 willvo mysqld[3671]: 090208 12:35:08  InnoDB: Started; log 
sequence number 0 43655
  Feb  8 12:35:08 willvo mysqld[3671]: 090208 12:35:08 [Note] /usr/sbin/mysqld: 
ready for connections.
  Feb  8 12:35:08 willvo mysqld[3671]: Version: '5.0.75-0ubuntu5'  socket: 
'/var/run/mysqld/mysqld.sock'  port: 3306  (Ubuntu)
  Feb  8 12:35:08 willvo /etc/mysql/debian-start[3710]: Upgrading MySQL tables 
if necessary.
  Feb  8 12:35:08 willvo /etc/mysql/debian-start[3713]: Looking for 'mysql' as: 
/usr/bin/mysql
  Feb  8 12:35:08 willvo /etc/mysql/debian-start[3713]: Looking for 
'mysqlcheck' as: /usr/bin/mysqlcheck
  Feb  8 12:35:08 willvo /etc/mysql/debian-start[3713]: This installation of 
MySQL is already upgraded to 5.0.75, use --force if you still need to run 
mysql_upgrade
  Feb  8 12:35:08 willvo /etc/mysql/debian-start[3720]: Checking for insecure 
root accounts.
  Feb  8 12:35:08 willvo /etc/mysql/debian-start[3724]: Triggering 
myisam-recover for all MyISAM tables
  
  Feb  8 12:35:13 willvo mythtv-backend[4560]: Started mythtv-backend
  
  Feb  8 12:35:16 willvo mysqld_safe[5212]: Number of processes running now: 1
  Feb  8 12:35:16 willvo mysqld_safe[5223]: mysqld process hanging, pid 3670 - 
killed
  Feb  8 12:35:16 willvo mysqld_safe[5227]: restarted
  Feb  8 12:35:16 willvo mysqld[5231]: 090208 12:35:16  InnoDB: Started; log 
sequence number 0 43655
  Feb  8 12:35:17 willvo mysqld[5231]: 090208 12:35:17 [Note] /usr/sbin/mysqld: 
ready for connections.
  Feb  8 12:35:17 willvo mysqld[5231]: Version: '5.0.75-0ubuntu5'  socket: 
'/var/run/mysqld/mysqld.sock'  port: 3306  (Ubuntu)
  
  Note that mysqld_safe is finds one mysqld process still running after it
  is supposed to have crashed.  mysqld_safe then kills that process and
  starts another.  This only seems to happen once during boot - it doesn't
  keep restarting mysqld in normal use.
  
  --Addressing--
  This has *not* yet been addressed in the karmic branch, but it has been 
verified that a PPA resolve the problem.  MySQL hasn't changed yet in karmic, 
so this can easily be brought to karmic if viewed to properly solve the problem.
  
- --Test Case - Myth
- To reproduce this, you can boot up off of a fresh install of Mythbuntu 9.04 
(which includes MySQL and mythtv-backend preinstalled).  Check /var/log/syslog 
and you will see errors regarding mysql getting restarted because of a hanging 
process.  Depending on the speed of your system, this may or may not cause 
problems with mythtv-backend because of the race condition inherent in this 
problem.
+ The problem comes from the fact that mysqld_safe starts mysqld and then
+ waits for its crash. However installing a trap for SIGHUP makes the wait
+ command return immediately when a SIGHUP is received by mysqld_safe.
+ This mysqld_safe proceed to kill the remaining mysqld process (which
+ hasn't crashed). The proposed fix is to add a wait command to the trap.
  
- -- Test Case - non-Myth
- sudo killall -HUP mysqld_safe   # should cause mysql to reload its 
config, but causes it to restart instead.
+ -- Test Case
+ 1. Install mysql-server-5.0 and watch the log. Record the PID of mysqld. 
Issue a status command to see how many flush tables have been done:
+ $ sudo /usr/bin/mysqladmin --defaults-extra-file=/etc/mysql/debian.cnf status
+ Uptime: 36 Threads: 1 Questions: 1 Slow queries: 0 Opens: 12 Flush tables: 1 
Open tables: 6 Queries per second avg: 0.028
+ 
+ 2. From a terminal: 
+   sudo killall -HUP mysqld_safe
+ 
+ 3. 
+  a. WIthtout the patch: mysqld_safe reports that a mysqld process is stuck, 
kills it and restarts it. This can be verified by checking that mysqld has new 
a PID.
+  b. With the patch: mysqld is *not* restarted. mysqld has the same PID. Only 
the refresh command is sent to mysqld. This can be verified by checking that 
the number of flush tables has been incremented by one.
  
  --Regression Potential--
- This type of patch has implications if users were dependent on the behavior 
of this debian/ubuntu specific patch to issue a mysql refresh via a SIGHUP.
+ There isn't any change in behavior. Signals are still handled the way they 
were before.

** Tags removed: verification-failed

** Changed in: mysql-dfsg-5.0 (Ubuntu Karmic)
   Status: Confirmed = In Progress

** Changed in: mysql-dfsg-5.0 (Ubuntu Karmic)
 Assignee: Canonical Server Team (canonical-server) = Mathias Gug (mathiaz)

** Changed 

[Bug 375493] Re: tomcat6 needs debug start mode with jpda

2009-05-12 Thread Thag

** Attachment added: Adds jpda debug option to tomcat6 init.d
   http://launchpadlibrarian.net/26639186/tomcatinit.patch

-- 
tomcat6 needs debug start mode with jpda
https://bugs.launchpad.net/bugs/375493
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


[Bug 375493] [NEW] tomcat6 needs debug start mode with jpda

2009-05-12 Thread Thag
Public bug reported:

Binary package hint: tomcat6

I had filed this in the wrong place, but I don't see any links to it
now. Apologies if it's a dup.

Bits and pieces pasted here from different sources but it all describes
the prob.

tomcat 6 in jaunty:
 dpkg -l | grep tomcat6
ii  libtomcat6-java  6.0.18-0ubuntu6
  Servlet and JSP engine -- core libraries
ii  tomcat6  6.0.18-0ubuntu6
  Servlet and JSP engine
ii  tomcat6-admin6.0.18-0ubuntu6
  Servlet and JSP engine -- admin web applications
ii  tomcat6-common   6.0.18-0ubuntu6
  Servlet and JSP engine -- common files
ii  tomcat6-user 6.0.18-0ubuntu6
  Servlet and JSP engine -- tools to create user instances

I've installed the stock tomcat6 package on Intrepid, and I want to
configure it for remote JPDA debugging (listening on port 8000) for
debugging a webapp from eclipse. The normal way to do this is to edit
/usr/share/tomcat6/bin/startup.sh so it starts in debug mode:

exec $PRGDIR/$EXECUTABLE jpda start $@

However, the Ubuntu system startup script doesn't seem to follow the
normal tomcat6 startup procedure. /etc/init.d/tomcat6 runs /usr/bin/jsvc
instead of executing the normal startup scripts in
/usr/share/tomcat6/bin:

DAEMON=/usr/bin/jsvc
.
.
.
$DAEMON -user $TOMCAT6_USER -cp $JSVC_CLASSPATH \
-outfile SYSLOG -errfile SYSLOG \
-pidfile $CATALINA_PID $JAVA_OPTS $BOOTSTRAP_CLASS

How should I configure it to start the debugger?


The attached patch is crude way of accomplishing this. I'm sure there are 
better ways.

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

-- 
tomcat6 needs debug start mode with jpda
https://bugs.launchpad.net/bugs/375493
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


[Bug 326768] Re: mysqld_safe thinks mysqld has crashed when it hasn't

2009-05-12 Thread Mathias Gug
** Bug watch added: Debian Bug tracker #527623
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=527623

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

-- 
mysqld_safe thinks mysqld has crashed when it hasn't
https://bugs.launchpad.net/bugs/326768
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 326768] Re: mysqld_safe thinks mysqld has crashed when it hasn't

2009-05-12 Thread Bug Watch Updater
** Changed in: mysql-dfsg-5.0 (Debian)
   Status: Unknown = New

-- 
mysqld_safe thinks mysqld has crashed when it hasn't
https://bugs.launchpad.net/bugs/326768
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 375593] [NEW] cannot browse samba shares without editing smb.conf

2009-05-12 Thread Martin G Miller
Public bug reported:

Binary package hint: samba

I maintain 2 networks with mixed ubuntu / Windows XP SP2 machines and this 
problem started suddenly in September of 2008.  All of my Ubuntu machines 
whether they are clean installs of 8.04 or 8.10 or 9.04, 32 or 64 bit or 
upgrades from earlier versions all exhibit the failure to display or browse smb 
shares. The only fix is to edit etc/samba/smb.conf:
# What naming service and in what order should we use to resolve host names
# to IP addresses
 ; name resolve order = lmhosts host wins bcast

remove the leading ; from the name resolve order line and change the order of 
the entries to read:
   name resolve order = lmhosts wins bcast host

Save the file, log off and back on.

This change fixes the problem for all my machine in both networks.
The problem remains unresolved in Jaunty unless I do this. This problem 
appeared suddenly in September of 2008 on 8.04 machines that had been working 
normally and has persisted through 8.10 and now 9.04.

Clicking on the Places  Network to bring up the network browse gui will
take a fairly long time to appear and it will not display any of the
machines on the network, whether Ubuntu or Windows XP.  It may display
an icon for Windows Network, but if that is clicked, the system times
out with nothing displayed after about 60 seconds.

This happens on all machines whether clean installs or upgrades with
8.04, 8.10 and 9.04, both 32 And 64 bit.  IT also does not matter if the
Ubuntu machines are static IP or DHCP.

After editing the smb.conf file as noted above, the network gui works
quickly and as expected  displays all shares on all Windows XP and
Ubuntu machines on the local network.

Additional info: until I found the fix noted here, I installed the kde
3.x network browser.  I forget the name of the package, but that worked
instantly.  Once I got gnome working, I uninstalled it.  I have not had
to do this on the new 9.04 installs, I just edit smb.conf and everything
works as expected.

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

-- 
cannot browse samba shares without editing smb.conf
https://bugs.launchpad.net/bugs/375593
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 317564] Re: upgrade to Subversion 1.5.5 for jaunty

2009-05-12 Thread Marcus Sundman
Yes, the title should say 'upgrade to Subversion 1.6 for jaunty'.

-- 
upgrade to Subversion 1.5.5 for jaunty
https://bugs.launchpad.net/bugs/317564
You received this bug notification because you are a member of Ubuntu
Server Team, which is a direct subscriber.

-- 
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 375657] [NEW] Please add -q to logrotate.d script

2009-05-12 Thread greenmoss
Public bug reported:

Binary package hint: mailman

The logrotate.d script that comes with mailman sends root the message
Re-opening all log files every time it runs
/usr/lib/mailman/bin/mailmanctl reopen. This is only informational,
and does not point to any problems. Thus, it should probably be silenced
using the -q switch:

postrotate
[ -f '/var/run/mailman/mailman.pid' ]  
/usr/lib/mailman/bin/mailmanctl -q reopen || exit 0

Note that there are four occurrences of mailmanctl invoked from this
script at differing frequencies, so all would need to be updated.


lsb_release -rd:
Description:Ubuntu 8.04.2
Release:8.04


apt-cache policy mailman:
mailman:
  Installed: 1:2.1.9-9ubuntu1
  Candidate: 1:2.1.9-9ubuntu1
  Version table:
 *** 1:2.1.9-9ubuntu1 0
500 http://packages hardy/main Packages
100 /var/lib/dpkg/status

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

** Description changed:

  Binary package hint: mailman
  
  The logrotate.d script that comes with mailman sends root the message
  Re-opening all log files every time it runs
  /usr/lib/mailman/bin/mailmanctl reopen. This is only informational,
  and does not point to any problems. Thus, it should probably be silenced
  using the -q switch:
  
  postrotate
  [ -f '/var/run/mailman/mailman.pid' ]  
/usr/lib/mailman/bin/mailmanctl -q reopen || exit 0
+ 
+ Note that there are four occurrences of mailmanctl invoked from this
+ script at differing frequencies, so all would need to be updated.
  
  
  lsb_release -rd:
  Description:Ubuntu 8.04.2
  Release:8.04
  
  
  apt-cache policy mailman:
  mailman:
Installed: 1:2.1.9-9ubuntu1
Candidate: 1:2.1.9-9ubuntu1
Version table:
   *** 1:2.1.9-9ubuntu1 0
  500 http://packages hardy/main Packages
  100 /var/lib/dpkg/status

-- 
Please add -q to logrotate.d script
https://bugs.launchpad.net/bugs/375657
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mailman 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 375669] [NEW] auth.log boot cron[5014]: nss_ldap: could not search LDAP server - Server is unavailable

2009-05-12 Thread jablko
Public bug reported:

Binary package hint: libnss-ldap

If I create a crontab for an LDAP user, I consistently see these
messages in auth.log when I boot,

[...]
May 12 12:55:39 juno cron[5014]: nss_ldap: could not connect to any LDAP server 
as cn=admin,dc=artefactual,dc=com - Can't contact LDAP server
May 12 12:55:40 juno cron[5014]: nss_ldap: failed to bind to LDAP server 
ldap://ldap.artefactual.com: Can't contact LDAP server
May 12 12:55:40 juno cron[5014]: nss_ldap: reconnecting to LDAP server...
May 12 12:55:40 juno cron[5014]: nss_ldap: could not connect to any LDAP server 
as cn=admin,dc=artefactual,dc=com - Can't contact LDAP server
May 12 12:55:40 juno cron[5014]: nss_ldap: failed to bind to LDAP server 
ldap://ldap.artefactual.com: Can't contact LDAP server
May 12 12:55:40 juno cron[5014]: nss_ldap: reconnecting to LDAP server 
(sleeping 1 seconds)...
May 12 12:55:40 juno cron[5014]: nss_ldap: could not connect to any LDAP server 
as cn=admin,dc=artefactual,dc=com - Can't contact LDAP server
May 12 12:55:41 juno cron[5014]: nss_ldap: failed to bind to LDAP server 
ldap://ldap.artefactual.com: Can't contact LDAP server
May 12 12:55:41 juno cron[5014]: nss_ldap: could not search LDAP server - 
Server is unavailable
[...]

- and the LDAP user's crontab doesn't run, though other crontabs do.

If I remove the LDAP user's crontab and reboot, the messages aren't
generated.

The LDAP server is on the LAN and is available - for example, after
boot, gdmgreeter lists LDAP users.

The machine with the crontab has this line in /etc/hosts,

[...]
192.168.1.2 amos.artefactual.com ldap.artefactual.com
[...]

Both machines are Dell Optiplex 320 running Intrepid Ibex. The LDAP
server is running slapd 2.4.11-0ubuntu6.1

** Affects: libnss-ldap (Ubuntu)
 Importance: Undecided
 Status: New

-- 
auth.log boot cron[5014]: nss_ldap: could not search LDAP server - Server is 
unavailable
https://bugs.launchpad.net/bugs/375669
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to libnss-ldap 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 372757] Re: quagga: Assertion `len str_size' failed in file bgp_aspath.c, line 619

2009-05-12 Thread Launchpad Bug Tracker
This bug was fixed in the package quagga - 0.99.9-2ubuntu1.2

---
quagga (0.99.9-2ubuntu1.2) hardy-security; urgency=low

  * SECURITY UPDATE: denial of service with multiple AS numbers.
- debian/patches/99_as4-crash-fix.dpatch: backported upstream fixes
  thanks to Chris Caputo and Florian Weimer.
- CVE-2009-1572 (LP: #372757)

 -- Kees Cook k...@ubuntu.com   Wed, 06 May 2009 11:14:39 -0700

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

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

-- 
quagga: Assertion `len  str_size' failed in file bgp_aspath.c, line 619
https://bugs.launchpad.net/bugs/372757
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to quagga 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 372757] Re: quagga: Assertion `len str_size' failed in file bgp_aspath.c, line 619

2009-05-12 Thread Launchpad Bug Tracker
This bug was fixed in the package quagga - 0.99.9-6ubuntu0.1

---
quagga (0.99.9-6ubuntu0.1) intrepid-security; urgency=low

  * SECURITY UPDATE: denial of service with multiple AS numbers.
- debian/patches/99_as4-crash-fix.dpatch: backported upstream fixes
  thanks to Chris Caputo and Florian Weimer.
- CVE-2009-1572 (LP: #372757)

 -- Kees Cook k...@ubuntu.com   Wed, 06 May 2009 11:14:39 -0700

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

-- 
quagga: Assertion `len  str_size' failed in file bgp_aspath.c, line 619
https://bugs.launchpad.net/bugs/372757
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to quagga 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 372757] Re: quagga: Assertion `len str_size' failed in file bgp_aspath.c, line 619

2009-05-12 Thread Launchpad Bug Tracker
This bug was fixed in the package quagga - 0.99.11-1ubuntu0.1

---
quagga (0.99.11-1ubuntu0.1) jaunty-security; urgency=low

  * SECURITY UPDATE: denial of service with multiple AS numbers.
- debian/patches/99_as4-crash-fix.dpatch: upstream fixes thanks
  to Chris Caputo and Florian Weimer.
- CVE-2009-1572 (LP: #372757)
  * debian/patches/99_fix-convert-dither.dpatch: fix FTBFS due to
ImageMagick changes, thanks to Florian Weimer.

 -- Kees Cook k...@ubuntu.com   Wed, 06 May 2009 11:14:39 -0700

-- 
quagga: Assertion `len  str_size' failed in file bgp_aspath.c, line 619
https://bugs.launchpad.net/bugs/372757
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to quagga 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 222734] [NEW] Samba usershares in lower-case

2009-05-12 Thread Launchpad Bug Tracker
You have been subscribed to a public bug:

Samba usershares created with Nautilus are in lower-case.

Steps to reproduce :

1 - Right-click on a folder (My Shared Folder for example) and share it with 
Samba
2 - Go to smb://localhost/ in Nautilus
3 - See that My Shared Folder becomes my shared folder

Hardy Heron (64-bit)

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

-- 
Samba usershares in lower-case
https://bugs.launchpad.net/bugs/222734
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 211966] Re: nautilus-share report a warning about missing /var/lib/samba/usershares

2009-05-12 Thread Chow Loong Jin
As per Václav Šmilauer's post, all that's required after the samba
installation is a restart of the session, i.e. logging out and logging
back in. The current nautilus-share prompts the user after the auto-
installation of samba (and libpam-smbpass) to restart the session.
Hence, I'm marking this as fix released.

** Changed in: nautilus-share (Ubuntu)
   Status: Confirmed = Fix Released

-- 
nautilus-share report a warning about missing  /var/lib/samba/usershares
https://bugs.launchpad.net/bugs/211966
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 222734] Re: Samba usershares in lower-case

2009-05-12 Thread Chow Loong Jin
I'm reassigning this to samba, because this is a bug of the 'net'
utility, not nautilus-share.

** Package changed: nautilus-share (Ubuntu) = samba (Ubuntu)

-- 
Samba usershares in lower-case
https://bugs.launchpad.net/bugs/222734
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 329900] Re: Please remove language bias from php5-cli package description

2009-05-12 Thread Sebastien Bacher
thank you for your work there, could you send the change to the debian
bts too since it's not really ubuntu specific?

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

-- 
Please remove language bias from php5-cli package description
https://bugs.launchpad.net/bugs/329900
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to php5 in ubuntu.

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


[Bug 355800] Re: *** WARNING: ucf was run from a maintainer script that uses debconf, but the script did not pass --debconf-ok to ucf.

2009-05-12 Thread Sebastien Bacher
there is no hurry no but unsubscribing the sponsors for now you can
subscribe the team again when you have an update ready for review

-- 
*** WARNING: ucf was run from a maintainer script that uses debconf, but the 
script did not pass --debconf-ok to ucf.
https://bugs.launchpad.net/bugs/355800
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to nagios3 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 355800] Re: *** WARNING: ucf was run from a maintainer script that uses debconf, but the script did not pass --debconf-ok to ucf.

2009-05-12 Thread Sebastien Bacher
there is no hurry no but unsubscribing the sponsors for now you can
subscribe the team again when you have an update ready for review and
sponsoring

-- 
*** WARNING: ucf was run from a maintainer script that uses debconf, but the 
script did not pass --debconf-ok to ucf.
https://bugs.launchpad.net/bugs/355800
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to nagios3 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 358468] Re: Samba crashes on install....

2009-05-12 Thread pudgy
have you removed file smb.conf manually,,??

-- 
Samba crashes on install
https://bugs.launchpad.net/bugs/358468
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 358468] Re: Samba crashes on install....

2009-05-12 Thread pudgy
sorry i mean, are you remove smb.conf manually,,,??
because i`ve got some problems when i install samba at 8.04,
and when i copy smb.conf to /etc/samba, the installation run complete,,

-- 
Samba crashes on install
https://bugs.launchpad.net/bugs/358468
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 365390] Re: postfix: invalid value for smtpd_tls_mandatory_ciphers in main.cf

2009-05-12 Thread Mathias Gug
Thanks for preparing a debdiff.

Considering that the default value for smtpd_tls_mandatory_ciphers is
medium it makes more sense to just remove the set_postfix_option
smtpd_tls_mandatory_ciphers = medium, high line rather than replacing
it with set_postfix_option smtpd_tls_mandatory_ciphers = medium.

-- 
postfix:  invalid value for smtpd_tls_mandatory_ciphers in main.cf
https://bugs.launchpad.net/bugs/365390
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to dovecot 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 315950] Re: [needs-packaging] FoFiX (Frets on Fire X)

2009-05-12 Thread Pascal Giard
Unfortunately, there are still a couple of show-stoppers for this to
happen, at least in Debian unstable.
The most notable problem right now is the bad python-pyvorbis 1.4
package that throws a double-free error.

Please see: http://bugs.debian.org/521559

Another issue is that python-pygame is still at version 1.7.1 (or
1.8.x in Ubuntu) while = 1.9.x is required, at least for 64bit CPUs.

Until those two issues are tackled, i don't see a FoFiX package for
Debian/Ubuntu coming.
However, if they're resolved, i'll gladly package it myself or make
sure it gets packaged.

Finally, as a comment to the Debian RFP, please note that i'm not the
only upstream author, not at all!
Actually, there are quite a few active developpers these days.
I hope i won't hurt anyone's feelings but i think the most active
developers currently are (no particular order):
Chris Paiano
Pascal Giard (me)
Blazingamer
Qstick
akedrou
John Stumpo
volshebnyi

Cheers,

-Pascal
PS: As a side note, we'd like to modify FoFiX so it can use multiple
songs folders. That'd allow us to reuse the fretsonfire-mudjold
package.
-- 
Homepage (http://organact.mine.nu)
Debian GNU/Linux (http://www.debian.org)
LACIME: École de technologie supérieure (http://lacime.etsmtl.ca)

** Bug watch added: Debian Bug tracker #521559
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=521559

-- 
[needs-packaging] FoFiX (Frets on Fire X) 
https://bugs.launchpad.net/bugs/315950
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 358321] Re: some scripts in irssi-scripts are out of date

2009-05-12 Thread Ryan Niebur
** Changed in: irssi-scripts (Debian)
   Importance: Undecided = Unknown

** Changed in: irssi-scripts (Debian)
   Status: In Progress = Unknown

** Changed in: irssi-scripts (Debian)
 Remote watch: None = Debian Bug tracker #497788

** Changed in: irssi-scripts (Debian)
 Assignee: Ryan Niebur (ryan52) = (unassigned)

-- 
some scripts in irssi-scripts are out of date
https://bugs.launchpad.net/bugs/358321
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 335447] Re: Thinkpad function key (Fn+F3) to switch off backlight no longer works

2009-05-12 Thread Sing-Tai Mok
You mean like: Create a file like screenblank (without quotes) in
/etc/acpi/events/ and putting in the following?

# Use Fn+F1 to turn off screen.
event=ibm/hotkey HKEY 0080 1001
action=/etc/acpi/screenblank.sh

...Hmmm. I suppose that will work for now.

* Looks at the screenblank.sh file...*
...Oh, I see how it works.
= screenblank.sh calls = /usr/share/acpi-support/screenblank = xset dpms 
force off

-- 
Thinkpad function key (Fn+F3) to switch off backlight no longer works
https://bugs.launchpad.net/bugs/335447
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 375500] [NEW] eclipse without menus after upgrade to jaunty

2009-05-12 Thread kuntergunt
Public bug reported:

After the upgrade from hardy to jaunty all my eclipse installations show no 
menu any more, the whole menu bar is missing.
I do not know whether this is a bug in eclipse or jaunty, but in hardy 
everything worked fine.
I also made a brand new eclipse installation, same thing.
I have installed eclipse 3.4 latest, 3.2 came with ubuntu and Zend Studio 
6.1.1., all show no menus any more but everything else seems to work.
In my opinion this could be maybe some incompatibility of GTK and the SWT 
Library used by eclipse.

** Affects: ubuntu
 Importance: Undecided
 Status: New

** Description changed:

- After the upgrade from hrárdy to jaunty all my eclipse installations show no 
menu eny more.
+ After the upgrade from hardy to jaunty all my eclipse installations show no 
menu any more, the whole menu bar is missing.
  I do not know whether this is a bug in eclipse or jaunty, but in hardy 
everything worked fine.
  I also made a brand new eclipse installation, same thing.
  I have installed eclipse 3.4 latest, 3.2 came with ubuntu and Zend Studio 
6.1.1., all show no menus any more but everything else seems to work.
  In my opinion this could be maybe some incompatibility of GTK and the SWT 
Library used by eclipse.

-- 
eclipse without menus after upgrade to jaunty
https://bugs.launchpad.net/bugs/375500
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 375498] [NEW] prboom exits with signal 8 on karmic

2009-05-12 Thread Toni Spets
Public bug reported:

Binary package hint: prboom

When starting a new game or the intro demo starts the game just exists
with signal 8.

Previous version of the same package from jaunty works fine. Platform is
x86.

prboom:
  Installed: 2:2.5.0+dfsg1-2
  Candidate: 2:2.5.0+dfsg1-2
  Version table:
 *** 2:2.5.0+dfsg1-2 0
500 http://se.archive.ubuntu.com karmic/universe Packages
100 /var/lib/dpkg/status

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

-- 
prboom exits with signal 8 on karmic
https://bugs.launchpad.net/bugs/375498
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 375466] Re: [Wish list] is there a way to add.....

2009-05-12 Thread John Vivirito
*** This bug is a duplicate of bug 162479 ***
https://bugs.launchpad.net/bugs/162479

How is my bug related to that bug? I'm not looking for anything automated 
i'm looking to be able to add images by folder. 
That bug is about once all images are added to backgrounds section of 
appearance, than adding more to that folder it be automaticly updated in 
backgrounds section of appearance.

Example for what i am talking about:
open change background from desktop or going from menu either way that dialog.
Add support to choose a folder to add images from, adding  abutton in the 
dialog saying something like add contents of folder or just add folder

-- 
[Wish list] is there a way to add.
https://bugs.launchpad.net/bugs/375466
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 375466] Re: [Wish list] is there a way to add.....

2009-05-12 Thread John Vivirito
*** This bug is a duplicate of bug 162479 ***
https://bugs.launchpad.net/bugs/162479

The upstream bug looks like what i am saying, however bug #162479 is all
about updating backgrounds automaticlly.

The upstream bug has 2 feature request as they are not the same i can
care less about automating the process.

-- 
[Wish list] is there a way to add.
https://bugs.launchpad.net/bugs/375466
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 375463] Re: the interface under zh_CN locale Garbled

2009-05-12 Thread LI Daobing

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

** Changed in: tuxcmd (Ubuntu)
 Assignee: (unassigned) = LI Daobing (lidaobing)

** Attachment added: tuxcmd_0.6.50-2ubuntu1.debdiff
   http://launchpadlibrarian.net/26639305/tuxcmd_0.6.50-2ubuntu1.debdiff

-- 
the interface under zh_CN locale Garbled
https://bugs.launchpad.net/bugs/375463
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 375463] Re: the interface under zh_CN locale Garbled

2009-05-12 Thread LI Daobing
build log of cowbuilder

** Attachment added: last_operation.log
   http://launchpadlibrarian.net/26639349/last_operation.log

** Changed in: tuxcmd (Ubuntu)
   Status: In Progress = Confirmed

** Changed in: tuxcmd (Ubuntu)
 Assignee: LI Daobing (lidaobing) = (unassigned)

-- 
the interface under zh_CN locale Garbled
https://bugs.launchpad.net/bugs/375463
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 375344] Re: Hard Drive Full means Reinstall Ubuntu !?!?!

2009-05-12 Thread Jamie Strandboge
** Visibility changed to: Public

** This bug is no longer flagged as a security vulnerability

-- 
Hard Drive Full means Reinstall Ubuntu !?!?!
https://bugs.launchpad.net/bugs/375344
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 375180] Re: Incorrect account forcasting

2009-05-12 Thread Susan Penter
Hi,
I have set it up as a positive amount, I only tried the negative amount when
the positive didn't work but it wouldn't accept a negative amount it ignored
the - sign and put a positive amount in it's place.

So unfortunately it still isn't sorted.

Cheers
Susan

susan.pen...@gmail.com
0113 2392034
Contact Me: [image: del.icio.us] http://delicious.com/susanpenter/[image:
Facebook]http://www.facebook.com/reqs.php#/profile.php?id=705620302ref=profile[image:
Flickr] http://www.flickr.com/people/susanpenter/[image:
Twitter]http://twitter.com/susanpenter

Wiltshire OPC coordinator
http://www.wiltshire-opc.org.uk

Secretary  Webmaster to the PCC St. Michael's Headingley
http://www.st-michaels-headingley.org.uk/

Websites
http://www.churches-together-in-headingley.org.uk



On Tue, May 12, 2009 at 11:38 AM, Hei Ku asolive...@gmail.com wrote:

 When you set up a credit card account, entering a positive opening
 balance means you owe that much money. A negative balance in that case
 would mean the credit card owes you.

 You can go to the ledger, select the opening balance transaction and
 change it from payment to charge. That should fix the credit card
 balance. Then you should modify the payment schedule accordingly.

 --
 Incorrect account forcasting
 https://bugs.launchpad.net/bugs/375180
 You received this bug notification because you are a direct subscriber
 of the bug.

 Status in “kmymoney2” source package in Ubuntu: New

 Bug description:
 Binary package hint: kmymoney2

 On the home page the account forcast is shown for the next 30, 60  90
 days.  One of my accounts is a credit card account for which I have set up a
 payment schedule to make re-payments.  Each time the balance is showing as
 increasing by the payment amount.  As this is a credit card and I am making
 re-payments the amount should be shown as getting smaller not larger.  It is
 working as if there was a positive balance rather than a negative one.

 How do I make it understand that it is such, it is showing under the
 liability column so it does understand that this is money owing.


-- 
Incorrect account forcasting
https://bugs.launchpad.net/bugs/375180
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 374467] Re: nicotine crashes with x server error

2009-05-12 Thread heliotrophe
i've runned nicotine with the --sync command line and then chose it
without tray icon. then the error did not appear. so i chose the same in
the options and when i run nicotine now, the error did'nt appear. it
looks like it has something to do with the tray icon.

-- 
nicotine crashes with x server error
https://bugs.launchpad.net/bugs/374467
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 353989] Re: Import saves images in home root

2009-05-12 Thread Pedro Villavicencio
** Changed in: f-spot (Ubuntu)
   Status: New = Triaged

-- 
Import saves images in home root
https://bugs.launchpad.net/bugs/353989
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 328020] Re: cannot mount NetWare (ipx) server

2009-05-12 Thread Steven Harms
I do not need any more confirmations.  It is obviously already
confirmed.

-- 
cannot mount NetWare (ipx) server
https://bugs.launchpad.net/bugs/328020
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 375503] [NEW] maximized windows have titles covered by gnome-panel in twin view mode

2009-05-12 Thread Sigmund Baginov
Public bug reported:

Binary package hint: gnome-panel

I have been running twin view and separate xscreens modes for a while, but 
after upgrading to Jaunty (read installing it for scratch) I have found that in 
twin view mode - with one screen above another only (eg. laptop+TV) - the 
maximized windows  get overlapped by the gnome-panel app, so that the windows 
titles and control buttons are not accessible, but hidden.
Related to the gnome-panel, too, is that the gnome-panel does not often hide 
itself when it should be expected: for instance, a maximized totem movie should 
make the gnome-panel automatically disappear; but this does not happen 
sometimes as well.
In twin view mode with one screen on the right, no problem gets shown.

The only way to solve these minor issues is to take the gnome-panel down
and/or to hide it.


FYI: I only run one gnome-panel per screen, generally in the upper side in 
every my twin view configuration, vertical and horizontal.

AFAIK it is currently a Jaunty only problem, having never experienced it
with previous releases.

** Affects: gnome-panel (Ubuntu)
 Importance: Undecided
 Status: New

-- 
maximized windows have titles covered by gnome-panel in twin view mode
https://bugs.launchpad.net/bugs/375503
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 375455] Re: Use IMAP folder as calendar/contacts/notes store

2009-05-12 Thread Sam Liddicott
* Pedro Villavicencio wrote, On 12/05/09 15:26:
 thanks for the report, that's known upstream and a wontfix bug, you can
 read about it here: http://bugzilla.gnome.org/show_bug.cgi?id=240706
   
Thanks for the tip. I see Michal Palczewski points out that contact has
support for this:
http://docs.kde.org/stable/en/kdebase-runtime/userguide/kontact-imap-clients.html


That's useful, thanks again

-- 
Use IMAP folder as calendar/contacts/notes store
https://bugs.launchpad.net/bugs/375455
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 374882] Re: Workspace switcher shows only one row instead of three

2009-05-12 Thread cwall
It looks like 2.26 Workspace Switcher doesn't work well w/ Compiz
(compiz 0.8.2).

If Compiz's Desktop Size  1, then only one row is shown in the
Workspace Switcher.  If Desktop Size == 1 then Workspace Switcher's row
configuration works as expected - multi-rowed, cube-like display of
workspaces.

Also, 2.26 seems to have regress functionality-wise.  2.24.1 offered the
ability to name the workspaces; 2.26 does not.  Is this intentional?  Is
so, why?

(Perdo: New users default to 1 desktop.  That's likely why it works for
you.)

-- 
Workspace switcher shows only one row instead of three
https://bugs.launchpad.net/bugs/374882
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 371463] Re: Segmentation fault on start

2009-05-12 Thread Jeff Strunk
There is a fixed package in my PPA:
https://launchpad.net/~jstrunk-math/+archive/testing

I have also attached the patch

** Attachment added: ignore interrups = MAX_IRQS
   http://launchpadlibrarian.net/26639441/sleepd.diff

-- 
Segmentation fault on start
https://bugs.launchpad.net/bugs/371463
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 369443] Re: Notifications with a link put entire URL in ()

2009-05-12 Thread Mirco Müller
Are you talking about the summary-text (title) or the body-text? With
regards to links placed in a bubble's body-text, we provide guidlines
for apps to not do that
(https://wiki.ubuntu.com/NotificationDevelopmentGuidelines,
https://wiki.ubuntu.com/NotificationDesignGuidelines), since a user
cannot click on them due to the click-through feature of notify-osd.
Furthermore I suggest to file this against pidgin-libnotify
(https://edge.launchpad.net/ubuntu/+source/pidgin-libnotify) rather than
notify-osd, since that's the application/plugin actually triggering the
notification in the first place.

** Changed in: notify-osd (Ubuntu)
   Status: New = Invalid

** Changed in: notify-osd
   Importance: Undecided = Wishlist

** Changed in: notify-osd
   Status: New = Invalid

-- 
Notifications with a link put entire URL in ()
https://bugs.launchpad.net/bugs/369443
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 367947] Re: Notifications appear in non-visible area of multi-head desktop

2009-05-12 Thread Mirco Müller
** Changed in: notify-osd (Ubuntu)
   Status: New = Confirmed

** Changed in: notify-osd (Ubuntu)
 Assignee: (unassigned) = Mirco Müller (macslow)

-- 
Notifications appear in non-visible area of multi-head desktop
https://bugs.launchpad.net/bugs/367947
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 365588] Re: Opening dialogs, really slow

2009-05-12 Thread Brian Atkins
Just as an update: after 2+ hours with no apparent changes in the
performance of evolution, I decided to see what would happen by turning
them back off and then re-enabling the switches 1 at a time. This
particular one seems to have the most effect:

net.ipv6.conf.lo.disable_ipv6

I'm wondering if this isn't an issue with applications being able to
communicate with X/xorg due to issues with IPV6.

-- 
Opening dialogs, really slow
https://bugs.launchpad.net/bugs/365588
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 114495] Re: ca-certificates removes all users certificates in /etc/ssl/certs

2009-05-12 Thread Jamie Strandboge
** Changed in: ca-certificates (Ubuntu)
   Status: Confirmed = Triaged

-- 
ca-certificates removes all users certificates in /etc/ssl/certs
https://bugs.launchpad.net/bugs/114495
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 80940] Re: ati radeon driver does not autodetect displaysize on Latitude D600, therefore uses wrong resolution

2009-05-12 Thread Arkashkin
I have the same laptop model and both Ubuntu Intrepid Ibex and Jaunty can't 
detect my maximum resolution of the laptop screen which is 1400x1050. The only 
modes i have to choose from are - 640x480,800x600 and 1024x768 and the funny 
thing is that on older versions of 
Ubuntu (Feisty Fawn and Hardy) I could fix it by changing xorg.conf to:

//
Section Device
Identifier Radeon 9000
Driver ati
BusID PCI:1:0:0
Option GARTSize 64
Option MergedFB off
Option XAANoOffscreenPixmaps true
EndSection

Section Monitor
Identifier Generic Monitor
Option DPMS
HorizSync 30-70
VertRefresh 50-160
EndSection

Section Screen
Identifier Default Screen
Device Radeon 9000
Monitor Generic Monitor
DefaultDepth 24
SubSection Display
Depth 24
Virtual 1920 1440
Modes 1400x1050
EndSubSection
EndSection

Section ServerLayout
Option AIGLX true
Identifier Default Layout
Screen Default Screen
InputDevice Generic Keyboard
InputDevice Configured Mouse
EndSection

Section DRI
Mode 0666
EndSection

Section Extensions
Option Composite Enable
EndSection


I now use Ubuntu  Jaunty and i tried changing my xorg.conf to:

///

Section Device
Identifier  Configured Video Device
Option  IgnoreEDID
EndSection

Section Monitor
Identifier  Configured Monitor
DisplaySize  286 214
Option DPMS
HorizSync 30-70
VertRefresh 50-160
EndSection

Section Screen
Identifier  Default Screen
Monitor Configured Monitor
Device  Configured Video Device

SubSection Display
Modes   1400x1050
EndSubSection

EndSection
//

and it doesn't helps me either.

This is my xrandr command output :

///

Screen 0: minimum 320 x 200, current 1024 x 768, maximum 1024 x 1024
VGA-0 disconnected (normal left inverted right x axis y axis)
DVI-0 disconnected (normal left inverted right x axis y axis)
LVDS connected 1024x768+0+0 (normal left inverted right x axis y axis) 0mm x 0mm
   1024x768   60.0*+   60.0  
   800x60060.3 59.9  
   640x48059.9 59.4  
S-video disconnected (normal left inverted right x axis y axis)

///

-- 
ati radeon driver does not autodetect displaysize on Latitude D600, therefore 
uses wrong resolution
https://bugs.launchpad.net/bugs/80940
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 375507] [NEW] Dell 1525 Touchpad problem

2009-05-12 Thread debankur
Public bug reported:

The touchpad on Dell 1525 sometimes stops responding to tap/clicks. I
can move the cursor around but nothing happens when I click/tap on the
touchpad. I have noticed this happen when kde notifies that battery is
low. When the connect the power back, the click/tap is still disabled. I
am running kubuntu Jaunty 64 bit.

r...@ritu-tp:~# lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:Ubuntu 9.04
Release:9.04
Codename:   jaunty
r...@ritu-tp:~#

r...@ritu-tp:~# uname -a
Linux ritu-tp 2.6.28-11-generic #42-Ubuntu SMP Fri Apr 17 01:58:03 UTC 2009 
x86_64 GNU/Linux

** Affects: ubuntu
 Importance: Undecided
 Status: New

-- 
Dell 1525 Touchpad problem
https://bugs.launchpad.net/bugs/375507
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 375506] [NEW] Can't open php files, and kompozer is the predeterminate option

2009-05-12 Thread Felipe Perucho
Public bug reported:

Binary package hint: kompozer

I'm running Kompozer 0.8a3 (ppa version) on Ubuntu 9.04. I can't open
any php file with Kompozer, but the installation of Kompozer implies
that the System uses it as the first option to open php files, so the
user gets an error until he or she changes the system options.

I have a pretty standard system, with no other applications suitable to
open php files other that Gedit (or Openoffice).

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

-- 
Can't open php files, and kompozer is the predeterminate option
https://bugs.launchpad.net/bugs/375506
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 375505] [NEW] new upstream released: 1.0.9.20090508

2009-05-12 Thread LI Daobing
Public bug reported:

http://code.google.com/p/ibus/downloads/list

** Affects: ibus-chewing (Ubuntu)
 Importance: Undecided
 Assignee: LI Daobing (lidaobing)
 Status: Confirmed

** Changed in: ibus-chewing (Ubuntu)
   Status: New = Confirmed

** Changed in: ibus-chewing (Ubuntu)
 Assignee: (unassigned) = LI Daobing (lidaobing)

-- 
new upstream released: 1.0.9.20090508
https://bugs.launchpad.net/bugs/375505
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 312396] Re: Nautilus opens files over SSH as read-only when not owner.

2009-05-12 Thread Dereck Wonnacott
** Changed in: gvfs (Ubuntu Jaunty)
   Status: New = Triaged

-- 
Nautilus opens files over SSH as read-only when not owner.
https://bugs.launchpad.net/bugs/312396
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 286820] Re: blueproximity can be bypassed to not force a lock

2009-05-12 Thread Lars Friedrichs
Hi Michael, Chris,

sorry to step into this conversation way too late. I changed my job last year's 
summer and bought a house too. So it's no wonder I had little time afterwards 
to move back to development on blueproximity.
It is true that I use LP now to track things like this.
I can confirm the bug you described above. Making it more responsive is not 
possible since bluetooth itself defines some parts here. Proximity checking 
intervals can be done only once per second and there is some algorithm behind 
the link quality detection inside the bluetooth stack which also gives slower 
reaction (normalization seems to take place there).
Possible ways to fix this: reduce the lock time and distance. If you leave your 
computer unlocked, move slower :-).

Generally it is no total security tool, it can be used in many creative
ways. Locking is just the most obvious one. It is an extra security but
you should not rely on it sorely. Please keep locking your computer
manually too. Unlocking via blueproximity still works.

The other part is creating a daemon, I like the idea and it is on my list for 
blueproximity 2.0 (which itself is on the list for things to-do during the next 
12 months but it has no priority at the moment)
Idea list includes:
- using a daemon for proximity checking
- using a user part for executing the commands (I cannot see a good (secure) 
way to have the commands be executed as the user other than this daemon)
- more devices to be scanned
- more events per device to be detected
- preset of commands (via plugin mechanism) to be executed
- setting up command chains via gui only
- keeping it simple enough to still work and look good and being usable by 
standard users

At the moment I am busy with work, family, house and in the sparetime I
build a media pc for my mother, creating a nice complete remote control
for an ipod touch for mythtv. I know there are some but none of them
works as my mother would expect.

-- 
blueproximity can be bypassed to not force a lock
https://bugs.launchpad.net/bugs/286820
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 113081] Re: After hibernation cpu fan stops working

2009-05-12 Thread Stefan Bader
@Diego, can you also supply the output of grep -r . /proc/acpi/thermal and 
grep -r . /proc/acpi/fan?
An the other hand I saw that you also opened bug #375132. Is this really a 
problem of suspend or a general problem with the fan. In the second case I 
would suggest to close this one as fixed for Jaunty and work on the other bug 
on the fan issue.

** Changed in: linux (Ubuntu)
 Assignee: (unassigned) = Stefan Bader (stefan-bader-canonical)

-- 
After hibernation cpu fan stops working
https://bugs.launchpad.net/bugs/113081
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 252977] Re: Hardy and Intrepid freeze with kernel error: Eeek! page_mapcount(page) went negative! (-1)

2009-05-12 Thread Andy Whitcroft
It is most bizarre how easily those of you who are affected seem to be
able to trigger it and yet how hard the rest of us can push our systems
without triggering it at all.  You must be doing something/have
something we do not do/have.

Looking the logs it looks like @Richard and @mdz are both using
virtualisation, one with virtual-box and the other with kvm. I wonder if
there is correlation there?  Could the rest of you confirm whether you
are using one of these?

-- 
Hardy and Intrepid freeze with kernel error: Eeek! page_mapcount(page) went 
negative! (-1)
https://bugs.launchpad.net/bugs/252977
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 375508] [NEW] kernel (2.6.24-24-generic) crash in qla2xxx:qla2x00_queuecommand

2009-05-12 Thread Martin Uecker
Public bug reported:

Binary package hint: linux-image-2.6.24-24-generic


System crashed under load.

Kernel package version: 2.6.24-24.53


May 12 15:27:05 nmr-fire2 kernel: [2484482.261216] qla2xxx :0a:02.0: LIP 
reset occured (f704).
May 12 15:27:05 nmr-fire2 kernel: [2484482.286277] qla2xxx :0a:02.0: LIP 
occured (f704).
May 12 15:27:05 nmr-fire2 kernel: [2484482.778780] PGD 11f932067 PUD 2354a0067 
PMD 0 
May 12 15:27:06 nmr-fire2 kernel: [2484482.778791] CPU 6 
May 12 15:27:06 nmr-fire2 kernel: [2484482.778794] Modules linked in: 
binfmt_misc ppdev ipv6 cpufreq_conservative cpufreq_powersave cpufreq_ondemand 
cpufreq_userspace cpufreq_stats freq_table video
 output sbs sbshc dock container battery nfs lockd nfs_acl sunrpc 
iptable_filter ip_tables x_tables ext2 ac parport_pc lp parport joydev 
serio_raw psmouse iTCO_wdt iTCO_vendor_support evdev button 
shpchp pcspkr i5000_edac pci_hotplug dcdbas edac_core ext3 jbd mbcache sr_mod 
cdrom ata_piix sg usb_storage sd_mod libusual usbhid hid ata_generic ehci_hcd 
mptsas uhci_hcd pata_acpi mptscsih mptbas
e scsi_transport_sas libata usbcore floppy bnx2 qla2xxx scsi_transport_fc 
scsi_tgt scsi_mod dm_mirror dm_snapshot dm_mod thermal processor fan fbcon 
tileblit font bitblit softcursor fuse
May 12 15:27:06 nmr-fire2 kernel: [2484482.778871] Pid: 80, comm: kblockd/6 Not 
tainted 2.6.24-21-generic #1
May 12 15:27:06 nmr-fire2 kernel: [2484482.778873] RIP: 
0010:[qla2xxx:qla2x00_queuecommand+0xd2/0x1b0]  
[qla2xxx:qla2x00_queuecommand+0xd2/0x1b0] 
:qla2xxx:qla2x00_queuecommand+0xd2/0x1b0
May 12 15:27:06 nmr-fire2 kernel: [2484482.778881] RSP: 0018:810235045da0  
EFLAGS: 00010086
May 12 15:27:06 nmr-fire2 kernel: [2484482.778883] RAX: 810233a883d0 RBX: 
810233aae380 RCX: 0150
May 12 15:27:06 nmr-fire2 kernel: [2484482.778885] RDX: 810233a88000 RSI: 
88060650 RDI: 810233a88060
May 12 15:27:06 nmr-fire2 kernel: [2484482.778887] RBP: 810233954460 R08: 
055e R09: 810233aae458
May 12 15:27:06 nmr-fire2 kernel: [2484482.77] R10: 81000106dfe0 R11: 
88067b60 R12: 
May 12 15:27:06 nmr-fire2 kernel: [2484482.778890] R13: 88060650 R14: 
810233aae380 R15: 8100b0524848
May 12 15:27:06 nmr-fire2 kernel: [2484482.778892] FS:  () 
GS:810235a03980() knlGS:
May 12 15:27:06 nmr-fire2 kernel: [2484482.778894] CS:  0010 DS: 0018 ES: 0018 
CR0: 8005003b
May 12 15:27:06 nmr-fire2 kernel: [2484482.778896] CR2: 0040 CR3: 
0002354ae000 CR4: 06e0
May 12 15:27:06 nmr-fire2 kernel: [2484482.778897] DR0:  DR1: 
 DR2: 
May 12 15:27:06 nmr-fire2 kernel: [2484482.778899] DR3:  DR6: 
4ff0 DR7: 0400
May 12 15:27:06 nmr-fire2 kernel: [2484482.778901] Process kblockd/6 (pid: 80, 
threadinfo 810235044000, task 81023503cfc0)
May 12 15:27:06 nmr-fire2 kernel: [2484482.778903] Stack:  810233aae380 
0287 810233954000 8101ea85d380
May 12 15:27:06 nmr-fire2 kernel: [2484482.778910]  810233aae380 
88061010 8101ea85d380 810233a246c0
May 12 15:27:06 nmr-fire2 kernel: [2484482.778913]  8100b0524800 
810233954000 8101ea85d380 88067d85
May 12 15:27:06 nmr-fire2 kernel: [2484482.778916] Call Trace:
May 12 15:27:06 nmr-fire2 kernel: [2484482.778999]  
[scsi_mod:scsi_dispatch_cmd+0x180/0x2e0] :scsi_mod:scsi_dispatch_cmd+0x180/0x2e0
May 12 15:27:06 nmr-fire2 kernel: [2484482.779019]  
[scsi_mod:scsi_request_fn+0x225/0x3d0] :scsi_mod:scsi_request_fn+0x225/0x3d0
May 12 15:27:06 nmr-fire2 kernel: [2484482.779037]  
[floppy:generic_unplug_device+0x18/0x23c0] generic_unplug_device+0x18/0x30
May 12 15:27:06 nmr-fire2 kernel: [2484482.779042]  [blk_unplug_work+0x41/0x80] 
blk_unplug_work+0x41/0x80
May 12 15:27:06 nmr-fire2 kernel: [2484482.779048]  [cfq_kick_queue+0x29/0x50] 
cfq_kick_queue+0x29/0x50
May 12 15:27:06 nmr-fire2 kernel: [2484482.779051]  [blk_unplug_work+0x0/0x80] 
blk_unplug_work+0x0/0x80
May 12 15:27:06 nmr-fire2 kernel: [2484482.779059]  [run_workqueue+0xcc/0x170] 
run_workqueue+0xcc/0x170
May 12 15:27:06 nmr-fire2 kernel: [2484482.779063]  [worker_thread+0x0/0x110] 
worker_thread+0x0/0x110
May 12 15:27:06 nmr-fire2 kernel: [2484482.779066]  [worker_thread+0x0/0x110] 
worker_thread+0x0/0x110
May 12 15:27:06 nmr-fire2 kernel: [2484482.779069]  [worker_thread+0xa3/0x110] 
worker_thread+0xa3/0x110
May 12 15:27:06 nmr-fire2 kernel: [2484482.779077]  [80253bf0] 
autoremove_wake_function+0x0/0x30
May 12 15:27:06 nmr-fire2 kernel: [2484482.779082]  [worker_thread+0x0/0x110] 
worker_thread+0x0/0x110
May 12 15:27:06 nmr-fire2 kernel: [2484482.779085]  [worker_thread+0x0/0x110] 
worker_thread+0x0/0x110
May 12 15:27:06 nmr-fire2 kernel: [2484482.779087]  [kthread+0x4b/0x80] 
kthread+0x4b/0x80
May 12 15:27:06 nmr-fire2 kernel: [2484482.779094]  

[Bug 374487] Re: no sound in Ubuntu 9.04 64bit

2009-05-12 Thread Brian Murray
It doesn't look like all the attachments that should have been added
were added.  Could you try executing the same command again?  Thanks in
advance.

-- 
no sound in Ubuntu 9.04 64bit
https://bugs.launchpad.net/bugs/374487
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 358967] Re: Face browser empty after upgrade to jaunty

2009-05-12 Thread Sebastien Bacher
the confusing option is bug #215330 but there is no reason the
configuration should have changed on upgrade

-- 
Face browser empty after upgrade to jaunty
https://bugs.launchpad.net/bugs/358967
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 354995] Re: Brasero Checksum Error

2009-05-12 Thread vocx
I don't think a definite answer has been given.
This errors still occurs.
Or perhaps somebody can show that this is a duplicate to another bug?

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

-- 
Brasero Checksum Error
https://bugs.launchpad.net/bugs/354995
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 334968] Re: evolution doesn't send photo from picasa

2009-05-12 Thread Bug Watch Updater
** Changed in: evolution
   Status: Unknown = New

-- 
evolution doesn't send photo from picasa
https://bugs.launchpad.net/bugs/334968
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 281812] Re: gdmsetup has duplicate style options for Themed

2009-05-12 Thread Sebastien Bacher
*** This bug is a duplicate of bug 215330 ***
https://bugs.launchpad.net/bugs/215330

** This bug has been marked a duplicate of bug 215330
   GDM configuration for faces is confusing

-- 
gdmsetup has duplicate style options for Themed
https://bugs.launchpad.net/bugs/281812
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 261937] Re: Ubuntu server freeze when running more than one cpu in VMware ESX 3

2009-05-12 Thread Stefan Bader
I think this should be fixed with the latest Hardy kernels (not the VMI
case, though). James/Mike could you confirm this please?

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

-- 
Ubuntu server freeze when running more than one cpu in VMware ESX 3
https://bugs.launchpad.net/bugs/261937
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 151621] Re: Cursor Disappears - Nvidia Card

2009-05-12 Thread Andy Fitzsimon
I can confirm this bug still exists in jaunty and crackies fix is
ineffective

-- 
Cursor Disappears - Nvidia Card
https://bugs.launchpad.net/bugs/151621
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 357170] Re: Network Manager plasmoid cannot set IEEE8021X Security method

2009-05-12 Thread charles.figura
So maybe the real question should be Why does the WPA- PEAP setting
NOT work for the intel 3945 chip, but the IEEE8021X-PEAP setting DOES?

Are these two distinctly different types of network, or is there
something screwy with the intel 3945 driver?

-- 
Network Manager plasmoid cannot set IEEE8021X Security method
https://bugs.launchpad.net/bugs/357170
You received this bug notification because you are a member of Kubuntu
Bugs, which is subscribed to plasma-widget-network-manager in ubuntu.

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


[Bug 313040] Re: blueproximity calls the proximity command twice each interval

2009-05-12 Thread Lars Friedrichs
@jsalvata:
oh, and could you tell me in what environment this error popped up? were you 
checking presence of multiple devices? I'd like to reproduce that bug later at 
home.

-- 
blueproximity calls the proximity command twice each interval
https://bugs.launchpad.net/bugs/313040
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 276949] Re: No driver for HP Webcam - 15b8:6002

2009-05-12 Thread Ike Panhc
Hi Scott,

I build the kernel in x86 version, so it shall work fine with AMD64
system

If you are worried. I will make a AMD64 kernel for you

-- 
No driver for HP Webcam - 15b8:6002
https://bugs.launchpad.net/bugs/276949
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 313040] Re: blueproximity calls the proximity command twice each interval

2009-05-12 Thread Lars Friedrichs
@jsalvata:
could you explain what the patch modifies and for which reason? I may recheck 
the patch then so I might include it upstream. I am at work now, so I don't 
have my development environment here with me.

-- 
blueproximity calls the proximity command twice each interval
https://bugs.launchpad.net/bugs/313040
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 366920] Re: New notification system not working after upgrade

2009-05-12 Thread Mirco Müller
What exactely do you mean by not there/working? Are you missing icons
in the notifications on your freshly installed laptop?

To narrow down what's actually not working correctly on your laptop set
the icon theme to Human. Try these commands:

notify-send Joe Doe This is a test message -i notification-message-im
notify-send New eMail arrived -i notification-message-email
notify-send Volume -i notification-audio-volume-medium -h int:value:75 -h 
string:x-canonical-private-synchronous:

Attach screenshots of these notifications to this bug-report.

Change you icon-theme back to your usual one and repeat these commands:

notify-send Joe Doe This is a test message -i notification-message-im
notify-send New eMail arrived -i notification-message-email
notify-send Volume -i notification-audio-volume-medium -h int:value:75 -h 
string:x-canonical-private-synchronous:

Also make screenshots of these and attach them to this bug-report.
Thanks in advance.

** Changed in: notify-osd (Ubuntu)
   Status: New = Incomplete

** Changed in: notify-osd (Ubuntu)
 Assignee: (unassigned) = Mirco Müller (macslow)

-- 
New notification system not working after upgrade
https://bugs.launchpad.net/bugs/366920
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 367049] Re: notify-osd is very, very slow

2009-05-12 Thread manzur
 @mannheim, it is exactly what is happening to me, when I hold volume-up
key on my keyboard for a while and then I release it, it begins to light
up a lot of times, it is horrible, i would like to upload a video, let
me see if I can do it

-- 
notify-osd is very, very slow
https://bugs.launchpad.net/bugs/367049
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 375509] [NEW] missing include, causing build failures on ia64

2009-05-12 Thread Matthias Klose
Public bug reported:

asm/fpu.h is missing an include of asm/types.h, needed to resolve the 
__IA64_UL macro.
regression from jaunty, causes build failure in glibc 2.10.

** Affects: linux-ports (Ubuntu)
 Importance: High
 Status: Triaged

** Affects: linux-ports (Ubuntu Karmic)
 Importance: High
 Status: Triaged

** Changed in: linux-ports (Ubuntu)
   Importance: Undecided = High

** Changed in: linux-ports (Ubuntu)
   Status: New = Triaged

** Changed in: linux-ports (Ubuntu)
Milestone: None = karmic-alpha-2

** Also affects: linux-ports (Ubuntu Karmic)
   Importance: High
   Status: Triaged

-- 
missing include, causing build failures on ia64
https://bugs.launchpad.net/bugs/375509
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 329155] Re: if there isn't enough space in /tmp for a screenshot, gnome-screenshot cannot save the screenshot at all

2009-05-12 Thread Pedro Villavicencio
Couldn't find the exact number but there's a couple of upstream related
issues, anyways this should be send upstream and let them decide what to
do, as Sebastien said if you don't have enough space for saving files on
tmp that is going to lead to multiple issues, like sessions not working,
not being able to login, etc, indeed it could be better and display a
message about it, feel free to send it upstream at bugzilla.gnome.org.
thanks.

-- 
if there isn't enough space in /tmp for a screenshot, gnome-screenshot cannot 
save the screenshot at all
https://bugs.launchpad.net/bugs/329155
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 374800] Re: The very end user performance test case : ADSL TV playback

2009-05-12 Thread Romuald
Additionnal information: watching SDTV on the Mac with Ubuntu was
possible with Hardy (madwifi and the fglrx driver), HDTV was not
possible at that time, but SDTV was perfectly watchable.

As this is no more possible since Intrepid, we can state there is a big
performance regression between Hardy and Intrepid.

-- 
The very end user performance test case : ADSL TV playback
https://bugs.launchpad.net/bugs/374800
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 365733] Re: Jaunty - Wireless issue causes laptop shutdown to hang indefinitely

2009-05-12 Thread Brad Figg
Per the kernel team's bug policy can you please run the following
command from a terminal window (Applications-Accessories-Terminal).
It will automatically gather and attach relevant debug information to
this bug report:

apport-collect -p linux-image-`uname -r` bug#

For more information regarding the kernel team bug policy, please refer
to https://wiki.ubuntu.com/KernelTeamBugPolicies .  Thanks again and we
appreciate your help and feedback.

-- 
Jaunty - Wireless issue causes laptop shutdown to hang indefinitely
https://bugs.launchpad.net/bugs/365733
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 365733] Re: Jaunty - Wireless issue causes laptop shutdown to hang indefinitely

2009-05-12 Thread Brad Figg
Per the kernel team's bug policy can you please run the following
command from a terminal window (Applications-Accessories-Terminal).
It will automatically gather and attach relevant debug information to
this bug report:

apport-collect -p linux-image-`uname -r` 365733

For more information regarding the kernel team bug policy, please refer
to https://wiki.ubuntu.com/KernelTeamBugPolicies .  Thanks again and we
appreciate your help and feedback.


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

** Changed in: linux (Ubuntu)
 Assignee: (unassigned) = Brad Figg (brad-figg)

-- 
Jaunty - Wireless issue causes laptop shutdown to hang indefinitely
https://bugs.launchpad.net/bugs/365733
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 353989] Re: Import saves images in home root

2009-05-12 Thread Tiefflieger
I broke my Camera, so I can't check if this bug is present any longer
:-(

-- 
Import saves images in home root
https://bugs.launchpad.net/bugs/353989
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 305394] Re: No subpixel smoothing

2009-05-12 Thread Botond Szász
This bug still isn't fixed (or was reintroduced) in Jaunty as of May 12,
2009 with Firefox from the original Ubuntu repositories. My install is
up to date.

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

-- 
No subpixel smoothing
https://bugs.launchpad.net/bugs/305394
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 252977] Re: Hardy and Intrepid freeze with kernel error: Eeek! page_mapcount(page) went negative! (-1)

2009-05-12 Thread Andy Whitcroft
@Thomas -- could you attach your dmesg output when this occurs please.

-- 
Hardy and Intrepid freeze with kernel error: Eeek! page_mapcount(page) went 
negative! (-1)
https://bugs.launchpad.net/bugs/252977
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 208440] Re: Evolution stuck filtering messages - will not quit

2009-05-12 Thread Pedro Villavicencio
last problem seems to be related to the new email notify, may you please
open a new bug about it? thanks.

-- 
Evolution stuck filtering messages - will not quit
https://bugs.launchpad.net/bugs/208440
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 139227] Re: Make gdebi harder to use (was: Disable support for adding repositories)

2009-05-12 Thread Jamie Strandboge
I'm sorry, but this bug is all over the place. Initially it was 'make
gdebi harder to use' but it has morphed into a wishlist of desired
behaviors for gdebi leading to a situation where there is no way to
address this bug.

Any user who downloads a deb file and runs gdebi on it is explicitly
trusting that file to do *anything and everything* as root. If we put in
some mechanism for gdebi to alert if something is added to sources.list
or /etc/apt/sources.list.d, the maintainer scripts could easily subvert
it (eg, add something to cron, at, etc, etc), not to mention the
binaries themselves. My feeling is the gdebi portion of this bug should
be marked Won't Fix as there won't be a reasonable way to protect a
user from untrusted debs.

Forcing the user to download a file from firefox onto the desktop and
then double clicking it to install via gdebi seems specious and not real
security. The user downloading the deb will dutifully jump through that
hoop without a second thought.

Michael, please let me know if I'm missing something in my analysis. If
not, I suggest marking as Won't Fix and possibly (though I don't think
we should) open another Wishlist bug against firefox requesting gdebi
not be called by firefox.

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

** Changed in: gdebi (Ubuntu)
 Assignee: (unassigned) = Jamie Strandboge (jdstrand)

-- 
Make gdebi harder to use (was: Disable support for adding repositories)
https://bugs.launchpad.net/bugs/139227
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 90405] Re: Lost key combinations in KDE

2009-05-12 Thread TTL
I had a similar problem after upgrading from 8.04 to 9.04 and using the KDE 
3.5.10 from an alternate repo. The kmenuedit did not let me assign a key.
As workaround, open ~/.kde3/share/config/khotkeysrc
search for the key combination and remove the entry where it is found.
After this, it is possible to re-assign the key combination.

Note: This bug looks similar to the KDE 4.1 Bug:
https://bugs.launchpad.net/ubuntu/+source/meta-kde/+bug/296533

-- 
Lost key combinations in KDE
https://bugs.launchpad.net/bugs/90405
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 191470] Re: Pcbnew crashes while attempting 3D view

2009-05-12 Thread Hồng Quân
Oh, thank you

-- 
Pcbnew crashes while attempting 3D view
https://bugs.launchpad.net/bugs/191470
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 116984] Re: Applications can't connect to avahi-daemon until avahi is restarted once.

2009-05-12 Thread jcornwall
Thanks for testing that.

This means it is likely that the problem lies with Avahi or in
miscommunication between mt-daapd and Avahi. The problem seems to be
this:

1) Avahi starts up.
2) mt-daapd connects and advertises its service.
3) DHCP assigns an IP to the system.
4) Avahi acknowledges the IP change.
5) [mt-daapd does not get readvertised on the right IP]

It happens to work when you restart Avahi because:

1) mt-daapd disconnects from the stopped service.
2) Avahi starts up and registers on the available IPs.
3) mt-daapd connects and advertises its service.

(The ordering of 2 and 3 is unsafe).

Or when you restart mt-daapd because:

1) mt-daapd connects and advertises its service.

The question of which daemon is at fault is not clear. I will take a
closer look at the API tonight to determine which is the case, and plan
an appropriate fix either way.

-- 
Applications can't connect to avahi-daemon until avahi is restarted once.
https://bugs.launchpad.net/bugs/116984
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 371614] Re: Upgrade 8.10 -- 9.04 : ext3 Filesystem read-only

2009-05-12 Thread pjw
typo: checkroot.sh not checkfs.sh !

Why is it not possible to edit my own comment?

-- 
Upgrade 8.10 -- 9.04 : ext3 Filesystem read-only
https://bugs.launchpad.net/bugs/371614
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 366314] Re: virtualization limitation: does not detect blank cd-rw

2009-05-12 Thread Kazagistar
Due to the nature of virtual machines, they cannot talk to hardware
directly. When you read a disk, you are actually communicating with an
emulated drive, which then in turn reads the CD. To directly access
hardware, you need IOMMU support in hardware (something not commonly
found) and support for it in software (also something rare amongst
virtualization solutions). Alternatively, it might be possible to add
support to the emulated driver for writing, but then you wouldn't be
testing the guest system's burning, but rather the host.

-- 
virtualization limitation: does not detect blank cd-rw
https://bugs.launchpad.net/bugs/366314
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 375503] Re: maximized windows have titles covered by gnome-panel in twin view mode

2009-05-12 Thread Sigmund Baginov
** Description changed:

  Binary package hint: gnome-panel
  
  I have been running twin view and separate xscreens modes for a while, but 
after upgrading to Jaunty (read installing it for scratch) I have found that in 
twin view mode - with one screen above another only (eg. laptop+TV) - the 
maximized windows  get overlapped by the gnome-panel app, so that the windows 
titles and control buttons are not accessible, but hidden.
  Related to the gnome-panel, too, is that the gnome-panel does not often hide 
itself when it should be expected: for instance, a maximized totem movie should 
make the gnome-panel automatically disappear; but this does not happen 
sometimes as well.
  In twin view mode with one screen on the right, no problem gets shown.
  
  The only way to solve these minor issues is to take the gnome-panel down
  and/or to hide it.
  
  
- FYI: I only run one gnome-panel per screen, generally in the upper side in 
every my twin view configuration, vertical and horizontal.
+ FYI:
+ - I only run one gnome-panel per screen, generally in the upper side in every 
my twin view configuration, vertical and horizontal.
+ - xorg is running with compiz fusion and nvidia proprietary drivers v. 180.44
  
- AFAIK it is currently a Jaunty only problem, having never experienced it
- with previous releases.
+ 
+ AFAIK it is currently a Jaunty only problem, having never experienced it with 
previous releases.

** Tags added: gnome-panel maximized windows

-- 
maximized windows have titles covered by gnome-panel in twin view mode
https://bugs.launchpad.net/bugs/375503
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 275359] Re: kernel BUG at /build/buildd/linux-2.6.27/drivers/net/wireless/iwlwifi/iwl-tx.c:1198 and subsequent panic

2009-05-12 Thread Bernhard Schmidt
This bug is fixed for me on Jaunty (with 4965AGN). According to
http://www.intellinuxwireless.org/bugzilla/show_bug.cgi?id=1703 the fix
does not apply to the 5000 series, the fixed ucode on that chipset is
not released yet
(http://www.intellinuxwireless.org/bugzilla/show_bug.cgi?id=1946).

** Bug watch added: Intel Wireless Linux Bugzilla #1946
   http://www.intellinuxwireless.org/bugzilla/show_bug.cgi?id=1946

-- 
kernel BUG at 
/build/buildd/linux-2.6.27/drivers/net/wireless/iwlwifi/iwl-tx.c:1198 and 
subsequent panic
https://bugs.launchpad.net/bugs/275359
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 375512] Re: include into main

2009-05-12 Thread Martin Pitt
https://wiki.ubuntu.com/MainInclusionReport/DeviceKitDisks

-- 
include into main
https://bugs.launchpad.net/bugs/375512
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 375512] [NEW] include into main

2009-05-12 Thread Martin Pitt
Public bug reported:

Binary package hint: devicekit-disks

required by gvfs now

** Affects: devicekit-disks (Ubuntu)
 Importance: Undecided
 Status: New

-- 
include into main
https://bugs.launchpad.net/bugs/375512
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 375514] [NEW] Rhythmbox closes completely when used for synching with iPod

2009-05-12 Thread The Dude
Public bug reported:

Binary package hint: rhythmbox

When attempting to copy/paste or drag and drop files, Rhythmbox closes
completely with no warning or noted errors.

ProblemType: Bug
Architecture: i386
Date: Tue May 12 12:42:52 2009
DistroRelease: Ubuntu 8.04
ExecutablePath: /usr/bin/rhythmbox
Package: rhythmbox 0.11.5-0ubuntu8
PackageArchitecture: i386
ProcEnviron:
 SHELL=/bin/bash
 PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
 LANG=en_CA.UTF-8
SourcePackage: rhythmbox
Uname: Linux 2.6.24-24-generic i686

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


** Tags: apport-bug

-- 
Rhythmbox closes completely when used for synching with iPod
https://bugs.launchpad.net/bugs/375514
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 375513] [NEW] Multiple CVEs for Squirrelmail 1.4.17

2009-05-12 Thread Leonel Nunez
Public bug reported:

CSS positioning vulnerability   CVE-2009-1581
Session fixation vulnerability   CVE-2009-1580
Server-side code injection in map_yp_alias username map CVE-2009-1579
Cross site scripting issues in decrypt_headers.php CVE-2009-1578
Multiple cross site scripting issues   CVE-2009-1578

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

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

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

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

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

-- 
Multiple CVEs for Squirrelmail  1.4.17
https://bugs.launchpad.net/bugs/375513
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 369606] Re: Computer wakes up to GDM from sleep. Session is not recovered

2009-05-12 Thread sacha
Are you using pulseaudio ? If so, you may want to take a look at
http://ubuntuforums.org/archive/index.php/t-1135767.html

-- 
Computer wakes up to GDM from sleep. Session is not recovered
https://bugs.launchpad.net/bugs/369606
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   >