[Bug 203169] Re: status function for init scripts

2008-09-29 Thread Thierry Carrez
Closing asterisk task, now handled in bug 248947.

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

-- 
status function for init scripts
https://bugs.launchpad.net/bugs/203169
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 275608] Re: nm-openvpn swaps ca and cert in openvpn commandline

2008-09-29 Thread Thierry Carrez
Can't reproduce with current intrepid (same version as you).

My VPN configuration dialog shows (top to bottom):
- User cert : selected client.crt
- CA cert : selected ca.crt
- User private key : selected client.key

Then the command line is :
/usr/sbin/openvpn --remote 192.168.122.41 --nobind --dev tun --proto udp --port 
1194 --syslog nm-openvpn --script-security 2 --up 
/usr/lib/network-manager-openvpn/nm-openvpn-service-openvpn-helper --up-restart 
--persist-key --persist-tun --management 127.0.0.1 1194 
--management-query-passwords --route-noexec --client --ca 
/home/koon/openvpn/ca.crt --cert /home/koon/openvpn/client.crt --key 
/home/koon/openvpn/client.key
...which is correct.

Could you please retry on a new configuration (not one imported from hardy ?)
It can also be a translation error where two labels might haven been swapped, 
so please confirm how the dialog box reads (top to bottom) and which 
language/locale you are using.

In all cases, that would be a network-manager-openvpn, bug and not an
openvpn bug.

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

** Also affects: network-manager-openvpn (Ubuntu)
   Importance: Undecided
   Status: New

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

-- 
nm-openvpn swaps ca and cert in openvpn commandline
https://bugs.launchpad.net/bugs/275608
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openvpn in ubuntu.

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


Re: [Bug 240519] Re: sybase_* functions missing in php5-sybase for hardy

2008-09-29 Thread Steve Langasek
On Mon, Sep 29, 2008 at 12:30:01PM -, knb wrote:
 It has been true in the past that sybase and mssql server shared a
 common code base, a common api and a common transfer protocol. However
 this is no longer the case for at least 10 years.

That's irrelevant given that there's only one library implementation in
Ubuntu that talks to both of them (FreeTDS).

Bugs in the individual PHP extensions notwithstanding, there's no reason to
ship separate packages for each server type.

-- 
sybase_* functions missing in php5-sybase for hardy
https://bugs.launchpad.net/bugs/240519
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 240519] Re: sybase_* functions missing in php5-sybase for hardy

2008-09-29 Thread knb
The common dependency of both sybase mad mssql Vendor Specific Database 
Extensions on FreetTDS libs  might be advantageous for the package developer or 
maintainer, but it  has disadvantages for the library users: 
- if I remove  the Sybase DB  Extension using synaptic, I also lose the MSSQL 
Server connectivity. 
- it is still confusing to be forced to connect to a sybase database using 
mssql_connect(), or to call a mssql server with sybase_connect() . - it took me 
some time to understand the whole issue. However it is next to impossible to 
communicate the situation to other web developers and new colleagues.

And what will happen if the FreeTDS developer(s) decided someday to drop
compatibility for one of the server types, or too fork development?

Instead of using freetds,  a linux user can still install the original C Client 
libraries from Sybase. As part of the ASE DB server developer 
trial-edition/expres-edition, these libraries are available for free but not as 
open-source from Sybase in 32bit and 64 bit versions.  
(The 32-bit header files are available also free of charge from Sybase, whereas 
the 64 bit versions  of the header files aren't. Here it is indeed an advantage 
to have a basic 64bit FreetTDS-based sybase client that works) 

Seems that I have to do my php with-sybase-ct development on a different
machine, than my unix box.

-- 
sybase_* functions missing in php5-sybase for hardy
https://bugs.launchpad.net/bugs/240519
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 47438] Re: Dnsmasq crashes when renewing non-existent lease

2008-09-29 Thread Jamie Strandboge
dnsmasq (2.25-1ubuntu0.1) dapper-security; urgency=low

  * SECURITY UPDATE: crash when renewing a lease from clients that think
they are on another network can be used as a denial of service attack.
  * src/rfc2131.c: backport of the dnsmasq 2.26 fix (Fixes LP: #47438)
  * References
CVE-2008-3214


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

-- 
Dnsmasq crashes when renewing non-existent lease
https://bugs.launchpad.net/bugs/47438
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to dnsmasq in ubuntu.

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


Re: [Bug 240519] Re: sybase_* functions missing in php5-sybase for hardy

2008-09-29 Thread Ondřej Surý
Speaking with my debian php maintainer hat.

If you are able to install non-free sybase libraries, you are also
able to install php5-dev and run phpize  make  make install
in sybase_ct directory.

Ie. if you want to use non-free libraries, you cannot expect help
from package distributors.

O.

2008/9/29 knb [EMAIL PROTECTED]:
 The common dependency of both sybase mad mssql Vendor Specific Database 
 Extensions on FreetTDS libs  might be advantageous for the package developer 
 or maintainer, but it  has disadvantages for the library users:
 - if I remove  the Sybase DB  Extension using synaptic, I also lose the MSSQL 
 Server connectivity.
 - it is still confusing to be forced to connect to a sybase database using 
 mssql_connect(), or to call a mssql server with sybase_connect() . - it took 
 me some time to understand the whole issue. However it is next to impossible 
 to communicate the situation to other web developers and new colleagues.

 And what will happen if the FreeTDS developer(s) decided someday to drop
 compatibility for one of the server types, or too fork development?

 Instead of using freetds,  a linux user can still install the original C 
 Client libraries from Sybase. As part of the ASE DB server developer 
 trial-edition/expres-edition, these libraries are available for free but not 
 as open-source from Sybase in 32bit and 64 bit versions.
 (The 32-bit header files are available also free of charge from Sybase, 
 whereas the 64 bit versions  of the header files aren't. Here it is indeed an 
 advantage to have a basic 64bit FreetTDS-based sybase client that works)

 Seems that I have to do my php with-sybase-ct development on a different
 machine, than my unix box.

 --
 sybase_* functions missing in php5-sybase for hardy
 https://bugs.launchpad.net/bugs/240519
 You received this bug notification because you are subscribed to php5 in
 ubuntu.



-- 
Ondřej Surý [EMAIL PROTECTED]

-- 
sybase_* functions missing in php5-sybase for hardy
https://bugs.launchpad.net/bugs/240519
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 192080] Re: shutdown fails.. nfs

2008-09-29 Thread Peter Matulis
Workaround:

In /etc/rc0.d change the symlink

K25open-iscsi

to

S80open-iscsi

Then try a shutdown test.

If successful, do something similar for /etc/rc6.d.

-- 
shutdown fails.. nfs
https://bugs.launchpad.net/bugs/192080
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to open-iscsi 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 240519] Re: sybase_* functions missing in php5-sybase for hardy

2008-09-29 Thread knb
? I didn't expect any help. Thanks for mentioning the phpize trick-
Maybe I should have posted this on the ubuntu brainstorm site in the first 
place. It might be too specialized, though.

I'm just saying that the mssql / sybase PHP-DB-Extension-Module issue is
more complicated than it needs to be.

Aside from that I think that the FreetTDS based perl module  DBD::Sybase
that comes with Ubuntu is awesome and I'm glad that I can install it
out-of-the-box.

-- 
sybase_* functions missing in php5-sybase for hardy
https://bugs.launchpad.net/bugs/240519
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 221427] Re: package samba-common 3.0.28a-1ubuntu4 failed to upgrade from Gutsy to Hardy

