[Bug 66796] Re: I can't install it...

2006-10-18 Thread Mike
It won't let me install libglu-dev. It changes it to libglu1-mesa-dev.

sudo apt-get install libglu-dev
Reading package lists... Done
Building dependency tree   
Reading state information... Done
Note, selecting libglu1-mesa-dev instead of libglu-dev
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.

Since you only requested a single operation it is extremely likely that
the package is simply not installable and a bug report against
that package should be filed.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
  libglu1-mesa-dev: Depends: libglu1-mesa (= 6.5.1~20060817-0ubuntu3) but 
6.5.1+cvs20060824 is to be installed
E: Broken packages

-- 
I can't install it...
https://launchpad.net/bugs/66796

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


[Bug 66869] Double click on "Floppy Drive" in Computer location jumps to / directory

2006-10-18 Thread Luca Ferretti
Public bug reported:

Binary package hint: nautilus

## Steps to Reproduce ##
Try to mount and browse a floppy disk:
 1. Put a floppy disk in your floppy drive
 2. Open the Computer location in browser window
 3. Double click on "Floppy Drive" icon
 
## Current Behavior ##
The floppy disk is mounted, then nautilus (browser) jump to / (root) directory.

## Expected Behavior ##
Nautilus should jump to the mountpoint for floppy disk (/media/floppy) when the 
disk is mounted.

## Additional Info ##
If you disable the automount for CD/DVD and try to do the same to mount and 
view the CD/DVD disk contents, it works fine. 

## Severity ##
High, IMHO. This is a really really bad behavior for unexepienced users: they 
expects to browse the selected item, not another location.

## Thanks ##
My mum, she discovered it while I wasn't at home. She thinks I've hacked 
something to annoy her

** Affects: nautilus (Ubuntu)
 Importance: Undecided
 Status: Unconfirmed

-- 
Double click on "Floppy Drive" in Computer location jumps to / directory
https://launchpad.net/bugs/66869

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


[Bug 66537] Re: kinoplus 0.3.5-3 breaks kino 0.9

2006-10-18 Thread Duncan Lithgow
Roland Mas (Debian maintainer of kinoplus) wrote:

... it so happens that the package isn't
broken.  kinoplus 0.3.5-3 works just fine here on Debian.  No segfault
on startup, no crash when using its video filters.  So I suspect the
problem isn't actually with kinoplus upstream.  For the record: the
working behaviour can be observed with kino 0.92-1 here on Debian.

-- 
kinoplus 0.3.5-3 breaks kino 0.9
https://launchpad.net/bugs/66537

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


[Bug 59539] Re: Video playback colour is wrong

2006-10-18 Thread Lachlan
Sadly this still exists for me. And it is not my video card, because I
can boot into windows and then play video with correct colour using
windows apps and drivers.

-- 
Video playback colour is wrong
https://launchpad.net/bugs/59539

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


[Bug 66796] Re: I can't install it...

2006-10-18 Thread Mike
sudo apt-get install libglu1-mesa-dev
Reading package lists... Done
Building dependency tree   
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.

Since you only requested a single operation it is extremely likely that
the package is simply not installable and a bug report against
that package should be filed.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
  libglu1-mesa-dev: Depends: libglu1-mesa (= 6.5.1~20060817-0ubuntu3) but 
6.5.1+cvs20060824 is to be installed
E: Broken packages

This is what I receive when I try to install it.

-- 
I can't install it...
https://launchpad.net/bugs/66796

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


[Bug 16939] Re: trackball is too clicky

2006-10-18 Thread Johan Walles
Unforturnately not, the hardware has recently been scrapped.

-- 
trackball is too clicky
https://launchpad.net/bugs/16939

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


[Bug 66865] Re: Lacks support for other programs (VSFTPD)

2006-10-18 Thread Kai Kasurinen
Thanks for the bug report. This particular bug has already been
reported into our bug tracking system, but please feel free to report
any further bugs which you find.

** This bug has been marked a duplicate of bug 57538
   Package does not include example config files

** This bug is no longer a duplicate of bug 57538
   Package does not include example config files

-- 
Lacks support for other programs (VSFTPD)
https://launchpad.net/bugs/66865

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


[Bug 66865] Re: Lacks support for other programs (VSFTPD)

2006-10-18 Thread Kai Kasurinen
Uups, not duplicate.

-- 
Lacks support for other programs (VSFTPD)
https://launchpad.net/bugs/66865

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


[Bug 66866] gettext doesn't in Dapper

2006-10-18 Thread Jeffrey Ratcliffe
Public bug reported:

Save following as gettextdemo.c
Compile with gcc -o gettextdemo gettextdemo.c

#include 
#include 
#include 
#include 
int main(void)
{
  setlocale( LC_ALL, "" );
  bindtextdomain( "my_domain", "./" );
  textdomain( "my_domain" );
   printf( gettext( "Welcome to my program" ) );
   printf( "\n" );
   exit(0);
 }

Save following as ./de_DE/LC_MESSAGES/my_domain.po

domain "my_domain"

msgid  "Welcome to my program"
msgstr "Willkommen in meinem Program"

Create .mo with cd de_DE/LC_MESSAGES; msgfmt my_domain.po

Test. On my RH4 machine:

$ ./gettextdemo
Welcome to my program
$ LANG=de_DE ./gettextdemo
Willkommen in meinem Program

On my Dapper machine:

$ ./gettextdemo
Welcome to my program
$ LANG=de_DE ./gettextdemo
Welcome to my program

** Affects: gettext (Ubuntu)
 Importance: Undecided
 Status: Unconfirmed

-- 
gettext doesn't in Dapper
https://launchpad.net/bugs/66866

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


[Bug 64387] Re: [Edgy] powersaved and kpowersave ->issues under KDE

2006-10-18 Thread sohail
Me too! Same bug.

-- 
[Edgy] powersaved and kpowersave ->issues under KDE
https://launchpad.net/bugs/64387

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


[Bug 66865] Lacks support for other programs (VSFTPD)

2006-10-18 Thread JSVH
Public bug reported:

