[Bug 218428] Re: bind9 broken, not updating ddns zones

2008-04-17 Thread Jamie Strandboge
Thank you for using Ubuntu and taking the time to report a bug. This
package is protected by apparmor and comes with an enforcing profile by
default. It looks like your configuration is using non-standard paths,
so you will need to adjust the apparmor profile in /etc/apparmor.d.
Please see /usr/share/doc/bind9/README.Debian and
https://wiki.ubuntu.com/DebuggingApparmor for more information.

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

-- 
bind9 broken, not updating ddns zones
https://bugs.launchpad.net/bugs/218428
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to bind9 in ubuntu.

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


[Bug 218741] [NEW] scp cuts UTF8 filenames by bytes instead of characters

2008-04-17 Thread Bogdan Butnaru
Public bug reported:

Binary package hint: openssh-client

This is for up-to-date Ubuntu Hardy.

I left some files for copying today using scp (from the openssh-client 
package). I happened to look at the output and noticed some “bad character” 
symbols on the terminal, as pasted below. (These were copy-pasted from the 
console, in a completely UTF8-based environment. Note that the weird characters 
may confuse your browser, make sure it's detected the correct encoding.)

21 Lied pentru voce și pian „Regen”.flac 100% 9938KB   1.9MB/s   00:05
03 Lieduri pentru tenor și pian, op. 15 „S 100% 2524KB   2.5MB/s   00:01 
18 Lied pentru voce și pian „Frauenberuf�� 100%   11MB   1.3MB/s   00:09
06 Lieduri pentru tenor și pian, op. 15 „S 100% 8961KB   2.2MB/s   00:04
09 Lieduri pentru bas și pian, op. 4 „Troi 100%   11MB   1.4MB/s   00:08   
[after resizing the window]
10 Suita nr. 3 pentru orchestră, op. 27 „Săteasca”_ „Pârâu sub lun� 100%   13MB 
  2.6MB/s   00:05

As it happens, the next character on each filename of the two weird
lines was, respectively, ” and ă, both of which are of course displayed
correctly in other places on the same output. Based on this and the
misalignment of the last columns, I think scp cuts too-long-names by
counting bytes rather than characters. This is obviously wrong in UTF8,
since some characters can contain several bytes, in which case the lines
would be cut too early, and occasionally in the “middle” of a character,
thus displaying garbage.

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

-- 
scp cuts UTF8 filenames by bytes instead of characters
https://bugs.launchpad.net/bugs/218741
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openssh in ubuntu.

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


[Bug 218741] Re: scp cuts UTF8 filenames by bytes instead of characters

2008-04-17 Thread Bogdan Butnaru
This is particular bug is relatively easy but complicated to fix. The
problem lies with function refresh_progress_meter in progressmeter.c,
which indeed cuts strings by characters.

The problem with the cut-up characters can be solved relatively simply
by measuring more carefully where to cut the string, using a locale-
sensitive function. The alignment problem is harder, because it depends
on the terminal's ability to display combining characters and full-width
ones.

-- 
scp cuts UTF8 filenames by bytes instead of characters
https://bugs.launchpad.net/bugs/218741
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openssh in ubuntu.

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


[Bug 202508] Re: ssh -X no longer works

2008-04-17 Thread kmon
Any updates? The bug is mark as incomplete but I've included all
information needed, or at least what was mentioned.

-- 
ssh -X no longer works
https://bugs.launchpad.net/bugs/202508
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openssh in ubuntu.

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


[Bug 218875] Re: Error appears when installing Ultimate Edition (Ubuntu Linux) on an Asus Pundit P1-AH2

2008-04-17 Thread morten

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

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

-- 
Error appears when installing Ultimate Edition (Ubuntu Linux) on an Asus Pundit 
P1-AH2
https://bugs.launchpad.net/bugs/218875
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.0 in ubuntu.

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


[Bug 218891] [NEW] converting some doubles to strings yields trailing colon

2008-04-17 Thread Brett Kiefer
Public bug reported:

Binary package hint: php5

1) Description: Ubuntu hardy (development branch), Release: 8.04

2) module php5, Version: 5.2.4-2ubuntu5

3) I expect any number, divided by 10 times itself, then converted to a
string, to yield 0.1

4) In this release, sometimes I get 0.0: (yes, that's 0.0 with a
trailing colon character)

Detailed repro steps:

I can reproduce this bug on 32-bit Hardy Heron's default PHP, running on
VMWare, and have seen it on another user's non-VM setup.

Repro instructions:

$ php -v
PHP 5.2.4-2ubuntu5 with Suhosin-Patch 0.9.6.2 (cli) (built: Feb 27 2008 
20:43:54) 
Copyright (c) 1997-2007 The PHP Group
Zend Engine v2.2.0, Copyright (c) 1998-2007 Zend Technologies

$ cat test.php
?php
for ($d = 0.10; $d  1; $d = $d + 0.1) print $d * 10 .   . ($d / ($d 
* 10)) . \n;
?
1) Description: Ubuntu hardy (development branch), Release: 8.04

2) module php5, Version: 5.2.4-2ubuntu5

$ php test.php
1 0.1
2 0.1
3 0.1
4 0.1
5 0.1
6 0.0:
7 0.0:
8 0.1
9 0.0:
10 0.1

Observed: Iterations 6, 7, and 9 have the output 0.0:
Expected: All of these should have the output 0.1

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

-- 
converting some doubles to strings yields trailing colon
https://bugs.launchpad.net/bugs/218891
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to php5 in ubuntu.

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


[Bug 202508] Re: ssh -X no longer works

2008-04-17 Thread Nick Barcet
** Changed in: openssh (Ubuntu)
   Status: Incomplete = New

-- 
ssh -X no longer works
https://bugs.launchpad.net/bugs/202508
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openssh in ubuntu.

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


[Bug 218311] Re: upgrade from slapd from dapper to hardy fails on DB conversion