2008-09-29 Thread Peter Wright
A colleague had this same problem and it turns out there was a debconf
window wanting to know whether to keep or replace the samba config
file... she says the window didn't come to the foreground.

-- 
package samba-common 3.0.28a-1ubuntu4 failed to upgrade from Gutsy to Hardy
https://bugs.launchpad.net/bugs/221427
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in ubuntu.

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


[Bug 260687] Re: pam_smbpass.so segfaults

2008-09-29 Thread A. Bram Neijt
I got this problem after removing samba. I think it may be a problem
that libpam-smbpass depends on samba without that being defined. You can
remove samba, leave samba-common and libpam-smbpass and you will have
this problem. Stupid thing is that every sudo fails also, so removing
the libpam-smbpass will require me to enter single user mode and work
from there (telinit 1). With sudo failing, there is no way to fix this
without that.

The following dmesg entries are shown (and repeated for every type of sudo 
command):
[ 4940.176470] sudo[9337]: segfault at 0 ip 7f5c6e480d6c sp 
7fff783b9fe0 error 4 in pam_smbpass.so[7f5c6e419000+149000]

I have this problem on Ubuntu Intrepid on x86_64 with the latest
updates.

-- 
pam_smbpass.so segfaults
https://bugs.launchpad.net/bugs/260687
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in ubuntu.

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


[Bug 260687] Re: pam_smbpass.so segfaults

2008-09-29 Thread A. Bram Neijt
Just adding, telinit doesn't work because you need to be root. To solve this, I 
used the following:
- Reboot and choose the recovery mode from the boot selection menu
- Choose drop into root shell from the recovery menu
- Execute the command: dpkg --purge libpam-smbpass

After that you can reboot into normal mode and everything should be ok.

-- 
pam_smbpass.so segfaults
https://bugs.launchpad.net/bugs/260687
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in ubuntu.

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


[Bug 256014] Re: escapeshellcmd() security fix generates problems with mediawiki and other web-apps

2008-09-29 Thread Kees Cook
Once there is an upstream fix for this problem, the fixes will be
backported to the stable releases.  Sorry for the glitch!

** Bug watch added: bugs.php.net/ #45132
   http://bugs.php.net/bug.php?id=45132

** Also affects: php via
   http://bugs.php.net/bug.php?id=45132
   Importance: Unknown
   Status: Unknown

** Changed in: php5 (Ubuntu)
   Importance: Undecided = Low
 Assignee: (unassigned) = Kees Cook (kees)
   Status: New = Triaged

-- 
escapeshellcmd() security fix generates problems with mediawiki and other 
web-apps
https://bugs.launchpad.net/bugs/256014
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


RE: [Bug 221427] Re: package samba-common 3.0.28a-1ubuntu4 failed toupgrade from Gutsy to Hardy

2008-09-29 Thread Dave Croll
Thanks for the info. I do remember seeing a window pop up and I probably
took the wrong option. After the installation completed, I manually
installed the Samba.

Dave

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of
Peter Wright
Sent: Monday, September 29, 2008 11:58 AM
To: [EMAIL PROTECTED]
Subject: [Bug 221427] Re: package samba-common 3.0.28a-1ubuntu4 failed
toupgrade from Gutsy to Hardy


A colleague had this same problem and it turns out there was a debconf
window wanting to know whether to keep or replace the samba config file...
she says the window didn't come to the foreground.

-- 
package samba-common 3.0.28a-1ubuntu4 failed to upgrade from Gutsy to Hardy
https://bugs.launchpad.net/bugs/221427
You received this bug notification because you are a direct subscriber of
the bug.

-- 
package samba-common 3.0.28a-1ubuntu4 failed to upgrade from Gutsy to Hardy
https://bugs.launchpad.net/bugs/221427
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in ubuntu.

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


[Bug 220066] [NEW] [Hardy] Corrupted FS after upgrade

2008-09-29 Thread Launchpad Bug Tracker
You have been subscribed to a public bug:

Short story :
do-release-upgrade -d
reboot
Some (all ?) partitions are remounted as read-only
Boot process stuck after complaining about SpeedStep
Reboot with Alt+Sys Magic
Recovery Mode
Root FS is checked (ext3)
Root FS is corrupted and I'm informed that the system will reboot
Recovery Mode again
FS are checked
Corruptions are found in /var and /tmp (both are ext3)
Everything is OK !

Long story :
Sunday afternoon, I upgraded my Gutsy server to Hardy. Apart from errors by 
apparmor (might have been due to gutsy kernel), everything was normal. After 
some cleanup (old libs, unused apps, checking .conf files, etc) I decide it was 
safe to reboot and use the new kernel.
Just before the lights went out, I noticed a line about a partition being 
mounted as read-only.
During the boot process I saw some errors about SpeedStep (might be my old 
PIII) and then, nothing happened. After a while I used the Alt+Sys magic keys 
and rebooted.
This time I chose the recovery mode. The boot process went farther than 
before and stopped with fsck analyzing the root partition.
Once it was over, it displayed a message saying that a reboot was going to 
happen.
Again, I chose the recovery mode. And again fsck reappeared to check my other 
partitions (/tmp and /var). Like the root, they were corrupted and (easily ?) 
repaired.
Once at the prompt, I ordered the system to complete the boot process and 
everything started fine.

As far as I know the only thing I've lost is the locate database (a
great loss :)

I'm sure you'll need more than this, so please, ask.

** Affects: php5 (Ubuntu)
 Importance: Low
 Status: Invalid


** Tags: gutsy2hardy
-- 
[Hardy] Corrupted FS after upgrade
https://bugs.edge.launchpad.net/bugs/220066
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 220066] Re: [Hardy] Corrupted FS after upgrade

2008-09-29 Thread Chris Coulson
*** This bug is a duplicate of bug 138535 ***
https://bugs.launchpad.net/bugs/138535

Thanks. This is a duplicate of bug 138535.

** Changed in: php5 (Ubuntu)
Sourcepackagename: update-manager = php5
   Importance: Undecided = Low
   Status: Incomplete = Invalid

** This bug has been marked a duplicate of bug 138535
   package php5-cli 5.2.3-1ubuntu5 failed to install/upgrade: Unterprozess 
post-installation script mit Signal (Interrupt) getötet

-- 
[Hardy] Corrupted FS after upgrade
https://bugs.launchpad.net/bugs/220066
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 275608] Re: nm-openvpn swaps ca and cert in openvpn commandline

2008-09-29 Thread Crispin Flowerday
I had to re-create the VPN from scratch - the config got lost over the
upgrade ...

I am en_GB locale, and I see (in the Authentication bit).

Type: Password with Certificate (TLS)
User name: myloginname
CA Certificate: crispin-00.crt
User Certificate: ca.crt
Private Key: crispin-00.key

The problems does seem to be between the UI and gconf as gconf shows the
correct information (in /system/networking/vpn_connections/VPN
name/vpn_data)

If I run LANG=C /usr/bin/nm-connection-editor I still get the items in
the UI in the same order.

-- 
nm-openvpn swaps ca and cert in openvpn commandline
https://bugs.launchpad.net/bugs/275608
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openvpn 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 249824] Re: [intrepid] IPv6 unusable

2008-09-29 Thread Brian Murray
** Also affects: bind9 (Gentoo Linux) via
   http://bugs.gentoo.org/show_bug.cgi?id=227333
   Importance: Unknown
   Status: Unknown

** Changed in: bind9 (Ubuntu)
   Target: None = ubuntu-8.10

-- 
[intrepid] IPv6 unusable
https://bugs.launchpad.net/bugs/249824
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 276145] [NEW] Apace2 default configuration incorrect for allowoverride