The original includes support for many other programs including VSFTPD.
I finally found a config file
(http://www.greenhydrant.com/~drees/stuff/fail2ban.conf) and copied the
"VSFTPD" section into my config file. It works, but I am getting alot of
"WARNING: Must have been using old style of failregex! Security Breach!
Read README.Debian" errors. Better example config files could also fix
this (Bug #57538).

** Affects: fail2ban (Ubuntu)
 Importance: Undecided
 Status: Unconfirmed

-- 
Lacks support for other programs (VSFTPD)
https://launchpad.net/bugs/66865

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


[Bug 66864] crash from saving Office document

2006-10-18 Thread akkiet
Public bug reported:

My homework is given in a Office doc file. I edit it and save. The
saving step crashes OpenOffice Word.

** Affects: openoffice.org (Ubuntu)
 Importance: Undecided
 Status: Unconfirmed

-- 
crash from saving Office document
https://launchpad.net/bugs/66864

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


[Bug 66864] Re: crash from saving Office document

2006-10-18 Thread akkiet
i'm running OpenOffice in ubuntu edgy beta w/ xgl-beryl.

-- 
crash from saving Office document
https://launchpad.net/bugs/66864

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


[Bug 66864] Re: crash from saving Office document

2006-10-18 Thread akkiet

** Attachment added: "crash report/trace"
   
http://librarian.launchpad.net/4890231/_usr_lib_openoffice_program_soffice.bin.1000.crash

-- 
crash from saving Office document
https://launchpad.net/bugs/66864

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


[Bug 31889] Re: Cannot start eclipse: libswt-mozilla-gtk-3139.so: undefined symbol: NS_InitEmbedding

2006-10-18 Thread Reinhard Tartler
Setting to confirmed, several ppl besides me can confirm this

** Changed in: eclipse (Ubuntu)
   Status: Needs Info => Confirmed

-- 
Cannot start eclipse: libswt-mozilla-gtk-3139.so: undefined symbol: 
NS_InitEmbedding
https://launchpad.net/bugs/31889

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


[Bug 66862] Re: scipy not built with atlas support ?

2006-10-18 Thread David Cournapeau
** Description changed:

  When installing python-numpy, python-numpy-ext and python-scipy, and
  when testing the installed packages with a python -c "import scipy as S;
  S.test()", errors are reported concerning scipy.lib.lapack:
  
  
  WARNING: clapack module is empty
  ---
  See scipy/INSTALL.txt for troubleshooting.
  Notes:
  * If atlas library is not found by numpy/distutils/system_info.py,
then scipy uses flapack instead of clapack.
  
  
  Why does the numpy package of ubuntu  depend on atlas3-base, but
  building the package reports a conflict with atlas3-base ? I think this
  may be somewhat related (if the numpy package is not built with atlas3,
  then scipy cannot find the atlas informations)
+ 
+ If I rebuild numpy and scipy packages with atlas installed, and
+ overwritting dependency checking in dpkg-buildpackage, the issues seems
+ to disappear, which seems to imply that the above remark on numpy/atlas
+ is valid

-- 
scipy not built with atlas support ?
https://launchpad.net/bugs/66862

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


[Bug 66534] Re: Ark does not process archives containing files with cyrillic names

2006-10-18 Thread jaded Phoenix
I have made some investigations on the problem and discovered the following:
the text that appears in the konsole, is an cp1251 (windows) one, recoded in 
dos-866, and then displayed in utf8.

So the solution would be to somehow prevent recoding while piping the
backend output, and recode with the means of the program (some options
for that should be made available).


But maybe someone knows a better solution (e.g., krusader works fine, maybe 
there is a working solution for konqueror)?

-- 
Ark does not process archives containing files with cyrillic names
https://launchpad.net/bugs/66534

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


[Bug 61767] Re: External disks PPC bootstrap partition are automounted

2006-10-18 Thread didier
Sorry for the delay but it's still there.

It's not shown on the desktop anymore but it's still mounted:
$ mount

/dev/sda12 on /media/bootstrap type hfs
(rw,nosuid,nodev,uid=1000,gid=1000)

I'm not sure it's the right place but in :
/usr/share/hal/scripts/hal-system-storage-mount
pmount is called before the test of
$HAL_PROP_VOLUME_IGNORE

-- 
External disks PPC bootstrap partition are automounted
https://launchpad.net/bugs/61767

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


[Bug 66863] Re: Initial USER command returns -ERR Unkown command

2006-10-18 Thread Russell Smith
Example strace of login procedure.

850   gettimeofday({1161233890, 75122}, {4294966696, 0}) = 0
850   gettimeofday({1161233890, 75217}, NULL) = 0
850   poll([{fd=7, events=POLLIN|POLLPRI|POLLERR|POLLHUP|POLLNVAL}, {fd=10, 
events=POLLIN|POLLPRI|POLLERR|POLLHUP|POLLNVAL}, {fd=3, 
events=POLLIN|POLLPRI|POLLERR|POLLHUP|POLLNVAL}, {fd=9, 
events=POLLIN|POLLPRI|POLLERR|POLLHUP|POLLNVAL}], 4, 445) = 0
850   gettimeofday({1161233890, 531827}, {4294966696, 0}) = 0
850   gettimeofday({1161233890, 531891}, NULL) = 0
850   poll([{fd=7, events=POLLIN|POLLPRI|POLLERR|POLLHUP|POLLNVAL}, {fd=10, 
events=POLLIN|POLLPRI|POLLERR|POLLHUP|POLLNVAL}, {fd=3, 
events=POLLIN|POLLPRI|POLLERR|POLLHUP|POLLNVAL}, {fd=9, 
events=POLLIN|POLLPRI|POLLERR|POLLHUP|POLLNVAL}], 4, 0) = 0
850   gettimeofday({1161233890, 532028}, {4294966696, 0}) = 0
850   gettimeofday({1161233890, 532098}, NULL) = 0
850   poll([{fd=7, events=POLLIN|POLLPRI|POLLERR|POLLHUP|POLLNVAL}, {fd=10, 
events=POLLIN|POLLPRI|POLLERR|POLLHUP|POLLNVAL}, {fd=3, 
events=POLLIN|POLLPRI|POLLERR|POLLHUP|POLLNVAL}, {fd=9, 
events=POLLIN|POLLPRI|POLLERR|POLLHUP|POLLNVAL}], 4, 999) = 0
850   gettimeofday({1161233891, 541849}, {4294966696, 0}) = 0
850   gettimeofday({1161233891, 541915}, NULL) = 0
850   poll([{fd=7, events=POLLIN|POLLPRI|POLLERR|POLLHUP|POLLNVAL}, {fd=10, 
events=POLLIN|POLLPRI|POLLERR|POLLHUP|POLLNVAL}, {fd=3, 
events=POLLIN|POLLPRI|POLLERR|POLLHUP|POLLNVAL}, {fd=9, 
events=POLLIN|POLLPRI|POLLERR|POLLHUP|POLLNVAL}], 4, 0) = 0
850   gettimeofday({1161233891, 542054}, {4294966696, 0}) = 0
850   gettimeofday({1161233891, 542124}, NULL) = 0
850   poll([{fd=7, events=POLLIN|POLLPRI|POLLERR|POLLHUP|POLLNVAL}, {fd=10, 
events=POLLIN|POLLPRI|POLLERR|POLLHUP|POLLNVAL}, {fd=3, 
events=POLLIN|POLLPRI|POLLERR|POLLHUP|POLLNVAL}, {fd=9, 
events=POLLIN|POLLPRI|POLLERR|POLLHUP|POLLNVAL}], 4, 999) = 0
850   gettimeofday({1161233892, 551853}, {4294966696, 0}) = 0
850   gettimeofday({1161233892, 551920}, NULL) = 0
850   poll([{fd=7, events=POLLIN|POLLPRI|POLLERR|POLLHUP|POLLNVAL}, {fd=10, 
events=POLLIN|POLLPRI|POLLERR|POLLHUP|POLLNVAL}, {fd=3, 
events=POLLIN|POLLPRI|POLLERR|POLLHUP|POLLNVAL}, {fd=9, 
events=POLLIN|POLLPRI|POLLERR|POLLHUP|POLLNVAL}], 4, 0) = 0
850   gettimeofday({1161233892, 552061}, {4294966696, 0}) = 0
850   gettimeofday({1161233892, 552135}, NULL) = 0
850   poll([{fd=7, events=POLLIN|POLLPRI|POLLERR|POLLHUP|POLLNVAL}, {fd=10, 
events=POLLIN|POLLPRI|POLLERR|POLLHUP|POLLNVAL}, {fd=3, 
events=POLLIN|POLLPRI|POLLERR|POLLHUP|POLLNVAL}, {fd=9, 
events=POLLIN|POLLPRI|POLLERR|POLLHUP|POLLNVAL}], 4, 999) = 0
850   gettimeofday({1161233893, 561839}, {4294966696, 0}) = 0
850   gettimeofday({1161233893, 561906}, NULL) = 0
850   poll([{fd=7, events=POLLIN|POLLPRI|POLLERR|POLLHUP|POLLNVAL}, {fd=10, 
events=POLLIN|POLLPRI|POLLERR|POLLHUP|POLLNVAL}, {fd=3, 
events=POLLIN|POLLPRI|POLLERR|POLLHUP|POLLNVAL}, {fd=9, 
events=POLLIN|POLLPRI|POLLERR|POLLHUP|POLLNVAL}], 4, 0) = 0
850   gettimeofday({1161233893, 562046}, {4294966696, 0}) = 0
850   gettimeofday({1161233893, 562116}, NULL) = 0
850   poll([{fd=7, events=POLLIN|POLLPRI|POLLERR|POLLHUP|POLLNVAL}, {fd=10, 
events=POLLIN|POLLPRI|POLLERR|POLLHUP|POLLNVAL}, {fd=3, 
events=POLLIN|POLLPRI|POLLERR|POLLHUP|POLLNVAL}, {fd=9, 
events=POLLIN|POLLPRI|POLLERR|POLLHUP|POLLNVAL}], 4, 999) = 0
850   gettimeofday({1161233894, 571829}, {4294966696, 0}) = 0
850   gettimeofday({1161233894, 571897}, NULL) = 0
850   poll([{fd=7, events=POLLIN|POLLPRI|POLLERR|POLLHUP|POLLNVAL}, {fd=10, 
events=POLLIN|POLLPRI|POLLERR|POLLHUP|POLLNVAL}, {fd=3, 
events=POLLIN|POLLPRI|POLLERR|POLLHUP|POLLNVAL}, {fd=9, 
events=POLLIN|POLLPRI|POLLERR|POLLHUP|POLLNVAL}], 4, 0) = 0
850   gettimeofday({1161233894, 572038}, {4294966696, 0}) = 0
850   gettimeofday({1161233894, 572111}, NULL) = 0
850   poll([{fd=7, events=POLLIN|POLLPRI|POLLERR|POLLHUP|POLLNVAL}, {fd=10, 
events=POLLIN|POLLPRI|POLLERR|POLLHUP|POLLNVAL}, {fd=3, 
events=POLLIN|POLLPRI|POLLERR|POLLHUP|POLLNVAL}, {fd=9, 
events=POLLIN|POLLPRI|POLLERR|POLLHUP|POLLNVAL}], 4, 999) = 0
850   gettimeofday({1161233895, 581804}, {4294966696, 0}) = 0
850   gettimeofday({1161233895, 581870}, NULL) = 0
850   poll([{fd=7, events=POLLIN|POLLPRI|POLLERR|POLLHUP|POLLNVAL}, {fd=10, 
events=POLLIN|POLLPRI|POLLERR|POLLHUP|POLLNVAL}, {fd=3, 
events=POLLIN|POLLPRI|POLLERR|POLLHUP|POLLNVAL}, {fd=9, 
events=POLLIN|POLLPRI|POLLERR|POLLHUP|POLLNVAL}], 4, 0) = 0
850   gettimeofday({1161233895, 582089}, {4294966696, 0}) = 0
850   gettimeofday({1161233895, 582159}, NULL) = 0
850   poll([{fd=7, events=POLLIN|POLLPRI|POLLERR|POLLHUP|POLLNVAL}, {fd=10, 
events=POLLIN|POLLPRI|POLLERR|POLLHUP|POLLNVAL}, {fd=3, 
events=POLLIN|POLLPRI|POLLERR|POLLHUP|POLLNVAL}, {fd=9, 
events=POLLIN|POLLPRI|POLLERR|POLLHUP|POLLNVAL, revents=POLLIN}], 4, 999) = 1
850   gettimeofday({1161233896, 74911}, {4294966696, 0}) = 0
850   read(9, "user [EMAIL PROTECTED]", 4075) = 21
850   setsockopt(9, SOL_TCP, TCP_CORK, [1], 4) = 0
850   setsockopt(9, SOL_TCP, TCP_CORK, [

[Bug 65478] Re: [UNMETDEPS] scim-uim has unmet dependencies

2006-10-18 Thread Ming Hua
scim-uim (0.1.4-1build1) edgy; urgency=low

  * Rebuild to depend on libuim3.  (Launchpad #65478)

-- Ming Hua <[EMAIL PROTECTED]>  Mon, 16 Oct 2006 02:18:44 -0500

** Changed in: scim-uim (Ubuntu)
 Assignee: (unassigned) => Ming Hua
   Status: Confirmed => Fix Released

-- 
[UNMETDEPS] scim-uim has unmet dependencies
https://launchpad.net/bugs/65478

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


[Bug 63286] Re: hibernate.sh freezes on "modprobe thermal", anacron not started, kernel upgrades don't finish

2006-10-18 Thread Adam Porter
A couple days ago, after doing a dist-upgrade, I hibernated.  A little
while ago I resumed, and then did another dist-upgrade.  I noticed that
the update-initramfs script was stuck again, so I checked, and sure
enough, "/bin/bash /etc/acpi/hibernate.sh force" is stuck waiting on
"modprobe thermal".  After killing the "modprobe thermal" process, the
hibernate script finished, and now update-initramfs is finishing up.

** Changed in: linux-source-2.6.17 (Ubuntu)
   Status: Rejected => Confirmed

-- 
hibernate.sh freezes on "modprobe thermal", anacron not started, kernel 
upgrades don't finish
https://launchpad.net/bugs/63286

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


[Bug 66863] Initial USER command returns -ERR Unkown command

2006-10-18 Thread Russell Smith
Public bug reported:

Starting a telnet session to dovecot

+OK Dovecot ready.
user [EMAIL PROTECTED]
-ERR Unknown command.
user [EMAIL PROTECTED]
+OK
pass ***
+OK Logged in.
LIST
+OK 0 messages:
.
QUIT


Notice how the first instance of user reports that there is no command user.
I am running 6.06 dapper all patches to dovecot applied.  1.0.beta3-3ubuntu5

** Affects: dovecot (Ubuntu)
 Importance: Undecided
 Status: Unconfirmed

-- 
Initial USER command returns -ERR Unkown command
https://launchpad.net/bugs/66863

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


[Bug 66862] scipy not built with atlas support ?

2006-10-18 Thread David Cournapeau
Public bug reported:

When installing python-numpy, python-numpy-ext and python-scipy, and
when testing the installed packages with a python -c "import scipy as S;
S.test()", errors are reported concerning scipy.lib.lapack:


WARNING: clapack module is empty
---
See scipy/INSTALL.txt for troubleshooting.
Notes:
* If atlas library is not found by numpy/distutils/system_info.py,
  then scipy uses flapack instead of clapack.


Why does the numpy package of ubuntu  depend on atlas3-base, but
building the package reports a conflict with atlas3-base ? I think this
may be somewhat related (if the numpy package is not built with atlas3,
then scipy cannot find the atlas informations)

** Affects: python-numpy (Ubuntu)
 Importance: Undecided
 Status: Unconfirmed

** Description changed:

  When installing python-numpy, python-numpy-ext and python-scipy, and
  when testing the installed packages with a python -c "import scipy as S;
  S.test()", errors are reported concerning scipy.lib.lapack:
  
  
  WARNING: clapack module is empty
  ---
  See scipy/INSTALL.txt for troubleshooting.
  Notes:
  * If atlas library is not found by numpy/distutils/system_info.py,
then scipy uses flapack instead of clapack.
  
  
  Why does the numpy package of ubuntu  depend on atlas3-base, but
- building the package reports a conflict with atlas3-base ?
+ building the package reports a conflict with atlas3-base ? I think this
+ may be somewhat related (if the package is not built with atlas3, then
+ scipy cannot find the atlas informations)

** Description changed:

  When installing python-numpy, python-numpy-ext and python-scipy, and
  when testing the installed packages with a python -c "import scipy as S;
  S.test()", errors are reported concerning scipy.lib.lapack:
  
  
  WARNING: clapack module is empty
  ---
  See scipy/INSTALL.txt for troubleshooting.
  Notes:
  * If atlas library is not found by numpy/distutils/system_info.py,
then scipy uses flapack instead of clapack.
  
  
  Why does the numpy package of ubuntu  depend on atlas3-base, but
  building the package reports a conflict with atlas3-base ? I think this
- may be somewhat related (if the package is not built with atlas3, then
- scipy cannot find the atlas informations)
+ may be somewhat related (if the numpy package is not built with atlas3,
+ then scipy cannot find the atlas informations)

-- 
scipy not built with atlas support ?
https://launchpad.net/bugs/66862

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


[Bug 60442] Re: Dual / Two Batteries, shutdown on empty expansion battery. (GPM does not recognises second battery on hotplug)

2006-10-18 Thread Roland Dreier
OK, as expected my laptop shut down when the second battery ran down and
the first battery was still full.  I'm attaching the gpm.log as
requested.

The output from the new debugging statements in the patch is:

[battery_status_changed_primary] gpm-manager.c:2058 (21:58:06):  Laptop 
battery: critical level:
[battery_status_changed_primary] gpm-manager.c:2059 (21:58:06):charging=0 
discharging=1:
[battery_status_changed_primary] gpm-manager.c:2060 (21:58:06):
pct_charge=72 remaining=2:


** Attachment added: "gpm.log as second battery runs down"
   http://librarian.launchpad.net/4890173/gpm.log

-- 
Dual / Two Batteries, shutdown on empty expansion battery. (GPM does not 
recognises second battery on hotplug)
https://launchpad.net/bugs/60442

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


[Bug 2772] Re: [breezy] vlc key shortcuts doesnt work

2006-10-18 Thread Mildred
Just after trying --no-wx-embed, I started vlc back with the normal behaviour 
and the shortcut worked fine ...
In the past I also found that changing some hotkeys settings may resolve 
tempoarily this problem.

-- 
[breezy] vlc key shortcuts doesnt work
https://launchpad.net/bugs/2772

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


[Bug 66221] Re: no wxwidget interface

2006-10-18 Thread Mildred
*** This bug is a duplicate of bug 64975 ***

resolved, thanks (I had to remove one more time ~/.vlc :) )
but ... I don't see how to close the bug.

-- 
no wxwidget interface
https://launchpad.net/bugs/66221

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


[Bug 56216] Re: DVD can't be ejected sometimes

2006-10-18 Thread Timo Aaltonen
*** This bug is a duplicate of bug 62200 ***

nanophase, thanks for confirming that, marked this as duplicate of
#62200

** This bug has been marked a duplicate of bug 62200
   can't eject media after using nautilus-open-terminal

-- 
DVD can't be ejected sometimes
https://launchpad.net/bugs/56216

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


[Bug 66815] Re: amd64 usplash boot broken

2006-10-18 Thread Colin Watson
This should fix it:

kubuntu-default-settings (1:6.10-60) edgy; urgency=low

  * Add 640x400 theme to usplash, needed to allow AMD64 to boot

 -- Jonathan Riddell <[EMAIL PROTECTED]>  Wed, 18 Oct 2006 20:54:54
+0100

** Changed in: kubuntu-default-settings (Ubuntu)
   Status: Confirmed => Fix Released
   Target: None => ubuntu-6.10

-- 
amd64 usplash boot broken
https://launchpad.net/bugs/66815

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


[Bug 66860] Bug on Startup

2006-10-18 Thread Laurent Schwarzenberger
Public bug reported:

Binary package hint: evolution

On start up i get this message in a gnome bug message.. it asks to save
it to.txt and says this needs to be reported to the individual
package...

Memory status: size: 26505216 vsize: 0 resident: 26505216 share: 0 rss: 9261056 
rss_rlim: 0
CPU usage: start_time: 1161316484 rtime: 0 utime: 26 stime: 0 cutime:22 cstime: 
0 timeout: 4 it_real_value: 0 frequency: 0

Backtrace was generated from '/usr/libexec/evolution-alarm-notify'

(no debugging symbols found)
Using host libthread_db library "/lib/tls/i686/cmov/libthread_db.so.1".
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
[Thread debugging using libthread_db enabled]
[New Thread -1232472400 (LWP 4509)]
[New Thread -1233765472 (LWP 4523)]
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
0xe410 in __kernel_vsyscall ()
#0  0xe410 in __kernel_vsyscall ()
#1  0xb73256cb in waitpid () from /lib/tls/i686/cmov/libc.so.6
#2  0xb7e491b6 in gnome_gtk_module_info_get () from /usr/lib/libgnomeui-2.so.0
#3  
#4  0xe410 in __kernel_vsyscall ()
#5  0xb72c0770 in raise () from /lib/tls/i686/cmov/libc.so.6
#6  0xb72c1ef3 in abort () from /lib/tls/i686/cmov/libc.so.6
#7  0xb7492122 in g_logv () from /usr/lib/libglib-2.0.so.0
#8  0xb7492159 in g_log () from /usr/lib/libglib-2.0.so.0
#9  0x0805d500 in main ()

Thread 2 (Thread -1233765472 (LWP 4523)):
#0  0xe410 in __kernel_vsyscall ()
No symbol table info available.
#1  0xb735a803 in poll () from /lib/tls/i686/cmov/libc.so.6
No symbol table info available.
#2  0xb748c813 in g_main_context_check () from /usr/lib/libglib-2.0.so.0
No symbol table info available.
#3  0xb748cb89 in g_main_loop_run () from /usr/lib/libglib-2.0.so.0
No symbol table info available.
#4  0xb7a267e0 in link_set_io_thread () from /usr/lib/libORBit-2.so.0
No symbol table info available.
#5  0xb74a738f in g_thread_create_full () from /usr/lib/libglib-2.0.so.0
No symbol table info available.
#6  0xb70cf504 in start_thread () from /lib/tls/i686/cmov/libpthread.so.0
No

[Bug 66526] Re: Please update Thoggen to version 0.6.0

2006-10-18 Thread Reinhard Tartler
I think the diffstat looks more scary than it is. I'm okay with this!

** Changed in: thoggen (Ubuntu)
 Assignee: MOTU UVF Team => Sebastian Dröge

-- 
Please update Thoggen to version 0.6.0
https://launchpad.net/bugs/66526

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

[Bug 63205] Re: Can't install 'ubuntu-desktop'

2006-10-18 Thread Megaqwerty
*** This bug is a duplicate of bug 58424 ***

I am having the same error, and I didn't remove nvidia-glx (which I
believe is supported by ubuntu) but I did remove the compiz repos from
sources.list

I ran "sudo aptitude update" as well as "sudo aptitude dist-upgrade" it
didn't look like it removed any files (I had already removed my
xgl/compiz and later my xgl/beryl before trying to get edgy.

I have attatched my sources.list as well as so you may confirm this, as
well as my apt, and main logs in a tar file.

>From my results thusfar I can derive that I successfully undid
everything that was changed. However, please see my attatched log files,
and tell me what I have done incorrectly, or, if this is truly a problem
with Ubuntu, then consider this my bug report.

Thanks,

Megaqwerty


** Attachment added: "Log Files"
   http://librarian.launchpad.net/4890099/mylogs.tar

-- 
Can't install 'ubuntu-desktop'
https://launchpad.net/bugs/63205

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


[Bug 66056] Re: No-Change upload to generate debug package

2006-10-18 Thread Aaron Whitehouse
Please see http://lwn.net/Articles/201302/ ,
http://lwn.net/Articles/195760/ and
http://archives.free.net.ph/message/20061005.170159.edde3609.en.html

As I understand it, the debug is automatically generated if a new
version has been released since the system has been in place. That is
why I suggested a no-change upload.

-- 
No-Change upload to generate debug package
https://launchpad.net/bugs/66056

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


[Bug 66415] Re: xserver-xorg config script hangs (1:7.1.1ubuntu3)

2006-10-18 Thread Andreas Simon
After a reboot I tried again and the update worked (via aptitude). I did
no other changes besides the reboot.

-- 
xserver-xorg config script hangs (1:7.1.1ubuntu3)
https://launchpad.net/bugs/66415

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


[Bug 66706] [Edgy] mutt segfault

2006-10-18 Thread edschofield
Public bug reported:

I've just had a segfault from Mutt. I was simultaneously using
Thunderbird for OS X to read my IMAP mail and Mutt on Edgy on a
different machine through SSH to send it (since SMTP was blocked by a
firewall). I had tried to send a message using Mutt but this had failed
("child exited 78") because I had not configured msmtp properly; I then
saved the message as a draft. Soon afterwards a segfault occurred:

[*|=INBOX|0] #34/34=18M/0K [0N 1D 0T] (date.date)   
 (all) [WM]
Mailbox was externally modified.  Flags may be wrong.Segmentation fault (core 
dumped)
[EMAIL PROTECTED]:~$ 

Crash dump attached below.

** Affects: Ubuntu
 Importance: Undecided
 Status: Unconfirmed

-- 
[Edgy] mutt segfault
https://launchpad.net/bugs/66706

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


[Bug 66706] Re: [Edgy] mutt segfault

2006-10-18 Thread edschofield

** Attachment added: "Mutt crash report"
   http://librarian.launchpad.net/4888456/_usr_bin_mutt.1079.crash

-- 
[Edgy] mutt segfault
https://launchpad.net/bugs/66706

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


[Bug 60442] Re: Dual / Two Batteries, shutdown on empty expansion battery. (GPM does not recognises second battery on hotplug)

2006-10-18 Thread Roland Dreier
OK, I am trying the new package now -- it will take a little time for my
second battery to run down.

However I am not optimistic that this will fix it: I don't see any
changes to gpm-manager.c:battery_status_changed_primary() beyond adding
some debug prints.  I definitely don't see anything that would make it
take any other batteries into account -- so I expect it will still
trigger a shutdown when any one battery becomes empty, no matter whether
there are other full batteries installed or not.

Anyway I will let you know either way, and include the log if it fails.

-- 
Dual / Two Batteries, shutdown on empty expansion battery. (GPM does not 
recognises second battery on hotplug)
https://launchpad.net/bugs/60442

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


[Bug 66833] Re: Gnome offers no way to manage fonts

2006-10-18 Thread Jeff Greene
After searching "font" in the feature specifications, it seems like they
are already working on this.

https://features.launchpad.net/distros/ubuntu/+spec/font-management

** Changed in: meta-gnome2 (Ubuntu)
   Status: Needs Info => Unconfirmed

-- 
Gnome offers no way to manage fonts
https://launchpad.net/bugs/66833

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


[Bug 66833] Re: Gnome offers no way to manage fonts

2006-10-18 Thread Jeff Greene
Good point, I would mark this as Wishlist, but I do not have that
privilege. Maybe suggest it as a feature?

-- 
Gnome offers no way to manage fonts
https://launchpad.net/bugs/66833

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


[Bug 66859] Re: crashes w/ errors "partman exited with code 10", "RuntimeError: called outside of a mainloop at gtkui.py:1169 in watch_debconf_fd_helper, and more

2006-10-18 Thread Colin Watson
*** This bug is a duplicate of bug 54163 ***

Looks like you hit back and/or forward when the installer wasn't quite
ready for it yet. This is also bug 54163, and is fixed in Edgy. In
Dapper, you can probably work around this just by being a bit slower ...

** This bug has been marked a duplicate of bug 54163
   Installer crashed during partitioning (gtk.main_quit)

-- 
crashes w/ errors "partman exited with code 10", "RuntimeError: called outside 
of a mainloop at gtkui.py:1169 in watch_debconf_fd_helper, and more
https://launchpad.net/bugs/66859

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


[Bug 66859] Re: crashes w/ errors "partman exited with code 10", "RuntimeError: called outside of a mainloop at gtkui.py:1169 in watch_debconf_fd_helper, and more

2006-10-18 Thread Jason Spiro
*** This bug is a duplicate of bug 54163 ***


** Attachment added: "partman log"
   http://librarian.launchpad.net/4890086/partman

-- 
crashes w/ errors "partman exited with code 10", "RuntimeError: called outside 
of a mainloop at gtkui.py:1169 in watch_debconf_fd_helper, and more
https://launchpad.net/bugs/66859

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


[Bug 66859] Re: crashes w/ errors "partman exited with code 10", "RuntimeError: called outside of a mainloop at gtkui.py:1169 in watch_debconf_fd_helper, and more

2006-10-18 Thread Jason Spiro
*** This bug is a duplicate of bug 54163 ***


** Attachment added: "installer syslog"
   http://librarian.launchpad.net/4890084/syslog

-- 
crashes w/ errors "partman exited with code 10", "RuntimeError: called outside 
of a mainloop at gtkui.py:1169 in watch_debconf_fd_helper, and more
https://launchpad.net/bugs/66859

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


[Bug 66859] Re: crashes w/ errors "partman exited with code 10", "RuntimeError: called outside of a mainloop at gtkui.py:1169 in watch_debconf_fd_helper, and more

2006-10-18 Thread Jason Spiro
*** This bug is a duplicate of bug 54163 ***


** Attachment added: "syslog"
   http://librarian.launchpad.net/4890085/syslog

-- 
crashes w/ errors "partman exited with code 10", "RuntimeError: called outside 
of a mainloop at gtkui.py:1169 in watch_debconf_fd_helper, and more
https://launchpad.net/bugs/66859

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


[Bug 66859] crashes w/ errors "partman exited with code 10", "RuntimeError: called outside of a mainloop at gtkui.py:1169 in watch_debconf_fd_helper, and more

2006-10-18 Thread Jason Spiro
*** This bug is a duplicate of bug 54163 ***

Public bug reported:

I went through the 6.06 installer on my laptop. It went well but then
after I clicked the start-installation button on the final screen it
crashed. I think I had /dev/hda6 mounted on /dev/hda6, though I tried to
unmount it through the GUI.

Ubuntu version: 6.06 LTS.

Errors in the log: "ubiquity: /bin/partman exited with code 10",
"RuntimeError: called outside of a mainloop" at gtkui.py", line 1169, in
watch_debconf_fd_helper, and more. For the full list of errors, see the
attached log.

Settings I used: I chose French language and US keymap. I fiddled with
the clock time settings for a while, and I set the time zone twice. I
chose not to repartition or reformat anything. I set these mountpoints:
/dev/hdc1 (FAT32) mounted to /m/w, /dev/hdc2 (FreeBSD FFS) mounted to
/m/b, and /dev/hdc6 (ext3) mounted to /.

Hardware:  3-year old Dell Inspiron 1100 Intel 32-bit Celeron laptop.

Thanks for reading,
--Jason

** Affects: ubiquity (Ubuntu)
 Importance: Undecided
 Status: Unconfirmed

** Description changed:

  I went through the 6.06 installer on my laptop. It went well but then
  after I clicked the start-installation button on the final screen it
  crashed. I think I had /dev/hda6 mounted on /dev/hda6, though I tried to
  unmount it through the GUI.
  
  Ubuntu version: 6.06 LTS.
+ 
+ Errors in the log: "ubiquity: /bin/partman exited with code 10",
+ "RuntimeError: called outside of a mainloop" at gtkui.py", line 1169, in
+ watch_debconf_fd_helper, and more. For the full list of errors, see the
+ attached log.
  
  Settings I used: I chose French language and US keymap. I fiddled with
  the clock time settings for a while, and I set the time zone twice. I
  chose not to repartition or reformat anything. I set these mountpoints:
  /dev/hdc1 (FAT32) mounted to /m/w, /dev/hdc2 (FreeBSD FFS) mounted to
  /m/b, and /dev/hdc6 (ext3) mounted to /.
  
  Hardware:  3-year old Dell Inspiron 1100 Intel 32-bit Celeron laptop.
  
  Thanks for reading,
  --Jason

-- 
crashes w/ errors "partman exited with code 10", "RuntimeError: called outside 
of a mainloop at gtkui.py:1169 in watch_debconf_fd_helper, and more
https://launchpad.net/bugs/66859

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


[Bug 59983] Re: ndiswrapper in edgy broken

2006-10-18 Thread Etienne Goyer
I can confirm the bug.  Same behavior as the bug description.
Installing ndiswrapper-utils-1.8 fixed it for me too.

-- 
ndiswrapper in edgy broken
https://launchpad.net/bugs/59983

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


[Bug 66712] Stops responding after two new subscriptions

2006-10-18 Thread Lynoure Braakman
Public bug reported:

When I'm adding new podcasts from the Podcast directory, ipodder always
stops responding the second time I am in the Add feed window and have
approved adding the feed.

** Affects: ipodder (Ubuntu)
 Importance: Undecided
 Status: Unconfirmed

-- 
Stops responding after two new subscriptions
https://launchpad.net/bugs/66712

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


[Bug 66858] [Edgy] Adding a Tag + Icon Crashes

2006-10-18 Thread Richard Johnson
Public bug reported:

This happens on all 3 of my systems, running Kubuntu Edgy, all up to
date. I am attaching the backtrace.

** Affects: digikam (Ubuntu)
 Importance: Undecided
 Status: Unconfirmed

-- 
[Edgy] Adding a Tag + Icon Crashes
https://launchpad.net/bugs/66858

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


[Bug 66858] Re: [Edgy] Adding a Tag + Icon Crashes

2006-10-18 Thread Richard Johnson
backtrace

** Attachment added: "backtrace"
   http://librarian.launchpad.net/4890082/digikam_crash

-- 
[Edgy] Adding a Tag + Icon Crashes
https://launchpad.net/bugs/66858

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


[Bug 66706] Re: [Edgy] mutt segfault

2006-10-18 Thread Adri2000
** Changed in: Ubuntu
Sourcepackagename: None => mutt

-- 
[Edgy] mutt segfault
https://launchpad.net/bugs/66706

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


[Bug 66853] Re: kubuntu-desktop wants to be removed in when hplip is removed

2006-10-18 Thread Yuriy Kozlov
hplip is part of the default desktop, hence it is a dependency of
kubuntu-desktop.  Not a bug IMO.

-- 
kubuntu-desktop wants to be removed in when hplip is removed
https://launchpad.net/bugs/66853

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


[Bug 66478] Re: Crash when viewing flash sites

2006-10-18 Thread DarkMageZ
this is a well known bug. if you wish, you can try the new flash 9 beta
from adobe http://labs.adobe.com/technologies/flashplayer9/

*you do not need the aoss hack anymore as flash 9 now uses alsa*

have fun

-- 
Crash when viewing flash sites
https://launchpad.net/bugs/66478

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


[Bug 66248] Re: no drive icons, Home folders pop up instead

2006-10-18 Thread Sebastien Bacher
Thanks for your bug. That looks like a gnome-vfs or dbus issue. How do
you start GNOME? Do you have anything to ~/.xsession-errors about it?

** Changed in: nautilus (Ubuntu)
 Assignee: (unassigned) => Ubuntu Desktop Bugs
   Status: Unconfirmed => Needs Info

-- 
no drive icons, Home folders pop up instead
https://launchpad.net/bugs/66248

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


[Bug 32461] Re: splash displayed - but no logon to UI in default Video card

2006-10-18 Thread David Horner
Kubuntu -edgy Beta has the same symptoms.
KDE starts on different graphics card than boot sequence.

-- 
splash displayed - but no logon to UI in default Video card
https://launchpad.net/bugs/32461

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


[Bug 66843] Re: ALC883 - Don't work in Alsa-mode

2006-10-18 Thread Daniel T Chen
The necessary patches have already been backported to Dapper and Edgy
but have yet to be applied. They likely will not be applied to Edgy's
initial release kernel, either, due to the proximity of the release
(less than a week).

** Changed in: alsa-driver (Ubuntu)
   Status: Unconfirmed => Fix Committed

-- 
ALC883 - Don't work in Alsa-mode
https://launchpad.net/bugs/66843

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


[Bug 28442] Re: Pairing with bluetooth phone doesn't work

2006-10-18 Thread Onkar Shinde
Closing as the original reporter is unable to verify with latest
packages.

** Changed in: bluez-pin (Ubuntu)
 Assignee: Charles Majola => (unassigned)
   Status: Unconfirmed => Rejected

-- 
Pairing with bluetooth phone doesn't work
https://launchpad.net/bugs/28442

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


[Bug 66856] Error message when using apt-get (appears to be non-harmful)

2006-10-18 Thread flaccid
Public bug reported:

This echos when doing an apt-get update (or any apt-get command i
think):

DESTROY created new reference to dead object ' Qt::VBoxLayout', <> line
1 during global destruction.

Annoying, but non-harmful. Needs to be fixed however.

** Affects: Ubuntu
 Importance: Undecided
 Status: Unconfirmed

-- 
Error message when using apt-get (appears to be non-harmful)
https://launchpad.net/bugs/66856

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


[Bug 64564] Re: Flash site crashes firefox with "*** glibc detected *** malloc(): memory corruption" error

2006-10-18 Thread DarkMageZ
this appears to be working fine with the new flash 9 beta from adobe.
http://labs.adobe.com/technologies/flashplayer9/

-- 
Flash site crashes firefox with "*** glibc detected *** malloc(): memory 
corruption" error
https://launchpad.net/bugs/64564

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


[Bug 59269] Re: lighttpd fails to restart during logrotate script

2006-10-18 Thread Kurt Kraut
Hi,

I'm getting the same error. If I do sudo /etc/init.d/lighttpd restart,
it fails. But if I stop it and restart it, it works.

-- 
lighttpd fails to restart during logrotate script
https://launchpad.net/bugs/59269

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


[Bug 51473] Re: Waste basket appears full, when empty.

2006-10-18 Thread Sebastien Bacher
closing for now then. Feel free to reopen if you get the issue again

** Changed in: gnome-applets (Ubuntu)
   Status: Needs Info => Rejected

-- 
Waste basket appears full, when empty.
https://launchpad.net/bugs/51473

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


[Bug 56978] Re: Lexmark Z53 stops printing on upgrade from Breezy to Dapper

2006-10-18 Thread Daniel Robitaille
*** This bug is a duplicate of bug 6627 ***

And this is a duplicate of Bug 6627. Essentially the Lexmark z53 printer
stopped working in Dapper due to a regression in gutenprint.  But
reportedly  it is now fixed in Edgy.  Also if you look at some of the
later comments in that Bug 6627 report, you will see that Ante Karamatić
has created a repository with  an updated gutenprint package to solve
this problem in Dapper, namely:

> Could you put:
> 
> deb http://www.grad.hr/~ivoks/ubuntu/gutenprint ./
>
> in your /etc/apt/sources.list, run apt-get update ; apt-get 
> upgrade and then try printing. 


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

** This bug has been marked a duplicate of bug 6627
   lexmark z53 blank pages

-- 
Lexmark Z53 stops printing on upgrade from Breezy to Dapper
https://launchpad.net/bugs/56978

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

[Bug 52852] Re: MacBook gets extremely hot under Linux

2006-10-18 Thread Martijn Vermaat
This is not fixed in current Edgy. There is no temperature information
in /proc and the MacBook slowly gets hotter even when almost idle.

With coretemp.c [1] I can see the temperature of the two cores going up
to about 78 and 79 degrees Celcius and at that point the fan kicks in.
The fan seems to be able to bring back the temperature to about 54
degrees Celcius (but the bottom of the MacBook still feels pretty hot)
and then the process repeats.

The Gnome CPU frequency applet reports 1GHz about 80% of the time, with
the occasional 1.83GHz peaks (this is a 1.83GHz MacBook). This behaviour
seems independent of the temperature.

I guess the cause for all this is that the kernel has no temperature
information available, also reported in bug #56785 .

[1] http://svn.sourceforge.net/viewvc/mactel-
linux/trunk/tools/temperature/

-- 
MacBook gets extremely hot under Linux
https://launchpad.net/bugs/52852

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


[Bug 34495] Re: processes started by beagle use 100% cpu

2006-10-18 Thread SubWolf
Just killed beagled-helper off, like previous mentions, was consuming
100% cpu and slowing everything else down.

I do have 20 or 30 PDF's in the system, and a good 600Gb of disk space
with several hundred thousand files, probably not helping.

-- 
processes started by beagle use 100% cpu
https://launchpad.net/bugs/34495

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


[Bug 55646] Re: video playback problem on external monitor

2006-10-18 Thread John Steele Scott
I can confirm the bug report and the workaround.

** Changed in: xorg (Ubuntu)
   Status: Unconfirmed => Confirmed

-- 
video playback problem on external monitor
https://launchpad.net/bugs/55646

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


[Bug 66855] Edgy - Boot stops

2006-10-18 Thread Tobias F.
Public bug reported:

I just installed Edgy Beta on Yakumo Green550 and accepted all auto-update 
requests. Next reboot stopped saying:
"[...]
* Checking file systems...
fsck 1.39 (29-May-2006)   [ok]" in the ctrl+alt+f8 screen

I could still ctrl+alt+f1 and login and even startx
There's a message saying "failed to initialize hal" and a message that 
speedstepping will be disabled. Programs and stuff seem to work.

/var/log/boot has an [ok] at the end of each line. Last line is 
*setting up console keymap...   [ok]

** Affects: Ubuntu
 Importance: Undecided
 Status: Unconfirmed

-- 
Edgy - Boot stops
https://launchpad.net/bugs/66855

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


[Bug 64562] Re: 80% cpu used apt-index-watch

2006-10-18 Thread Kosmonaut
*** This bug is a duplicate of bug 64531 ***

Apt-index watch still causes high CPU usage on my machine.
0.3.9ubuntu5 is installed.
 "8140 root  19   0 15140 6932 6116 R 81.7  1.3   0:00.23 apt-index-watch"
3 seconds later
"8247 root  19   0 15804 7604 6168 R 50.0  1.5   0:00.43 
apt-index-watch"<-from top.
and so on and on...
A "sudo apt-get update && sudo apt-get upgrade" solves this problem for 1 day. 
Then everythings start all over again

-- 
80% cpu used apt-index-watch
https://launchpad.net/bugs/64562

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


[Bug 66854] AMD64 Check CD hangs

2006-10-18 Thread Simon Law
Public bug reported:

When running "Check CD" on an AMD64 vmware machine, it hangs with the
attached screenshot.  This was booted with the "quiet" option removed,
but "splash" still intact.

When booting without usplash, it brings you into the live desktop
without doing a CD integrity check.

** Affects: casper (Ubuntu)
 Importance: Undecided
 Status: Unconfirmed

-- 
AMD64 Check CD hangs
https://launchpad.net/bugs/66854

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


[Bug 66854] Re: AMD64 Check CD hangs

2006-10-18 Thread Simon Law

** Attachment added: "Screenshot"
   http://librarian.launchpad.net/4890034/screenshot.png

-- 
AMD64 Check CD hangs
https://launchpad.net/bugs/66854

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


[Bug 66848] Re: No copy DVD and no burning ISO files

2006-10-18 Thread Kevin Kubasik
** Changed in: Ubuntu
Sourcepackagename: None => nautilus-cd-burner

-- 
No copy DVD and no burning ISO files
https://launchpad.net/bugs/66848

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


[Bug 66852] Crash copying/pasting to evolution

2006-10-18 Thread conufsed
*** This bug is a duplicate of bug 41456 ***

Public bug reported:

Binary package hint: openoffice.org

When copying from a read only word document openned in openoffice
writer, oo crashes pasting in to a new evolution email

** Affects: openoffice.org (Ubuntu)
 Importance: Undecided
 Status: Unconfirmed

** This bug has been marked a duplicate of bug 41456
   extremly crashy on paste

-- 
Crash copying/pasting to evolution
https://launchpad.net/bugs/66852

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


[Bug 66853] kubuntu-desktop wants to be removed in when hplip is removed

2006-10-18 Thread Sorush.Nazari
Public bug reported:

When I try to remove the hplip package I get the message that kubuntu-
desktop will also have to be removed. How can I fix this? please

** Affects: hplip (Ubuntu)
 Importance: Undecided
 Status: Unconfirmed

-- 
kubuntu-desktop wants to be removed in when hplip is removed
https://launchpad.net/bugs/66853

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


Re: [Bug 66499] Re: Installation did not add gnucash to gnome menu

2006-10-18 Thread Daniel Santa Cruz
It's fine with me if it's marked as Fix Released.  It would be very
nice if there is a note in there on how to "manually fix" it if a user
runs into the issue.

Thanks for the response.
Daniel.

On 10/18/06, Andrew Jorgensen <[EMAIL PROTECTED]> wrote:
> Daniel, It looks like this bug is fixed in Edgy.  Is it okay with you if
> it gets closed as Fix Released?
>
> --
> Installation did not add gnucash to gnome menu
> https://launchpad.net/bugs/66499
>

-- 
Installation did not add gnucash to gnome menu
https://launchpad.net/bugs/66499

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


[Bug 66802] Re: Package isnt intallable

2006-10-18 Thread Wim van der Meer
It seems that you also have installed childsplay-alphabet-sounds-ru, is
that correct?

It appears that the childsplay-alphabet-sounds-* packages conflict with
each other since they install files with the same names in the same
directories, but the packages themselves don't indicate the conflict.

** Changed in: childsplay-alphabet-sounds-sv (Ubuntu)
   Status: Unconfirmed => Confirmed

-- 
Package isnt intallable
https://launchpad.net/bugs/66802

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


[Bug 66851] x11-common conflicts with xinit when upgrading from dapper to edgy

2006-10-18 Thread neomoha
Public bug reported:

Binary package hint: x11-common

Hi,
I was upgrading my Ubuntu dapper to edgy using synaptic,.
The surprise was when installing x11-common7.1.1ubuntu5 package.
The synaptic application stopped the installation process and printed an error 
message : 
"
E: /var/cache/apt/archives/x11-common_1%3a7.1.1ubuntu5_i386.deb: trying to 
overwrite `/usr/share/man/man5/Xsession.5.gz', which is also in xinit package 
"

Note : this message was in spanish, I translated it to put it here.
 
Regards,
Moha.

** Affects: xorg (Ubuntu)
 Importance: Undecided
 Status: Unconfirmed

** Description changed:

  Binary package hint: x11-common
  
  Hi,
  I was upgrading my Ubuntu dapper to edgy using synaptic,.
  The surprise was when installing x11-common7.1.1ubuntu5 package.
  The synaptic application stopped the installation process and printed an 
error message : 
  "
  E: /var/cache/apt/archives/x11-common_1%3a7.1.1ubuntu5_i386.deb: trying to 
overwrite `/usr/share/man/man5/Xsession.5.gz', which is also in xinit package 
  "
  
  Note : this message was in spanish, I translated it to put it here.
+  
+ Regards,
+ Moha.

-- 
x11-common conflicts with xinit when upgrading from dapper to edgy
https://launchpad.net/bugs/66851

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


[Bug 66851] Re: x11-common conflicts with xinit when upgrading from dapper to edgy

2006-10-18 Thread neomoha

** Attachment added: "The synaptic error message showing the conflict of 
x11-common package."
   http://librarian.launchpad.net/4889990/x11-common_conflict.png

-- 
x11-common conflicts with xinit when upgrading from dapper to edgy
https://launchpad.net/bugs/66851

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


[Bug 47600] Re: user apparently didn't get created

2006-10-18 Thread VickyNova
Wow.

I just changed my full name from something with an 'e' in it, to
Victoria Nova, and my username from shadow to vickynova, and everything
installed great!

Weird.

-- 
user apparently didn't get created
https://launchpad.net/bugs/47600

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


[Bug 66815] Re: amd64 usplash boot broken

2006-10-18 Thread Colin Watson
It does eventually boot for me, but my monitor displays an "out of
range" error while usplash is up (rather than just a blank screen); if I
didn't know better I would certainly think it had crashed. I think this
is near enough to confirmation.

** Changed in: kubuntu-default-settings (Ubuntu)
   Status: Unconfirmed => Confirmed

-- 
amd64 usplash boot broken
https://launchpad.net/bugs/66815

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


[Bug 66849] Re: security vulnearablitiy in vnc4server

2006-10-18 Thread Zeros
** Description changed:

- There is exist in security flaw.
+ There is exist security flaw in vnc4server.
  
  Anybody can connect Native X display (the ":0" console) without auth.
  
  refrence site: http://www.intelliadmin.com/blog/2006/05/security-flaw-
  in-realvnc-411.html
  
  You can test flaw by this tool(http://www.intelliadmin.com/blog/2006/06
  /test-your-vnc-installations-for.html)

** Visibility changed to: Public

-- 
security vulnearablitiy in vnc4server
https://launchpad.net/bugs/66849

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


[Bug 66850] Live CD 6.06 wil not complete installation

2006-10-18 Thread Ron
Public bug reported:

I attempted to run the 6.06 Live CD on a friends pc using the same CD
that I have successfully used on this, my own pc to run and install.

Here is the problem:

Boots OK and then at the "Mounting filesystem" after several minutes 
instead of "OK" it goes into text mode and displays:
Quote:
[17179571.848000]..MP-BIOS bug 8254 timer not connected to IO-APIC
[171.]..PCI Cannot allocate resume region 3 of device :00:00.0
[171.]..hdc: ide_intr: huh? expected NULL handler on Exit
.
.
.and more of similiar info

I assume this info will continue on forever so bailed after several
minutes of this.

I added pci=noacpi to the boot sequence but still fails.

Hardware is a New Compaq System:
Presario SR1930nx - P4/SATA/512M Ram. integrated ATI x200.

** Affects: Ubuntu
 Importance: Undecided
 Status: Unconfirmed

-- 
Live CD 6.06 wil not complete installation
https://launchpad.net/bugs/66850

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


[Bug 66796] Re: I can't install it...

2006-10-18 Thread Wim van der Meer
Have you installed libglu1-mesa-dev? You probably either need to install
this or libglu-dev.

-- 
I can't install it...
https://launchpad.net/bugs/66796

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


[Bug 63768] Re: [edgy] Kernel Panic with Asus M2N32 MB

2006-10-18 Thread Elektranox
Upgrade to the latest BIOS (version 0706)

** Changed in: linux-meta (Ubuntu)
 Assignee: (unassigned) => Jeff Hanson
   Status: Unconfirmed => Rejected

-- 
[edgy] Kernel Panic with Asus M2N32 MB
https://launchpad.net/bugs/63768

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


[Bug 63768] Re: [edgy] Kernel Panic with Asus M2N32 MB

2006-10-18 Thread Elektranox
ah ok it works with this Version I had the 06xx one and thought it would
be the newest ;) But why does Edgy have troubles with this and Dapper
not?

-- 
[edgy] Kernel Panic with Asus M2N32 MB
https://launchpad.net/bugs/63768

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


[Bug 66848] No copy DVD and no burning ISO files

2006-10-18 Thread Greg Lenhard
Public bug reported:

Hello,

It´s always the same problem with gnomebaker or K3b cdrecord or bonfire. I 
can´t copy a DVD and I can´t burning a ISO-file. 
When  I want to burn a ISO file for example, than shows me the burning software 
always 18 MB. No the real size. I use a Nec Burner ND 4571A in a Shuttle SB75G2 
(with Ubuntu Dapper Drake 6.06.1). That´s the result for the file 
~/.xsession-errors:

/etc/gdm/PreSession/Default: Registering your session with wtmp and utmp
/etc/gdm/PreSession/Default: running: /usr/bin/sessreg -a -w /var/log/wtmp -u 
/var/run/utmp -x "/var/lib/gdm/:0.Xservers" -h "" -l ":0" "greg"
/etc/gdm/Xsession: Beginning session setup...
SESSION_MANAGER=local/ubuntu:/tmp/.ICE-unix/4951
Gnome-Message: gnome_execute_async_with_env_fds: returning -1

(gnome-panel:5021): GdkPixbuf-CRITICAL **: gdk_pixbuf_scale_simple:
assertion `dest_width > 0' failed

(gnome-panel:5021): Gtk-WARNING **: gtk_widget_size_allocate(): attempt
to allocate widget with width -5 and height 24

** (nautilus:5023): CRITICAL **: nautilus_file_unref: assertion
`NAUTILUS_IS_FILE (file)' failed

Can everybody helps me??
e-mail: [EMAIL PROTECTED]

** Affects: Ubuntu
 Importance: Undecided
 Status: Unconfirmed

-- 
No copy DVD and no burning ISO files
https://launchpad.net/bugs/66848

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

[Bug 31978] Re: Problem with zip drive?

2006-10-18 Thread Timothy Smith
** Tags added: apple

-- 
Problem with zip drive?
https://launchpad.net/bugs/31978

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


[Bug 5740] Re: Problems with Apple keyboard

2006-10-18 Thread Timothy Smith
** Tags added: apple

-- 
Problems with Apple keyboard
https://launchpad.net/bugs/5740

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


[Bug 5741] Re: Another problem with mac keyboard

2006-10-18 Thread Timothy Smith
** Tags added: apple

-- 
Another problem with mac keyboard
https://launchpad.net/bugs/5741

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


[Bug 16939] Re: trackball is too clicky

2006-10-18 Thread Timothy Smith
Is there any way you could test this one more time with Dapper 6.06.1 or
Edgy Beta 1 so we could update the status on this bug.

-- 
trackball is too clicky
https://launchpad.net/bugs/16939

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


[Bug 36492] Re: french symbols map for macintosh is incomplete

2006-10-18 Thread Timothy Smith
** Tags added: apple

-- 
 french symbols map for macintosh is incomplete
https://launchpad.net/bugs/36492

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


[Bug 64219] Re: Installer Crashed while installing Xubuntu PPC to an external drive

2006-10-18 Thread Timothy Smith
** Tags added: apple g4 ppc

-- 
Installer Crashed while installing Xubuntu PPC to an external drive
https://launchpad.net/bugs/64219

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


[Bug 65978] Re: Acard pci adapter conflict on power-pc

2006-10-18 Thread Timothy Smith
can you attach the output of the following commands

lshw
lspci

** Tags added: apple g4 ppc

-- 
Acard pci adapter conflict on power-pc
https://launchpad.net/bugs/65978

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


[Bug 66844] Re: transcalc crashes on startup since update to Edgy Eft

2006-10-18 Thread Timothy Smith
** Summary changed:

- Application crashes on startup since update to Edgy Eft
+ transcalc crashes on startup since update to Edgy Eft

-- 
transcalc crashes on startup since update to Edgy Eft
https://launchpad.net/bugs/66844

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


[Bug 13609] Re: gnome-cd 2.10 ressources extensive

2006-10-18 Thread Timothy Smith
** Tags added: apple g3 ppc

-- 
gnome-cd 2.10 ressources extensive
https://launchpad.net/bugs/13609

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


[Bug 16900] Re: Keyboard's power-off button doesn't work

2006-10-18 Thread Timothy Smith
** Tags added: apple g3 ppc

-- 
Keyboard's power-off button doesn't work
https://launchpad.net/bugs/16900

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


[Bug 37185] Re: 2.6.12-10-powerpc(-smp) does not boot on Power Mac 9500

2006-10-18 Thread Timothy Smith
Could you test this on Dapper 6.06.1 or Edgy Beta 1 so we could see if
it still exists.

-- 
2.6.12-10-powerpc(-smp) does not boot on Power Mac 9500
https://launchpad.net/bugs/37185

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


[Bug 45764] Re: cpufreq does not seem to work on G4 TiBook 667MHz

2006-10-18 Thread Timothy Smith
** Description changed:

  On Dapper "current" (060520):
  
  dmesg says:
  Low: 667 Mhz, High: 667 Mhz, Boot: 667 Mhz
  sysfs agrees:
  > cat /sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_min_freq
  667000
  and the PowerBook fan agrees, too, and consequently stays on after maybe half 
an hour of minimal usage. I'm quite confident I was using Debian sarge (or 
pre-sarge testing) on this machine some time ago with no problems like this.
  
  /proc/cpuinfo
  processor   : 0
  cpu : 7455, altivec supported
  clock   : 667.00MHz
  revision: 0.1 (pvr 8001 0201)
  bogomips: 66.56
  timebase: 1955
  machine : PowerBook3,4
  motherboard : PowerBook3,4 MacRISC2 MacRISC Power Macintosh
  detected as : 73 (PowerBook Titanium III)
  pmac flags  : 001b
  L2 cache: 256K unified
  pmac-generation : NewWorld
  
  kernel:
  Linux version 2.6.15-20-powerpc ([EMAIL PROTECTED]) (gcc version 4.0.3 
(Ubuntu 4.0.3-1ubuntu3)) #1 Tue Apr 4 17:47:49 UTC 2006
  
  Also, cpufreq modules are loaded and powernowd is running.
  
  
+ 
  Note: the original reporter indicated the bug was in package 
'linux-image-2.6.15-20-powerpc'; however, that package was not published in 
Ubuntu.

** Tags added: apple g4 ppc

-- 
cpufreq does not seem to work on G4 TiBook 667MHz
https://launchpad.net/bugs/45764

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


[Bug 46702] Re: 15in PowerBook G4 Bonobo errors / video failure

2006-10-18 Thread Timothy Smith
** Tags added: apple g4 ppc

-- 
15in PowerBook G4 Bonobo errors / video failure
https://launchpad.net/bugs/46702

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


[Bug 50813] Re: 2.6.15-xx ppc kernel fails to boot on G4

2006-10-18 Thread Timothy Smith
** Tags added: apple g4 ppc

-- 
2.6.15-xx ppc kernel fails to boot on G4
https://launchpad.net/bugs/50813

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


[Bug 47994] Re: Suspend to disk doesn't work on 12" Powerbook

2006-10-18 Thread Timothy Smith
** Tags added: apple g4 ppc

-- 
Suspend to disk doesn't work on 12" Powerbook
https://launchpad.net/bugs/47994

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


Re: [Bug 60988] Re: bttv remote not working

2006-10-18 Thread Matheus Pacheco de Andrade
Can you help me on applying it?
It is a little disappointing that the maintainers are not paying attention
to such a compatibility issue.

On 10/18/06, Nikos <[EMAIL PROTECTED]> wrote:
>
> I had the same problem and I solved using this patch to the bttv kernel
> module. I don't know if this is correct or not, but it makes my remote
> work ok.
>
> ** Attachment added: "bttv kernel module patch for winfast 2000xp rm"
>http://librarian.launchpad.net/431/diff.txt
>
> --
> bttv remote not working
> https://launchpad.net/bugs/60988
>

-- 
bttv remote not working
https://launchpad.net/bugs/60988

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


[Bug 32461] Re: splash displayed - but no logon to UI in default Video card

2006-10-18 Thread David Horner
As before, the consoles (ctl-atl-1, etc.)
are on the other video card, the "other" monitor.

let me know what other logs, etc you want provided.

-- 
splash displayed - but no logon to UI in default Video card
https://launchpad.net/bugs/32461

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


[Bug 66847] Re: f-spot 0.2.2 upstream is available

2006-10-18 Thread Andrew Mitchell
Edgy is frozen, we will not be putting new upstream releases in at this
(very) late stage. Small bug fixes like the rotation issue may be fixed
as patches against 0.2.1 in edgy-updates in the future.

** Changed in: f-spot (Ubuntu)
   Status: Unconfirmed => Rejected

-- 
f-spot 0.2.2 upstream is available
https://launchpad.net/bugs/66847

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


[Bug 66847] Re: f-spot 0.2.2 upstream is available

2006-10-18 Thread Kevin Kubasik
Unfortunately, Edgy is currently in an upstream version freeze as we
near a release, we will not be incorporating upstream versions of new
applications until edgy+1.

I'm not sure how to set the status on this, as it is valid, and once we
start the edgy+1 repos, this should be in there.

-- 
f-spot 0.2.2 upstream is available
https://launchpad.net/bugs/66847

-- 
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   >