2008-04-17 Thread Martin Emrich
I analyzed the problem(s), and I found invalid entries in my ldap
database which seem to have been added during the installation a long
time ago (See also Bug #112631).

-- 
upgrade from slapd from dapper to hardy fails on DB conversion
https://bugs.launchpad.net/bugs/218311
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openldap2.3 in ubuntu.

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


[Bug 217815] Re: When selecting LVM Crypt, erase never ends

2008-04-17 Thread Rick Clark
Since this has been confirmed to affect both kvm and real hardware, I am
marking this critical.

I believe this could affect the ability to do an unattended install of
Ubuntu Server.

While this has been reproduced once on real hardware, it has proved
extremely elusive.  We are still unsure how common this could be, since
we are testing on a small subset of server hardware.

** Changed in: linux (Ubuntu)
   Importance: Undecided = Critical
   Status: New = Confirmed
   Target: None = ubuntu-8.04

-- 
When selecting LVM Crypt, erase never ends
https://bugs.launchpad.net/bugs/217815
You received this bug notification because you are a member of Ubuntu
Server Team, which is a direct subscriber.

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


[Bug 217815] Re: When selecting LVM Crypt, erase never ends

2008-04-17 Thread Matt Zimmerman
I just tested an encrypted configuration on real hardware using the
kubuntu alternate amd64 ISO (20080417.1), and can only confirm some of
the symptoms:

1. It was impossible to cancel the erasure while it was in progress.
The Cancel button did not have focus, and there was no response when
pressing tab.

2. Erasing took a very long time!  There was no indication of progress,
but with the size of the disk I was using, 1% is a lot, so I probably
aborted before it would have displayed any progress.

I did not wait for it to finish, but I was able to switch to a text
console with alt+f2 and confirm that blockdev-wipe was running, and
there was plenty of disk activity, so I saw no indication that there was
a hang in my case.

-- 
When selecting LVM Crypt, erase never ends
https://bugs.launchpad.net/bugs/217815
You received this bug notification because you are a member of Ubuntu
Server Team, which is a direct subscriber.

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


Re: [Bug 217815] Re: When selecting LVM Crypt, erase never ends

2008-04-17 Thread QuentinHartman
On Thu, Apr 17, 2008 at 3:43 PM, Matt Zimmerman [EMAIL PROTECTED] wrote:

 1. It was impossible to cancel the erasure while it was in progress.
 The Cancel button did not have focus, and there was no response when
 pressing tab.


I haven't been able to get to the Cancel button on the Ubuntu Alternate
installer CD's I've been using either. Seems like a different bug?

-- 
-Regards-

-Quentin Hartman-


** Attachment added: unnamed
   http://launchpadlibrarian.net/13544521/unnamed

-- 
When selecting LVM Crypt, erase never ends
https://bugs.launchpad.net/bugs/217815
You received this bug notification because you are a member of Ubuntu
Server Team, which is a direct subscriber.

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


[Bug 192598] Re: username format during login

2008-04-17 Thread Zack Powers
In Windows, entering a domain is required in many other places besides the 
login screen(i.e. mounting networked drives, using proxy servers in IE, etc...).
While the list of domains may be helpful, the best solution would probably 
allow users to input their credentials using the long([EMAIL PROTECTED]) or 
short domain(domain\user) formats.

-- 
username format during login
https://bugs.launchpad.net/bugs/192598
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to likewise-open in ubuntu.

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


[Bug 217815] Re: When selecting LVM Crypt, erase never ends

2008-04-17 Thread Jamie Strandboge
I have tried these many times (without lvm+encrypt) and see the hang
until keyboard event on most installs (~80%) if I don't use preseeding.
If I use full preseeding so that I don't have to enter anything after
specifying the kernel boot options with F6, then it hangs less
frequently (25% of installs hang).  This is all with the kvm setup I
mentioned above.

-- 
When selecting LVM Crypt, erase never ends
https://bugs.launchpad.net/bugs/217815
You received this bug notification because you are a member of Ubuntu
Server Team, which is a direct subscriber.

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


[Bug 217956] Re: totem depends on libtrackerclient (even when tracker is not installed)

2008-04-17 Thread Marcel Stimberg
You're actually right - totem now explicitly depends on totem-plugins
(it was different in the previous version...). This does not seem to me
like a good idea, a set of recommended plugins (as in the description)
should be a recommends not a depends... I therefore mark this bug as
confirmed (although it's a minor problem, see next comment), sorry for
closing it.

Regarding your initial problem: The totem package is only a dummy
package for installing either totem-gstreamer or totem-xine. If you
remove totem and totem-plugins while keeping totem-gstreamer installed,
totem should be running fine...

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

-- 
totem depends on libtrackerclient (even when tracker is not installed)
https://bugs.launchpad.net/bugs/217956
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 205223] Re: 32bit GdkPixbuf modules not loaded when using ia32-libs

2008-04-17 Thread Matthias Klose
this contradicts your comment in
https://bugs.edge.launchpad.net/ubuntu/+source/ia32-libs/+bug/177869/comments/11

which comment is the correct one?

-- 
32bit GdkPixbuf modules not loaded when using ia32-libs
https://bugs.launchpad.net/bugs/205223
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 177869] Re: vmware-server-console broken after 2.2ubuntu2

2008-04-17 Thread Matthias Klose
please remove /usr/lib/vmware-server-
console/lib/libgcc_s.so.1/libgcc_s.so.1 and recheck; vmware is just
wrong to install an old copy of libgcc_s.so.1 if a newer one exists on
the system.


** Also affects: gtk+2.0 (Ubuntu)
   Importance: Undecided
   Status: New

-- 
vmware-server-console broken after 2.2ubuntu2
https://bugs.launchpad.net/bugs/177869
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 162993] Re: ia32-libs missing 32-bit gnome libraries needed for gtk stock icons

2008-04-17 Thread Matthias Klose
** This bug is no longer a duplicate of bug 190227
   ia32 apps look for libs on the wrong place

-- 
ia32-libs missing 32-bit gnome libraries needed for gtk stock icons
https://bugs.launchpad.net/bugs/162993
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 218478] Re: X server will not start after enabling restricted nvidia drivers

2008-04-17 Thread Laszlo Pandy
Here is a patch that fixes the issue for me. Now in the case that there
is no Screen or Device section in the xorg.conf, instead of just
creating a new section, it creates a new section and sets the identifier
to Default Screen and Default Device respectively.

I have tested and verified that this fixes the bug for my Nvidia card.
In the patch I have also fixed the code for the fglrx driver, however
since I do not have an ati card, I cannot test this. I do believe it
will work fine simply because the code is nearly identical for both and
I simply copied over the code that worked for nvidia.

** Attachment added: Patch to fix this bug for nvidia and fglrx
   http://launchpadlibrarian.net/13534249/jockey.diff

-- 
X server will not start after enabling restricted nvidia drivers
https://bugs.launchpad.net/bugs/218478
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 196129] Re: [hardy] X server does not start on G3 iMac.

2008-04-17 Thread Niels Kristian Bech Jensen
*** This bug is a duplicate of bug 22976 ***
https://bugs.launchpad.net/bugs/22976

** This bug has been marked a duplicate of bug 22976
   Live CD boots to a black screen on Blueberry G3 iMac

-- 
[hardy] X server does not start on G3 iMac.
https://bugs.launchpad.net/bugs/196129
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 137572] Re: (Gusty) Totem doesn't load subtitles

2008-04-17 Thread Ovidiu Soare
** Description changed:

  Binary package hint: totem
  
- When in the same folder are: *.avi file, *.txt file and *.sub file Totem
- doesn't load ANY file with the subtitles although the movie is played
- (There is no such a problem using SMPlayer).
+ When in the same folder are: *.avi file, *.txt file and *.sub file Totem 
doesn't load ANY file with the subtitles although the movie is played (There is 
no such a problem using SMPlayer).
+   When I choose from View,Subtitles, is shown as empty, even if in same 
folder is the subtitle with .txt extension, but as the guy above said, even is 
with another type of extension is same problem.Just play for your self any 
movie with .avi extension and you ll see it.

-- 
(Gusty) Totem doesn't load subtitles
https://bugs.launchpad.net/bugs/137572
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 218525] [NEW] package update-manager 1:0.87.18 failed to install/upgrade: ErrorMessage: SystemError in cache.commit(): E:Sub-process /usr/bin/dpkg returned an error code (2)

2008-04-17 Thread Brian Rowe
Public bug reported:

Binary package hint: update-manager

I lost the exact output, saddly.  But it was an error involving the
configuration phase of installing initramfs-tools.

ProblemType: Package
Architecture: amd64
Date: Thu Apr 17 01:59:30 2008
DistroRelease: Ubuntu 8.04
ErrorMessage: ErrorMessage: SystemError in cache.commit(): E:Sub-process 
/usr/bin/dpkg returned an error code (2)

NonfreeKernelModules: cisco_ipsec nvidia
Package: update-manager 1:0.87.18
PackageArchitecture: all
SourcePackage: update-manager
Title: package update-manager 1:0.87.18 failed to install/upgrade: 
ErrorMessage: SystemError in cache.commit(): E:Sub-process /usr/bin/dpkg 
returned an error code (2)
Uname: Linux 2.6.22-14-generic x86_64

** Affects: update-manager (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package

-- 
package update-manager 1:0.87.18 failed to install/upgrade: ErrorMessage: 
SystemError in cache.commit(): E:Sub-process /usr/bin/dpkg returned an error 
code (2)
https://bugs.launchpad.net/bugs/218525
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 218525] Re: package update-manager 1:0.87.18 failed to install/upgrade: ErrorMessage: SystemError in cache.commit(): E:Sub-process /usr/bin/dpkg returned an error code (2)

2008-04-17 Thread Brian Rowe

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

-- 
package update-manager 1:0.87.18 failed to install/upgrade: ErrorMessage: 
SystemError in cache.commit(): E:Sub-process /usr/bin/dpkg returned an error 
code (2)
https://bugs.launchpad.net/bugs/218525
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 218519] Re: [Hardy] Firebug broken with latest firefox

2008-04-17 Thread LinuxJedi
Cool, any chance of the fix being backported?

-- 
[Hardy] Firebug broken with latest firefox
https://bugs.launchpad.net/bugs/218519
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 205923] Re: openoffice in hardy doesn't build on powerpc