2008-09-29 Thread Nick Twigg
Public bug reported:

Binary package hint: apache2

The configuration file under /etc/apache2/sites-enabled/default (or
000-default) is set up so that the allow override all setting wont work
when directories or files under /var/www are called as a site.

The values at install are :

DocumentRoot /var/www/
Directory /
Options FollowSymLinks
AllowOverride all
/Directory
Directory /var/www/
Options Indexes FollowSymLinks MultiViews
AllowOverride none
Order allow,deny
allow from all
/Directory

Whereas, for mod_rewrite to work correctly, they should be

DocumentRoot /var/www/
Directory /
Options FollowSymLinks
AllowOverride All
/Directory
Directory /var/www/
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
/Directory

For the record, I have chaged the first and second AllowOverride to All.

The caps A seems to be *VERY* important.

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

-- 
Apace2 default configuration incorrect for allowoverride
https://bugs.launchpad.net/bugs/276145
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to apache2 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 249824] Re: [intrepid] IPv6 unusable

2008-09-29 Thread Bug Watch Updater
** Changed in: bind9 (Gentoo Linux)
   Status: Unknown = Fix Released

-- 
[intrepid] IPv6 unusable
https://bugs.launchpad.net/bugs/249824
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 275581] Re: compiz.real crashed with SIGSEGV

2008-09-29 Thread Aurimas Fischer
*** This bug is a duplicate of bug 145360 ***
https://bugs.launchpad.net/bugs/145360

** This bug is no longer a duplicate of bug 151200
   compiz.real crashed with SIGSEGV

** This bug has been marked a duplicate of bug 145360
   compiz.real crashed with SIGSEGV

-- 
compiz.real crashed with SIGSEGV
https://bugs.launchpad.net/bugs/275581
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 273023] Re: Okular: thumbnail preview of a DVI file has large areas in red

2008-09-29 Thread Katsudon

** Attachment added: screenshot
   http://launchpadlibrarian.net/18026526/screenshot.png

-- 
Okular: thumbnail preview of a DVI file has large areas in red
https://bugs.launchpad.net/bugs/273023
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 274394] Re: Documentation tab on the https://wiki.kubuntu.org/Kubuntu/Bugs page is broken.

2008-09-29 Thread Little Girl
There is now - https://help.ubuntu.com/community/Kubuntu - help me to
make it better. (:

As a follow-up to this bug, it happens on any page with the base URL of
https://wiki.kubuntu.org/ - not just the /Bugs page.


** Summary changed:

- Documentation tab on the https://wiki.kubuntu.org/Kubuntu/Bugs page is broken.
+ Documentation tab on the https://wiki.kubuntu.org/Kubuntu page is broken.

** Description changed:

- If you go to the page at https://wiki.kubuntu.org/Kubuntu/Bugs and click
- on the Documentation tab in the upper right corner, you will be offered
+ If you go to the page at https://wiki.kubuntu.org/Kubuntu/Bugs or any
+ page with the base URL of https://wiki.kubuntu.org and click on the
+ Documentation tab in the upper right corner, you will be offered
  index.php as a downloadable file instead of being taken to a page.

-- 
Documentation tab on the https://wiki.kubuntu.org/Kubuntu page is broken.
https://bugs.launchpad.net/bugs/274394
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 256853] Re: [FFe][merge request] Please merge monodoc 1.9-2 from Debian Unstable

2008-09-29 Thread Martin Pitt
Uploaded, in unapproved queue now (I guess this won't be accepted for
beta, since it's not critical for it).

** Changed in: monodoc (Ubuntu)
   Status: Confirmed = Fix Committed

-- 
[FFe][merge request] Please merge monodoc 1.9-2 from Debian Unstable
https://bugs.launchpad.net/bugs/256853
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 275703] [NEW] linuxdcpp crashed with SIGSEGV in gdk_window_invalidate_maybe_recurse()

2008-09-29 Thread Evgeniy
Public bug reported:

Binary package hint: linuxdcpp

crashed at startup

ProblemType: Crash
Architecture: amd64
DistroRelease: Ubuntu 8.10
ExecutablePath: /usr/bin/linuxdcpp
NonfreeKernelModules: nvidia
Package: linuxdcpp 1.0.2-1
ProcAttrCurrent: unconfined
ProcCmdline: linuxdcpp
ProcEnviron:
 SHELL=/bin/bash
 
PATH=/home/username/work/develop/infan/bin:/home/username/work/bin:/home/username/bin:/home/username/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
 LANG=ru_RU.UTF-8
Signal: 11
SourcePackage: linuxdcpp
StacktraceTop:
 gdk_window_invalidate_maybe_recurse ()
 gdk_window_invalidate_rect ()
 ?? () from /usr/lib/libgtk-x11-2.0.so.0
 ?? () from /usr/lib/libgtk-x11-2.0.so.0
 g_closure_invoke ()
Title: linuxdcpp crashed with SIGSEGV in gdk_window_invalidate_maybe_recurse()
Uname: Linux 2.6.27-4-generic x86_64
UserGroups: adm admin audio cdrom dialout dip floppy lpadmin netdev plugdev 
powerdev scanner video

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


** Tags: apport-crash

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

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


[Bug 275703] Re: linuxdcpp crashed with SIGSEGV in gdk_window_invalidate_maybe_recurse()

2008-09-29 Thread Evgeniy

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

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

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

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

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

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

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

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

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


[Bug 275654] Re: Unparseable date

2008-09-29 Thread Onkar Shinde
I don't see any such problem on hardy with openjdk. What is the version
of openjdk you are using? Mine is 6b11-2ubuntu2 which is available in
hardy-updates.

Here is how I used your sample code.
import java.util.*;
import java.text.*;

public class DateTest{
public static void main (String args[]){
DateFormat dp = new SimpleDateFormat(MMddHHmmss z);
try {
Date start = dp.parse(20081001175000 CET);
} catch (Exception e){
System.out.println(e);
e.printStackTrace();
}
}
}

-- 
Unparseable date
https://bugs.launchpad.net/bugs/275654
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 245129] Re: in every sistem window 'help' not work have this message : ' There was an error displaying help: Help document user-guide/user-guide.xml not found

2008-09-29 Thread Scott Richards
Chris C - 
I am also using linuxMint Daryna and when clicking the file browser help button 
or F1, was getting the err message -- Help document user-guide/user-guide.xml 
not found

Thanks for the last comment on the meta package. I knew I probably was missing 
a package but had no clue which to add.
the ubuntu-docs  for some reason wasn't installed. or not completely.

Thanks ..   As Pedro says, it's not a bug

-- 
in every sistem window 'help' not work have this message : ' There was an error 
displaying help:  Help document user-guide/user-guide.xml not found
https://bugs.launchpad.net/bugs/245129
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 226420] Re: [Hardy] vlc and gvfs do not work together

2008-09-29 Thread Bryan Quigley
fixed in intrepid, in vlc 0.9.3

VLC 0.9.3 completely changes it's dependencies so I think a backport to
hardy wouldn't be possible.

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

-- 
[Hardy] vlc and gvfs do not work together
https://bugs.launchpad.net/bugs/226420
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 275706] [NEW] Firefox's advanced update options gray-out when checked

2008-09-29 Thread creg082004
Public bug reported:

Binary package hint: firefox

