[Bug 522969] Re: Jockey doesn't add nvidia-xconfig (Nvidia X Server Settings) to menu after installing nvidia driver until you re-login

2010-02-17 Thread Alberto Milone
This seems to me more like a bug in the gnome menu rather than a bug in
Jockey

-- 
Jockey doesn't add nvidia-xconfig (Nvidia X Server Settings) to menu after 
installing nvidia driver until you re-login
https://bugs.launchpad.net/bugs/522969
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 510787] Re: Delete key during in place Rename in File Browser trashes file first

2010-02-17 Thread Kiri
*** This bug is a duplicate of bug 496789 ***
https://bugs.launchpad.net/bugs/496789

** This bug has been marked a duplicate of bug 496789
   Nautilus rename mode is broken.

-- 
Delete key during in place Rename in File Browser trashes file first
https://bugs.launchpad.net/bugs/510787
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 27037] Re: mdadm cannot assemble array as cannot open drive with O_EXCL

2010-02-17 Thread Mark Knowles
I just experienced this bug with Ubuntu Lucid Alpha 2.

Version: mdadm 2.6.7.1-1ubuntu15

I have 3 RAID 6 arrays: /dev/md0, /dev/md1 and /dev/md2

/dev/md0 was created by the installer and was ok.  md1 and md2 were
created after installation.

At boot, my /proc/mdstat looked as follows:

md_d2 : inactive sdi2[3](S)
  871895680 blocks
   
md_d1 : inactive sdf1[4](S)
  1465047552 blocks
   
md0 : active raid6 sdb1[0] sdh1[2] sdi1[3] sdg1[1] sdj1[4]
  314592576 blocks level 6, 64k chunk, algorithm 2 [5/5] [U]

I then proceeded to try and assemble the missing RAID arrays with the
following command:

mdadm --assemble --scan

After that, md1 and md2 were visible, but degraded:

Personalities : [raid6] [raid5] [raid4] [linear] [multipath] [raid0] [raid1] 
[raid10] 
md2 : active raid6 sdb2[0] sdj2[4] sdh2[2] sdg2[1]
  2615687040 blocks level 6, 64k chunk, algorithm 2 [5/4] [UUU_U]
  
md1 : active raid6 sda1[0] sde1[3] sdd1[2] sdc1[1]
  4395142656 blocks level 6, 64k chunk, algorithm 2 [5/4] [_]
  
md_d2 : inactive sdi2[3](S)
  871895680 blocks
   
md_d1 : inactive sdf1[4](S)
  1465047552 blocks
   
md0 : active raid6 sdb1[0] sdh1[2] sdi1[3] sdg1[1] sdj1[4]
  314592576 blocks level 6, 64k chunk, algorithm 2 [5/5] [U]


Following some of the comments, I recovered without rebuilding the arrays with 
the following commands:

1.  Stop the degraded arrays and the strange md_d* arrays:
mdadm -S /dev/md1
mdadm -S /dev/md2
mdadm -S /dev/md_d1
mdadm -S /dev/md_d2

2.  I checked to see that my mdstat looked clean:

cat /proc/mdstat

Personalities : [raid6] [raid5] [raid4] [linear] [multipath] [raid0] [raid1] 
[raid10] 
md0 : active raid6 sdb1[0] sdh1[2] sdi1[3] sdg1[1] sdj1[4]
  314592576 blocks level 6, 64k chunk, algorithm 2 [5/5] [U]
  
unused devices: none

Yep, just md0, so that's all good.

3.  I tried to restart md1 and md2:

mdadm --assemble --scan

4. Check mdstat

cat /proc/mdstat

Personalities : [raid6] [raid5] [raid4] [linear] [multipath] [raid0] [raid1] 
[raid10] 
md1 : active raid6 sda1[0] sdf1[4] sde1[3] sdd1[2] sdc1[1]
  4395142656 blocks level 6, 64k chunk, algorithm 2 [5/5] [U]
  
md2 : active raid6 sdb2[0] sdj2[4] sdi2[3] sdh2[2] sdg2[1]
  2615687040 blocks level 6, 64k chunk, algorithm 2 [5/5] [U]
  
md0 : active raid6 sdb1[0] sdh1[2] sdi1[3] sdg1[1] sdj1[4]
  314592576 blocks level 6, 64k chunk, algorithm 2 [5/5] [U]
  
unused devices: none

5.  Make sure mdadm.conf is correct.

I previously only had an entry for md0 in mdadm.conf, so I needed to add
definitions for md1 and md2:

mdadm -Es | grep md1  /etc/mdadm/mdadm.conf
mdadm -Es | grep md2  /etc/mdadm/mdadm.conf

6. For good measure I updated my initrd in case the mdadm conf is stored there:
update-initramfs -u ALL

All seems good :)  Thanks for all the comments, it helped me fix a 7TB
array quickly (after having a heart attack).

-- 
mdadm cannot assemble array as cannot open drive with O_EXCL
https://bugs.launchpad.net/bugs/27037
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 523104] [NEW] Use fewer processes on Core i7 processor

2010-02-17 Thread Seth Arnold
Public bug reported:

Binary package hint: origami

Hello; the origami tool, through finstall, just reads /proc/cpuinfo for
the number of vendor_id lines, and calls that the 'number of CPUs'. But
on an Intel Core i7, and other processors with hyperthreading enabled,
using this number of processes guarantees that the CPU will be run at
full clock, rather than just sipping idle cycles.

Instead, fold...@home should use a 1:1 relationship with cores, so that
the chips don't run themselves into ludicrous temperatures and power
use. (Running only four instead of the auto-detected eight processes has
my processor running at 66 degrees Celsius rather than 80 degrees
Celsius.)

This change can probably happen by using the following:
grep core id /proc/cpuinfo  | sort -u | wc -l

But I don't know for certain that 'core id' is located in /proc/cpuinfo
on single-core chips, nor do I know what it looks like on SMP systems
with multiple processor sockets... hopefully someone reading this has
access to a wide enough variety of systems to find out if this can be
used verbatim, or if it needs to be massaged some first.

Thanks!

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

-- 
Use fewer processes on Core i7 processor
https://bugs.launchpad.net/bugs/523104
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 495507] Re: Hydrogen-0.9.4-1 sync request Sid (unstable) - Lucid

2010-02-17 Thread Daniel Holbach
ACKed.

** Description changed:

- sync request for Hydrogen-0.9.4-1 from Debian Sid (unstable) - Lucid
+ hydrogen (0.9.4-1) unstable; urgency=low
  
- current version in Ubuntu is Hydrogen-0.9.3
+* New upstream release. Closes: bug#551839, thanks to Larry Holish.
+  + Apparently solves startup crash on AMD64. Closes: bug#402635,
+thanks to Simon Guest.
+  + Uses splash screen (not intro dialog too wide for some screens).
+Closes: bug#501044, thanks to Klaus Ade Johnstad.
+* Adopt package: Set Debian Multimedia team as maintainer, and myself
+  as uploader.
+* Package now git-maintained: Add Vcs-* stanzas to control file.
+* Add README.source, documenting CDBS, git-buildpackage and
+  DEB_MAINTAINER_MODE.
+* Add and make use of local CDBS snippets:
+  + upstream-tarball.mk
+  + buildinfo.mk.
+  + copyright-check.mk.
+  + package-relations.mk.
+  + scons.mk (replacing autotools.mk).
+* Repackage using source format '3.0 quilt'.
+* Drop some patches:
+  + 00: Upstream manuals now include proper charset declaration.
+  + 01: Promoting Debian maintainance unnecessary, and might be
+inaccurate (patch have been wrong for several years).
+  + 04: Improved FLAC support adopted upstream now.
+  + 05: No longer applying (apparently fixed upstream).
+  + 06: No longer applying.
+* Refresh remaining patches and uniform to always strip a single
+  prefix (i.e. 'patch -p 1').
+* Unfuzz and update file locations of patches 02 and 08.
+* Disable patches 02, 03, 07 and 08 (all compilation fixes), possibly
+  no longer needed.
+* Add patches 09 and 10 adjusting PortAudio and PortMIDI support to v2
+  API.
+* Build-depend on libtarchive-dev, port19audio-dev, libportmidi-dev,
+  liblash-dev and libqt4-dev (and not libqt3-mt-dev).
+* Build-depend on librsvg2-bin and Build-depend on netpbm, and
+  generate (not ship premade file) menu icon based on upstream
+  graphics: SVG → PNG → XPM.
+* Drop Debian-local XDG desktop file: Upstream ships one now.
+* Install symlinks in examples dir to demo_songs.
+* Install PHP serverTools files as examples.
+* Drop manpage symlink for hydrogenPlayer (not currently built).
+* Bump Standards-Version to 3.8.4.
+* Rewrite copyright file using draft DEP5 rev135 format.
+* Add copyright header to debian/rules.
+* Bump debhelper compat level and build-dependency to 6.
+* Maintain build-dependencies with CDBS in debian/rules.
+ 
+  -- Jonas Smedegaard d...@jones.dk  Tue, 16 Feb 2010 06:26:18 +0100

** Summary changed:

- Hydrogen-0.9.4-1 sync request Sid (unstable) - Lucid
+ Please sync hydrogen 0.9.4-1 from Debian unstable

** Changed in: hydrogen (Ubuntu)
   Status: New = Triaged

-- 
Please sync hydrogen 0.9.4-1 from Debian unstable
https://bugs.launchpad.net/bugs/495507
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 523106] [NEW] current version unusable due to bug already fixed upstream

2010-02-17 Thread helix84
Public bug reported:

Binary package hint: directvnc

I get this bug in Ubuntu karmic i386. This is fixed by the new version
of the upstream package. Please upgrade the package or backport the fix,
it's unusable otherwise.

upstream bug: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=538110

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

-- 
current version unusable due to bug already fixed upstream
https://bugs.launchpad.net/bugs/523106
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 521672] Re: Startup in Karmic with unclean filesystems leaves system in a wrong state

2010-02-17 Thread Sven Boden

If I drop to the shell I can let the fsck finish and start the X environment 
manually (just as a work around).

If I don't do anything I can login via the GUI, but since my home directory is 
not ready by then I just get an empty desktop and a warning dialog like 
cannot access home directory, taking / as default. After which the session is 
pretty unusable of course, default installation is that most of the desktop is 
in the home directory. 
I also do not get an indication on the login screen that something is not ok 
(that something is still running in the background)

-- 
Startup in Karmic with unclean filesystems leaves system in a wrong state
https://bugs.launchpad.net/bugs/521672
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 512420] Re: Merge libmtp 1.0.2-1 (main) from Debian unstable (main)

2010-02-17 Thread Daniel Holbach
Closing bug manually.

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

-- 
Merge libmtp 1.0.2-1 (main) from Debian unstable (main)
https://bugs.launchpad.net/bugs/512420
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 523109] [NEW] Nautilus crashes when using 'Connect to Server' to connect to FTP server or Samba Share

2010-02-17 Thread Mark Burns
Public bug reported:

Binary package hint: nautilus

Ubuntu Version: Jaunty 9.04

Nautilus Version: 1:2.26.2-0ubuntu2

Expected: Successful connection to FTP server (or Windows shared drive)
using 'Connect to Server', allowing me to browse via Nautilus

Actually Happened:
When using 'Connect to Server' to connect to FTP server (FTP with login), or to 
via a Windows share, nautilus (or gvfsd) apparently crashes. Any/all icons on 
the desktop disappear (as does a running instance of Conky)

ProblemType: Bug
Architecture: amd64
DistroRelease: Ubuntu 9.04
Package: nautilus 1:2.26.2-0ubuntu2
ProcEnviron:
 PATH=(custom, user)
 LANG=en_GB.UTF-8
 SHELL=/bin/bash
SourcePackage: nautilus
Uname: Linux 2.6.28-18-generic x86_64

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


** Tags: amd64 apport-bug

-- 
Nautilus crashes when using 'Connect to Server' to connect to FTP server or 
Samba Share
https://bugs.launchpad.net/bugs/523109
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 523109] Re: Nautilus crashes when using 'Connect to Server' to connect to FTP server or Samba Share

2010-02-17 Thread Mark Burns

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

-- 
Nautilus crashes when using 'Connect to Server' to connect to FTP server or 
Samba Share
https://bugs.launchpad.net/bugs/523109
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 523107] [NEW] Sync krb5 1.8+dfsg~alpha1-6 (main) from Debian unstable (main)

2010-02-17 Thread Timo Aaltonen
Public bug reported:

Please sync krb5 1.8+dfsg~alpha1-6 (main) from Debian unstable (main)

Fixes a serious regression in bug 512459.

Changelog entries since current lucid version 1.8+dfsg~alpha1-5:

krb5 (1.8+dfsg~alpha1-6) unstable; urgency=medium

  * Import upstream fixes including:
 - A non-conformance with RFC 4120 that causes  enc_padata to be
included when the client may not support it
  - Weak crypto acts as a filter and does not reject if DES is
included in krb5.conf, fixes Samba net ads join, Closes: #566977
* Medium urgency because of the samba bug fix.  If the samba maintainers
request the release team to bump to high I'd support that.
  * Update libkdb5 symbols for new upstream internal interface

 -- Sam Hartman hartm...@debian.org  Fri, 12 Feb 2010 12:24:26 -0500

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

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

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

-- 
Sync krb5 1.8+dfsg~alpha1-6 (main) from Debian unstable (main)
https://bugs.launchpad.net/bugs/523107
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 523108] [NEW] nvidia x server settings on ubuntu 10.4

2010-02-17 Thread milos
Public bug reported:

Binary package hint: gnome-panel

nvidia driver version 96.43.14, when i press x server display
configuration, i have this problem: Unable to load X Server Display
Configuration page:

Failed to query NoScanout for screen 0.

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

-- 
nvidia x server settings on ubuntu 10.4
https://bugs.launchpad.net/bugs/523108
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 523105] Re: telepathy-butterfly crashed with KeyError in get_props()

2010-02-17 Thread Apport retracing service
*** This bug is a duplicate of bug 515613 ***
https://bugs.launchpad.net/bugs/515613

Thank you for taking the time to report this crash and helping to make
Ubuntu better.  This particular crash has already been reported and is a
duplicate of bug #515613, so is being marked as such.  Please look at
the other bug report to see if there is any missing information that you
can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report.  Please continue to report any other bugs you may
find.

** Tags removed: need-duplicate-check

** Attachment removed: Dependencies.txt
   http://launchpadlibrarian.net/39295593/Dependencies.txt

** Attachment removed: ProcMaps.txt
   http://launchpadlibrarian.net/39295594/ProcMaps.txt

** Attachment removed: ProcStatus.txt
   http://launchpadlibrarian.net/39295595/ProcStatus.txt

** This bug has been marked a duplicate of bug 515613
   telepathy-butterfly crashed with KeyError in get_props()

** Visibility changed to: Public

-- 
telepathy-butterfly crashed with KeyError in get_props()
https://bugs.launchpad.net/bugs/523105
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 512459] Re: Winbind failed to connect to AD: Program lacks support for encryption type

2010-02-17 Thread Timo Aaltonen
filed bug #523107 to sync the package.

-- 
Winbind failed to connect to AD: Program lacks support for encryption type
https://bugs.launchpad.net/bugs/512459
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 522698] Re: latest update breaks monochrome

2010-02-17 Thread David Barth
** Changed in: indicator-application (Ubuntu)
 Assignee: (unassigned) = Ted Gould (ted)

** Changed in: indicator-me (Ubuntu)
 Assignee: (unassigned) = David Barth (dbarth)

-- 
latest update breaks monochrome
https://bugs.launchpad.net/bugs/522698
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 511840] Re: Ubufox + Tab Mix Plus make toolbar buttons disappear

2010-02-17 Thread E-mol
I confirm this too.

-- 
Ubufox + Tab Mix Plus make toolbar buttons disappear
https://bugs.launchpad.net/bugs/511840
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 506010] Re: Not possible to set fragment size

2010-02-17 Thread Stephan Hermann
will take care about it

** Changed in: network-manager-openvpn (Ubuntu)
 Assignee: (unassigned) = Stephan Hermann (shermann)

-- 
Not possible to set fragment size
https://bugs.launchpad.net/bugs/506010
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 496654] Re: Ubuntu Server 9.10 (karmic): xenner: depends on non-existent library

2010-02-17 Thread Stephan Hermann
working on it

** Changed in: xenner (Ubuntu)
 Assignee: (unassigned) = Stephan Hermann (shermann)

-- 
Ubuntu Server 9.10 (karmic): xenner: depends on non-existent library
https://bugs.launchpad.net/bugs/496654
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 420426] Re: sun-java6 6b16 update for karmic, hardy and jaunty

2010-02-17 Thread Wesley Schwengle
The removal of Sun's Java from Ubuntu saddens me. I don't understand the
reason behind it either. Is there more information regarding this
change? I follow both the MOTU and kubuntu-devel maillinglists and never
saw anything regarding this issue.

Does anyone know if there are plans to include the package in the
partner repository?

-- 
sun-java6 6b16 update for karmic, hardy and jaunty
https://bugs.launchpad.net/bugs/420426
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 107000] Re: update-manager should make sure that it is uptodate before a dist-upgrade even if edgy-updates is not available

2010-02-17 Thread Kai Schroeder
In my opinion it is a valid use-case to only want the minimum amount of package 
changes by only enabling -security. I also think it is a reasonable expectation 
that upgrades should not fail when it is possible to achieve that. 
A possible solution (just in case this hasn't been addressed anyway already, I 
don't know) could be to automatically enable -updates before distribution 
upgrades when package changes are made anyway.

-- 
update-manager should make sure that it is uptodate before a dist-upgrade even 
if edgy-updates is not available
https://bugs.launchpad.net/bugs/107000
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 523002] Re: Crash on edit from the end

2010-02-17 Thread Benjamin Drung
Can you reproduce it with the daily build of audacity:
https://launchpad.net/~audacity-team/+archive/daily

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