2008-04-17 Thread Herbert V. Riedel
jfyi, currently:

# apt-get install openoffice.org
...
The following packages have unmet dependencies:
  openoffice.org: Depends: openoffice.org-officebean but it is not installable
E: Broken packages

# apt-cache policy openoffice.org
openoffice.org:
  Installed: (none)
  Candidate: 1:2.4.0-3ubuntu5
  Version table:
 1:2.4.0-3ubuntu5 0
500 http://ports.ubuntu.com hardy/main Packages

-- 
openoffice in hardy doesn't build on powerpc
https://bugs.launchpad.net/bugs/205923
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 162993] Re: ia32-libs missing 32-bit gnome libraries needed for gtk stock icons

2008-04-17 Thread Matthias Klose
ok, then closing. According to 
https://bugzilla.mozilla.org/show_bug.cgi?id=402742
mozilla can do without the gnome libs. If not, please reopen and reassign to 
firefox


** Changed in: ia32-libs (Ubuntu)
   Status: Confirmed = Fix Released

-- 
ia32-libs missing 32-bit gnome libraries needed for gtk stock icons
https://bugs.launchpad.net/bugs/162993
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 212033] Re: mozilla vlc plugin not playing media

2008-04-17 Thread Jithin Emmanuel
Flash is working correctly for me. Problem is when i play multimedia
files. For example if i search temple on answers.com there is a link to
its pronunciation http://www.answers.com/temple - a symbol with volume
icon. That is not working. And the problem i mentioned before occurs.

-- 
mozilla vlc plugin not playing media
https://bugs.launchpad.net/bugs/212033
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 85550] Re: mplayer fails to decode mp3 audio on ppc

2008-04-17 Thread Herbert V. Riedel
*** This bug is a duplicate of bug 104630 ***
https://bugs.launchpad.net/bugs/104630

jfyi, mplayer seems to work for me on a 7447a/G4 powerpc in hardy

-- 
mplayer fails to decode mp3 audio on ppc
https://bugs.launchpad.net/bugs/85550
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 46578] Re: [regression] 2.6.15-22-powerpc - 2.6.15-23-powerpc: direct rendering gone missing with

2008-04-17 Thread Herbert V. Riedel
jfyi, with hardy this bug is obsolete for me...

-- 
[regression] 2.6.15-22-powerpc - 2.6.15-23-powerpc: direct rendering gone 
missing with 
https://bugs.launchpad.net/bugs/46578
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 211026] Re: Ubuntu 8.04 Freeze when downloading from bittorent

2008-04-17 Thread wieman01
PC locked up on me over night. Left it running for testing purposes. The
X server froze and I had to ctrl+alt+backspace my way out.

Good news is no more kernel freezes. Just X.

-- 
Ubuntu 8.04 Freeze when downloading from bittorent
https://bugs.launchpad.net/bugs/211026
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 193935] Re: Long startup-time and instability

2008-04-17 Thread KeKc
I confirm, that gnome-support packages are not installed..

-- 
Long startup-time and instability 
https://bugs.launchpad.net/bugs/193935
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 191137] Re: [Hardy] ACPI Embedded Controller (EC) stops boot when kernel boot 'quiet' option is enabled

2008-04-17 Thread TJ
Vladimir - that doesn't surprise me! I got the ec_intr setting from
Greg Kroah-Hartman's Linux Kernel in a Nutshell, kernel parameters.
However, when I searched the source to find out what it does I find it
doesn't exist!

The good news is 2.6.25-rc9 isn't affected so hopefully we can identify
the commits that have changed the behaviour. Looks like we're back to
the quiet option until then (or leaving AC unplugged/switched off).

** Summary changed:

- [Hardy] ACPI Embedded Controller (EC) stops boot when kernel boot 'quiet' 
option is enabled
+ [Hardy] ACPI Embedded Controller (EC) stops boot when kernel boot 'quiet' 
option is enabled or AC power is connected

-- 
[Hardy] ACPI Embedded Controller (EC) stops boot when kernel boot 'quiet' 
option is enabled or AC power is connected
https://bugs.launchpad.net/bugs/191137
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 190227] Re: ia32 apps look for libs on the wrong place

2008-04-17 Thread Matthias Klose

this contradicts your comment in
https://bugs.edge.launchpad.net/ubuntu/+source/ia32-libs/+bug/177869/comments/11

which comment is the correct one?

-- 
ia32 apps look for libs on the wrong place
https://bugs.launchpad.net/bugs/190227
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 188492] Re: console-setup/layoutcode settings are ignored

2008-04-17 Thread Michael Kofler
should I wait for daily of April 17th before I test again?

-- 
console-setup/layoutcode settings are ignored
https://bugs.launchpad.net/bugs/188492
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 218529] [NEW] Gstrreamer problem

2008-04-17 Thread Emile Rusten
Public bug reported:

Hey!
I've got a sound issue I hope you guys could help me with. Basically the 
problem is with gstreamer and I can't hear any sound in some applications. 
Systeme sounds are ok (when I test it in the preferences menu) and applications 
like VLC works properly. Others though, doesn't work, probably because 
depending of Gstreamer.

I don't have sounds for Pidgin and when running through the terminal and
trying to run the sound test in ToolsPreferencesSound, i get following
error message in the console:

(pidgin:6470): GStreamer-CRITICAL **: gst_bin_add: assertion
`GST_IS_ELEMENT (element)' failed

(pidgin:6470): GStreamer-CRITICAL **: gst_element_link_pads: assertion
`GST_IS_ELEMENT (dest)' failed

(pidgin:6470): GStreamer-CRITICAL **: gst_element_link_pads: assertion 
`GST_IS_ELEMENT (src)' failed


Doing the same for rhytmbox i get:

(rhythmbox:6740): GLib-GObject-CRITICAL **: g_object_set: assertion
`G_IS_OBJECT (object)' failed

(rhythmbox:6740): GStreamer-CRITICAL **: gst_bin_add: assertion
`GST_IS_ELEMENT (element)' failed

(rhythmbox:6740): GStreamer-CRITICAL **: gst_element_link_pads:
assertion `GST_IS_ELEMENT (dest)' failed

(rhythmbox:6740): GStreamer-CRITICAL **: gst_element_link_pads:
assertion `GST_IS_ELEMENT (src)' failed

(rhythmbox:6740): RhythmDB-CRITICAL **: rhythmdb_entry_get_string: assertion 
`entry != NULL' failed


Now it seems that a lot of applications depends of gstreamer, like 
ubuntu-desktop, so I think its not a good idea to remove it directly but i'm 
not so experienced..
I'm using Ubuntu Gutsy btw.
That's it!

** Affects: ubuntu
 Importance: Undecided
 Status: New

-- 
Gstrreamer problem
https://bugs.launchpad.net/bugs/218529
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 218528] [NEW] Failed to initialize HAL

2008-04-17 Thread Joe_Bishop
Public bug reported:

This error message appears after logging in the Gnome.

** Affects: ubuntu
 Importance: Undecided
 Status: New

-- 
Failed to initialize HAL
https://bugs.launchpad.net/bugs/218528
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 218528] Re: Failed to initialize HAL

2008-04-17 Thread Joe_Bishop

** Attachment added: hal.log
   http://launchpadlibrarian.net/13534422/hal.log

-- 
Failed to initialize HAL
https://bugs.launchpad.net/bugs/218528
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 218528] Re: Failed to initialize HAL

2008-04-17 Thread Joe_Bishop
Another log

** Attachment added: kern.log
   http://launchpadlibrarian.net/13534423/kern.log

-- 
Failed to initialize HAL
https://bugs.launchpad.net/bugs/218528
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 217705] Re: custom compiz options are not visible / shown in the appearence dialog

2008-04-17 Thread soxs
*** This bug is a duplicate of bug 210525 ***
https://bugs.launchpad.net/bugs/210525

It _is_ bug. It worked in gutsy, so this is just a nasty regression.

-- 
custom compiz options are not visible / shown in the appearence dialog
https://bugs.launchpad.net/bugs/217705
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 211726] Re: losetup fails when using the 'file:/', preventing the DomU from being created