I am using Ubuntu version 8.04.1 with Firefox 3 (updated as of 28 Sep
2008) and the PreferencesAdvancedUpdate options are not disabled
initially.  Once any of the options are unchecked, the corresponding
field will gray-out and become inaccessible.  Since these update options
should be handled by Synaptic, it appears they should show disabled
within Firefox and be grayed-out the first time they are viewed.  With
the way the options page works currently, there is no way to know which
program is actually handling the updates.

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

-- 
Firefox's advanced update options gray-out when checked
https://bugs.launchpad.net/bugs/275706
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 272474] Re: jockey silently fails to enable nvidia driver

2008-09-29 Thread Martin Pitt
Yes, there should be some kind of feedback. Thanks for your debugging
help!

** Changed in: jockey (Ubuntu)
   Status: Incomplete = Triaged

-- 
jockey silently fails to enable nvidia driver
https://bugs.launchpad.net/bugs/272474
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 275706] Re: Firefox's advanced update options gray-out when checked

2008-09-29 Thread William Grant
** Changed in: firefox-3.0 (Ubuntu)
Sourcepackagename: firefox = firefox-3.0

-- 
Firefox's advanced update options gray-out when checked
https://bugs.launchpad.net/bugs/275706
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 275594] Re: Conflict between ssb and wl

2008-09-29 Thread Pietro Battiston
I forgot to mention the fact that I'm using an up-to-date Intrepid.

-- 
Conflict between ssb and wl
https://bugs.launchpad.net/bugs/275594
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 264071] Re: eject -X reports error while finding CD-ROM name.

2008-09-29 Thread Martin Pitt
Uploaded, now waiting in unapproved queue (will get into intrepid after
the beta freeze). Thank you!

** Changed in: eject (Ubuntu)
   Status: Confirmed = Fix Committed

-- 
eject -X reports error while finding CD-ROM name.
https://bugs.launchpad.net/bugs/264071
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 275685] Re: Typo in APT package summary

2008-09-29 Thread William Grant
** Changed in: gnome-chemistry-utils (Ubuntu)
   Importance: Undecided = Low
   Status: New = Triaged

-- 
Typo in APT package summary
https://bugs.launchpad.net/bugs/275685
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 274340] Re: Xorg freezes on start. Black screen with waiting cursor. Unichrome video, worked on hardy.

2008-09-29 Thread Georg Duffner
Thank you, Anko! Option NoAccel works for me too and  gnome is really
a pain without acceleration. even with the vesa driver it seems better
to me.

-- 
Xorg freezes on start. Black screen with waiting cursor.  Unichrome video, 
worked on hardy.
https://bugs.launchpad.net/bugs/274340
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 275248] Re: ineffective -q option

2008-09-29 Thread William Grant
** Changed in: cproto (Ubuntu)
   Importance: Undecided = Low

-- 
ineffective -q option
https://bugs.launchpad.net/bugs/275248
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 271006] Re: usb-creator crashed with DBusException in call_blocking()

2008-09-29 Thread surfed
I can duplicate this on my system with two usb hubs. If both of them are
plugged in usb-creator exits and i get this in the log:

Traceback (most recent call last):
  File /usr/bin/usb-creator, line 40, in module
f = GtkFrontend()
  File /usr/lib/python2.5/site-packages/usbcreator/gtk_frontend.py, line 69, 
in __init__
self.backend.detect_devices()
  File /usr/lib/python2.5/site-packages/usbcreator/backend.py, line 357, in 
detect_devices
'free' : d.GetProperty('storage.removable.media_size'),
  File /var/lib/python-support/python2.5/dbus/proxies.py, line 140, in 
__call__
**keywords)
  File /var/lib/python-support/python2.5/dbus/connection.py, line 607, in 
call_blocking
message, timeout)
dbus.exceptions.DBusException: org.freedesktop.Hal.NoSuchProperty: No property 
storage.removable.media_size on device with id 
/org/freedesktop/Hal/devices/storage_serial_HP_Photosmart_D7100_series_MY669C80XN04SD_0_0


but if i unplug my printer (with build in hub) it starts up fine.

-- 
usb-creator crashed with DBusException in call_blocking()
https://bugs.launchpad.net/bugs/271006
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 275013] Re: Please make Convert All work with Orca

2008-09-29 Thread William Grant
** Changed in: convertall (Ubuntu)
   Importance: Undecided = Wishlist

-- 
Please make Convert All work with Orca
https://bugs.launchpad.net/bugs/275013
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 274569] Re: Dictionary should have favorites dictionaries

2008-09-29 Thread Bug Watch Updater
** Changed in: gnome-utils
   Status: Unknown = New

-- 
Dictionary should have favorites dictionaries 
https://bugs.launchpad.net/bugs/274569
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 275710] [NEW] have some errors on 8.04

2008-09-29 Thread raytus
Public bug reported:

Binary package hint: apt-cross

lol

ProblemType: Package
Architecture: i386
Date: Sun Sep 28 14:22:59 2008
DistroRelease: Ubuntu 8.04
ErrorMessage: problemas de dependencias - se deja sin configurar
NonfreeKernelModules: nvidia
Package: apt-cross 0.7.0
PackageArchitecture: all
SourcePackage: apt-cross
Title: package apt-cross 0.7.0 failed to install/upgrade: problemas de 
dependencias - se deja sin configurar
Uname: Linux 2.6.24-19-generic i686

** Affects: apt-cross (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package

-- 
have some errors on 8.04
https://bugs.launchpad.net/bugs/275710
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 275710] Re: have some errors on 8.04

2008-09-29 Thread raytus

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

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

-- 
have some errors on 8.04
https://bugs.launchpad.net/bugs/275710
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 275709] [NEW] First by of week should be configurable

2008-09-29 Thread Johannes Hessellund
Public bug reported:

Binary package hint: hamster-applet

In the overview dialog the first day of the week is sunday.

This should be configurable. In europe (at least Denmark) first day of
week is monday!

gconf might already have an entry for this for evolution.

** Affects: hamster-applet (Ubuntu)
 Importance: Undecided
 Status: New

-- 
First by of week should be configurable
https://bugs.launchpad.net/bugs/275709
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 275623] Re: Audio fails in Intrepid: GStreamer resource error

2008-09-29 Thread DrFaNaTiC
** Changed in: gstreamer0.10 (Ubuntu)
Sourcepackagename: None = gstreamer0.10

-- 
Audio fails in Intrepid: GStreamer resource error
https://bugs.launchpad.net/bugs/275623
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 275696] Re: [needs-packaging] reacTIVision - uses camera to track items on a table to generate Open Sound Control (OSC) commands

2008-09-29 Thread DrFaNaTiC
** Changed in: ubuntu
   Status: New = Confirmed

-- 
[needs-packaging] reacTIVision - uses camera to track items on a table to 
generate Open Sound Control (OSC) commands
https://bugs.launchpad.net/bugs/275696
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 275694] Re: [needs-packaging] Lily - browser based visual programming system - done by connecting images

2008-09-29 Thread DrFaNaTiC
** Changed in: ubuntu
   Status: New = Confirmed

-- 
[needs-packaging] Lily - browser based visual programming system - done by 
connecting images
https://bugs.launchpad.net/bugs/275694
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 275649] Re: [needs-packaging] Open Sound Control - control computers, synthesisers multimedia devices and machinery over networks

2008-09-29 Thread DrFaNaTiC
** Changed in: ubuntu
   Status: New = Confirmed

-- 
[needs-packaging] Open Sound Control - control computers, synthesisers 
multimedia devices and machinery over networks
https://bugs.launchpad.net/bugs/275649
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 275639] Re: [needs-packaging] Stats Jam - collect useability data from programs

2008-09-29 Thread DrFaNaTiC
** Changed in: ubuntu
   Status: New = Confirmed