-- 
Crash on edit from the end
https://bugs.launchpad.net/bugs/523002
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 462193] Re: djvulibre-bin produces garbage in the root (/man1/*)

2010-02-17 Thread Frederik Elwert
This also results in manpages not being automatically found by man.

Japanese manpages are correctly installed to /usr/share/man/ja/man1/,
default (English) manpages shoud also go into /usr/share/man/man1
instead of /man1.

-- 
djvulibre-bin produces garbage in the root (/man1/*)
https://bugs.launchpad.net/bugs/462193
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 424215] Re: Bluetooth mouse usage makes A2DP audio stutter

2010-02-17 Thread Martin Emrich
I just tried this under Windows Vista, same hardware. Here, there's no
problem, the music plays fine while using the mouse. So it seems not to
be a hardware or gereral Bluetooth protocol problem.

-- 
Bluetooth mouse usage makes A2DP audio stutter
https://bugs.launchpad.net/bugs/424215
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 453072] Re: Context menu for an USB pendrive shows Unmount, Eject and Safely Remove Drive

2010-02-17 Thread Martin Olesen
After reading in Gnome-bugs I understand that the three options makes
sense, but nevertheless they confused me at first (and I take for
granted that every beginner would feel the same).

Is it possible to add some explanation, for example a 'yellow label'
showing up, when the mouse hovers over each option?

-- 
Context menu for an USB pendrive shows Unmount, Eject and Safely Remove 
Drive
https://bugs.launchpad.net/bugs/453072
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 523108] Re: nvidia x server settings on ubuntu 10.4

2010-02-17 Thread Chris Coulson
** Package changed: gnome-panel (Ubuntu) = nvidia-settings (Ubuntu)

-- 
nvidia x server settings on ubuntu 10.4
https://bugs.launchpad.net/bugs/523108
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 523112] [NEW] Intel Atom CPU can oops because of bug listed in Intel errat AAH41 and AAE44

2010-02-17 Thread Colin King
Public bug reported:

Binary package hint: linux-source-2.6.24

http://download.intel.com/design/processor/specupdt/319536.pdf page 33
describes errata AAE44 which can cause oops at seemingly random places.

Upstream commit 211b3d03c7400f48a781977a50104c9d12f4e229 reduces the
window of opportunity for this bug to occur

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

-- 
Intel Atom CPU can oops because of bug listed in Intel errat AAH41 and AAE44
https://bugs.launchpad.net/bugs/523112
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 523111] [NEW] Could not unmount external usb hd after update

2010-02-17 Thread Jarno Suni
Public bug reported:

I get an error dialog instead of getting the disk unmounted. (I just did
an update that reaquires restarting, but didn't restart yet.)

ProblemType: Bug
Architecture: i386
Date: Wed Feb 17 11:59:28 2010
DistroRelease: Ubuntu 9.10
InstallationMedia: Xubuntu 9.10 Karmic Koala - Release i386 (20091028.3)
Package: exo-utils 0.3.104-2ubuntu1
ProcEnviron:
 PATH=(custom, no user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
ProcVersionSignature: Ubuntu 2.6.31-19.57~ppa2~loms~karmic-generic
SourcePackage: exo
Uname: Linux 2.6.31-19-generic i686

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


** Tags: apport-bug i386

-- 
Could not unmount external usb hd after update
https://bugs.launchpad.net/bugs/523111
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 522920] Re: Sync git-core 1:1.7.0-1 (main) from Debian sid (main)

2010-02-17 Thread Daniel Holbach
ACKed.

** Changed in: git-core (Ubuntu)
   Status: New = Triaged

-- 
Sync git-core 1:1.7.0-1 (main) from Debian sid (main)
https://bugs.launchpad.net/bugs/522920
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 442178] Re: rt2860 doesn't connect on 802.11n wifi

2010-02-17 Thread wolph
Same problem here (eeepc 901). Workaraound works:

sudo iwpriv ra0 set WirelessMode=9 #(WirelessMode=5 aswell)
sudo iwpriv ra0 set HtBw=1

And reconnect manually afterwards via network-manager.

I dont see the point in installing the driver manually, if its just an
configuration issue. I think ubuntu should get its configuration
straight. I came switching from windows and because of this issue first
i was thinking of going back to windows :) cause i need draft-n
connection. New users with less experience might consider this also, so
i hope this gets fixed soon.

In the meantime, is there a way to execute the above commands as root
before network-manager starts the connection?

-- 
rt2860 doesn't connect on 802.11n wifi
https://bugs.launchpad.net/bugs/442178
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 490313] Re: The status icons are not correct

2010-02-17 Thread David Siegel
I would recommend making the bubble stems squatter, making the bubble
bodies more circular and flatter (use a more subtle gradient).

-- 
The status icons are not correct
https://bugs.launchpad.net/bugs/490313
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 523111] Re: Could not unmount external usb hd after update

2010-02-17 Thread Jarno Suni

** Attachment added: Error dialog
   http://launchpadlibrarian.net/39296392/Screenshot.png

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

** Attachment added: XsessionErrors.txt
   http://launchpadlibrarian.net/39296394/XsessionErrors.txt

-- 
Could not unmount external usb hd after update
https://bugs.launchpad.net/bugs/523111
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 523114] [NEW] problem after update ubuntu 10.4

2010-02-17 Thread milos
Public bug reported:

Binary package hint: gnome-panel

problem with keyboard, i cant press enter desktop freezes,  sometimes
scroll lock led switching instead num lock...mozilla doesnt work,cant
open it...volume icon,calendar with time and mail icon
disappear...sometimes i cant restart or shut down cpu...

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

-- 
problem after update ubuntu 10.4
https://bugs.launchpad.net/bugs/523114
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 523113] [NEW] missing manpages for nss tools

2010-02-17 Thread David Cordero
Public bug reported:

Missing manpages on binary tools included in libnss3-tools: certutilk,
modutil, pk12util, shlibsign, signtool and ssltap.

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

-- 
missing manpages for nss tools
https://bugs.launchpad.net/bugs/523113
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 522931] Re: software-properties-kde froze while updating the package list

2010-02-17 Thread Dima Ryazanov
How is this the expected behavior?

As I said, the application froze, completely. I gave up after 5 min. or
so. apt-get update, on the other hand, completes in about a second.

-- 
software-properties-kde froze while updating the package list
https://bugs.launchpad.net/bugs/522931
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 522785] Re: Please sync openal-soft 1:1.11.753-1 from Debian(Unstable)

2010-02-17 Thread Stefan Ebner
Sorry for the trouble.

Rationale:
The package was always on autosync but only the last version was made -0ubuntu1 
and this version doesn't differ from the latest
Debian version so we can sync safely to keep it in autosync.

** Changed in: openal-soft (Ubuntu)
   Status: Incomplete = Confirmed

-- 
Please sync openal-soft 1:1.11.753-1 from Debian(Unstable)
https://bugs.launchpad.net/bugs/522785
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 392589] Re: Default setting for remembering password should be remember until logout

2010-02-17 Thread David Siegel
Yes, but which case is the 80% use case -- user wants the password to be
remembered for the duration of the session and will not be asked for
different credentials for the same SMB share, or a user will be asked
different credentials? If the latter is a corner case, which affecting SMB
shares only suggests it is, we should still consider changing the /default/
behavior so that most users benefit from a better default, while the
possibly relatively smaller population of SMB users exhibiting the use case
Seb describes should be the ones to use a non-default setting.


** Changed in: hundredpapercuts
   Status: Invalid = Incomplete

-- 
Default setting for remembering password should be remember until logout
https://bugs.launchpad.net/bugs/392589
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 523116] [NEW] /usr/sbin/update-usbids.sh doesn't handle gzip usb.ids file from http://www.linux-usb.org/usb.ids

2010-02-17 Thread SC
Public bug reported:

Binary package hint: usbutils

http://www.linux-usb.org/usb.ids returns usb.ids as a gzip file - which
the update-usbids.sh cannot handle using grep.

the following revised script will successfully download the usb.ids
file:

#!/bin/sh

# see also update-pciids.sh (fancier)

[ $1 = -q ]  quiet=true || quiet=false

set -e
SRC=http://www.linux-usb.org/usb.ids;
DEST=/var/lib/misc/usb.ids

# if usb.ids is read-only (because the filesystem is read-only),
# then just skip this whole process.
if ! touch ${DEST} 2 /dev/null ; then
${quiet} || echo ${DEST} is read-only, exiting.
exit 0
fi

if which wget /dev/null 21 ; then
DL=wget -O $DEST.new.gz $SRC
${quiet}  DL=$DL -q
elif which lynx /dev/null 21 ; then
DL=eval lynx -source $SRC $DEST.new.gz
else
echo 2 update-usbids: cannot find wget nor lynx
exit 1
fi

if ! $DL ; then
echo 2 update-usbids: download failed
rm -f $DEST.new
exit 1
fi

gunzip $DEST.new.gz

if ! grep /dev/null ^C  $DEST.new ; then
echo 2 update-usbids: missing class info, probably truncated file
exit 1
fi

if [ -f $DEST ] ; then
mv $DEST $DEST.old
# --reference is supported only by chmod from GNU file, so let's ignore 
any errors
chmod -f --reference=$DEST.old $DEST.new 2/dev/null || true
fi
mv $DEST.new $DEST

${quiet} || echo Done.

ProblemType: Bug
Architecture: amd64
Date: Wed Feb 17 23:10:03 2010
DistroRelease: Ubuntu 9.10
NonfreeKernelModules: fglrx
Package: usbutils 0.82-0ubuntu1 [modified: usr/sbin/update-usbids.sh 
var/lib/misc/usb.ids]
ProcEnviron:
 LANGUAGE=
 LANG=en_NZ.UTF-8
 SHELL=/bin/bash
ProcVersionSignature: Ubuntu 2.6.31-19.56-generic
SourcePackage: usbutils
Uname: Linux 2.6.31-19-generic x86_64
XsessionErrors:
 (firefox:10801): GLib-WARNING **: g_set_prgname() called multiple times
 (polkit-gnome-authentication-agent-1:10809): GLib-CRITICAL **: 
g_once_init_leave: assertion `initialization_value != 0' failed
 (firefox:10846): GLib-WARNING **: g_set_prgname() called multiple times

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


** Tags: amd64 apport-bug

-- 
/usr/sbin/update-usbids.sh doesn't handle gzip usb.ids file from 
http://www.linux-usb.org/usb.ids
https://bugs.launchpad.net/bugs/523116
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 523116] Re: /usr/sbin/update-usbids.sh doesn't handle gzip usb.ids file from http://www.linux-usb.org/usb.ids

2010-02-17 Thread SC

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

-- 
/usr/sbin/update-usbids.sh doesn't handle gzip usb.ids file from 
http://www.linux-usb.org/usb.ids
https://bugs.launchpad.net/bugs/523116
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 523115] [NEW] Sound don't play when I'

2010-02-17 Thread ern0
Public bug reported:

Symptom:

1. Make some noise 
- VLC player
- Firefox, YouTube video
Result: the music starts playing.

2. Switch to another console
Press Ctrl-Alt-Fn where Fn means function keys F1..F6.
Result: the music stops.

3. Log in
Type username and password.
Result: the music resumes (with a small gap).

4. Switch back to X screen
Perss Ctrl-Alt-F7
Result: the music keeps playing with a small gap.

System info:

$ uname -a
Linux ern0notebook 2.6.31-19-generic #56-Ubuntu SMP Thu Jan 28 01:26:53 UTC 
2010 i686 GNU/Linux
$ cat /proc/asound/version 
Advanced Linux Sound Architecture Driver Version 1.0.20.

I did not change any ALSA or console settings, as far as I know.

Also, I can't play music on my desktop machine by logging to it via SSH,
unless I don't log in as the same user. It's also the same system, an
almost virgin install of Ubuntu 9.04. This problem was appeared only
some weeks ago.

I think it's just a rights issue around ALSA or I don't know, but it
should cause mystic problems on systems which runs automated movie
player, remote controlled music player or similar stuff.

** Affects: ubuntu
 Importance: Undecided
 Status: New

-- 
Sound don't play when I'
https://bugs.launchpad.net/bugs/523115
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 523002] Re: Crash on edit from the end

2010-02-17 Thread Diego Argueta
No, it seems to be fixed. If I ever get it to crash again I'll repost.

-- 
Crash on edit from the end
https://bugs.launchpad.net/bugs/523002
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 522969] Re: Jockey doesn't add nvidia-xconfig (Nvidia X Server Settings) to menu after installing nvidia driver until you re-login

2010-02-17 Thread Alberto Milone
** Package changed: jockey (Ubuntu) = gnome-menus (Ubuntu)

** Changed in: gnome-menus (Ubuntu)
   Importance: Undecided = Low

** Changed in: gnome-menus (Ubuntu)
   Status: New = Confirmed

-- 
Jockey doesn't add nvidia-xconfig (Nvidia X Server Settings) to menu after 
installing nvidia driver until you re-login
https://bugs.launchpad.net/bugs/522969
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 507852] Re: pulseaudio: symbol lookup error: pulseaudio: undefined symbol: pa_parse_resample_method

2010-02-17 Thread Michael Kriese
Now I have a new motherboard Gigabyte MA770-UD3 and another problem. :-(
Maybe it is a driver problem? Because pulseaudio ist starting now but i can't 
hear any sound.
I use the onboard card of the mobo.

Sorry, but the burner is a BH08LS20.

-- 
pulseaudio: symbol lookup error: pulseaudio: undefined symbol: 
pa_parse_resample_method
https://bugs.launchpad.net/bugs/507852
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 523119] [NEW] Missing dependency on uuid-runtime

2010-02-17 Thread Petter Reinholdtsen
Public bug reported:

Binary package hint: virt-goodies

When trying to run vmware2libvirt, I ran into this crash:

Traceback (most recent call last):
  File /usr/bin/vmware2libvirt, line 232, in module
/disk''' + get_network(vmx,  bridge) + '''
  File /usr/bin/vmware2libvirt, line 92, in get_new_uuid
raise V2LError('uuidgen' exited with error:  + out)
__main__.V2LError: 'uuidgen' exited with error: [Errno 2] No such file or 
directory

When I looked into it, the problem was that the uuidgen program was missing.  
Installing the uuid-runtime package
solved the problem.  The virt-goodies package should depend on it to get 
vmware2libvirt working out of the box.

** Affects: virt-goodies (Ubuntu)
 Importance: Undecided
 Status: New

-- 
Missing dependency on uuid-runtime
https://bugs.launchpad.net/bugs/523119
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 523118] [NEW] Sound donesn't play when I'm not logged in or just even I switched to another console

2010-02-17 Thread ern0
Public bug reported:

Symptom:

1. Make some noise 
- VLC player
- Firefox, YouTube video
Result: the music starts playing.

2. Switch to another console
Press Ctrl-Alt-Fn where Fn means function keys F1..F6.
Result: the music stops.

3. Log in
Type username and password.
Result: the music resumes (with a small gap).

4. Switch back to X screen
Perss Ctrl-Alt-F7
Result: the music keeps playing with a small gap.

System info:

$ uname -a
Linux ern0notebook 2.6.31-19-generic #56-Ubuntu SMP Thu Jan 28 01:26:53 UTC 
2010 i686 GNU/Linux
$ cat /proc/asound/version 
Advanced Linux Sound Architecture Driver Version 1.0.20.


I did not change any ALSA or console settings, as far as I know.

Also, I can't play music on my desktop machine by logging to it via SSH
and starting VLC (controlling via stdin commands), unless I don't log in
as the same user. My desktop machine is a very same system, an almost
virgin install of Ubuntu 9.04. Have to notice, it was working before,
the problem was appeared only some weeks ago.

I think it's just a rights issue around ALSA or I don't know what, but
it should cause mystic problems on systems which runs automated movie
player, remote controlled music player or similar stuff.

** Affects: ubuntu
 Importance: Undecided
 Status: New


** Tags: audio

-- 
Sound donesn't play when I'm not logged in or just even I switched to another 
console
https://bugs.launchpad.net/bugs/523118
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 523108] Re: nvidia x server settings on ubuntu 10.4

2010-02-17 Thread Alberto Milone
Can you try upgrading to the latest revision of nvidia-96 and see if the
problem persists, please?

-- 
nvidia x server settings on ubuntu 10.4
https://bugs.launchpad.net/bugs/523108
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 523114] Re: problem after update ubuntu 10.4

2010-02-17 Thread Chris Coulson
This doesn't sound like a panel issue

** Package changed: gnome-panel (Ubuntu) = ubuntu

-- 
problem after update ubuntu 10.4
https://bugs.launchpad.net/bugs/523114
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 509736] Re: package mysql-server-5.1 5.1.37-1ubuntu5 failed to install/upgrade: subprocess new pre-installation script returned error exit status 1

2010-02-17 Thread Ronald
I cannot stop the server by hand either. I found out the script must run

/usr/bin/mysqladmin --defaults-file=/etc/mysql/debian.cnf shutdown

...and when I sudo this by hand, I get:

/usr/bin/mysqladmin: connect to server at 'localhost' failed
error: 'Access denied for user 'debian-sys-maint'@'localhost' (using password: 
YES)'

So, there must be a mismatch between the password in debian.cnf and the
password actually in use for debian-sys-maint.

-- 
package mysql-server-5.1 5.1.37-1ubuntu5 failed to install/upgrade: subprocess 
new pre-installation script returned error exit status 1
https://bugs.launchpad.net/bugs/509736
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 469179] Re: can't play audio cd's

2010-02-17 Thread lasda
I'm running 9.10 on a Fujitsu laptop.  The CD / DVD drive on this laptop
is internal, but is internally connected as if it was USB drive.  Data
CDs and DVDs work fine, but it can't see audio CDs.  I get Unable to
mount Audio Disc errors about every minute while an audio CD is in the
drive.  The rest of the message is: DBus error
org.freedesktop.DBus.Error.NoReply: Message did not receive a reply
(timeout by message bus)

I've chased a few threads and tried some of the suggestions, but nothing
helps.

Comments?

-- 
can't play audio cd's
https://bugs.launchpad.net/bugs/469179
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


RE: [Bug 507503] Re: VFP/NEON state is not preserved around signalhandlers, causing state corruption between user processes

2010-02-17 Thread Dave Martin
Hi,

 Thanks  a lot. I will prepare to apply these 2 patches into our fsl-
 imx51 kernel

Thanks.  I suggest to keep an eye on upstream anyway, just in case, but
I don't know when they'll come to agreement.

 
 Happy Chinese New Year.
 -Bryan

To you also!

Cheers
---Dave

-- 
IMPORTANT NOTICE: The contents of this email and any attachments are 
confidential and may also be privileged. If you are not the intended recipient, 
please notify the sender immediately and do not disclose the contents to any 
other person, use it for any purpose, or store or copy the information in any 
medium.  Thank you.

-- 
VFP/NEON state is not preserved around signal handlers, causing state 
corruption between user processes
https://bugs.launchpad.net/bugs/507503
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 285392] Re: Softreset failed (device not ready)

2010-02-17 Thread Michael Kriese
Here I have the same Problem with a LG BH08LS20 (Firmware 2.0).

I use karmic and it needs long time to boot. and after i reboot it hungs
at ahci bios. Then i have do pull the power plug to get it to boot.

I have all updates since yesterday.

-- 
Softreset failed (device not ready)
https://bugs.launchpad.net/bugs/285392
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 442023] Re: Error dialog too wide

2010-02-17 Thread Omer Akram
This is fixed upstream and will be released in empathy 2.29.91 Thanks
for the bug report

** Changed in: empathy (Ubuntu)
   Status: Triaged = Fix Committed

-- 
Error dialog too wide
https://bugs.launchpad.net/bugs/442023
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 427538] Re: kile crashed with SIGSEGV in QStackedWidget::currentWidget()

2010-02-17 Thread Bug Watch Updater
** Changed in: kile
   Status: Unknown = Invalid

-- 
kile crashed with SIGSEGV in QStackedWidget::currentWidget()
https://bugs.launchpad.net/bugs/427538
You received this bug notification because you are a member of Kubuntu
Bugs, which is subscribed to kile in ubuntu.

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


[Bug 435808] Re: ath5k phy0: noise floor calibration *failed* (not *timeout*)

2010-02-17 Thread ^_Pepe_^
Hi all,

Thanks for confirming this issue.

Can you please try installing the following package?  It contains an
updated compat wireless stack which may help.

linux-backports-modules-wireless-karmic-generic

If the issue still remains even after this, I'd encourage you to also try 
installing the latest compat-wireless stack from upstream -
http://wireless.kernel.org/en/users/Download .  This will allow us to escalate 
this issue to the upstream developers.  

Please let us know your results.

Thanks.

-- 
ath5k phy0: noise floor calibration *failed* (not *timeout*)
https://bugs.launchpad.net/bugs/435808
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 367262] Re: Konsole crashes with SIGSEGV when restoring from full screen mode

2010-02-17 Thread Bug Watch Updater
** Changed in: kdebase
   Status: New = Confirmed

-- 
Konsole crashes with SIGSEGV when restoring from full screen mode
https://bugs.launchpad.net/bugs/367262
You received this bug notification because you are a member of Kubuntu
Bugs, which is subscribed to kdebase in ubuntu.

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


[Bug 353902] Re: Can't change Talkers in KTTSMgr

2010-02-17 Thread Harald Sitter
Closing in favor of the KDE bug report, please refer to that report for
status updates. Once the issue is resolved in KDE, it will be made
available to Kubuntu in the following Kubuntu release.

Thanks

** Changed in: kdeaccessibility (Ubuntu)
   Status: Triaged = Invalid

-- 
Can't change Talkers in KTTSMgr
https://bugs.launchpad.net/bugs/353902
You received this bug notification because you are a member of Kubuntu
Bugs, which is subscribed to kdeaccessibility in ubuntu.

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


[Bug 290302] Re: Ugly kmousetool systray icon

2010-02-17 Thread Harald Sitter
Closing this report in favor of the upstream list in techbase.

This issue is never going to be resolved at Kubuntu level but must be
worked on within KDE, or rather oxygen.

** Changed in: kdeaccessibility (Ubuntu)
   Status: Triaged = Invalid

-- 
Ugly kmousetool systray icon
https://bugs.launchpad.net/bugs/290302
You received this bug notification because you are a member of Kubuntu
Bugs, which is subscribed to kdeaccessibility in ubuntu.

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


[Bug 523121] [NEW] Menu entries should show the application name *before* the description

2010-02-17 Thread Alessio Gaeta
Public bug reported:

Binary package hint: gnome-menus

I'm reporting this bug here, but it is a general issue with each program's 
.desktop file.
When navigating menus, I expect to find my applications by their name, but 
often (almost ever) they are ordered by their generic description. I don't know 
if this is an issue that affects all Ubuntu translations, though, but so is for 
the Italian localization.
To be clear, an example: if I wanted to launch Empathy, I would do

Applicazioni - Internet - Empathy [- Messaggistica istantanea]

but I find instead

Applicazioni - Internet - Messaggistica istantanea Empathy

That's could be fine the first time I use Ubuntu (maybe I don't know
what Empathy is...), but next times it is really annoying: I just look
for Empathy, because Empathy is what I want (on white pages you look for
Smith, John, not for Plumber/Fireman/Whatever-work John Smith).

There are good examples too, like Rhythmbox and Gwget, but they are the 
minority.
Marking this as a papercut.
Thank you.

** Affects: hundredpapercuts
 Importance: Undecided
 Status: New

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


** Tags: papercut

** Also affects: hundredpapercuts
   Importance: Undecided
   Status: New

-- 
Menu entries should show the application name *before* the description
https://bugs.launchpad.net/bugs/523121
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 523046] Re: Impossible to change gmail account password

2010-02-17 Thread alecs
Drop and create your account. Buggy shit.

-- 
Impossible to change gmail account password
https://bugs.launchpad.net/bugs/523046
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 522590] Re: rdesktop clipboard (UBUNTU TO WINDOWS) stop working after using windows clipboard (WINDOWS TO WINDOWS) when -f is used

2010-02-17 Thread labiloute
** Summary changed:

- rdesktop clipboard (UBUNTU TO WINDOWS) stop working after using windows 
clipboard (WINDOWS TO WINDOWS)
+ rdesktop clipboard (UBUNTU TO WINDOWS) stop working after using windows 
clipboard (WINDOWS TO WINDOWS) when -f is used

** Description changed:

  Binary package hint: rdesktop
  
  Exemple :
  
  Connect to a rdp Windows Session in a W2k3
  Copy text on the ubuntu session
  Paste it in a wordpad in Windows : IT Works.
  Copy text from your windows session TO your windows session : it works
  Copy AGAIN text from your ubuntu session
  Paste it in your windows session : it doesn't work anymore.
  
  It works on debian with approx same version (1.6.0.2)
  Maybe it's not the rdesktop compilation problem but it's dependancies ?
  
  The problem was found on ubuntu 9.04  9.10.
  
  Cheers
+ 
+ Complement :
+ We found that produce only when fullscreen mode is activated (-f), and when 
you use CTRL+ALT+ENTER to toggle full screen/windowed mode.
+ 
+ Hope it can help

-- 
rdesktop clipboard (UBUNTU TO WINDOWS) stop working after using windows 
clipboard (WINDOWS TO WINDOWS) when -f is used
https://bugs.launchpad.net/bugs/522590
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 497870] Re: Support Application Indicators

2010-02-17 Thread Jan Arne Petersen
app_indicator_new() never fails, so it does not make sense to check it.

-- 
Support Application Indicators
https://bugs.launchpad.net/bugs/497870
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 469677] Re: failed to execute program sync engine

2010-02-17 Thread Paede
*** This bug is a duplicate of bug 469048 ***
https://bugs.launchpad.net/bugs/469048

** This bug has been marked a duplicate of bug 469048
   Synce-trayicon fails to start synce-engine

-- 
failed to execute program sync engine
https://bugs.launchpad.net/bugs/469677
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 424968] Re: Tutorials are missing in Glest packages

2010-02-17 Thread Alex Valavanis
Fixed in version 3.2.2-2:

glest (3.2.2-2) unstable; urgency=low
 .
   [ Paul Wise ]
   * debian/rules:
  - Drop use of dh_desktop since it no longer does anything and
desktop-file-utils 0.15-2 has a trigger (see #525133).
 .
   [ Siegfried-Angel Gevatter Pujals ]
   * debian/control:
  - Add lpia to the Architecture list.
  - Add ${misc:Depends} to Depends.
   * debian/patches/series, debian/patches/missing-cstdio-include:
  - Fix a FTBFS which happens with new GCC versions; thanks to
Steven Susbauer (LP: #376591).
 .
   [ Eddy Petrișor ]
   * enable tutorials by symlinking to the real tutorial directory
 (Closes: #528181)
 .
   [ Alexander Reichle-Schmehl ]
   * Add debian/README.source


** Changed in: glest (Ubuntu)
   Status: In Progress = Fix Released

-- 
Tutorials are missing in Glest packages
https://bugs.launchpad.net/bugs/424968
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 392589] Re: Default setting for remembering password should be remember until logout

2010-02-17 Thread Sebastien Bacher
the default should be changed for smb only then? do you agree it's a non
issue with other protocoles since the shares are usually listed as
mounted for the session?

-- 
Default setting for remembering password should be remember until logout
https://bugs.launchpad.net/bugs/392589
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 523126] [NEW] Wrong CC IP address detected by eucalyptus-ipaddr.conf

2010-02-17 Thread Stefan Bucur
Public bug reported:

When more than one default route exists in the CC host routing table,
eucalyptus-ipaddr.conf does not pick the one with the lowest metric, but
the last one that appears in the ip route output.

For instance, in the following case:

$ ip route
128.178.77.0/24 dev eth2  proto kernel  scope link  src 128.178.77.99 
10.0.0.0/8 dev eth3  proto kernel  scope link  src 10.0.50.1 
default via 128.178.77.1 dev eth2  metric 1 
default via 10.0.0.1 dev eth3  metric 100

the value of $addr will be the IP address of eth3, and not eth2, as I
would have expected.

** Affects: eucalyptus
 Importance: Undecided
 Status: New

** Affects: ubuntu
 Importance: Undecided
 Status: New

** Also affects: ubuntu
   Importance: Undecided
   Status: New

-- 
Wrong CC IP address detected by eucalyptus-ipaddr.conf
https://bugs.launchpad.net/bugs/523126
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 523112] Re: Intel Atom CPU can oops because of bug listed in Intel errata AAH41 and AAE44

2010-02-17 Thread Colin King
** Summary changed:

- Intel Atom CPU can oops because of bug listed in Intel errat AAH41 and AAE44
+ Intel Atom CPU can oops because of bug listed in Intel errata AAH41 and AAE44

-- 
Intel Atom CPU can oops because of bug listed in Intel errata AAH41 and AAE44
https://bugs.launchpad.net/bugs/523112
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 523002] Re: Crash on edit from the end

2010-02-17 Thread Benjamin Drung
I set the bug status to invalid. Please change it back to New, if you
get audacity to crash again.

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

-- 
Crash on edit from the end
https://bugs.launchpad.net/bugs/523002
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 521805] Re: Please upgrade ebox-squid to 1.5

2010-02-17 Thread Javier Uruen Val

** Patch removed: diff for ebox-squid 1.5
   http://launchpadlibrarian.net/39196371/ebox-squid_1.5-0ubuntu1.diff

** Patch added: ebox-squid_1.5-0ubuntu1.diff.gz
   http://launchpadlibrarian.net/39296912/ebox-squid_1.3.5-0ubuntu1.diff.gz

-- 
Please upgrade ebox-squid to 1.5
https://bugs.launchpad.net/bugs/521805
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 385410] Re: vmware2libvirt fails when converting vmx file created under windows

2010-02-17 Thread Petter Reinholdtsen
I ran into this problem too, and can confirm that the fix from Jamin W.
Collins work.

Here is the diff.

--- /tmp/vmware2libvirt 2010-02-17 11:21:15.0 +0100
+++ /usr/bin/vmware2libvirt 2010-02-17 11:21:31.0 +0100
@@ -62,7 +62,7 @@
 for line in vmx:
 if pat.search(line):
 # extract value without quotes
-value = pat.sub('', line)[1:-2]
+value = pat.sub( '', line.replace(\r,))[1:-2]

 if value == :
 raise V2LError(Bad value for ' + key + ')

-- 
vmware2libvirt fails when converting vmx file created under windows
https://bugs.launchpad.net/bugs/385410
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 86325] Re: alsa mixer Multi Track Internal Clock stuck on IEC958 and operation error

2010-02-17 Thread Sebastian Schultz
After resuming from suspend to RAM I have the same problem, sudo alsa
force-reload is helping. Two years since first report..FIX IT!

** Also affects: alsa-utils (Debian)
   Importance: Undecided
   Status: New

-- 
alsa mixer Multi Track Internal Clock stuck on IEC958 and operation error
https://bugs.launchpad.net/bugs/86325
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 523109] Re: Nautilus crashes when using 'Connect to Server' to connect to FTP server or Samba Share

2010-02-17 Thread Sebastien Bacher
Thank you for your bug report, the issue is due to this library
libglib2.0-0 2.22.3-0ubuntu2-ppa2~jaunty which is likely coming from
the ubuntuone ppa, not an ubuntu bug in case so closing this ticket


** Changed in: nautilus (Ubuntu)
   Importance: Undecided = Low

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

-- 
Nautilus crashes when using 'Connect to Server' to connect to FTP server or 
Samba Share
https://bugs.launchpad.net/bugs/523109
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 523131] [NEW] mysql command line do not accept host param

2010-02-17 Thread Daniele Smartango
Public bug reported:

mysql -h myhost.com -u root -proot
ERROR 2005 (HY000): Unknown MySQL server host '' (2)

ProblemType: Bug
Architecture: amd64
Date: Wed Feb 17 11:33:18 2010
DistroRelease: Ubuntu 10.04
Logs.var.log.daemon.log:
 
Logs.var.log.kern.log:
 
MySQLConf.etc.mysql.conf.d.mysqld.safe.syslog.cnf:
 [mysqld_safe]
 syslog
MySQLVarLibDirListing: False
NonfreeKernelModules: nvidia
Package: mysql-client 5.1.41-3ubuntu4
PackageArchitecture: all
ProcEnviron:
 LANGUAGE=it_IT.UTF-8
 PATH=(custom, user)
 LANG=it_IT.UTF-8
 SHELL=/bin/bash
ProcVersionSignature: Ubuntu 2.6.32-13.18-generic
SourcePackage: mysql-dfsg-5.1
Uname: Linux 2.6.32-13-generic x86_64

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


** Tags: amd64 apport-bug lucid

-- 
mysql command line do not accept host param
https://bugs.launchpad.net/bugs/523131
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 523131] Re: mysql command line do not accept host param

2010-02-17 Thread Daniele Smartango

** Attachment added: .etc.apparmor.d.usr.sbin.mysqld.txt
   http://launchpadlibrarian.net/39296997/.etc.apparmor.d.usr.sbin.mysqld.txt

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

** Attachment added: MySQLConf.etc.mysql.my.cnf.txt
   http://launchpadlibrarian.net/39296999/MySQLConf.etc.mysql.my.cnf.txt

-- 
mysql command line do not accept host param
https://bugs.launchpad.net/bugs/523131
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 523129] [NEW] BUG: soft lockup - CPU#0 stuck for 4096s! [swapper:0]

2010-02-17 Thread kuroyuki
Public bug reported:

dmesg.log
[0.00] Initializing cgroup subsys cpuset
[0.00] Initializing cgroup subsys cpu
[0.00] Linux version 2.6.31-14-generic (bui...@rothera) (gcc version 
4.4.1 (Ubuntu 4.4.1-4ubuntu8) ) #48-Ubuntu SMP Fri Oct 16 14:04:26 UTC 2009 
(Ubuntu 2.6.31-14.48-generic)
[0.00] KERNEL supported cpus:
[0.00]   Intel GenuineIntel
[0.00]   AMD AuthenticAMD
[0.00]   NSC Geode by NSC
[0.00]   Cyrix CyrixInstead
[0.00]   Centaur CentaurHauls
[0.00]   Transmeta GenuineTMx86
[0.00]   Transmeta TransmetaCPU
[0.00]   UMC UMC UMC UMC
[0.00] BIOS-provided physical RAM map:
[0.00]  BIOS-e820:  - 0009f800 (usable)
[0.00]  BIOS-e820: 0009f800 - 000a (reserved)
[0.00]  BIOS-e820: 000ca000 - 000cc000 (reserved)
[0.00]  BIOS-e820: 000dc000 - 000e4000 (reserved)
[0.00]  BIOS-e820: 000e8000 - 0010 (reserved)
[0.00]  BIOS-e820: 0010 - 1fef (usable)
[0.00]  BIOS-e820: 1fef - 1feff000 (ACPI data)
[0.00]  BIOS-e820: 1feff000 - 1ff0 (ACPI NVS)
[0.00]  BIOS-e820: 1ff0 - 2000 (usable)
[0.00]  BIOS-e820: fec0 - fec1 (reserved)
[0.00]  BIOS-e820: fee0 - fee01000 (reserved)
[0.00]  BIOS-e820: fffe - 0001 (reserved)
[0.00] DMI present.
[0.00] Phoenix BIOS detected: BIOS may corrupt low RAM, working around 
it.
[0.00] e820 update range:  - 0001 (usable) 
== (reserved)
[0.00] last_pfn = 0x2 max_arch_pfn = 0x10
[0.00] MTRR default type: uncachable
[0.00] MTRR fixed ranges enabled:
[0.00]   0-9 write-back
[0.00]   A-B uncachable
[0.00]   C-CBFFF write-protect
[0.00]   CC000-E uncachable
[0.00]   F-F write-protect
[0.00] MTRR variable ranges enabled:
[0.00]   0 base 0 mask FE000 write-back
[0.00]   1 disabled
[0.00]   2 disabled
[0.00]   3 disabled
[0.00]   4 disabled
[0.00]   5 disabled
[0.00]   6 disabled
[0.00]   7 disabled
[0.00] x86 PAT enabled: cpu 0, old 0x0, new 0x7010600070106
[0.00] Scanning 0 areas for low memory corruption
[0.00] modified physical RAM map:
[0.00]  modified:  - 0001 (reserved)
[0.00]  modified: 0001 - 0009f800 (usable)
[0.00]  modified: 0009f800 - 000a (reserved)
[0.00]  modified: 000ca000 - 000cc000 (reserved)
[0.00]  modified: 000dc000 - 000e4000 (reserved)
[0.00]  modified: 000e8000 - 0010 (reserved)
[0.00]  modified: 0010 - 1fef (usable)
[0.00]  modified: 1fef - 1feff000 (ACPI data)
[0.00]  modified: 1feff000 - 1ff0 (ACPI NVS)
[0.00]  modified: 1ff0 - 2000 (usable)
[0.00]  modified: fec0 - fec1 (reserved)
[0.00]  modified: fee0 - fee01000 (reserved)
[0.00]  modified: fffe - 0001 (reserved)
[0.00] initial memory mapped : 0 - 00c0
[0.00] init_memory_mapping: -2000
[0.00] Using x86 segment limits to approximate NX protection
[0.00]  00 - 40 page 4k
[0.00]  40 - 002000 page 2M
[0.00] kernel direct mapping tables up to 2000 @ 1-14000
[0.00] RAMDISK: 17826000 - 17f73243
[0.00] ACPI: RSDP 000f6940 00024 (v02 PTLTD )
[0.00] ACPI: XSDT 1fefa13b 0003C (v01 INTEL  440BX0604 VMW  
01324272)
[0.00] ACPI: FACP 1fefee98 000F4 (v04 INTEL  440BX0604 PTL  
000F4240)
[0.00] ACPI: DSDT 1fefa21f 04C79 (v01 PTLTD  Custom   0604 MSFT 
0301)
[0.00] ACPI: FACS 1fefffc0 00040
[0.00] ACPI: BOOT 1fefa1f7 00028 (v01 PTLTD  $SBFTBL$ 0604  LTP 
0001)
[0.00] ACPI: APIC 1fefa1a7 00050 (v01 PTLTD  APIC   0604  LTP 
)
[0.00] ACPI: Local APIC address 0xfee0
[0.00] 0MB HIGHMEM available.
[0.00] 512MB LOWMEM available.
[0.00]   mapped low ram: 0 - 2000
[0.00]   low ram: 0 - 2000
[0.00]   node 0 low ram:  - 2000
[0.00]   node 0 bootmap 0001 - 00014000
[0.00] (8 early reservations) == bootmem [00 - 002000]
[0.00]   #0 [00 - 001000]   BIOS data page == [00 
- 001000]
[0.00]   #1 [001000 - 

[Bug 523129] Re: BUG: soft lockup - CPU#0 stuck for 4096s! [swapper:0]

2010-02-17 Thread kuroyuki

** Attachment added: AlsaDevices.txt
   http://launchpadlibrarian.net/39296953/AlsaDevices.txt

** Attachment added: AplayDevices.txt
   http://launchpadlibrarian.net/39296954/AplayDevices.txt

** Attachment added: BootDmesg.txt
   http://launchpadlibrarian.net/39296955/BootDmesg.txt

** Attachment added: Card0.Amixer.values.txt
   http://launchpadlibrarian.net/39296956/Card0.Amixer.values.txt

** Attachment added: Card0.Codecs.codec97.0.ac97.0.0.txt
   http://launchpadlibrarian.net/39296957/Card0.Codecs.codec97.0.ac97.0.0.txt

** Attachment added: Card0.Codecs.codec97.0.ac97.0.0.regs.txt
   
http://launchpadlibrarian.net/39296958/Card0.Codecs.codec97.0.ac97.0.0.regs.txt

** Attachment added: CurrentDmesg.txt
   http://launchpadlibrarian.net/39296959/CurrentDmesg.txt

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

** Attachment added: Lspci.txt
   http://launchpadlibrarian.net/39296961/Lspci.txt

** Attachment added: OopsText.txt
   http://launchpadlibrarian.net/39296962/OopsText.txt

** Attachment added: PciMultimedia.txt
   http://launchpadlibrarian.net/39296964/PciMultimedia.txt

** Attachment added: ProcCpuinfo.txt
   http://launchpadlibrarian.net/39296965/ProcCpuinfo.txt

** Attachment added: ProcInterrupts.txt
   http://launchpadlibrarian.net/39296966/ProcInterrupts.txt

** Attachment added: ProcModules.txt
   http://launchpadlibrarian.net/39296967/ProcModules.txt

** Attachment added: UdevDb.txt
   http://launchpadlibrarian.net/39296968/UdevDb.txt

** Attachment added: UdevLog.txt
   http://launchpadlibrarian.net/39296969/UdevLog.txt

** Attachment added: WifiSyslog.txt
   http://launchpadlibrarian.net/39296970/WifiSyslog.txt

-- 
BUG: soft lockup - CPU#0 stuck for 4096s! [swapper:0]
https://bugs.launchpad.net/bugs/523129
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 165181] Re: Order by Supported Column Slow

2010-02-17 Thread Michael Vogt
The bottle-neck seems to sources-FindInIndex() in rpackage.cc line
~762.

-- 
Order by Supported Column Slow
https://bugs.launchpad.net/bugs/165181
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 523134] [NEW] origami should not use 'nogroup' for group file ownership

2010-02-17 Thread Seth Arnold
*** This bug is a security vulnerability ***

Public security bug reported:

Binary package hint: origami

Origami is using the 'nogroup' group for its group file ownership;
instead, a special group must be created in the same fashion as the
'origami' user.

'nogroup' (and 'nobody') exist so that programs, such as NFS daemons,
can run with those uids, and reasonably expect to access only files in
the filesystem with world (other) read/write access. If there are files
with group owner 'nogroup' in the filesystem, then the point of the
'nogroup' group is broken. (The use of nobody/nogroup for overflow
uid/gid is unfortunate, and yet another compounding reason why origami
shouldn't be using 'nogroup' for file ownership.)

Because the files created by origami do need a group owner of some sort,
I recommend creating a new group when creating a new user. That way, no
other processes on the system get unexpected privileges to the
fold...@home files, and fold...@home does not get unexpected privileges
to other files that might also be making the same mistake. :)

Thanks!

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

** Visibility changed to: Public

-- 
origami should not use 'nogroup' for group file ownership
https://bugs.launchpad.net/bugs/523134
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 516475] Re: thunderbird always displays menus on promary monitor

2010-02-17 Thread Florian Hars
Actually, the thunderbird menu weirdness happens only if you add the
second monitor after thunderbird was started. Workaround: Quit and
restart thunderbird.

** Summary changed:

- thunderbird always displays menus on promary monitor
+ thunderbird doesn't display menus correctly after adding a second monitor

-- 
thunderbird doesn't display menus correctly after adding a second monitor
https://bugs.launchpad.net/bugs/516475
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 481759] Re: [karmic] Sound disappears on 82801I Audio (Thinkpad X200 and T400) after updates

2010-02-17 Thread JEBNUTY_LAUNCHPAD
FIX:

open a GUI mixer (xfce4-mixer), switch to Conexant CX20561 (Hermosa)
(OSS Mixer) and pull up the volume

also this seems to be kind of  duplicate of #349633

-- 
[karmic] Sound disappears on 82801I Audio (Thinkpad X200 and T400) after updates
https://bugs.launchpad.net/bugs/481759
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 305411] Re: crash on start. DirectFBError [DirectFBCreate (adfb) ]: Initialization error!

2010-02-17 Thread helix84
I ran into this issue on karmic i386 after I upgraded to 0.7.6-1 from
Debian sid due to bug #523106.

-- 
crash on start. DirectFBError [DirectFBCreate (adfb) ]: Initialization error!
https://bugs.launchpad.net/bugs/305411
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 165181] Re: Order by Supported Column Slow

2010-02-17 Thread Michael Vogt
A fix could look something like this (this is just a prototype). This
changes sort time to 1.5s (from 59,5s). Ideally we would do that in apt
itself, having some more smartness there.

=== modified file 'common/rpackage.cc'
--- common/rpackage.cc  2010-01-25 10:17:45 +
+++ common/rpackage.cc  2010-02-17 10:30:48 +
@@ -744,6 +744,9 @@
 }
 
 #ifdef WITH_APT_AUTH
+std::mappkgCache::PkgFileIterator, pkgIndexFile* trust_cache;
+std::mappkgCache::PkgFileIterator, pkgIndexFile*::iterator it;
+
 bool RPackage::isTrusted()
 {
pkgCache::VerIterator Ver;
@@ -757,17 +760,24 @@
for (pkgCache::VerFileIterator i = Ver.FileList(); i.end() == false; i++)
{
   pkgIndexFile *Index;
-  if (Sources-FindIndex(i.File(),Index) == false)
- continue;
+  it = trust_cache.find(i.File());
+  if (it == trust_cache.end()) {
+if (Sources-FindIndex(i.File(),Index) == false) 
+   continue;
+  } else {
+Index = (*it).second;
+  }
+  trust_cache.insert( pairpkgCache::PkgFileIterator, pkgIndexFile*(i.File
(), Index) );
+   
   if (_config-FindB(Debug::pkgAcquire::Auth, false))
   {
  std::cerr  Checking index:   Index-Describe()
 (Trusted=  Index-IsTrusted()  )\n;
   }
-  if (Index-IsTrusted())
+  if (Index-IsTrusted()) {
  return true;
+  }
}
-   
return false;
 }
 #else

-- 
Order by Supported Column Slow
https://bugs.launchpad.net/bugs/165181
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 523108] Re: nvidia x server settings on ubuntu 10.4

2010-02-17 Thread milos
i had restricted drivers installed, i uninstall it and install drivers
version 96 from software center, now i get another message: You do not
appear to be using the NVIDIA X driver. Please edit your X configuration
file (just run `nvidia-xconfig` as root), and restart the X server. I
have a problem with keyboard,  cant press enter everything freezes

-- 
nvidia x server settings on ubuntu 10.4
https://bugs.launchpad.net/bugs/523108
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 522698] Re: latest update breaks monochrome

2010-02-17 Thread Matthew Paul Thomas
Part of having design guidelines is knowing when it makes sense to break
them. Having mostly-monochrome icons in the panel makes the panel more
elegant and coherent. But I think IM statuses are one place where we
should not use monochrome icons.

There are two reasons for this. First is a competing consistency: the
Away icon should look the same (a) in the panel, (b) inside the Me
menu, (c) in Empathy's own status menu, and (d) next to contacts in the
contact list. Any inconsistency here would be much more visible than
(for example) inconsistency between the monochrome battery-charging icon
in the panel and the colorful battery-charging icon in the rarely-
visited battery information window.

Second is ease of distinction: for IM status icons it is difficult to
distinguish them if they do not use color, as the Humanity icons in
Ubuntu 9.10 unfortunately demonstrated. (What does a dark grey bubble
with an arrow in it mean, again?)

Perhaps neither of these reasons would be enough on its own. But
combined, I think they definitely are.

Now, there are three ways to implement this. (1) Have the Me menu use
normal icons rather than -panel variants. (2) Have the Me menu use
-panel icons, but have Humanity not provide them (so it falls back to
the non-panel versions). (3) Have the Me menu use -panel icons, and have
Humanity provide them, but make them exactly the same as the non-panel
equivalents. Option 1 is what's happening now, but options 2 and 3 would
provide most freedom for authors of other icon themes who have different
opinions on this topic than I do.

-- 
latest update breaks monochrome
https://bugs.launchpad.net/bugs/522698
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 499392] Re: software-center crashed with TypeError in call_async()

2010-02-17 Thread Flashrom
hh

-- 
software-center crashed with TypeError in call_async()
https://bugs.launchpad.net/bugs/499392
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 442178] Re: rt2860 doesn't connect on 802.11n wifi

2010-02-17 Thread Ledif
Use Webmin to create a bootup action containing the two commands, leave
out 'sudo'.


Regards
Ledif

-- 
rt2860 doesn't connect on 802.11n wifi
https://bugs.launchpad.net/bugs/442178
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 510937] Re: [2.6.32-11 regression] 5 second delay on early boot during usb_id

2010-02-17 Thread Andy Whitcroft
Ok testing seems to indicate that there is a .3s general benefit for
fixing this for the reference platform.  There is also a high
probabality of a multi second delay for a large userbase so this seems
worth fixing.  Testing of some RCU patches is in progress.

-- 
[2.6.32-11 regression] 5 second delay on early boot during usb_id
https://bugs.launchpad.net/bugs/510937
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 523138] [NEW] dkms should not be using the nobody/nogroup uid/gid

2010-02-17 Thread Seth Arnold
*** This bug is a security vulnerability ***

Public security bug reported:

Binary package hint: dkms

DKMS appears to be using nobody uid and nogroup gid for file ownership.

nobody and nogroup exist so that programs, such as NFS daemond, may run
with this uid/gid, so they can only access files with world (other)
read/write privileges. If files in the filesystem are owned by this
uid/gid, it means that programs using nobody/nogroup are making an
incorrect assumption about the filesystem, and could mess around with
the files with the incorrect ownerships. (The fact that nobody/nogroup
are also used for overflow uid/gid is unfortunate, and one more good
reason why files should not be owned by nobody/nogroup.)

Please create a user and group for dkms, so that files are not
accidentally available to programs that have tried to give away their
privileges. (Or, perhaps the 'bin', 'sys', 'adm', or 'src' groups that
already exist in my /etc/group file could have some sort of meaning! :)

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

** Visibility changed to: Public

-- 
dkms should not be using the nobody/nogroup uid/gid
https://bugs.launchpad.net/bugs/523138
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 522688] Re: /etc/init.d/libvirt-bin does not check that libvirtd has terminated on stop

2010-02-17 Thread Chris Bainbridge
Yes.

Do virsh save dom /tmp/x to hang libvirtd (bug #457716)
Then service libvirt-bin restart to restart libvirtd. It reports that the 
service is running but this is not true - in fact the process has died without 
reporting an error. 
If I then run libvirtd manually I get:

# libvirtd
10:51:36.935: error : qemudWritePidFile:494 : Failed to open pid file 
'/var/run/libvirtd.pid' : File exists

The return code of the libvirtd process is 1 - a failure - so the init
script should report fail but it does not.

Also /var/run/libvirtd.pid should be removed when the libvirtd process
isn't running anymore and before attempting to start libvirtd.

-- 
/etc/init.d/libvirt-bin does not check that libvirtd has terminated on stop
https://bugs.launchpad.net/bugs/522688
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 304888] AlsaDevices.txt

2010-02-17 Thread asghar

** Attachment added: AlsaDevices.txt
   http://launchpadlibrarian.net/39297298/AlsaDevices.txt

-- 
No sound in ubuntu, tried all guides I could find and nothing works
https://bugs.launchpad.net/bugs/304888
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 304888] Card0.Amixer.values.txt

2010-02-17 Thread asghar

** Attachment added: Card0.Amixer.values.txt
   http://launchpadlibrarian.net/39297302/Card0.Amixer.values.txt

-- 
No sound in ubuntu, tried all guides I could find and nothing works
https://bugs.launchpad.net/bugs/304888
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 304888] Card0.Codecs.codec97.0.ac97.0.0.txt

2010-02-17 Thread asghar

** Attachment added: Card0.Codecs.codec97.0.ac97.0.0.txt
   http://launchpadlibrarian.net/39297304/Card0.Codecs.codec97.0.ac97.0.0.txt

-- 
No sound in ubuntu, tried all guides I could find and nothing works
https://bugs.launchpad.net/bugs/304888
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 304888] WifiSyslog.txt

2010-02-17 Thread asghar

** Attachment added: WifiSyslog.txt
   http://launchpadlibrarian.net/39297318/WifiSyslog.txt

-- 
No sound in ubuntu, tried all guides I could find and nothing works
https://bugs.launchpad.net/bugs/304888
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 304888] ArecordDevices.txt

2010-02-17 Thread asghar

** Attachment added: ArecordDevices.txt
   http://launchpadlibrarian.net/39297299/ArecordDevices.txt

-- 
No sound in ubuntu, tried all guides I could find and nothing works
https://bugs.launchpad.net/bugs/304888
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 304888] Lspci.txt

2010-02-17 Thread asghar

** Attachment added: Lspci.txt
   http://launchpadlibrarian.net/39297309/Lspci.txt

-- 
No sound in ubuntu, tried all guides I could find and nothing works
https://bugs.launchpad.net/bugs/304888
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 304888] ProcCpuinfo.txt

2010-02-17 Thread asghar

** Attachment added: ProcCpuinfo.txt
   http://launchpadlibrarian.net/39297311/ProcCpuinfo.txt

-- 
No sound in ubuntu, tried all guides I could find and nothing works
https://bugs.launchpad.net/bugs/304888
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 304888] BootDmesg.txt

2010-02-17 Thread asghar

** Attachment added: BootDmesg.txt
   http://launchpadlibrarian.net/39297301/BootDmesg.txt

-- 
No sound in ubuntu, tried all guides I could find and nothing works
https://bugs.launchpad.net/bugs/304888
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 304888] apport-collect data

2010-02-17 Thread asghar
AplayDevices:
  List of PLAYBACK Hardware Devices 
 card 0: SI7012 [SiS SI7012], device 0: Intel ICH [SiS SI7012]
   Subdevices: 0/1
   Subdevice #0: subdevice #0
Architecture: i386
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  asghar 1360 F pulseaudio
 /dev/snd/pcmC0D0p:   asghar 1360 F...m pulseaudio
CRDA: Error: [Errno 2] No such file or directory
Card0.Amixer.info:
 Card hw:0 'SI7012'/'SiS SI7012 with STAC9750,51 at irq 5'
   Mixer name   : 'SigmaTel STAC9750,51'
   Components   : 'AC97a:83847650'
   Controls  : 38
   Simple ctrls  : 24
CurrentDmesg: [   27.060028] eth0: no IPv6 routers present
DistroRelease: Ubuntu 9.10
HibernationDevice: RESUME=UUID=ea1c3f74-9272-4d9a-91b7-043c78410ed1
InstallationMedia: Ubuntu 9.10 Karmic Koala - Release i386 (20091028.5)
IwConfig:
 lono wireless extensions.
 
 eth0  no wireless extensions.
 
 pan0  no wireless extensions.
Lsusb:
 Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
 Bus 003 Device 002: ID 0a12:0001 Cambridge Silicon Radio, Ltd Bluetooth Dongle 
(HCI mode)
 Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
MachineType: Packard Bell NEC 000
Package: linux (not installed)
ProcCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.31-14-generic 
root=UUID=95c974ee-a6cb-4717-a820-5a0ecc31c55d ro
ProcEnviron:
 SHELL=/bin/bash
 LANG=en_US.UTF-8
ProcVersionSignature: Ubuntu 2.6.31-14.48-generic
RelatedPackageVersions:
 linux-backports-modules-2.6.31-14-generic N/A
 linux-firmware 1.24
RfKill:
 0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
Uname: Linux 2.6.31-14-generic i686
UserGroups:
 
dmi.bios.date: 09/10/2004
dmi.bios.vendor: Award Software International, Inc.
dmi.bios.version: 2.0a
dmi.chassis.type: 3
dmi.chassis.vendor: NEC COMPUTERS INTERNATIONAL
dmi.modalias: 
dmi:bvnAwardSoftwareInternational,Inc.:bvr2.0a:bd09/10/2004:svnPackardBellNEC:pn000:pvrPB13211706:cvnNECCOMPUTERSINTERNATIONAL:ct3:cvrKA3I:
dmi.product.name: 000
dmi.product.version: PB13211706
dmi.sys.vendor: Packard Bell NEC

-- 
No sound in ubuntu, tried all guides I could find and nothing works
https://bugs.launchpad.net/bugs/304888
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 304888] Card0.Codecs.codec97.0.ac97.0.0.regs.txt

2010-02-17 Thread asghar

** Attachment added: Card0.Codecs.codec97.0.ac97.0.0.regs.txt
   
http://launchpadlibrarian.net/39297306/Card0.Codecs.codec97.0.ac97.0.0.regs.txt

-- 
No sound in ubuntu, tried all guides I could find and nothing works
https://bugs.launchpad.net/bugs/304888
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 304888] ProcInterrupts.txt

2010-02-17 Thread asghar

** Attachment added: ProcInterrupts.txt
   http://launchpadlibrarian.net/39297313/ProcInterrupts.txt

-- 
No sound in ubuntu, tried all guides I could find and nothing works
https://bugs.launchpad.net/bugs/304888
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 304888] PciMultimedia.txt

2010-02-17 Thread asghar

** Attachment added: PciMultimedia.txt
   http://launchpadlibrarian.net/39297310/PciMultimedia.txt

-- 
No sound in ubuntu, tried all guides I could find and nothing works
https://bugs.launchpad.net/bugs/304888
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 304888] UdevLog.txt

2010-02-17 Thread asghar

** Attachment added: UdevLog.txt
   http://launchpadlibrarian.net/39297316/UdevLog.txt

-- 
No sound in ubuntu, tried all guides I could find and nothing works
https://bugs.launchpad.net/bugs/304888
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   >