2008-04-17 Thread Elie De Brauwer
For the installation itself i'm not sure, by the time I discovered I had
to use tap:aio: I had already installed the  OS using the /dev/loop
trick.

-- 
losetup fails when using the 'file:/', preventing the DomU from being created
https://bugs.launchpad.net/bugs/211726
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 205923] Re: openoffice in hardy doesn't build on powerpc

2008-04-17 Thread Chris Cheney
Yes, already known and reported on the other powerpc doesn't build bug
report and has been fixed in OOo revision control system. The fix will
be released in an upload later this week after the RC release.

Chris

-- 
openoffice in hardy doesn't build on powerpc
https://bugs.launchpad.net/bugs/205923
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 141118] Re: [gutsy] cursor endian problem

2008-04-17 Thread Herbert V. Riedel
jfyi, seems to work fine here

-- 
[gutsy] cursor endian problem
https://bugs.launchpad.net/bugs/141118
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 104037] Re: prism2 doesn't work with network-manager

2008-04-17 Thread Tormod Volden
Jakob, please file a new bug where you explain what you see, error
messages, lsusb and dmesg output and so on.

-- 
prism2 doesn't work with network-manager
https://bugs.launchpad.net/bugs/104037
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 200451] Re: [HARDY][REGRESSION] No Audio on Thinkpad (T61p)

2008-04-17 Thread Kevin Gabbert
*** This bug is a duplicate of bug 200338 ***
https://bugs.launchpad.net/bugs/200338

broke for me on a fresh install of Hardy:

00:06.0 Multimedia audio controller [0401]: nVidia Corporation nForce3 250Gb 
AC'97 Audio Controller [10de:00ea] (rev a1)
Subsystem: ASUSTeK Computer Inc. Unknown device [1043:812a]
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B-
Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast TAbort- TAbort- 
MAbort- SERR- PERR-
Latency: 0 (500ns min, 1250ns max)
Interrupt: pin A routed to IRQ 11
Region 0: I/O ports at e800 [size=256]
Region 1: I/O ports at e400 [size=128]
Region 2: Memory at febfb000 (32-bit, non-prefetchable) [size=4K]
Capabilities: access denied

-- 
[HARDY][REGRESSION] No Audio on Thinkpad (T61p)
https://bugs.launchpad.net/bugs/200451
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 140441] Re: pencam stv680 gutsy

2008-04-17 Thread Mircea Postolache
I have checked the same camera on a machine with Intel 64 processor (the
first one was a Sempron) and it works perfectly. could it be something
related to the chipsets on the motherboard? The usb driver?

-- 
pencam stv680 gutsy
https://bugs.launchpad.net/bugs/140441
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 218530] [NEW] OpenOffice crashes when adding heading row repeat on tables

2008-04-17 Thread Graham Hodge
Public bug reported:

Binary package hint: openoffice.org

May be related to bug #178080, but sounds a bit different.

When attempting to turn on Heading Row Repeat, OO crashes every time if
there are merged table cells crossing a page boundary. (The recovery
from crash also behaves oddly, getting itself stuck in an endless loop
until you cancel out.)

However, this ONLY seems to happen on my Linux (Ubuntu 7.10) box.  When
using same version of OO (2.3.0) on Windows XP, this does not happen and
the Heading Row Repeat works fine on the same file.

Hope this helps !

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

-- 
OpenOffice crashes when adding heading row repeat on tables
https://bugs.launchpad.net/bugs/218530
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 133302] Re: powerbook g4 15 hr (oct 2005) not properly supported

2008-04-17 Thread Herbert V. Riedel
jfyi, I don't use displayconfig-gtk anymore; and on hardy
System-Preferences-ScreenResolution works more or less thanks to
xrandr...

(except for strange devices that lack modeline information in their DDC
reply, such as the panasonic PT-AX200)

oh, and one minor detail:
my samsung TFT offers the following modes:
and the preferences display coalesces the 60.0 and 59.9 setting into a single 
'60 Hz' setting choice...

DVI-0 connected 1600x1200+0+0 (normal left inverted right x axis y axis) 432mm 
x 324mm
   1600x1200  60.0*+   59.9  
   1280x1024  75.0 59.9  
   1152x864   75.0  
   1024x768   75.1 70.1 60.0  
   832x62474.6  
   800x60072.2 75.0 60.3 56.2  
   640x48075.0 72.8 66.7 60.0  
   720x40070.1

-- 
powerbook g4 15 hr (oct 2005) not properly supported
https://bugs.launchpad.net/bugs/133302
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 182038] Re: Black rectangle instead of image in FF3 [Hardy]

2008-04-17 Thread Toltech
I now reinstalled the open source nv driver and went to my black
rectangle test site and things appear to be working now. Also the
screen saver is working again. I will keep my system on the open source
nv driver and test if the black rectangles reappear. The proprietary
driver seemed to be working fine.

-- 
Black rectangle instead of image in FF3 [Hardy]
https://bugs.launchpad.net/bugs/182038
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 218531] [NEW] applet.py crashed with SIGSEGV in PyType_Ready()

2008-04-17 Thread Kevin Gabbert
Public bug reported:

Binary package hint: system-config-printer

fresh install of Hardy

ProblemType: Crash
Architecture: i386
Date: Wed Apr 16 23:44:50 2008
DistroRelease: Ubuntu 8.04
ExecutablePath: /usr/share/system-config-printer/applet.py
InterpreterPath: /usr/bin/python2.5
Package: system-config-printer-gnome 0.7.81+svn1976-0ubuntu7
PackageArchitecture: all
ProcCmdline: python /usr/share/system-config-printer/applet.py
ProcEnviron:
 PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
 LANG=en_US.UTF-8
 SHELL=/bin/bash
Signal: 11
SourcePackage: system-config-printer
StacktraceTop:
 PyType_Ready ()
 ?? ()
 ?? ()
 ?? ()
Title: applet.py crashed with SIGSEGV in PyType_Ready()
Uname: Linux 2.6.24-16-generic i686
UserGroups: adm admin audio cdrom dialout dip floppy fuse lpadmin plugdev video

** Affects: system-config-printer (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-crash

-- 
applet.py crashed with SIGSEGV in PyType_Ready()
https://bugs.launchpad.net/bugs/218531
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 218531] Re: applet.py crashed with SIGSEGV in PyType_Ready()

2008-04-17 Thread Kevin Gabbert

** Attachment added: CoreDump.gz
   http://launchpadlibrarian.net/13534636/CoreDump.gz

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

** Attachment added: Disassembly.txt
   http://launchpadlibrarian.net/13534638/Disassembly.txt

** Attachment added: ProcMaps.txt
   http://launchpadlibrarian.net/13534639/ProcMaps.txt

** Attachment added: ProcStatus.txt
   http://launchpadlibrarian.net/13534640/ProcStatus.txt

** Attachment added: Registers.txt
   http://launchpadlibrarian.net/13534641/Registers.txt

** Attachment added: Stacktrace.txt
   http://launchpadlibrarian.net/13534642/Stacktrace.txt

** Attachment added: ThreadStacktrace.txt
   http://launchpadlibrarian.net/13534643/ThreadStacktrace.txt

-- 
applet.py crashed with SIGSEGV in PyType_Ready()
https://bugs.launchpad.net/bugs/218531
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


Re: [Bug 218204] Re: kvm crash when clicking on pause

2008-04-17 Thread Nick Barcet
Soren Hansen wrote:
 There's possibly a fixed version in the ubuntu-virt ppa.
 
   https://edge.launchpad.net/~ubuntu-virt/+archive
 
 Please test it and let me know.

It does indeed fix the problem. Thanks Soren.

-- 
kvm crash when clicking on pause
https://bugs.launchpad.net/bugs/218204
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 205093] Re: [Hardy] Screen detection problems with xorg, nvidia and an Acer AL2216W

2008-04-17 Thread Creak
I've just tried your technique M Pietila but it stills doesn't work.
It seems that globally, the idea of removing then reinstalling everything 
doesn't work for my problem. I think I tried quite everything now.