-- 
[needs-packaging] Stats Jam - collect useability data from programs
https://bugs.launchpad.net/bugs/275639
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 275635] Re: [needs-packaging] inGimp - Gimp graphics editor with useability data collection project

2008-09-29 Thread DrFaNaTiC
** Changed in: ubuntu
   Status: New = Confirmed

-- 
[needs-packaging] inGimp - Gimp graphics editor with useability data collection 
project
https://bugs.launchpad.net/bugs/275635
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 275713] [NEW] sudo does not recognize bash aliases

2008-09-29 Thread yourpalal
Public bug reported:

Binary package hint: sudo

For example:
I have the following user defined alias, as reported by 'alias':alias 
IDLE='/usr/bin/idle-python2.5'
However, upon enter the following command sudo IDLE: I am given the following 
error:
sudo: IDLE: command not found

I am running 8.04 with sudo at version 1.6.9p10-1ubuntu3.3

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

-- 
sudo does not recognize bash aliases
https://bugs.launchpad.net/bugs/275713
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 275712] [NEW] Activity selecter

2008-09-29 Thread Johannes Hessellund
Public bug reported:

Binary package hint: hamster-applet

Would be nice if the activity selecter has case IN-sensitive.

If acivity already in the database, it should not create a new one if
only the case is different.

Reporting bugs should be equal to reporting bugs

Also completing with tab would be very nice.

And would be nice to have easy shorcuts for common activities. Activity
switching made easy!

** Affects: hamster-applet (Ubuntu)
 Importance: Undecided
 Status: New

-- 
Activity selecter
https://bugs.launchpad.net/bugs/275712
You received this bug notification because you are a member of 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 226420] Re: [Hardy] vlc and gvfs do not work together

2008-09-29 Thread Reinhard Tartler
Bryan Quigley [EMAIL PROTECTED] writes:

 VLC 0.9.3 completely changes it's dependencies so I think a backport to
 hardy wouldn't be possible.

If someone wants to give it a shot, try to backport its dependencies and
stage a package in your private PPA. we can then copy it in the
motumedia ppa for hardy.

-- 
Gruesse/greetings,
Reinhard Tartler, KeyID 945348A4

-- 
[Hardy] vlc and gvfs do not work together
https://bugs.launchpad.net/bugs/226420
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 275709] Re: First by of week should be configurable

2008-09-29 Thread Juanje Ojeda
** Bug watch added: GNOME Bug Tracker #554256
   http://bugzilla.gnome.org/show_bug.cgi?id=554256

** Also affects: hamster-applet via
   http://bugzilla.gnome.org/show_bug.cgi?id=554256
   Importance: Unknown
   Status: Unknown

-- 
First by of week should be configurable
https://bugs.launchpad.net/bugs/275709
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 267115] Re: Intrepid Alpha 5, HP Mininote 2133, Live CD, X Server Hangs after Boot

2008-09-29 Thread Georg Duffner
Option NoAccel fixes the freezes for me but it's incredibly slow. it's
indeed a regression from hardy.

-- 
Intrepid Alpha 5, HP Mininote 2133, Live CD, X Server Hangs after Boot
https://bugs.launchpad.net/bugs/267115
You received this bug notification because you are a member of 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 196095] Re: selecting A4 results in core dump

2008-09-29 Thread Kenneth Geisshirt
Quoting Wouter Stomp [EMAIL PROTECTED]:

 I assume I can close this bug then? If I am wrong, please reopen it.

Yes, please do close it. I have verified that 8.04 (32 bit) version  
works fine.

/kneth


This message was sent using IMP, the Internet Messaging Program.

-- 
selecting A4 results in core dump
https://bugs.launchpad.net/bugs/196095
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 275716] [NEW] Bug reported when booting updates do not complete

2008-09-29 Thread John Marlo Grier, Cebu
Public bug reported:

I installed ubuntu-8.04.1-desktop-i386.iso.   I found the Ubuntu website
on Google Search as the first one on the list.  I downloaded it last
week. this is Monday, September 29, 2008 in the Philippines. I am an
American from Minnesota, USA. My computer is registered in Chicago - I
purchased it in Duluth, Minnesota.

It is now Ubuntu 8.04 - the Hardy Heron - released in April 2008.

I installed it using a virtual cd recorder/player from inside Windows XP
SP2.  (I quit automatic updates for xp sp2 about 2 weeks before disaster
began to strike some of my friends who refused to upgrade XP SP2.  I
like UBUNTU. Have no experience on Hardy Heron. I have been installed
for about 2 days.

It is installed on a 250 gig external portable hard drive.

PROBLEM: (1) Every time I reboot or boot from turned off completely, I receive 
a bug notice.  
PROBLEM: (2) I receive continual notices on upgrades. I am not sure the long 
list of upgrades actually worked. But one of them registered an error 
attempting to install 1 update: linux-image-2.6.24-19-generic  (Linux kernel 
image for version 2.6.24 on x86/x86_64 (Size: 17.0 MB)

I am not a 64 computer user. It is a smaller AMD/intel Gateway Cinematic
Widescreen. I am now using a Hanns-G HX191D 17X19 monitor and a usb
keyboard and usb mouse. The built in monitor no longer functions but the
XP SP2 is currently working beautifully (until Gates murders it next
April!).

Hope this helps.

ProblemType: Bug
Architecture: i386
Date: Mon Sep 29 02:34:07 2008
DistroRelease: Ubuntu 8.04
Package: firefox-3.0 3.0.3+build1+nobinonly-0ubuntu0.8.04.1
PackageArchitecture: i386
ProcEnviron:
 PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: firefox-3.0
Uname: Linux 2.6.24-19-generic i686

** Affects: ubuntu
 Importance: Undecided
 Status: New


** Tags: apport-bug

-- 
Bug reported when booting  updates do not complete
https://bugs.launchpad.net/bugs/275716
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 275716] Re: Bug reported when booting updates do not complete

2008-09-29 Thread John Marlo Grier, Cebu

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

** Attachment added: ExtensionSummary.txt
   http://launchpadlibrarian.net/18027326/ExtensionSummary.txt

** Attachment added: profiles.ini.txt
   http://launchpadlibrarian.net/18027327/profiles.ini.txt

-- 
Bug reported when booting  updates do not complete
https://bugs.launchpad.net/bugs/275716
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 275713] Re: sudo does not recognize bash aliases

2008-09-29 Thread yourpalal
A workaround for anyone else experiencing this problem is to spawn a
root terminal for example 'sudo xterm' and then run your aliases from
there.

-- 
sudo does not recognize bash aliases
https://bugs.launchpad.net/bugs/275713
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 275709] Re: First by of week should be configurable

2008-09-29 Thread Bug Watch Updater
** Changed in: hamster-applet
   Status: Unknown = New

-- 
First by of week should be configurable
https://bugs.launchpad.net/bugs/275709
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 275692] Re: ath_pci must be reloaded after resume

2008-09-29 Thread DrFaNaTiC
** Changed in: linux-restricted-modules (Ubuntu)
Sourcepackagename: None = linux-restricted-modules

-- 
ath_pci must be reloaded after resume
https://bugs.launchpad.net/bugs/275692
You received this bug notification because you are a member of 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 275604] [NEW] Hard disk graph in panel applet constantly reads 0%

2008-09-29 Thread eugenia
no entiendo , hablo español. me interesa un curso completo de linux
completo, con un poco de mas nivek que los que he revisado.


- Mensaje original 
De: Ryan Steele [EMAIL PROTECTED]
Para: [EMAIL PROTECTED]
Enviado: domingo, 28 de septiembre, 2008 17:32:43
Asunto: [Bug 275604] [NEW] Hard disk graph in panel applet constantly reads 0%

Public bug reported:

Binary package hint: gnome-system-monitor

The hard disk usage graph in the System Monitor panel applet constantly
displays 0% activity, even during intervals of heavy disk access. This
graph worked correctly under Hardy Heron. I am using two 500GB SATA
drives in a RAID-0 configuration.

Steps to reproduce:
1. Add the System Monitor applet to a panel
2. From the applet's Preferences window, enable the hard disk activity graph
3. Perform a hard-disk intensive task (e.g. run the Disk Usage Analyzer)

Expected outcome:
Disk activity is indicated on the graph, and the tooltip indicates the 
percentage

Actual outcome:
The graph remains flat, and the tooltip indicates 0% disk usage

ProblemType: Bug
Architecture: amd64
DistroRelease: Ubuntu 8.10
ExecutablePath: /usr/bin/gnome-system-monitor
Package: gnome-system-monitor 2.24.0-0ubuntu1
ProcEnviron:
LANG=en_CA.UTF-8
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
SHELL=/bin/bash
SourcePackage: gnome-system-monitor
Uname: Linux 2.6.27-4-generic x86_64

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


** Tags: apport-bug

-- 
Hard disk graph in panel applet constantly reads 0%
https://bugs.launchpad.net/bugs/275604
You received this bug notification because you are subscribed to gnome-
system-monitor in ubuntu.

Status in “gnome-system-monitor” source package in Ubuntu: New

Bug description:
Binary package hint: gnome-system-monitor

The hard disk usage graph in the System Monitor panel applet constantly
displays 0% activity, even during intervals of heavy disk access. This
graph worked correctly under Hardy Heron. I am using two 500GB SATA
drives in a RAID-0 configuration.

Steps to reproduce:
1. Add the System Monitor applet to a panel
2. From the applet's Preferences window, enable the hard disk activity graph
3. Perform a hard-disk intensive task (e.g. run the Disk Usage Analyzer)

Expected outcome:
Disk activity is indicated on the graph, and the tooltip indicates the 
percentage

Actual outcome:
The graph remains flat, and the tooltip indicates 0% disk usage

ProblemType: Bug
Architecture: amd64
DistroRelease: Ubuntu 8.10
ExecutablePath: /usr/bin/gnome-system-monitor
Package: gnome-system-monitor 2.24.0-0ubuntu1
ProcEnviron:
LANG=en_CA.UTF-8
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
SHELL=/bin/bash
SourcePackage: gnome-system-monitor
Uname: Linux 2.6.27-4-generic x86_64


  

Yahoo! MTV Blog  Rock gt;¡Cuéntanos tu historia, inspira una canción y gánate 
un viaje a los Premios MTV! Participa aquí http://mtvla.yahoo.com/

-- 
Hard disk graph in panel applet constantly reads 0%
https://bugs.launchpad.net/bugs/275604
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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

[Bug 275718] [NEW] Nvidia driver recognized wrong card via envy

2008-09-29 Thread Zaraki
Public bug reported:

hello,

i'm running hardy heron and i've changed my graficcard from an nvidia
8600gt to an 8800gt!

first of all hardy didn't recognized at all my 8800 and launched my
system in 800x600 and before login there came a popup that the system
must run in low-graphics-mode. i tried to configure that i have a
geforce 8 series (okay he wrote it in the xorg.conf but no changes at
all) and tried to configure my resolution, that was a total failure
because ubuntu started in 800x600 (instead of 1280x1024) and in the
system (via screen resolution in System-Preferences) i could chose
between 640x480 and 800x600!

someone told me that the error was in the packages:
xserver-xorg-video-nv
must be deleted and blacklisted (so i did it) and in /etc/modules must be 
nvidia (so the module nvidia can start)... but no changes! same thing!

so i tried via envy to install my driver!
well it worked! 
but! in nvidia-xserver-settings he recognized my card as 9600GT (that is totaly 
wrong)! 

i had the same problem in windows! that i installed my driver and it was
recognized as 9600GT and i think that's nvidias fault that they messed
it up with the driver! (think of vista driver! there is no driver
properly working until now) but in windows i could change that! i could
say the system that he's wrong and that i have a 8800GT!

how can i do it in ubuntu? especially when in xorg.conf is written that
i have a geforce 8 series in my tower!

greetings

** Affects: ubuntu
 Importance: Undecided
 Status: New

-- 
Nvidia driver recognized wrong card via envy
https://bugs.launchpad.net/bugs/275718
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 275721] [NEW] Kernel oops and panic on resume from suspend with Intrepid's 2.6.27

2008-09-29 Thread Adam Porter
Public bug reported:

Binary package hint: linux-image-2.6.27-4-generic

linux-image-2.6.27-4-generic = 2.6.27-4.6

Dell XPS M1330 with Intel 4965 wireless and Nvidia 8400GS video.

I was testing the Intrepid kernel in Hardy due to iwl4965 SW microcode
errors and oops on suspend in Hardy's kernel.

In this Intrepid kernel, suspending to RAM works fine, but upon resuming
I get screen after screen of oopses and then the kernel panics.  Nothing
was recorded in /var/log/kern.log, and grepping for oops in /var/log
didn't find anything about it either.

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

-- 
Kernel oops and panic on resume from suspend with Intrepid's 2.6.27
https://bugs.launchpad.net/bugs/275721
You received this bug notification because you are a member of 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 271329] Re: 2.16.6 stable update

2008-09-29 Thread Martin Pitt
Hi Matt,

Matt Neilson [2008-09-26 19:50 -]:
 Currently running version in -proposed, no regressions seen so far.  Any
 test cases to exercise this?

Looking at the changelog, the bugs fixed are not that obvious and easy
to reproduce, so I think this will go with the three people saying it
still works for them approach. Thank you for testing!

-- 
2.16.6 stable update
https://bugs.launchpad.net/bugs/271329
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 139570] Re: Documents in swiss-french are not spell checked

2008-09-29 Thread Jonathan Ernst
Thanks François !

Your updated package fixes this bug on my fr_CH intrepid system.

Best regards

-- 
Documents in swiss-french are not spell checked
https://bugs.launchpad.net/bugs/139570
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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

[Bug 87101] Re: when opening an attachment, it should be written to tmp as a read-only file

2008-09-29 Thread Femke
This behavior I did not expect either: I opened an attachment from an
e-mail, renamed it (making sure not to overwrite the original), saved
it, but did not realize I saved it with the original file in tmp / as a
tmp file. So after multiple saves, I closed Thunderbird (2.0.0.17,
Ubuntu) only to find that without warning, now the file has been flushed
forever...

-- 
when opening an attachment, it should be written to tmp as a read-only file
https://bugs.launchpad.net/bugs/87101
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 254979] Re: kile keeps crashing during opening certain beamer LaTeX files

2008-09-29 Thread Katsudon
** Attachment removed: Faulty ~/.kde/share/config/kilerc file

   http://launchpadlibrarian.net/16584600/kilerc_zepsute

-- 
kile keeps crashing during opening certain beamer LaTeX files
https://bugs.launchpad.net/bugs/254979
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 218334] Re: lockup on mac mini 945GM [8086:27a2]

2008-09-29 Thread eugenesan
Hi all,

Ok, after weeks of testing looks like problem is fixed both in xorg-driver 
2.4.2 and kernel 2.6.27.
Updating any of them or both works for me.