BTW, I retried the 173.08 so that there wasn't the VESA lines. I
succeeded (i.e. I had NVIDIA lines instead), but the problem is still
here... :(

I'll try another complete reinstallation of Ubuntu when I'll have the
time...

-- 
[Hardy] Screen detection problems with xorg, nvidia and an Acer AL2216W
https://bugs.launchpad.net/bugs/205093
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 140441] Re: pencam stv680 gutsy

2008-04-17 Thread Mircea Postolache
Also tried with Ubuntu 7.10 32bit running on a Intel 64bit. Works. So it
might be that only on AMD platforms it fails. Can you confirm this? I
asked a friend with AMD to test these days.

-- 
pencam stv680 gutsy
https://bugs.launchpad.net/bugs/140441
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 218516] Re: [hardy] key events are delayed under circumstances

2008-04-17 Thread Chris Jones
Absolutely confirmed, I regularly get a dozen or more blank lines after
I hit enter to do a sudo apt-get operation (because the enter event is
being repeated). It's extremely problematic because of being associated
with sudo (e.g. I don't get to answer Y/n to apt-get, I get the default
picked and if I'm lucky I can ctrl-c it before it actually happens, so I
can review it).

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

-- 
[hardy] key events are delayed under circumstances
https://bugs.launchpad.net/bugs/218516
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


Re: [Bug 206227] [NEW] vinagre fails to connect

2008-04-17 Thread Nick Barcet
status: confirmed

Similar issue here trying to MacOSX 10.5 while it work fine with
xtightvncviewer.


** Attachment added: signature.asc
   http://launchpadlibrarian.net/13534691/signature.asc

-- 
vinagre fails to connect
https://bugs.launchpad.net/bugs/206227
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 202730] Re: IR not working with AOpen MP965-DR

2008-04-17 Thread PascalCavy
still true before hardy release,  though a fix seems to exist according
to Robert

-- 
IR not working with AOpen MP965-DR
https://bugs.launchpad.net/bugs/202730
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 218533] [NEW] cannot play csnd file

2008-04-17 Thread Jani Monoses
Public bug reported:

Binary package hint: csound

Trying to play this sound file generated by sugar-pippy-activity (from
OLPC's sugar interface) does not work

jani$ csound /home/jani/.sugar/default/pippy/temp.csd

PortMIDI real time MIDI plugin for Csound
PortAudio real-time audio module for Csound
virtual_keyboard real time MIDI plugin for Csound
0dBFS level = 32768.0
Csound version 5.08 (double samples) Apr 12 2008
libsndfile-1.0.17
UnifiedCSD:  /home/jani/.sugar/default/pippy/temp.csd
STARTING FILE
Creating options
Creating orchestra
Creating score
orchname:  /tmp/fileUkT32u.orc
scorename: /tmp/fileuw9wYN.sco
rtaudio: ALSA module enabled
rtmidi: PortMIDI module enabled
orch compiler:
13 lines read
instr   1   
sorting score ...
... done
Csound version 5.08 (double samples) Apr 12 2008
displays suppressed
0dBFS level = 32768.0
orch now loaded
audio buffered in 256 sample-frame blocks
 *** Cannot open device 'plughw' for audio output: Device or resource busy
Failed to initialise real time audio output
inactive allocs returned to freespace
end of score.  overall amps:  0.0
   overall samples out of range:0
1 errors in performance

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

-- 
cannot play csnd file
https://bugs.launchpad.net/bugs/218533
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 218533] Re: cannot play csnd file

2008-04-17 Thread Jani Monoses

** Attachment added: csound file
   http://launchpadlibrarian.net/13534745/temp.csd

-- 
cannot play csnd file
https://bugs.launchpad.net/bugs/218533
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 218532] [NEW] pulseaudio sounds breaking when workrave take over the full screen

2008-04-17 Thread Jery Wang
Public bug reported:

Binary package hint: pulseaudio

Hardy Heron updated until April 17, 2008.

With workrave installed. When workrave is activated (break full screen),
while playing any mp3 using rhythimbox 0.11.5, the sound breaks.

It also happens when changing window.

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

-- 
pulseaudio sounds breaking when workrave take over the full screen
https://bugs.launchpad.net/bugs/218532
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 182345] Re: nautilus crashed with SIGSEGV in gconf_client_remove_dir()

2008-04-17 Thread Krešo Kunjas
confirming. i have the same issue.

-- 
nautilus crashed with SIGSEGV in gconf_client_remove_dir()
https://bugs.launchpad.net/bugs/182345
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 218534] [NEW] JavaScript vulnerability in Firefox/Thunderbird/SeaMonkey before 2.0.0.13/1.1.9

2008-04-17 Thread slasher-fun
*** This bug is a security vulnerability ***

Public security bug reported:

Binary package hint: firefox

Multiple unspecified vulnerabilities in Mozilla Firefox before 2.0.0.13,
Thunderbird before 2.0.0.13, and SeaMonkey before 1.1.9 allow remote
attackers to cause a denial of service (crash) and possibly execute
arbitrary code via unknown vectors related to the JavaScript engine.
(reported as CVE-2008-1237)

This has been fixed in Firefox 2.0.0.14, Thunderbird 2.0.0.14, SeaMonkey
1.1.10

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

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

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

** Also affects: thunderbird (Ubuntu)
   Importance: Undecided
   Status: New

** Also affects: seamonkey (Ubuntu)
   Importance: Undecided
   Status: New

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

** Visibility changed to: Public

-- 
JavaScript vulnerability in Firefox/Thunderbird/SeaMonkey before 2.0.0.13/1.1.9
https://bugs.launchpad.net/bugs/218534
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 212033] Re: mozilla vlc plugin not playing media

2008-04-17 Thread Coffen
Ok, so that is a quicktime clip.
Quicktime isn't supported that well by Linux.

You could try looking at this post -- 
http://ubuntuforums.org/showthread.php?t=547844
Post #3 could be of interest.

-- 
mozilla vlc plugin not playing media
https://bugs.launchpad.net/bugs/212033
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


Re: [Bug 63450] Re: acpid install fails (because of hal running)

2008-04-17 Thread Martin Pitt
Michael Vogt [2008-04-16 22:26 -]:
 Hm, that might be a side effect of the following problem:
 
 [95.6009] policykit: Configuring policykit
  * Reloading system message bus config...^M
 Error org.freedesktop.DBus.Error.Failed: Element 
 standard_system_servicedirs not allowed inside busconfig in configuration 
 file^M
 invoke-rc.d: initscript dbus, action reload failed.^M

That would be it, yes. Was this during an upgrade from dapper? Please
keep in mind that hal should not be restarted on upgrades from earlier
than gutsy. The current acpi patch from above restarts it
unconditionally, but you mentioned that you changed this?

-- 
acpid install fails (because of hal running)
https://bugs.launchpad.net/bugs/63450
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 22976] Re: Live CD boots to a black screen on Blueberry G3 iMac

2008-04-17 Thread Niels Kristian Bech Jensen
The bug is still here on my Blueberry G3 iMac (slotloading) with the
hardy 20080416 live cd. I found two problems:

1. The BusID was set to PCI:6:3:0 in xorg.conf - it should have been
PCI:0:16:0.

2. Even with the correct BusID in xorg.conf the sync freqs were not
probed correctly.

Here are the changes I had to make to xorg.conf to get X started:

--- xorg.conf.orig  2008-04-17 05:48:45.820016000 +
+++ xorg.conf   2008-04-17 06:53:33.362385848 +
@@ -31,12 +31,14 @@
 
 Section Device
Identifier  Configured Video Device
-   BusID   PCI:6:3:0
+   BusID   PCI:0:16:0
Option  UseFBDev  true
 EndSection
 
 Section Monitor
Identifier  Configured Monitor
+   HorizSync   60-60
+   VertRefresh 75-117
 EndSection
 
 Section Screen

I have attached the original Xorg.0.log file from the live cd before
changing xorg.conf.

** Attachment added: Xorg.0.log file from 20080416 live cd.
   http://launchpadlibrarian.net/13534788/Xorg.0.log

-- 
Live CD boots to a black screen on Blueberry G3 iMac
https://bugs.launchpad.net/bugs/22976
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 198385] Re: Emptying trash shows a Preparing dialog with a non-moving progress bar