But since latest Hardy snapshot still suffer from problem, I wonder what is 
official recommendation for Hardy users?
Will fixes be backported to Hardy?

-- 
lockup on mac mini 945GM [8086:27a2]
https://bugs.launchpad.net/bugs/218334
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 275725] [NEW] Wrong Bulgaria/Sofia time zone during installation

2008-09-29 Thread Gerasim
Public bug reported:

Binary package hint: ubiquity

During installation of Ubuntu 8.04 the time zone for Bulgaria/Sofia is
GMT +03:00, but correct time zone for Bulgaria/Sofia is GMT +02:00.

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

-- 
Wrong Bulgaria/Sofia time zone during installation
https://bugs.launchpad.net/bugs/275725
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 275610] Re: FastCGIExternalServer and AddHandler don't work correctly

2008-09-29 Thread David Pashley
I've tracked down this to a change in 2.2.13 from some point between
22-Sep-2002 and 22-Oct-2002 with the description in the changelog saying

 *) Eliminate the need for SetHandler or AddHandler with static or 
external applications.

-- 
FastCGIExternalServer and AddHandler don't work correctly
https://bugs.launchpad.net/bugs/275610
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 271680] Re: MIR for python-dateutil

2008-09-29 Thread Martin Pitt
We went through some effort to eliminate all copies of the Olson time
zone database in python-tz, postgresql, and a couple of other places, to
use tzdata everywhere (which we keep up to date in stable releases).
python-dateutil is a step backwards again, since it yet again contains a
(very old) copy of that database (see http://bugs.debian.org/416204).

Does eliza use the time zone information in python-dateutil? If so,
could it either use python-tz for that (which does the right thing), or
can python-dateutil be fixed to use the system time zone information?

** Changed in: python-dateutil (Ubuntu)
   Status: Confirmed = Incomplete

-- 
MIR for python-dateutil
https://bugs.launchpad.net/bugs/271680
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 275590] Re: (Double) clicking problem in Firefox 3.0.3

2008-09-29 Thread Jaakko Seppälä
It looks like it is a bug in Firefox.

-- 
(Double) clicking problem in Firefox 3.0.3
https://bugs.launchpad.net/bugs/275590
You received this bug notification because you are a member of 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 218334] Re: lockup on mac mini 945GM [8086:27a2]

2008-09-29 Thread Dmitry Ivanov
On Mon, 2008-09-29 at 07:24 +, eugenesan wrote:
 Ok, after weeks of testing looks like problem is fixed both in
 xorg-driver 2.4.2 and kernel 2.6.27.
 Updating any of them or both works for me.

The same for me.

-- 
lockup on mac mini 945GM [8086:27a2]
https://bugs.launchpad.net/bugs/218334
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 275726] [NEW] No vorbis sound in MKV movie

2008-09-29 Thread
Public bug reported:

Binary package hint: totem-xine

When a MKV movie plays there is no sound if it's vorbis.

ProblemType: Bug
Architecture: i386
Date: Mon Sep 29 01:33:52 2008
DistroRelease: Ubuntu 8.04
ExecutablePath: /usr/bin/totem-xine
Package: totem-xine 2.22.1-0ubuntu2
PackageArchitecture: i386
ProcEnviron:
 
PATH=/home/username/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: totem
Uname: Linux 2.6.24-19-generic i686

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


** Tags: apport-bug

-- 
No vorbis sound in MKV movie
https://bugs.launchpad.net/bugs/275726
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 275726] Re: No vorbis sound in MKV movie

2008-09-29 Thread

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

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

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

-- 
No vorbis sound in MKV movie
https://bugs.launchpad.net/bugs/275726
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 275725] Re: Wrong Bulgaria/Sofia time zone during installation

2008-09-29 Thread Gerasim
** Description changed:

  Binary package hint: ubiquity
  
- During installation of Ubuntu 8.04 the time zone for Bulgaria/Sofia is
+ During installation of Ubuntu 8.04.1 the time zone for Bulgaria/Sofia is
  GMT +03:00, but correct time zone for Bulgaria/Sofia is GMT +02:00.

-- 
Wrong Bulgaria/Sofia time zone during installation
https://bugs.launchpad.net/bugs/275725
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 275718] Re: Nvidia driver recognized wrong card via envy

2008-09-29 Thread DrFaNaTiC
** Changed in: xserver-xorg-driver-nv (Ubuntu)
Sourcepackagename: None = xserver-xorg-driver-nv

-- 
Nvidia driver recognized wrong card via envy
https://bugs.launchpad.net/bugs/275718
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 254837] Re: hostap_cs causes kernel oops on 2.6.26 with senao nl-2511cd

2008-09-29 Thread Dan Taylor Jr.

** Attachment added: dsdt.dsl
   http://launchpadlibrarian.net/18027704/dsdt.dsl

-- 
hostap_cs causes kernel oops on 2.6.26 with senao nl-2511cd 
https://bugs.launchpad.net/bugs/254837
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 246790] Re: EasyCrypt 0.2.2.10 doesn't see TrueCrypt 6.0a

2008-09-29 Thread chris costello
I have the same problem, and suspect that I am not the only one. Until
it is fixed, it would be friendly to suggest some other software for
people to use for the same purpose - assuming there is any. Any ideas?

-- 
EasyCrypt 0.2.2.10 doesn't see TrueCrypt 6.0a
https://bugs.launchpad.net/bugs/246790
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 228296] Re: dscverify does not find Debian keyring

2008-09-29 Thread Martin Pitt
Intrepid fix sponsored, waiting in unapproved. Will probably stall until
after beta freeze.

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

-- 
dscverify does not find Debian keyring
https://bugs.launchpad.net/bugs/228296
You received this bug notification because you are a member of 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 227204] Re: sky2 rx length error. No network after that.

2008-09-29 Thread Dmitry Ivanov
On Sat, 2008-09-27 at 07:23 +, flower wrote:
 I updated my 8.04 to intrepid ibex alpha 6. Network was fine before, but
 now is died at all. I get sky2 rx length error too. i'm on x86-64, and
 my network card is marvell 88e8056.
 

Totally opposite here :)

After moving to 8.10, sky2 works OK. At least there was no NIC lockups
for the last three or four weeks...

-- 
sky2 rx length error. No network after that.
https://bugs.launchpad.net/bugs/227204
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 225379] Re: Firefox does not close TCP connections for multipart/x-mixed-replace (e.g. motion JPEG) when closing page.

2008-09-29 Thread Johnathon
I've been able to confirm this here. Webcam link eats bandwidth after
tab is closed... Handy!

-- 
Firefox does not close TCP connections for multipart/x-mixed-replace (e.g. 
motion JPEG) when closing page.
https://bugs.launchpad.net/bugs/225379
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 192888] Re: firefox crashes on flash contents when using libflashsupport

2008-09-29 Thread Raúl Eduardo Scalia
Desabilitar FlashBlock para logar ver los archivos Flash

-- 
firefox crashes on flash contents when using libflashsupport
https://bugs.launchpad.net/bugs/192888
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 162168] Re: Can't connect to latin/cyrillic SSID with network-admin

2008-09-29 Thread John C Barstow
** Also affects: gst
   Importance: Undecided
   Status: New

-- 
Can't connect to latin/cyrillic SSID with network-admin
https://bugs.launchpad.net/bugs/162168
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 275727] [NEW] Properties section doesn't show up

2008-09-29 Thread
Public bug reported:

Binary package hint: totem-xine

The sidebar properties of files section does not show up as it normally
did in totem before.