2008-04-17 Thread Jacob
Happens the same on Hardy Beta with the latest updates.

-- 
Emptying trash shows a Preparing dialog with a non-moving progress bar
https://bugs.launchpad.net/bugs/198385
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 217595] Re: f-spot.exe crashed with SIGSEGV

2008-04-17 Thread afujihara
Thank you for your message. Sorry for very late response.
I'm afraid I can't remember the steps. Sorry for this...
But, s-spot crushs today. So, I report this to the launchpad.
I hope this would be helpful for fixing bugs. Thank you.

-- 
f-spot.exe crashed with SIGSEGV
https://bugs.launchpad.net/bugs/217595
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 217595] Re: f-spot.exe crashed with SIGSEGV

2008-04-17 Thread afujihara
I forgot to add the link of the bug report.
You can see this at 
https://bugs.launchpad.net/ubuntu/+source/f-spot/+bug/218535

-- 
f-spot.exe crashed with SIGSEGV
https://bugs.launchpad.net/bugs/217595
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 216962] Re: [hardy]vlc 0.8.6e crashes

2008-04-17 Thread sergevn
No, with Mplayer also getting error, but it does not crash, only shows a
bluescreen as playback.


[EMAIL PROTECTED]:~/movie$ mplayer DNF_Teaser_720p_HD.mov 
MPlayer 1.0rc2-4.2.3 (C) 2000-2007 MPlayer Team
CPU: Genuine Intel(R) CPU   T2050  @ 1.60GHz (Family: 6, Model: 14, 
Stepping: 8)
CPUflags:  MMX: 1 MMX2: 1 3DNow: 0 3DNow2: 0 SSE: 1 SSE2: 1
Compiled with runtime CPU detection.
mplayer: could not connect to socket
mplayer: No such file or directory
Failed to open LIRC support. You will not be able to use your remote control.

Playing DNF_Teaser_720p_HD.mov.
ISO: File Type Major Brand: Original QuickTime
Quicktime/MOV file format detected.
[mov] Video stream found, -vid 0
[mov] Audio stream found, -aid 1
VIDEO:  [avc1]  1280x720  24bpp  29.970 fps0.0 kbps ( 0.0 kbyte/s)
xscreensaver_disable: Could not find XScreenSaver window.
GNOME screensaver disabled
==
Opening video decoder: [ffmpeg] FFmpeg's libavcodec codec family
Selected video codec: [ffh264] vfm: ffmpeg (FFmpeg H.264)
==
==
Forced audio codec: mad
Opening audio decoder: [faad] AAC (MPEG2/4 Advanced Audio Coding)
AUDIO: 44100 Hz, 2 ch, s16le, 160.0 kbit/11.34% (ratio: 2-176400)
Selected audio codec: [faad] afm: faad (FAAD AAC (MPEG-2/MPEG-4 Audio) decoder)
==
AO: [pulse] Failed to connect to server: Connection refused
AO: [alsa] 48000Hz 2ch s16le (2 bytes per sample)
Starting playback...
VDec: vo config request - 1280 x 720 (preferred colorspace: Planar YV12)
VDec: using Planar YV12 as output csp (no 0)
Movie-Aspect is undefined - no prescaling applied.
VO: [xv] 1280x720 = 1280x720 Planar YV12 
X11 error: BadAlloc (insufficient resources for operation)
X11 error: BadAlloc (insufficient resources for operation)?,?% 2 0 
X11 error: BadAlloc (insufficient resources for operation)?,?% 3 0 
X11 error: BadAlloc (insufficient resources for operation)
X11 error: BadAlloc (insufficient resources for operation)
X11 error: BadAlloc (insufficient resources for operation)?,?% 3 0 
X11 error: BadAlloc (insufficient resources for operation)
X11 error: BadAlloc (insufficient resources for operation)?,?% 3 0 
X11 error: BadAlloc (insufficient resources for operation)?,?% 3 0 
X11 error: BadAlloc (insufficient resources for operation)
X11 error: BadAlloc (insufficient resources for operation)?,?% 3 0 
X11 error: BadAlloc (insufficient resources for operation)?,?% 3 0 
X11 error: BadAlloc (insufficient resources for operation)
X11 error: BadAlloc (insufficient resources for operation)?,?% 3 0 
X11 error: BadAlloc (insufficient resources for operation)4.4% 3 0 
X11 error: BadAlloc (insufficient resources for operation)4.2% 3 0 
X11 error: BadAlloc (insufficient resources for operation)4.1% 3 0 
X11 error: BadAlloc (insufficient resources for operation)
X11 error: BadAlloc (insufficient resources for operation)3.8% 3 0 
X11 error: BadAlloc (insufficient resources for operation)3.7% 3 0 
X11 error: BadAlloc (insufficient resources for operation)3.6% 3 0 
X11 error: BadAlloc (insufficient resources for operation)3.5% 3 0 
X11 error: BadAlloc (insufficient resources for operation)3.5% 3 0 
X11 error: BadAlloc (insufficient resources for operation)3.4% 3 0 
X11 error: BadAlloc (insufficient resources for operation)
X11 error: BadAlloc (insufficient resources for operation)3.3% 3 0 
X11 error: BadAlloc (insufficient resources for operation)3.2% 3 0 
X11 error: BadAlloc (insufficient resources for operation)3.2% 3 0 
X11 error: BadAlloc (insufficient resources for operation)3.1% 3 0 
X11 error: BadAlloc (insufficient resources for operation)3.1% 3 0 
X11 error: BadAlloc (insufficient resources for operation)3.0% 3 0 
X11 error: BadAlloc (insufficient resources for operation)3.0% 3 0 
X11 error: BadAlloc (insufficient resources for operation)
X11 error: BadAlloc (insufficient resources for operation)3.1% 3 0 
X11 error: BadAlloc (insufficient resources for operation)
X11 error: BadAlloc (insufficient resources for operation)3.0% 3 0 
X11 error: BadAlloc (insufficient resources for operation)2.9% 3 0 
X11 error: BadAlloc (insufficient resources for operation)
X11 error: BadAlloc (insufficient resources for operation)2.9% 3 0 
X11 error: BadAlloc (insufficient resources for operation)2.9% 3 0 
X11 error: BadAlloc (insufficient resources for operation)2.8% 3 0 
X11 error: BadAlloc (insufficient resources for operation)2.8% 3 0 
X11 error: BadAlloc (insufficient resources for operation)
X11 error: BadAlloc (insufficient resources for operation)2.8% 3 0 
X11 error: BadAlloc (insufficient resources for operation)2.7% 3 0 
X11 error: BadAlloc (insufficient resources for operation)2.7% 3 0 
X11 error: BadAlloc (insufficient resources for operation)2.7% 3 0 
X11 error: BadAlloc 

[Bug 213300] Re: compiz.real crashed with SIGSEGV in _IceTransClose()

2008-04-17 Thread Travis Watkins
That is done if the person doing bug triage knows the bug is reported
already (they've seen it before) but can't find it right now.

-- 
compiz.real crashed with SIGSEGV in _IceTransClose()
https://bugs.launchpad.net/bugs/213300
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 202301] Re: Firefox not translated/localized

2008-04-17 Thread Benjamín Valero Espinosa
With the last updates, all works fine here with es locale from Spain.

So this bug should be closed.

-- 
Firefox not translated/localized
https://bugs.launchpad.net/bugs/202301
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 201330] Re: [regression] need to whitelist multiple ATI cards, or remove blacklisting

2008-04-17 Thread Sergio Zanchetta
** Description changed:

  I have an ATI radeon IGP 340M (Chip ID 1002:4337) that works really nice
  with the open source ati driver and compiz ALWAYS worked very well
  since Feisty.
  
  According to a problem on some ati cards as reported in Bug #197135,
  open source ati driver is going to be blacklisted for compiz in Hardy
  (on laptops).
  
  My card is not supported by fglrx (5 years old card) so I won't be able
  to use compiz by default in Hardy.
  
  To sum up, this card need to be whitelisted in order to use compiz by
  default in Hardy, as it always did before.
  
  lspci -vn attached.
  
  [WORK-AROUND]
  Add SKIP_CHECKS=yes to either /etc/xdg/compiz/compiz-manager or 
~/.config/compiz/compiz-manager
  
  [Summary of what's already been reported -- please update if your ati works]
  1002:3154
  1002:4336  Paul Roberts/shemgp:  Radeon Mobility U1
- 1002:4337  Jarvis: Radeon IGP 330M/340M/350M
+ 1002:4337  Jarvis/Sergio Zanchetta:  Radeon IGP 330M/340M/350M
  1002:4c57  Chad Bernier/others:  M7 LW [Radeon Mobility 7500]
  1002:4c66  Thomas Wolfe:Mobility 9000 (M9) Lf (AGP)
 Aaron Bentley:ATI Technologies Inc Radeon RV250 
[Mobility FireGL 9000] (rev 02)
 Timo Jyrinki: Radeon RV25 [Radeon Mobility 9000]
  1002:4e50  Miguel Martinez/others: RV350 [Mobility Radeon 9600 M10]
 Tomas Nilsson:M7 LW [Radeon Mobility 7500]
 Matti Airas:  Mobility Radeon 9600
  1002:4e56  fuoco:  M11 NV [FireGL Mobility T2e]
  1002:5460  Vladimir Dobriakov
  1002:5835  dienarr:RS300M AGP [Radeon Mobility 9100IGP]

-- 
[regression] need to whitelist multiple ATI cards, or remove blacklisting
https://bugs.launchpad.net/bugs/201330
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 84060] Re: [apport] alacarte crashed with AttributeError in __getPath()

2008-04-17 Thread Tomas Pospisek
Same problem here.

So, it's April 2008 and Hardy is in a hurry to ship.

In my plain ole default installation of Hardy:

- Tomboy crashes on system start (my bugreport was marked invalid wh!)
- F-Spot doesn't even start
- alacarte crashes arbitrarily when I do whatever in it, like moving menu items 
up or down or ticking some menu item
  (alacarte crashed with AttributeError in __getPath()) and doesn't seem to 
be a bug either

And that's the default installation. So if all the bugs posted by the
users are being marked invalid and such, then Hardy will be able to ship
without bugs, which is something Ubuntu can be truly fond of, and users
won't need to report bugs, which is good now I think about it. Is this
too sarkastic or does it actually represent current practice wrt
bugreports?

-- 
[apport] alacarte crashed with AttributeError in __getPath()
https://bugs.launchpad.net/bugs/84060
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 7560] Re: Wastebasket fails with read only directories

2008-04-17 Thread Jacob
Same on Hardy Beta as Peter T H. said above.

Also once a folder with root owned items is put into the trash, not only
you cannot delete it but you cannot drag it back out of the trash
without a permission denied error. This is not a Wish List, it's quite
serious.

-- 
Wastebasket fails with read only directories
https://bugs.launchpad.net/bugs/7560
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 218539] [NEW] Fix 100% cpu usage bug

2008-04-17 Thread ajmal_82
Public bug reported:

some applcations like firefox,xfmedia etc try to use all memory and system 
locks and there are some other app's too
that behave this way.please disable 100percent usage for
any application.device an application or script or something to handle this bug.

** Affects: ubuntu
 Importance: Undecided
 Status: New

-- 
Fix 100% cpu usage bug
https://bugs.launchpad.net/bugs/218539
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 215664] Re: Color of the windows shadow changes

2008-04-17 Thread Travis Watkins
*** This bug is a duplicate of bug 186382 ***
https://bugs.launchpad.net/bugs/186382

** This bug has been marked a duplicate of bug 186382
   [nvidia 169.xx] gtk window decorator somtimes draws decoration ugly or not 
at all

-- 
Color of the windows shadow changes
https://bugs.launchpad.net/bugs/215664
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 197589] Re: Numeric keypad no longer works after upgrade

2008-04-17 Thread Rob
I upgraded to the latest ubuntu hardy yesterday.

Likewise, it was *still* activated by default.

-- 
Numeric keypad no longer works after upgrade
https://bugs.launchpad.net/bugs/197589
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 149017] Re: extract Mozilla-ish translations

2008-04-17 Thread Martin Pitt
pkgbinarymangler (50) hardy; urgency=low

  * pkgstriptranslations: Copy debian/lp-export-xpis/, for finally getting LP
translations love for Mozilla-ish packages.

 -- Martin Pitt [EMAIL PROTECTED]  Thu, 27 Mar 2008 12:18:04
+0100


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

-- 
extract Mozilla-ish translations
https://bugs.launchpad.net/bugs/149017
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 218541] [NEW] totem movie player codec updates for ZA does not exist

2008-04-17 Thread Desmond
Public bug reported:

The url's that the program is looking for does not exist.
eg 
http://za.archive.ubuntu.com/ubuntu/dists/hardy/restricted/i18n/Translation-en_ZA.bz2
In fact, I have browsed to this site and there are no ZA packages available 
on the site.

** Affects: ubuntu
 Importance: Undecided
 Status: New

-- 
totem movie player codec updates for ZA does not exist
https://bugs.launchpad.net/bugs/218541
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 217982] Re: update-manager crashed with GError in activate_details()

2008-04-17 Thread Richard Birnie
** Visibility changed to: Public

-- 
update-manager crashed with GError in activate_details()
https://bugs.launchpad.net/bugs/217982
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 216165] Re: java+adept

2008-04-17 Thread bnz
I have the same problem

-- 
java+adept
https://bugs.launchpad.net/bugs/216165
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 205223] Re: 32bit GdkPixbuf modules not loaded when using ia32-libs

2008-04-17 Thread Sylvain Pasche
That's not my comment there. I tested with a simple GTK app, not with
vmware.

-- 
32bit GdkPixbuf modules not loaded when using ia32-libs
https://bugs.launchpad.net/bugs/205223
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 202301] Re: Firefox not translated/localized

2008-04-17 Thread Matthew East
Can the people posting confirm that the firefox startpage is also
translated with the latest versions?

-- 
Firefox not translated/localized
https://bugs.launchpad.net/bugs/202301
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 191654] Re: Activate font auto hinting by default

2008-04-17 Thread Артём Попов
** Changed in: fontconfig (Ubuntu)
Sourcepackagename: None = fontconfig

-- 
Activate font auto hinting by default
https://bugs.launchpad.net/bugs/191654
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 188492] Re: console-setup/layoutcode settings are ignored

2008-04-17 Thread Agostino Russo
My understanding is that the changes will go in after release candidate,
Michael it would be great if you could test once they are in!

-- 
console-setup/layoutcode settings are ignored
https://bugs.launchpad.net/bugs/188492
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


Re: [Bug 207767] Re: [hardy] nm-editor does nothing

2008-04-17 Thread Robert
Yes. I roam between several networks.

In Gutsy I used the /etc/network/interfaces file with guessnet. Since
NM doesn't (yet) have that functionality, I've switched back to using
it. (Or am trying to, since there seem to be bugs there as well, but
that's a separate bug report...)

On 16/04/2008, Sarah Hobbs [EMAIL PROTECTED] wrote:
 Have you actually connected to any wireless networks before?

  For what it's worth, I can't reproduce this at all.

  ** Changed in: network-manager-applet (Ubuntu)
Status: New = Incomplete


  --
  [hardy] nm-editor does nothing
  https://bugs.launchpad.net/bugs/207767
  You received this bug notification because you are a direct subscriber
  of the bug.


-- 
[hardy] nm-editor does nothing
https://bugs.launchpad.net/bugs/207767
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 206952] Re: suspend only works once

2008-04-17 Thread peddy
same problem here. Running 64-bit Gutsy with Nvidia Restricted drivers
installed.

Any progress?

-- 
suspend only works once
https://bugs.launchpad.net/bugs/206952
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 206227] Re: vinagre fails to connect

2008-04-17 Thread Nick Barcet
** Attachment removed: signature.asc

   http://launchpadlibrarian.net/13534691/signature.asc

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

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


Re: [Bug 192659] Re: Tomboy always starts in the system tray on reboot without being asked to