ProblemType: Bug
Architecture: i386
Date: Mon Sep 29 01:39:08 2008
DistroRelease: Ubuntu 8.04
ExecutablePath: /usr/bin/totem-xine
Package: totem-xine 2.22.1-0ubuntu2
PackageArchitecture: i386
ProcEnviron:
 
PATH=/home/username/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: totem
Uname: Linux 2.6.24-19-generic i686

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


** Tags: apport-bug

-- 
Properties section doesn't show up
https://bugs.launchpad.net/bugs/275727
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 275727] Re: Properties section doesn't show up

2008-09-29 Thread

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

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

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

-- 
Properties section doesn't show up
https://bugs.launchpad.net/bugs/275727
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 275159] Re: Acer 4530 Laptop: Install problem

2008-09-29 Thread Shekhar
I have tried different versions/flavors to install. While results are different 
one thing is common that *you can not install from a live CD.*
I will try to give you more detailed reports. Below is the story of one of the 
attempts:

Ubuntu 8.04.1 AMD 64 Desktop (Alternate install):

1. Install is smooth. 
2. OS doesn't boot. caps indicator keeps blinking.
2. Now I boot the machine with kernel options splash and quiet removed, I see 
kernel panic with following messages in the end
RIP [8036ddb0] vgacon_cursor+0x10/0x1f0
RSP 80635f78
CR2 004c
end trace 2ce005c0852e264f
Kernel panic - not syncing: Aiee, killing interrupt handler

Next I would try intrepid alpha 6 (32 bit) alternate install

Thanks as always

-- 
Acer 4530 Laptop: Install problem
https://bugs.launchpad.net/bugs/275159
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 274569] Re: Dictionary should have favorites dictionaries

2008-09-29 Thread Sebastien Bacher
thank you for sending the bug to GNOME

** Changed in: gnome-utils (Ubuntu)
   Status: Incomplete = Triaged

-- 
Dictionary should have favorites dictionaries 
https://bugs.launchpad.net/bugs/274569
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 272860] Re: compiz.real crashed with SIGSEGV

2008-09-29 Thread Mathieu Marquer
** Visibility changed to: Public

-- 
compiz.real crashed with SIGSEGV
https://bugs.launchpad.net/bugs/272860
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 272742] Re: eog won't ask to mount a volume

2008-09-29 Thread Bug Watch Updater
** Changed in: eog
   Status: Unknown = Fix Released

-- 
eog won't ask to mount a volume
https://bugs.launchpad.net/bugs/272742
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 176916] Re: screen resolution and model wont change

2008-09-29 Thread John C Barstow
** Changed in: xorg (Ubuntu)
Sourcepackagename: None = xorg

-- 
screen resolution and model wont change
https://bugs.launchpad.net/bugs/176916
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 162168] Re: Can't connect to latin/cyrillic SSID with network-admin

2008-09-29 Thread John C Barstow
** Changed in: gnome-system-tools (Ubuntu)
Sourcepackagename: None = gnome-system-tools

-- 
Can't connect to latin/cyrillic SSID with network-admin
https://bugs.launchpad.net/bugs/162168
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 46846] Re: Emblems get cut when scaled to a zoom = 150% (refresh issue)

2008-09-29 Thread jackocleebrown
I can confirm this bug is present on Intrepid Alpha 6 (screenshot
attached).

** Attachment added: Cut emblems
   
http://launchpadlibrarian.net/18027745/Screenshot-jack%20-%20File%20Browser.png

-- 
Emblems get cut when scaled to a zoom = 150% (refresh issue)
https://bugs.launchpad.net/bugs/46846
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 275675] Re: program finds incorrect disk data including not recognizing that a CD has four separate cuts

2008-09-29 Thread Sebastien Bacher
Thank you for taking the time to report this bug and helping to make Ubuntu 
better. Please answer these questions: 
 
 * Is this reproducible? 
 * If so, what specific steps should we take to recreate this bug?
 * Could you explain in detail the error? 
 
 This will help us to find and resolve the problem.

** Changed in: sound-juicer (Ubuntu)
   Importance: Undecided = Low

** Changed in: sound-juicer (Ubuntu)
 Assignee: (unassigned) = Ubuntu Desktop Bugs (desktop-bugs)
   Status: New = Incomplete

-- 
program finds incorrect disk data including not recognizing that a CD has four 
separate cuts
https://bugs.launchpad.net/bugs/275675
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 274612] Re: gnomecatalog crashed with TypeError in get_selected()

2008-09-29 Thread Miloš Mandarić
This bug is forwarded to upstream here
https://sourceforge.net/tracker/index.php?func=detailaid=2135532group_id=118573atid=681723

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

-- 
gnomecatalog crashed with TypeError in get_selected()
https://bugs.launchpad.net/bugs/274612
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 274565] Re: error updating gnomes-game-data

2008-09-29 Thread Michael Vogt
@Greg: The error message indicates that you might have a filesystem
error on your computer. Could you please run a filesystem check
(availabe in the ubuntu rescue mode) and a momory check (availabe start
startup with the ESC key) and check if those report no error?

-- 
error updating gnomes-game-data
https://bugs.launchpad.net/bugs/274565
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 270801] Re: X crashes when starting ddd

2008-09-29 Thread Peter Hopfgartner
Sorry, I can't decode l-r-m. Anway, I do not have the NVIDIA binary
driver installed, I do have the xorg driver installed:

[EMAIL PROTECTED]:~$ dpkg --get-selections | grep nvidia
nvidia-glx-new  install
nvidia-kernel-commoninstall

[EMAIL PROTECTED]:~$ dpkg --get-selections | grep nv
libgnome2-canvas-perl   install
libgnomecanvas2-0   install
libgnomecanvas2-common  install
libtext-iconv-perl  install
nvidia-glx-new  install
nvidia-kernel-commoninstall
openvpn install
openvpn-blacklist   install
python-gnomecanvas  install
xserver-xorg-video-nv   install

-- 
X crashes when starting ddd
https://bugs.launchpad.net/bugs/270801
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 228296] Re: dscverify does not find Debian keyring

2008-09-29 Thread Martin Pitt
Accepted into hardy-proposed, please test.

** Changed in: devscripts (Ubuntu Hardy)
   Status: New = Fix Committed

** Tags added: verification-needed

-- 
dscverify does not find Debian keyring
https://bugs.launchpad.net/bugs/228296
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 176932] Re: system powers down after 10 hours, log says 'exiting on signal 15'

2008-09-29 Thread John C Barstow
** Changed in: acpi (Ubuntu)
Sourcepackagename: None = acpi

-- 
system powers down after 10 hours, log says 'exiting on signal 15'
https://bugs.launchpad.net/bugs/176932
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 176311] Re: ACPI Error [...] AE_NOT_FOUND - Frequency scaling not working at all on C2D T7500

2008-09-29 Thread John C Barstow
** Changed in: linux-source-2.6.22 (Ubuntu)
Sourcepackagename: None = linux-source-2.6.22

-- 
ACPI Error [...] AE_NOT_FOUND - Frequency scaling not working at all on C2D 
T7500
https://bugs.launchpad.net/bugs/176311
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 274565] Re: error updating gnomes-game-data

2008-09-29 Thread Sebastien Bacher
the error seems to indicate a local installation issue or local changes,
that's not a package bug, changing to an user question

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

** Changed in: gnome-games (Ubuntu)
   Status: Confirmed = Invalid

** bug changed to question:
   https://answers.edge.launchpad.net/ubuntu/+source/gnome-games/+question/46637

-- 
error updating gnomes-game-data
https://bugs.launchpad.net/bugs/274565
You received this bug notification because you are a member of 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   >