2008-04-17 Thread Emilio Pozuelo Monfort
VF wrote:
 I've never used GNOME Do (unless it's something that runs in the
 background in a default install?)

Neither have I. And no, it's not installed by default.

 For what it's worth, this bug vanished a little while ago for me with
 some updates though.

It disappeared for me after a reinstall. I haven't used tomboy again since then
so I don't know whether it would come back if I did...

-- 
Tomboy always starts in the system tray on reboot without being asked to
https://bugs.launchpad.net/bugs/192659
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 152377] Re: Gamma correction does not work with xvideo using Openchrome drivers

2008-04-17 Thread Francesco Potortì
I can confirm the problem. I have this board:

VIA Technologies, Inc. UniChrome Pro IGP [VIA P4M890 Chipset]

As a workaround, I use the Mplayer movie player, which honours the X gamma 
settings.
The fact that Totem does not have a way to adjust gamma should probably be 
reported as a wishlist.

-- 
Gamma correction does not work with xvideo using Openchrome drivers
https://bugs.launchpad.net/bugs/152377
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 218157] Re: openafs not working after successful install via module-assistant

2008-04-17 Thread Markus Bendel
Unfortunately not. Tried a clean install of ubuntu and got the same
messages. Can list the afs directories, but everything else doesn't work
...

-- 
openafs not working after successful install via module-assistant
https://bugs.launchpad.net/bugs/218157
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 211693] Re: nautilus cannot eject ipod while eject(1) does

2008-04-17 Thread Sebastien Bacher
The issue is due to gnome-mount and has been fixed upstream, I'll
backport the change to hardy

** Changed in: gnome-mount (Ubuntu)
Sourcepackagename: nautilus = gnome-mount

-- 
nautilus cannot eject ipod while eject(1) does
https://bugs.launchpad.net/bugs/211693
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 199496] Re: Tomboy.exe crashed with SIGSEGV in exit()

2008-04-17 Thread Ernest Taylor
EXCELLENT progress so far. Every bug I've had has been squashed! Here's another 
to deal with.
GOOD STUFF. Goodbye XP.

-- 
Tomboy.exe crashed with SIGSEGV in exit()
https://bugs.launchpad.net/bugs/199496
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 99508] Re: Window titlebar displayed not right with compiz enabled

2008-04-17 Thread Jan de Mooij
In decoration.c and gtk window decorator at some places different
codepaths are taken if left_width == 0  right_width == 0. Or if one of
them or the sum is 0. I think you should look in that direction.

But including this fix/workaround in Hardy would be nice, as it's very
annoying behavior for many people. For the theme redesign of 8.10 you
should maybe base the theme on Clearlooks or a Murrine theme or anything
else that doesn't need this...

-- 
Window titlebar displayed not right with compiz enabled
https://bugs.launchpad.net/bugs/99508
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 218547] [NEW] firefox 3 doesnt know how to open downloaded files

2008-04-17 Thread eagles051387
Public bug reported:

when i download various things using firefox 3 beta 5 it doesnt know how
to handle what program should be used to open that particular file. for
example a pdf it asks the user to tell it what program to use. it should
be able to determine what kinda file has been downloaded and open it
with the appropriate program

** Affects: firefox-3.0 (Ubuntu)
 Importance: Undecided
 Status: New

-- 
firefox 3 doesnt know how to open downloaded files
https://bugs.launchpad.net/bugs/218547
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 218503] Re: [hardy] openoffice.org-voikko has unmet dependencies on PowerPC

2008-04-17 Thread Niels Kristian Bech Jensen
Probably better wait for the next upload of OOo to get all build-and-
install problems sorted out.

-- 
[hardy] openoffice.org-voikko has unmet dependencies on PowerPC
https://bugs.launchpad.net/bugs/218503
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 184182] Re: Ubuntu would not install

2008-04-17 Thread Артём Попов
Hi, Donna!

Thank you for taking the time to report this issue and helping to make
Ubuntu better. Examining the information you have given us, this does
not appear to be a bug report so we are closing it and converting it to
a question in the support tracker.

Actually, your laptop did not have enough RAM to run the Ubuntu installer 
(384MB is required for Ubuntu and 256MB for Xubuntu):
https://help.ubuntu.com/community/Installation/SystemRequirements

But when you were installing Xubuntu, it did create a swap partition on
your hard drive, and the next time you rebooted with Ubuntu livecd, the
swap was detected and used automatically.

** Changed in: ubuntu
   Status: New = Invalid

** bug changed to question:
   https://answers.edge.launchpad.net/ubuntu/+question/29983

-- 
Ubuntu would not install
https://bugs.launchpad.net/bugs/184182
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 218549] [NEW] Choosing Reboot in rescue menu jumps to main menu

2008-04-17 Thread Martin Pitt
Public bug reported:

on Hardy RC amd64 alternate, when selecting Reboot the system from the
rescue menu, it does not reboot, but throws me into the installer's main
menu. From that menu it is not immediately clear what to do, since it
does not have a reboot. Abort installation does fine, but it would be
better to reboot straight away.

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


** Tags: iso-testing

-- 
Choosing Reboot in rescue menu jumps to main menu
https://bugs.launchpad.net/bugs/218549
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


Re: [Bug 218468] Re: boinc-client fails to install/start, if ioprio_set is not allowed

2008-04-17 Thread Frank S. Thomas
Hi Daniel,

On Thursday 17 April 2008 02:33, Daniel Hahler wrote:
 ** Attachment added: debdiff for Hardy
http://launchpadlibrarian.net/13530861/boinc_5.10.45-1ubuntu1.dsc.diff

 if [ ! -x `which ionice 2/dev/null` ]; then
   log_progress_msg ionice not found,
 else
-  ionice -c 3 -p $pid
-  log_progress_msg idle,
+  if ionice -c 3 -p $pid 2/dev/null; then
+log_progress_msg idle,
+  else
+log_progress_msg idle not allowed,
+  fi
 fi

If ionice fails does this always means that ioprio_set is not allowed? If 
the answer to this question is no, I would rather suggest to echo a more 
generic message like ionice failed, or something similar.

If you want to, you can commit this into boinc's trunk.

Cheers,
-- 
Frank S. Thomas [EMAIL PROTECTED]   PGP public key ID: 0xDC426429
Debian Developerfinger fst/[EMAIL PROTECTED]


** Attachment added: unnamed
   http://launchpadlibrarian.net/13535096/unnamed

-- 
boinc-client fails to install/start, if ioprio_set is not allowed
https://bugs.launchpad.net/bugs/218468
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 128299] Re: avm fxusb_cz driver mod

2008-04-17 Thread Andreas
The Teledat USB 2a/b (057c:2800) was widely spread by the german
Telecom. So a lot of people in Germany still use this device. Well, I
think that the most people would like to use their old Teledat (also
known as Teledat x120 or Fritz!X USB) as a Fax-Modem.

So, there IS a driver for this... it is called fxusb_CZ and it was developed by 
AVM. But AVM never updated this thing...
But as you can see... SuSE updated it. And also Kano made that incredible 
Live-CD Kanotix which actually can identify and use the Teledat USB 2a/b 
out of the box. So... why cant UBUNTU?
The fxusb driver is part of the AVM restricted package. But where is the 
fxusb_CZ driver?
My wish: Could you please (!) fix this problem. I've tried so much... I just 
can't compile it by myself (I am using Hardy Beta). Thank you very much!

-- 
avm fxusb_cz driver mod
https://bugs.launchpad.net/bugs/128299
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 218549] Re: Choosing Reboot in rescue menu jumps to main menu

2008-04-17 Thread Ubuntu QA Website
** Tags added: iso-testing

-- 
Choosing Reboot in rescue menu jumps to main menu
https://bugs.launchpad.net/bugs/218549
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 218030] Re: Deprecated dictionary for russian language used in this package

2008-04-17 Thread Martin-Éric Racine
OOo will not regress to an older, outdated spell checker system. In
fact, it already evolved past MySpell and nowadays uses HunSpell.

-- 
Deprecated dictionary for russian language used in this package
https://bugs.launchpad.net/bugs/218030
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   >