[Bug 1822467] Re: OpeonConnect fails with generic TLS Fatal Alert Error

2020-03-28 Thread J.P.
Just a thought, but in the case of using the NetworkManager plugin where
I'm not certain you can easily modify the command line args (I've not
looked into this at all)- I wonder if Ubuntu setting the priority
similar to what Fedora is doing and providing a default gnutls
configuration for OpenConnect that mirrored the default priority
OpenConnect uses wouldn't be ideal. Seems like the most compatible
solution to get the same behavior out the NetworkManager function or
using it from the command line.

Or if there is a way for OpenConnect to support this directly without
creating issues for other downstream consumers of the project:

https://www.gnutls.org/manual/html_node/Application_002dspecific-
priority-strings.html

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

Title:
  OpeonConnect fails with generic TLS Fatal Alert Error

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/openconnect/+bug/1822467/+subscriptions

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

[Bug 1822467] Re: OpeonConnect fails with generic TLS Fatal Alert Error

2020-03-28 Thread J.P.
I'm not sure this "fixable" on Ubuntu with the standard build of
openconnect, at least not by messing with system default priorities for
gnutls. Correct me if I'm wrong but I've done some digging this morning
and comparing the openconnect build on ubuntu 19.10 against the fedora
build the main difference with regards to the priority strings is that
the fedora build is specifically checking for a system or openconnect
default policy:

@OPENCONNECT,SYSTEM:%COMPAT

Which I believe allows you to override via system level policies for the
priority string, hence the update-crypto-policies noted in the link
above. On Ubuntu 19.10, this is the policy string I see in
libopenconnect.so.5.5.0:

NORMAL:-VERS-SSL3.0:%COMPAT

If it had a similar policy string, for example @SYSTEM or @OPENCONNECT,
you could theoretically (I haven't tested) override OpenConnect's
default using /etc/gnutls/config. I tested this priority string, which
is what Fedora sets when enabling legacy crypto, and gnutls-cli does not
complain when connecting to the AnyConnect host I have this issue with.

$ cat /etc/gnutls/config 
[priorities]
SYSTEM=NORMAL:+3DES-CBC:+ARCFOUR-128

$ gnutls-cli --priority @SYSTEM --list
Cipher suites for @SYSTEM
TLS_AES_256_GCM_SHA384  0x13, 0x02  TLS1.3
TLS_CHACHA20_POLY1305_SHA2560x13, 0x03  TLS1.3
TLS_AES_128_GCM_SHA256  0x13, 0x01  TLS1.3
TLS_AES_128_CCM_SHA256  0x13, 0x04  TLS1.3
TLS_ECDHE_ECDSA_AES_256_GCM_SHA384  0xc0, 0x2c  TLS1.2
TLS_ECDHE_ECDSA_CHACHA20_POLY1305   0xcc, 0xa9  TLS1.2
TLS_ECDHE_ECDSA_AES_256_CCM 0xc0, 0xad  TLS1.2
TLS_ECDHE_ECDSA_AES_256_CBC_SHA10xc0, 0x0a  TLS1.0
TLS_ECDHE_ECDSA_AES_128_GCM_SHA256  0xc0, 0x2b  TLS1.2
TLS_ECDHE_ECDSA_AES_128_CCM 0xc0, 0xac  TLS1.2
TLS_ECDHE_ECDSA_AES_128_CBC_SHA10xc0, 0x09  TLS1.0
TLS_ECDHE_ECDSA_3DES_EDE_CBC_SHA1   0xc0, 0x08  TLS1.0
TLS_ECDHE_ECDSA_ARCFOUR_128_SHA10xc0, 0x07  TLS1.0
TLS_ECDHE_RSA_AES_256_GCM_SHA3840xc0, 0x30  TLS1.2
TLS_ECDHE_RSA_CHACHA20_POLY1305 0xcc, 0xa8  TLS1.2
TLS_ECDHE_RSA_AES_256_CBC_SHA1  0xc0, 0x14  TLS1.0
TLS_ECDHE_RSA_AES_128_GCM_SHA2560xc0, 0x2f  TLS1.2
TLS_ECDHE_RSA_AES_128_CBC_SHA1  0xc0, 0x13  TLS1.0
TLS_ECDHE_RSA_3DES_EDE_CBC_SHA1 0xc0, 0x12  TLS1.0
TLS_ECDHE_RSA_ARCFOUR_128_SHA1  0xc0, 0x11  TLS1.0
TLS_RSA_AES_256_GCM_SHA384  0x00, 0x9d  TLS1.2
TLS_RSA_AES_256_CCM 0xc0, 0x9d  TLS1.2
TLS_RSA_AES_256_CBC_SHA10x00, 0x35  TLS1.0
TLS_RSA_AES_128_GCM_SHA256  0x00, 0x9c  TLS1.2
TLS_RSA_AES_128_CCM 0xc0, 0x9c  TLS1.2
TLS_RSA_AES_128_CBC_SHA10x00, 0x2f  TLS1.0
TLS_RSA_3DES_EDE_CBC_SHA1   0x00, 0x0a  TLS1.0
TLS_RSA_ARCFOUR_128_SHA10x00, 0x05  TLS1.0
TLS_DHE_RSA_AES_256_GCM_SHA384  0x00, 0x9f  TLS1.2
TLS_DHE_RSA_CHACHA20_POLY1305   0xcc, 0xaa  TLS1.2
TLS_DHE_RSA_AES_256_CCM 0xc0, 0x9f  TLS1.2
TLS_DHE_RSA_AES_256_CBC_SHA10x00, 0x39  TLS1.0
TLS_DHE_RSA_AES_128_GCM_SHA256  0x00, 0x9e  TLS1.2
TLS_DHE_RSA_AES_128_CCM 0xc0, 0x9e  TLS1.2
TLS_DHE_RSA_AES_128_CBC_SHA10x00, 0x33  TLS1.0
TLS_DHE_RSA_3DES_EDE_CBC_SHA1   0x00, 0x16  TLS1.0

Protocols: VERS-TLS1.3, VERS-TLS1.2, VERS-TLS1.1, VERS-TLS1.0, VERS-DTLS1.2, 
VERS-DTLS1.0
Ciphers: AES-256-GCM, CHACHA20-POLY1305, AES-256-CCM, AES-256-CBC, AES-128-GCM, 
AES-128-CCM, AES-128-CBC, 3DES-CBC, ARCFOUR-128
MACs: SHA1, AEAD
Key Exchange Algorithms: ECDHE-ECDSA, ECDHE-RSA, RSA, DHE-RSA
Groups: GROUP-SECP256R1, GROUP-SECP384R1, GROUP-SECP521R1, GROUP-X25519, 
GROUP-FFDHE2048, GROUP-FFDHE3072, GROUP-FFDHE4096, GROUP-FFDHE6144, 
GROUP-FFDHE8192
PK-signatures: SIGN-RSA-SHA256, SIGN-RSA-PSS-SHA256, SIGN-RSA-PSS-RSAE-SHA256, 
SIGN-ECDSA-SHA256, SIGN-ECDSA-SECP256R1-SHA256, SIGN-EdDSA-Ed25519, 
SIGN-RSA-SHA384, SIGN-RSA-PSS-SHA384, SIGN-RSA-PSS-RSAE-SHA384, 
SIGN-ECDSA-SHA384, SIGN-ECDSA-SECP384R1-SHA384, SIGN-RSA-SHA512, 
SIGN-RSA-PSS-SHA512, SIGN-RSA-PSS-RSAE-SHA512, SIGN-ECDSA-SHA512, 
SIGN-ECDSA-SECP521R1-SHA512, SIGN-RSA-SHA1, SIGN-ECDSA-SHA1

$ gnutls-cli --priority @SYSTEM your-vpn-host.tld

-- 
You received t

[Bug 1822467] Re: OpeonConnect fails with generic TLS Fatal Alert Error

2020-03-28 Thread J.P.
On Fedora latest stable enabling legacy crypto policies solves this for
me. I’m on my phone and haven’t spent a lot of time googling how to do
this for Ubuntu but here’s the fedora docs for reference:

https://fedoraproject.org/wiki/Changes/StrongCryptoSettings

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

Title:
  OpeonConnect fails with generic TLS Fatal Alert Error

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/openconnect/+bug/1822467/+subscriptions

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

[Bug 1822467] Re: OpeonConnect fails with generic TLS Fatal Alert Error

2019-04-05 Thread J.P.
I've read through the bug report linked above and have tried building
OpenConnect with +SHA256 added with no luck. I may be missing something
else that was done to get it working. I do know if I build against
gnutls 3.5.18 it does work so it does look like the priority string
change going to 3.5.19 is likely the problem as discovered in that bug
report and I'm doing something wrong building it, I guess.

$ git status
HEAD detached at 5a3f242e

$ ./openconnect --version
OpenConnect version v8.02-9-g5a3f242e
Using GnuTLS. Features present: PKCS#11, HOTP software token, TOTP software 
token, System keys, DTLS, ESP
Supported protocols: anyconnect (default), nc, gp

$ grep default_prio gnutls.c
  const char *default_prio;
  default_prio = DEFAULT_PRIO ":%COMPAT";
  default_prio = "NORMAL:-VERS-SSL3.0:+SHA256:%COMPAT";
 default_prio, vpninfo->pfs?":-RSA":"", 
vpninfo->no_tls13?":-VERS-TLS1.3":"");

$ strings /usr/lib/x86_64-linux-gnu/libopenconnect.so.5.5.0 | grep ^NORMAL
NORMAL:-VERS-SSL3.0:%COMPAT

$ strings .libs/libopenconnect.so.5.5.0 | grep ^NORMAL
NORMAL:-VERS-SSL3.0:+SHA256:%COMPAT

$ ./openconnect vpn-host.tld
POST https://vpn-host.tld/
Connected to n:443
SSL negotiation with vpn-host.tld
SSL connection failure: A TLS fatal alert has been received.
Failed to open HTTPS connection to vpn-host.tld
Failed to obtain WebVPN cookie

Build the same openconnect against gnutls 3.5.18 and it works:

$ export PKG_CONFIG_PATH=/opt/gnutls-3.5.18/lib/pkgconfig/
$ ./configure
$ make
$ ./openconnect vpn-host.tld
POST https://vpn-host.tld/
Connected to n:443
SSL negotiation with vpn-host.tld
Connected to HTTPS on vpn-host.tld

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

Title:
  OpeonConnect fails with generic TLS Fatal Alert Error

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/openconnect/+bug/1822467/+subscriptions

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

[Bug 1822467] Re: OpeonConnect fails with generic TLS Fatal Alert Error

2019-03-31 Thread J.P.
** Package changed: kinit (Ubuntu) => openconnect (Ubuntu)

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

Title:
  OpeonConnect fails with generic TLS Fatal Alert Error

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/openconnect/+bug/1822467/+subscriptions

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

[Bug 1822467] [NEW] OpeonConnect fails with generic TLS Fatal Alert Error

2019-03-31 Thread J.P.
Public bug reported:

Works in Ubuntu 18.04, fails in 18.10 and the upcoming 19.04. Appears to
be a problem with a cipher no longer included, maybe? See here, as it's
not just ubuntu that is having this issue:

https://www.reddit.com/r/Fedora/comments/a6hc0c/help_networkmanger_w_openconnect_gives_a_tls_error/

I've removed information about the VPN host. I can disclose that it is a
Cisco AnyConnect VPN service.

OpenConnect output:

POST https://vpn-host.tld/
Attempting to connect to server xx:443
Connected to xx:443
SSL negotiation with vpn-host.tld
SSL connection failure: A TLS fatal alert has been received.
Failed to open HTTPS connection to vpn-host.tld

gnutls-cli output:

$ gnutls-cli -V vpn-host.tld
Processed 128 CA certificate(s).
Resolving 'vpn-host.tld:443'...
Connecting to 'xx:443'...
*** Fatal error: A TLS fatal alert has been received.
*** Received alert [40]: Handshake failed

$ gnutls-cli -d 2 vpn-host.tld
Processed 128 CA certificate(s).
Resolving 'vpn-host.tld:443'...
Connecting to 'xx:443'...
|<2>| added 6 protocols, 29 ciphersuites, 18 sig algos and 9 groups into 
priority list
|<2>| Keeping ciphersuite 13.02 (GNUTLS_AES_256_GCM_SHA384)
|<2>| Keeping ciphersuite 13.03 (GNUTLS_CHACHA20_POLY1305_SHA256)
|<2>| Keeping ciphersuite 13.01 (GNUTLS_AES_128_GCM_SHA256)
|<2>| Keeping ciphersuite 13.04 (GNUTLS_AES_128_CCM_SHA256)
|<2>| Keeping ciphersuite c0.2c (GNUTLS_ECDHE_ECDSA_AES_256_GCM_SHA384)
|<2>| Keeping ciphersuite cc.a9 (GNUTLS_ECDHE_ECDSA_CHACHA20_POLY1305)
|<2>| Keeping ciphersuite c0.ad (GNUTLS_ECDHE_ECDSA_AES_256_CCM)
|<2>| Keeping ciphersuite c0.0a (GNUTLS_ECDHE_ECDSA_AES_256_CBC_SHA1)
|<2>| Keeping ciphersuite c0.2b (GNUTLS_ECDHE_ECDSA_AES_128_GCM_SHA256)
|<2>| Keeping ciphersuite c0.ac (GNUTLS_ECDHE_ECDSA_AES_128_CCM)
|<2>| Keeping ciphersuite c0.09 (GNUTLS_ECDHE_ECDSA_AES_128_CBC_SHA1)
|<2>| Keeping ciphersuite c0.30 (GNUTLS_ECDHE_RSA_AES_256_GCM_SHA384)
|<2>| Keeping ciphersuite cc.a8 (GNUTLS_ECDHE_RSA_CHACHA20_POLY1305)
|<2>| Keeping ciphersuite c0.14 (GNUTLS_ECDHE_RSA_AES_256_CBC_SHA1)
|<2>| Keeping ciphersuite c0.2f (GNUTLS_ECDHE_RSA_AES_128_GCM_SHA256)
|<2>| Keeping ciphersuite c0.13 (GNUTLS_ECDHE_RSA_AES_128_CBC_SHA1)
|<2>| Keeping ciphersuite 00.9d (GNUTLS_RSA_AES_256_GCM_SHA384)
|<2>| Keeping ciphersuite c0.9d (GNUTLS_RSA_AES_256_CCM)
|<2>| Keeping ciphersuite 00.35 (GNUTLS_RSA_AES_256_CBC_SHA1)
|<2>| Keeping ciphersuite 00.9c (GNUTLS_RSA_AES_128_GCM_SHA256)
|<2>| Keeping ciphersuite c0.9c (GNUTLS_RSA_AES_128_CCM)
|<2>| Keeping ciphersuite 00.2f (GNUTLS_RSA_AES_128_CBC_SHA1)
|<2>| Keeping ciphersuite 00.9f (GNUTLS_DHE_RSA_AES_256_GCM_SHA384)
|<2>| Keeping ciphersuite cc.aa (GNUTLS_DHE_RSA_CHACHA20_POLY1305)
|<2>| Keeping ciphersuite c0.9f (GNUTLS_DHE_RSA_AES_256_CCM)
|<2>| Keeping ciphersuite 00.39 (GNUTLS_DHE_RSA_AES_256_CBC_SHA1)
|<2>| Keeping ciphersuite 00.9e (GNUTLS_DHE_RSA_AES_128_GCM_SHA256)
|<2>| Keeping ciphersuite c0.9e (GNUTLS_DHE_RSA_AES_128_CCM)
|<2>| Keeping ciphersuite 00.33 (GNUTLS_DHE_RSA_AES_128_CBC_SHA1)
|<2>| Advertizing version 3.4
|<2>| Advertizing version 3.3
|<2>| Advertizing version 3.2
|<2>| Advertizing version 3.1
|<2>| HSK[0x5649deb82390]: sent server name: 'vpn-host.tld'
*** Fatal error: A TLS fatal alert has been received.
*** Received alert [40]: Handshake failed

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

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

Title:
  OpeonConnect fails with generic TLS Fatal Alert Error

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/kinit/+bug/1822467/+subscriptions

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

[Bug 1647671] Re: each time I shutdown my computer BEFORE ANY LOGIN, I got an error on next power on

2016-12-06 Thread J.P. Willems
I use a GRUB dual boot
On login screen UBUNTU, if I restart before any login, the next time I launch 
Ubuntu I got a error message

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

Title:
  each time I shutdown my computer BEFORE ANY LOGIN, I got an error  on
  next power on

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/plymouth/+bug/1647671/+subscriptions

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


[Bug 1647671] [NEW] each time I shutdown my computer BEFORE ANY LOGIN, I got an error on next power on

2016-12-06 Thread J.P. Willems
Public bug reported:

Ubuntu 14.04 LTS updated weekly
I686

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

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

Title:
  each time I shutdown my computer BEFORE ANY LOGIN, I got an error  on
  next power on

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/plymouth/+bug/1647671/+subscriptions

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


[Bug 1584552] [NEW] package libsystemd0:i386 229-4ubuntu5 failed to install/upgrade: package libsystemd0:i386 is already installed and configured

2016-05-22 Thread J.P.
Public bug reported:

none

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: libsystemd0:i386 229-4ubuntu5
ProcVersionSignature: Ubuntu 4.4.0-22.40-lowlatency 4.4.8
Uname: Linux 4.4.0-22-lowlatency x86_64
ApportVersion: 2.20.1-0ubuntu2
AptdaemonVersion: 1.1.1+bzr982-0ubuntu14
Architecture: amd64
Date: Fri May 20 02:53:51 2016
DuplicateSignature:
 Processing triggers for fontconfig (2.11.94-0ubuntu1) ...
 dpkg: error processing package libsystemd0:i386 (--configure):
  package libsystemd0:i386 is already installed and configured
ErrorMessage: package libsystemd0:i386 is already installed and configured
InstallationDate: Installed on 2016-05-12 (10 days ago)
InstallationMedia: Ubuntu-Studio 15.04 "Vivid Vervet" - Release amd64 (20150422)
PackageArchitecture: i386
RelatedPackageVersions:
 dpkg 1.18.4ubuntu1.1
 apt  1.2.10ubuntu1
SourcePackage: systemd
Title: package libsystemd0:i386 229-4ubuntu5 failed to install/upgrade: package 
libsystemd0:i386 is already installed and configured
UpgradeStatus: Upgraded to xenial on 2016-05-20 (2 days ago)

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


** Tags: already-installed apport-package i386 need-duplicate-check uec-images 
xenial

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

Title:
  package libsystemd0:i386 229-4ubuntu5 failed to install/upgrade:
  package libsystemd0:i386 is already installed and configured

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/systemd/+bug/1584552/+subscriptions

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


[Bug 1019752] Re: hotot won't start correctly xubuntu 12.10

2012-10-25 Thread J.P. Wing
Confirmed that I am able to replicate the issue on Ubuntu 12.10 64-bit
under Unity.  I am also getting the same error.

** (hotot:5528): WARNING **: Binding 'C' failed!

Wandering around the blank white screen with my mouse never turned up a
tooltip.

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

Title:
  hotot won't start correctly xubuntu 12.10

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/hotot/+bug/1019752/+subscriptions

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


[Bug 660307] Re: zeitgeist fails to run if its database structure is not complete

2011-05-17 Thread J.P. Lacerda
Things have changed slightly:

I implemented Mikkel's suggestion of setting the version to -1 just
before an upgrade, and back to it's correct value afterwards. This is
only useful if an upgrade is killed: the upgrade can also fail due to a
raised OperationalError. If that is the case (regardless of whether or
not the corruption comes from a bad database creation), we allow the
code to fall through the statements in create_db, which safely restores
the database.

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

Title:
  zeitgeist fails to run if its database structure is not complete

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


[Bug 660307] Re: zeitgeist fails to run if its database structure is not complete

2011-05-16 Thread J.P. Lacerda
This has been (mostly) fixed.
I think that there are some possible improvements regarding schema upgrading / 
database creation.

As Seif said in #9, to replicate this:
1) Backup activity.sqlite
2) Restart the daemon
3) While "Updating sql schema" kill the daemon

The problem, however, is that this bug does not manifest in the way
described above. What we are doing in the above replication is creating
a new database (this is checked by new_database = not
os.path.exists(file_path)), and interrupting the process half-way
through. If we then apply _do_schema_upgrade on the corrupted database
it will fail, as there will be column names that already exist. In
short, a corrupted upgrade != a corrupted database creation, and we
*cannot* mix the two together. A quick fix is to apply
_do_schema_upgrade on both cases, and take a duplicate column name error
as a symptom of a corrupted database creation -- this allows us to
delete the database, so that the next time zeitgeist-daemon is run it is
re-created.

I will be including some test cases soon :)

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

Title:
  zeitgeist fails to run if its database structure is not complete

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


[Bug 660307] Re: zeitgeist fails to run if its database structure is not complete

2011-05-16 Thread J.P. Lacerda
** Branch linked: lp:~jplacerda/zeitgeist/660307

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

Title:
  zeitgeist fails to run if its database structure is not complete

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


Re: [Bug 710812] Re: Writer mis-displays .docx table boundaries horizontally

2011-03-15 Thread Rick J.P.
Thanks for the update.

Will I be notified on the developers' advance on it?



From: Christopher M. Penalver 
To: rickjpel...@yahoo.com
Sent: Tue, March 15, 2011 5:55:56 AM
Subject: [Bug 710812] Re: Writer mis-displays .docx table boundaries 
horizontally

Rick J.P., since this bug has enough information provided for a
developer to begin work, I'm going to mark it as Triaged and let them
handle it from here. Thanks for taking the time to make Ubuntu better!

** Changed in: libreoffice (Ubuntu)
   Importance: Undecided => Medium

** Changed in: libreoffice (Ubuntu)
   Status: Confirmed => Triaged

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

Title:
  Writer mis-displays .docx table boundaries horizontally

Status in LibreOffice Productivity Suite:
  Confirmed
Status in “libreoffice” package in Ubuntu:
  Triaged
Status in “openoffice.org” package in Ubuntu:
  Incomplete

Bug description:
  Binary package hint: openoffice.org

  1) lsb_release -rd
  Description:Ubuntu 10.10
  Release:10.10

  2) apt-cache policy libreoffice-writer
  libreoffice-writer:
Installed: 1:3.3.1-1ubuntu3~maverick1
Candidate: 1:3.3.1-1ubuntu3~maverick1
Version table:
   *** 1:3.3.1-1ubuntu3~maverick1 0
  500 http://ppa.launchpad.net/libreoffice/ppa/ubuntu/ maverick/main 
i386 Packages
  100 /var/lib/dpkg/status

  OpenOffice.org 3.3.0
  OOO330m20 (Build:9567)

  3) What is expected to happen is when one opens attached file at the
  Terminal:

  cd ~/Desktop && wget
  
https://bugs.launchpad.net/ubuntu/+source/openoffice.org/+bug/710812/+attachment/1820157/+files/try_bad_in_OpenOfficeWriter.docx

  && lowriter -nologo try_bad_in_OpenOfficeWriter.docx

  it looks as it would in Abiword or Microsoft Office Word Viewer 2003.

  4) What happened instead is the document opens in portrait with
  OpenOffice Writer & LibreOffice Writer, with the tables spilling out
  of the page horizontally.

  WORKAROUND: Open in Abiword or Microsoft Office Word Viewer 2003 via
  WINE sudo add-apt-repository ppa:ubuntu-wine/ppa && sudo apt-get -y
  update && sudo apt-get -y upgrade && sudo apt-get -y install wine1.2

To unsubscribe from this bug, go to:
https://bugs.launchpad.net/df-libreoffice/+bug/710812/+subscribe

* Open Link in New Tab
* Download

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

Title:
  Writer mis-displays .docx table boundaries horizontally

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

[Bug 710812] Re: Word 2007 document with landscape pages opened in portrait page orientation

2011-01-31 Thread Rick J.P.

** Attachment added: "try_bad_in_OpenOfficeWriter.pdf"
   
https://bugs.launchpad.net/ubuntu/+source/openoffice.org/+bug/710812/+attachment/1820162/+files/try_bad_in_OpenOfficeWriter.pdf

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

Title:
  Word 2007 document with landscape pages opened in portrait page
  orientation

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


[Bug 710812] [NEW] Word 2007 document with landscape pages opened in portrait page orientation

2011-01-31 Thread Rick J.P.
Public bug reported:

Binary package hint: openoffice.org

OpenOffice.org 3.3.0
OOO330m20 (Build:9567)

The document opens in portrait with OpenOffice Writer, with the tables
spilling out of the page.

See attachments.

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

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

Title:
  Word 2007 document with landscape pages opened in portrait page
  orientation

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


[Bug 710812] Re: Word 2007 document with landscape pages opened in portrait page orientation

2011-01-31 Thread Rick J.P.

** Attachment added: "try_bad_in_OpenOfficeWriter-page1.png"
   
https://bugs.launchpad.net/ubuntu/+source/openoffice.org/+bug/710812/+attachment/1820161/+files/try_bad_in_OpenOfficeWriter-page1.png

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

Title:
  Word 2007 document with landscape pages opened in portrait page
  orientation

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


[Bug 710812] Re: Word 2007 document with landscape pages opened in portrait page orientation

2011-01-31 Thread Rick J.P.
Open Office Writer 1st page screenshot - attachment
try_bad_in_OpenOfficeWriter-page1.png

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

Title:
  Word 2007 document with landscape pages opened in portrait page
  orientation

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


[Bug 710812] Re: Word 2007 document with landscape pages opened in portrait page orientation

2011-01-31 Thread Rick J.P.
Attachment try_bad_in_OpenOfficeWriter.pdf - how the file should look.

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

Title:
  Word 2007 document with landscape pages opened in portrait page
  orientation

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


[Bug 710812] Re: Word 2007 document with landscape pages opened in portrait page orientation

2011-01-31 Thread Rick J.P.

** Attachment added: "The MS Word 2007 .docx file"
   
https://bugs.launchpad.net/bugs/710812/+attachment/1820157/+files/try_bad_in_OpenOfficeWriter.docx

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

Title:
  Word 2007 document with landscape pages opened in portrait page
  orientation

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


[Bug 476174] WifiSyslog.txt

2010-12-02 Thread J.P.
*** This bug is a duplicate of bug 278648 ***
https://bugs.launchpad.net/bugs/278648

apport information

** Attachment added: "WifiSyslog.txt"
   
https://bugs.edge.launchpad.net/bugs/476174/+attachment/1753781/+files/WifiSyslog.txt

** Also affects: alsa-driver
   Importance: Undecided
   Status: New

** This bug has been marked a duplicate of bug 278648
   [regression]snd-hda-intel sound input does not work at all with Conexant 
CX20549 (Venice) chips 
 * You can subscribe to bug 278648 by following this link: 
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/278648/+subscribe

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

Title:
  Conexant CX20549 Patch for ThinkPad R61i?

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


[Bug 476174] UdevLog.txt

2010-12-02 Thread J.P.
*** This bug is a duplicate of bug 278648 ***
https://bugs.launchpad.net/bugs/278648

apport information

** Attachment added: "UdevLog.txt"
   
https://bugs.edge.launchpad.net/bugs/476174/+attachment/1753780/+files/UdevLog.txt

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

Title:
  Conexant CX20549 Patch for ThinkPad R61i?

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


[Bug 476174] UdevDb.txt

2010-12-02 Thread J.P.
*** This bug is a duplicate of bug 278648 ***
https://bugs.launchpad.net/bugs/278648

apport information

** Attachment added: "UdevDb.txt"
   
https://bugs.edge.launchpad.net/bugs/476174/+attachment/1753779/+files/UdevDb.txt

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

Title:
  Conexant CX20549 Patch for ThinkPad R61i?

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


[Bug 476174] ProcModules.txt

2010-12-02 Thread J.P.
*** This bug is a duplicate of bug 278648 ***
https://bugs.launchpad.net/bugs/278648

apport information

** Attachment added: "ProcModules.txt"
   
https://bugs.edge.launchpad.net/bugs/476174/+attachment/1753778/+files/ProcModules.txt

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

Title:
  Conexant CX20549 Patch for ThinkPad R61i?

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


[Bug 476174] ProcInterrupts.txt

2010-12-02 Thread J.P.
*** This bug is a duplicate of bug 278648 ***
https://bugs.launchpad.net/bugs/278648

apport information

** Attachment added: "ProcInterrupts.txt"
   
https://bugs.edge.launchpad.net/bugs/476174/+attachment/1753777/+files/ProcInterrupts.txt

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

Title:
  Conexant CX20549 Patch for ThinkPad R61i?

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


[Bug 476174] ProcCpuinfo_.txt

2010-12-02 Thread J.P.
*** This bug is a duplicate of bug 278648 ***
https://bugs.launchpad.net/bugs/278648

apport information

** Attachment added: "ProcCpuinfo_.txt"
   
https://bugs.edge.launchpad.net/bugs/476174/+attachment/1753776/+files/ProcCpuinfo_.txt

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

Title:
  Conexant CX20549 Patch for ThinkPad R61i?

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


[Bug 476174] ProcCpuinfo.txt

2010-12-02 Thread J.P.
*** This bug is a duplicate of bug 278648 ***
https://bugs.launchpad.net/bugs/278648

apport information

** Attachment added: "ProcCpuinfo.txt"
   
https://bugs.edge.launchpad.net/bugs/476174/+attachment/1753775/+files/ProcCpuinfo.txt

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

Title:
  Conexant CX20549 Patch for ThinkPad R61i?

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


[Bug 476174] PciMultimedia.txt

2010-12-02 Thread J.P.
*** This bug is a duplicate of bug 278648 ***
https://bugs.launchpad.net/bugs/278648

apport information

** Attachment added: "PciMultimedia.txt"
   
https://bugs.edge.launchpad.net/bugs/476174/+attachment/1753774/+files/PciMultimedia.txt

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

Title:
  Conexant CX20549 Patch for ThinkPad R61i?

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


[Bug 476174] Lsusb.txt

2010-12-02 Thread J.P.
*** This bug is a duplicate of bug 278648 ***
https://bugs.launchpad.net/bugs/278648

apport information

** Attachment added: "Lsusb.txt"
   
https://bugs.edge.launchpad.net/bugs/476174/+attachment/1753773/+files/Lsusb.txt

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

Title:
  Conexant CX20549 Patch for ThinkPad R61i?

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


[Bug 476174] Lspci.txt

2010-12-02 Thread J.P.
*** This bug is a duplicate of bug 278648 ***
https://bugs.launchpad.net/bugs/278648

apport information

** Attachment added: "Lspci.txt"
   
https://bugs.edge.launchpad.net/bugs/476174/+attachment/1753772/+files/Lspci.txt

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

Title:
  Conexant CX20549 Patch for ThinkPad R61i?

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


[Bug 476174] IwConfig.txt

2010-12-02 Thread J.P.
*** This bug is a duplicate of bug 278648 ***
https://bugs.launchpad.net/bugs/278648

apport information

** Attachment added: "IwConfig.txt"
   
https://bugs.edge.launchpad.net/bugs/476174/+attachment/1753771/+files/IwConfig.txt

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

Title:
  Conexant CX20549 Patch for ThinkPad R61i?

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


[Bug 476174] CurrentDmesg.txt

2010-12-02 Thread J.P.
*** This bug is a duplicate of bug 278648 ***
https://bugs.launchpad.net/bugs/278648

apport information

** Attachment added: "CurrentDmesg.txt"
   
https://bugs.edge.launchpad.net/bugs/476174/+attachment/1753770/+files/CurrentDmesg.txt

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

Title:
  Conexant CX20549 Patch for ThinkPad R61i?

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


[Bug 476174] Card0.Codecs.codec.0.txt

2010-12-02 Thread J.P.
*** This bug is a duplicate of bug 278648 ***
https://bugs.launchpad.net/bugs/278648

apport information

** Attachment added: "Card0.Codecs.codec.0.txt"
   
https://bugs.edge.launchpad.net/bugs/476174/+attachment/1753769/+files/Card0.Codecs.codec.0.txt

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

Title:
  Conexant CX20549 Patch for ThinkPad R61i?

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


[Bug 476174] Card0.Amixer.values.txt

2010-12-02 Thread J.P.
*** This bug is a duplicate of bug 278648 ***
https://bugs.launchpad.net/bugs/278648

apport information

** Attachment added: "Card0.Amixer.values.txt"
   
https://bugs.edge.launchpad.net/bugs/476174/+attachment/1753768/+files/Card0.Amixer.values.txt

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

Title:
  Conexant CX20549 Patch for ThinkPad R61i?

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


[Bug 476174] BootDmesg.txt

2010-12-02 Thread J.P.
*** This bug is a duplicate of bug 278648 ***
https://bugs.launchpad.net/bugs/278648

apport information

** Attachment added: "BootDmesg.txt"
   
https://bugs.edge.launchpad.net/bugs/476174/+attachment/1753767/+files/BootDmesg.txt

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

Title:
  Conexant CX20549 Patch for ThinkPad R61i?

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


[Bug 476174] AplayDevices.txt

2010-12-02 Thread J.P.
*** This bug is a duplicate of bug 278648 ***
https://bugs.launchpad.net/bugs/278648

apport information

** Attachment added: "AplayDevices.txt"
   
https://bugs.edge.launchpad.net/bugs/476174/+attachment/1753766/+files/AplayDevices.txt

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

Title:
  Conexant CX20549 Patch for ThinkPad R61i?

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


[Bug 476174] AlsaDevices.txt

2010-12-02 Thread J.P.
*** This bug is a duplicate of bug 278648 ***
https://bugs.launchpad.net/bugs/278648

apport information

** Attachment added: "AlsaDevices.txt"
   
https://bugs.edge.launchpad.net/bugs/476174/+attachment/1753765/+files/AlsaDevices.txt

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

Title:
  Conexant CX20549 Patch for ThinkPad R61i?

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


[Bug 476174] AcpiTables.txt

2010-12-02 Thread J.P.
*** This bug is a duplicate of bug 278648 ***
https://bugs.launchpad.net/bugs/278648

apport information

** Attachment added: "AcpiTables.txt"
   
https://bugs.edge.launchpad.net/bugs/476174/+attachment/1753764/+files/AcpiTables.txt

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

Title:
  Conexant CX20549 Patch for ThinkPad R61i?

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


[Bug 476174] Re: Conexant CX20549 Patch for ThinkPad R61i?

2010-12-02 Thread J.P.
*** This bug is a duplicate of bug 278648 ***
https://bugs.launchpad.net/bugs/278648

I am currently testing Natty Alpha 1 and this issue still persists.  The
fix is to compile ALSA from source with the patch as described in the
original submission.

** Description changed:

  Feel free to mark this as a dupe of 278648, but as of Karmic, ThinkPad
  R61s with Conexant CX20549 (Venice) sound devices have non-functioning
  microphones and less-than-stellar sound output.  This submission is in
  hopes that ALSA can be patched by the Lucid LTS to include a working mic
  and fully functional sound.
  
  Currently the workaround requires the following:
  
  1.  Grabbing the ALSA upgrade script from
  http://ubuntuforums.org/showthread.php?p=6589810
  
  2.  Downloading the Conexant patch from
  
https://bugtrack.alsa-project.org/alsa-bug/login.php?username=guest&password=guest&return=/alsa-bug/view.php%3Fid%3D4163
  
  3.  Applying the patch:
  $ cd /to/your/directory/where/the/script/is/saved
  $ sudo sh ./AlsaUpgrade-1.0.x-rev-1.17.sh -d
  $ sudo patch 
/usr/src/Alsa-1.0.20/alsa-driver-1.0.20/alsa-kernel/pci/hda/patch_conexant.c 
~/path/to/patch_conexant.c.patch
  $ sudo ./AlsaUpgrade-1.0.x-rev-1.17.sh -i
  
  4.  Saving the patch and script in case of future kernel upgrades (at
  minimum performing the last command in step 3 after a kernel upgrade).
  
  5.  Upon rebooting, readjusting sound levels and performing the general
  PA fixes as suggested by other Ubuntu forum threads.
  
  According to the comments in 278648, this has NOT been submitted upstream and 
there doesn't seem to be a consensus on how to best notify upstream of the 
patch.  This is a potential showstopper for those with R61i machines who need 
to be able to use the microphone and the sooner this patch can be applied 
before Lucid, the better.
  --- 
  AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.21.
  Architecture: i386
  ArecordDevices:
    List of CAPTURE Hardware Devices 
   card 0: Intel [HDA Intel], device 0: CONEXANT Analog [CONEXANT Analog]
 Subdevices: 1/1
 Subdevice #0: subdevice #0
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  ubuntu 2714 F pulseaudio
  CRDA: Error: [Errno 2] No such file or directory
  Card0.Amixer.info:
   Card hw:0 'Intel'/'HDA Intel at 0xf830 irq 17'
 Mixer name : 'Conexant CX20549 (Venice)'
 Components : 'HDA:14f15045,17aa20db,00100100'
 Controls  : 18
 Simple ctrls  : 8
  Card29.Amixer.info:
   Card hw:29 'ThinkPadEC'/'ThinkPad Console Audio Control at EC reg 0x30, fw 
7KHT24WW-1.08'
 Mixer name : 'ThinkPad EC 7KHT24WW-1.08'
 Components : ''
 Controls  : 1
 Simple ctrls  : 1
  Card29.Amixer.values:
   Simple mixer control 'Console',0
 Capabilities: pswitch pswitch-joined penum
 Playback channels: Mono
 Mono: Playback [on]
  DistroRelease: Ubuntu 10.04
  LiveMediaBuild: Ubuntu 10.04 "Lucid Lynx" - Release Candidate i386 
(20100419.1)
  MachineType: LENOVO 8932CTO
  Package: linux (not installed)
  PccardctlIdent:
   Socket 0:
 no product info available
  PccardctlStatus:
   Socket 0:
 no card
  ProcCmdLine: BOOT_IMAGE=/casper/vmlinuz file=/cdrom/preseed/hostname.seed 
boot=casper initrd=/casper/initrd.lz quiet splash -- maybe-ubiquity
  ProcEnviron:
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcVersionSignature: Ubuntu 2.6.32-21.32-generic 2.6.32.11+drm33.2
  Regression: No
  RelatedPackageVersions: linux-firmware 1.34
  Reproducible: Yes
  RfKill:
   0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
  Tags: lucid audio needs-upstream-testing
  Uname: Linux 2.6.32-21-generic i686
  UserGroups: adm admin cdrom dialout lpadmin plugdev sambashare
  dmi.bios.date: 02/20/2008
  dmi.bios.vendor: LENOVO
  dmi.bios.version: 7OETB2WW (2.12 )
  dmi.board.name: 8932CTO
  dmi.board.vendor: LENOVO
  dmi.board.version: Not Available
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Not Available
  dmi.modalias: 
dmi:bvnLENOVO:bvr7OETB2WW(2.12):bd02/20/2008:svnLENOVO:pn8932CTO:pvrThinkPadR61:rvnLENOVO:rn8932CTO:rvrNotAvailable:cvnLENOVO:ct10:cvrNotAvailable:
  dmi.product.name: 8932CTO
  dmi.product.version: ThinkPad R61
  dmi.sys.vendor: LENOVO
+ 
+ --- 
+ AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.23.
+ Architecture: i386
+ ArecordDevices:
+   List of CAPTURE Hardware Devices 
+  card 0: Intel [HDA Intel], device 0: CONEXANT Analog [CONEXANT Analog]
+Subdevices: 1/1
+Subdevice #0: subdevice #0
+ AudioDevicesInUse:
+  Cannot stat file /proc/4583/fd/40: Stale NFS file handle
+  Cannot stat file /proc/4664/fd/12: Stale NFS file handle
+   USERPID ACCESS COMMAND
+  /dev/snd/controlC0:  ubuntu 3110 F pulseaudio
+ CRDA: Error: [Errno 2] No such file or directory
+ Card0.Amixer.info:
+  Card hw:0 'Intel'/'HDA Intel at 0xf

[Bug 663862] Re: Featured and What's New vertical height is too short to display names.

2010-10-20 Thread J.P. Dowd


-- 
Featured and What's New vertical height is too short to display names.
https://bugs.launchpad.net/bugs/663862
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 663862] [NEW] Featured and What's New vertical height is too short to display names.

2010-10-20 Thread J.P. Dowd
Public bug reported:

Binary package hint: software-center

When the "Get Software" left tab is selected... the main panel displays
the "Departments" section up top correctly, but below it are the
"Featured" and "What's New" section displays the icons but the only the
top 2 pixels of the text underneath the icons is displayed.

I was expecting to be able to read the names of the applications in the
features and what's new sections.

ProblemType: Bug
DistroRelease: Ubuntu 10.10
Package: software-center 3.0.4
ProcVersionSignature: Ubuntu 2.6.35-22.34-generic 2.6.35.4
Uname: Linux 2.6.35-22-generic x86_64
NonfreeKernelModules: fglrx
Architecture: amd64
Date: Wed Oct 20 08:40:24 2010
InstallationMedia: Ubuntu 10.04 LTS "Lucid Lynx" - Release amd64 (20100429)
PackageArchitecture: all
ProcEnviron:
 PATH=(custom, no user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: software-center

** Affects: software-center (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug maverick

-- 
Featured and What's New vertical height is too short to display names.
https://bugs.launchpad.net/bugs/663862
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 523599] Re: OOo 3.1 toolbars and menus in Greek characters

2010-05-20 Thread J.P. Porter
** Changed in: openoffice.org (Ubuntu)
   Status: Incomplete => Fix Released

** Changed in: openoffice.org (Ubuntu)
 Assignee: (unassigned) => Chris Cheney (ccheney)

-- 
OOo 3.1 toolbars and menus in Greek characters 
https://bugs.launchpad.net/bugs/523599
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 278648] Re: [regression]snd-hda-intel sound input does not work at all with Conexant CX20549 (Venice) chips

2010-04-23 Thread J.P.
For what it's worth I'm currently testing the Lucid RC and the problems
with the mic and elevated sound levels still persist.  I have a bug open
at 476174 for those interested in the apport-collect output.
Unfortunately I can't test the mainline kernel (using the live CD right
now) so if someone wants to help out, have at it.

-- 
[regression]snd-hda-intel sound input does not work at all with Conexant 
CX20549 (Venice) chips 
https://bugs.launchpad.net/bugs/278648
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 476174] Re: Conexant CX20549 Patch for ThinkPad R61i?

2010-04-23 Thread J.P.
Unfortunately as this machine is my primary workhorse I don't think I
will be able to test the mainline kernel at this time.  What I can tell
you, however, is by applying the Conexant patch in the original report
and rolling it into ALSA from source, the issues are resolved (i.e.,
working microphone, reasonable sound levels).  Currently in Karmic with
the compiled and installed ALSA + patch I do not have the issues until a
kernel update which breaks it and the problems return (then I have to
repeat the installation process using the ALSA script as described in
the forum thread).

-- 
Conexant CX20549 Patch for ThinkPad R61i?
https://bugs.launchpad.net/bugs/476174
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 476174] WifiSyslog.txt

2010-04-23 Thread J.P.
apport information

** Attachment added: "WifiSyslog.txt"
   http://launchpadlibrarian.net/4513/WifiSyslog.txt

-- 
Conexant CX20549 Patch for ThinkPad R61i?
https://bugs.launchpad.net/bugs/476174
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 476174] UdevLog.txt

2010-04-23 Thread J.P.
apport information

** Attachment added: "UdevLog.txt"
   http://launchpadlibrarian.net/45137776/UdevLog.txt

-- 
Conexant CX20549 Patch for ThinkPad R61i?
https://bugs.launchpad.net/bugs/476174
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 476174] UdevDb.txt

2010-04-23 Thread J.P.
apport information

** Attachment added: "UdevDb.txt"
   http://launchpadlibrarian.net/45137775/UdevDb.txt

-- 
Conexant CX20549 Patch for ThinkPad R61i?
https://bugs.launchpad.net/bugs/476174
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 476174] ProcInterrupts.txt

2010-04-23 Thread J.P.
apport information

** Attachment added: "ProcInterrupts.txt"
   http://launchpadlibrarian.net/45137773/ProcInterrupts.txt

-- 
Conexant CX20549 Patch for ThinkPad R61i?
https://bugs.launchpad.net/bugs/476174
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 476174] ProcCpuinfo.txt

2010-04-23 Thread J.P.
apport information

** Attachment added: "ProcCpuinfo.txt"
   http://launchpadlibrarian.net/45137771/ProcCpuinfo.txt

-- 
Conexant CX20549 Patch for ThinkPad R61i?
https://bugs.launchpad.net/bugs/476174
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 476174] Lspci.txt

2010-04-23 Thread J.P.
apport information

** Attachment added: "Lspci.txt"
   http://launchpadlibrarian.net/45137767/Lspci.txt

-- 
Conexant CX20549 Patch for ThinkPad R61i?
https://bugs.launchpad.net/bugs/476174
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 476174] ProcModules.txt

2010-04-23 Thread J.P.
apport information

** Attachment added: "ProcModules.txt"
   http://launchpadlibrarian.net/45137774/ProcModules.txt

-- 
Conexant CX20549 Patch for ThinkPad R61i?
https://bugs.launchpad.net/bugs/476174
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 476174] IwConfig.txt

2010-04-23 Thread J.P.
apport information

** Attachment added: "IwConfig.txt"
   http://launchpadlibrarian.net/45137765/IwConfig.txt

-- 
Conexant CX20549 Patch for ThinkPad R61i?
https://bugs.launchpad.net/bugs/476174
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 476174] PciMultimedia.txt

2010-04-23 Thread J.P.
apport information

** Attachment added: "PciMultimedia.txt"
   http://launchpadlibrarian.net/45137769/PciMultimedia.txt

-- 
Conexant CX20549 Patch for ThinkPad R61i?
https://bugs.launchpad.net/bugs/476174
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 476174] Lsusb.txt

2010-04-23 Thread J.P.
apport information

** Attachment added: "Lsusb.txt"
   http://launchpadlibrarian.net/45137768/Lsusb.txt

-- 
Conexant CX20549 Patch for ThinkPad R61i?
https://bugs.launchpad.net/bugs/476174
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 476174] CurrentDmesg.txt

2010-04-23 Thread J.P.
apport information

** Attachment added: "CurrentDmesg.txt"
   http://launchpadlibrarian.net/45137764/CurrentDmesg.txt

-- 
Conexant CX20549 Patch for ThinkPad R61i?
https://bugs.launchpad.net/bugs/476174
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 476174] Card0.Codecs.codec.0.txt

2010-04-23 Thread J.P.
apport information

** Attachment added: "Card0.Codecs.codec.0.txt"
   http://launchpadlibrarian.net/45137763/Card0.Codecs.codec.0.txt

-- 
Conexant CX20549 Patch for ThinkPad R61i?
https://bugs.launchpad.net/bugs/476174
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 476174] AplayDevices.txt

2010-04-23 Thread J.P.
apport information

** Attachment added: "AplayDevices.txt"
   http://launchpadlibrarian.net/45137760/AplayDevices.txt

-- 
Conexant CX20549 Patch for ThinkPad R61i?
https://bugs.launchpad.net/bugs/476174
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 476174] Card0.Amixer.values.txt

2010-04-23 Thread J.P.
apport information

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

-- 
Conexant CX20549 Patch for ThinkPad R61i?
https://bugs.launchpad.net/bugs/476174
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 476174] BootDmesg.txt

2010-04-23 Thread J.P.
apport information

** Attachment added: "BootDmesg.txt"
   http://launchpadlibrarian.net/45137761/BootDmesg.txt

-- 
Conexant CX20549 Patch for ThinkPad R61i?
https://bugs.launchpad.net/bugs/476174
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 476174] AlsaDevices.txt

2010-04-23 Thread J.P.
apport information

** Attachment added: "AlsaDevices.txt"
   http://launchpadlibrarian.net/45137752/AlsaDevices.txt

-- 
Conexant CX20549 Patch for ThinkPad R61i?
https://bugs.launchpad.net/bugs/476174
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 476174] Re: Conexant CX20549 Patch for ThinkPad R61i?

2010-04-23 Thread J.P.
Hi, I'm testing with the Lucid RC and the problems still persist.  The
PCM is turned all the way up and the sound is distorted; this has been
the case going back to Gutsy since I've had this machine.  I tried to
record something with Sound Recorder and I expected to hear my own voice
when playing it back.  There was nothing heard.

As requested, I'm sending the attachment.

** Tags added: apport-collected

** Description changed:

  Feel free to mark this as a dupe of 278648, but as of Karmic, ThinkPad
  R61s with Conexant CX20549 (Venice) sound devices have non-functioning
  microphones and less-than-stellar sound output.  This submission is in
  hopes that ALSA can be patched by the Lucid LTS to include a working mic
  and fully functional sound.
  
  Currently the workaround requires the following:
  
  1.  Grabbing the ALSA upgrade script from
  http://ubuntuforums.org/showthread.php?p=6589810
  
  2.  Downloading the Conexant patch from
  
https://bugtrack.alsa-project.org/alsa-bug/login.php?username=guest&password=guest&return=/alsa-bug/view.php%3Fid%3D4163
  
  3.  Applying the patch:
  $ cd /to/your/directory/where/the/script/is/saved
  $ sudo sh ./AlsaUpgrade-1.0.x-rev-1.17.sh -d
  $ sudo patch 
/usr/src/Alsa-1.0.20/alsa-driver-1.0.20/alsa-kernel/pci/hda/patch_conexant.c 
~/path/to/patch_conexant.c.patch
  $ sudo ./AlsaUpgrade-1.0.x-rev-1.17.sh -i
  
  4.  Saving the patch and script in case of future kernel upgrades (at
  minimum performing the last command in step 3 after a kernel upgrade).
  
  5.  Upon rebooting, readjusting sound levels and performing the general
  PA fixes as suggested by other Ubuntu forum threads.
  
- According to the comments in 278648, this has NOT been submitted
- upstream and there doesn't seem to be a consensus on how to best notify
- upstream of the patch.  This is a potential showstopper for those with
- R61i machines who need to be able to use the microphone and the sooner
- this patch can be applied before Lucid, the better.
+ According to the comments in 278648, this has NOT been submitted upstream and 
there doesn't seem to be a consensus on how to best notify upstream of the 
patch.  This is a potential showstopper for those with R61i machines who need 
to be able to use the microphone and the sooner this patch can be applied 
before Lucid, the better.
+ --- 
+ AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.21.
+ Architecture: i386
+ ArecordDevices:
+   List of CAPTURE Hardware Devices 
+  card 0: Intel [HDA Intel], device 0: CONEXANT Analog [CONEXANT Analog]
+Subdevices: 1/1
+Subdevice #0: subdevice #0
+ AudioDevicesInUse:
+  USERPID ACCESS COMMAND
+  /dev/snd/controlC0:  ubuntu 2714 F pulseaudio
+ CRDA: Error: [Errno 2] No such file or directory
+ Card0.Amixer.info:
+  Card hw:0 'Intel'/'HDA Intel at 0xf830 irq 17'
+Mixer name : 'Conexant CX20549 (Venice)'
+Components : 'HDA:14f15045,17aa20db,00100100'
+Controls  : 18
+Simple ctrls  : 8
+ Card29.Amixer.info:
+  Card hw:29 'ThinkPadEC'/'ThinkPad Console Audio Control at EC reg 0x30, fw 
7KHT24WW-1.08'
+Mixer name : 'ThinkPad EC 7KHT24WW-1.08'
+Components : ''
+Controls  : 1
+Simple ctrls  : 1
+ Card29.Amixer.values:
+  Simple mixer control 'Console',0
+Capabilities: pswitch pswitch-joined penum
+Playback channels: Mono
+Mono: Playback [on]
+ DistroRelease: Ubuntu 10.04
+ LiveMediaBuild: Ubuntu 10.04 "Lucid Lynx" - Release Candidate i386 
(20100419.1)
+ MachineType: LENOVO 8932CTO
+ Package: linux (not installed)
+ PccardctlIdent:
+  Socket 0:
+no product info available
+ PccardctlStatus:
+  Socket 0:
+no card
+ ProcCmdLine: BOOT_IMAGE=/casper/vmlinuz file=/cdrom/preseed/hostname.seed 
boot=casper initrd=/casper/initrd.lz quiet splash -- maybe-ubiquity
+ ProcEnviron:
+  LANG=en_US.UTF-8
+  SHELL=/bin/bash
+ ProcVersionSignature: Ubuntu 2.6.32-21.32-generic 2.6.32.11+drm33.2
+ Regression: No
+ RelatedPackageVersions: linux-firmware 1.34
+ Reproducible: Yes
+ RfKill:
+  0: phy0: Wireless LAN
+   Soft blocked: no
+   Hard blocked: no
+ Tags: lucid audio needs-upstream-testing
+ Uname: Linux 2.6.32-21-generic i686
+ UserGroups: adm admin cdrom dialout lpadmin plugdev sambashare
+ dmi.bios.date: 02/20/2008
+ dmi.bios.vendor: LENOVO
+ dmi.bios.version: 7OETB2WW (2.12 )
+ dmi.board.name: 8932CTO
+ dmi.board.vendor: LENOVO
+ dmi.board.version: Not Available
+ dmi.chassis.asset.tag: No Asset Information
+ dmi.chassis.type: 10
+ dmi.chassis.vendor: LENOVO
+ dmi.chassis.version: Not Available
+ dmi.modalias: 
dmi:bvnLENOVO:bvr7OETB2WW(2.12):bd02/20/2008:svnLENOVO:pn8932CTO:pvrThinkPadR61:rvnLENOVO:rn8932CTO:rvrNotAvailable:cvnLENOVO:ct10:cvrNotAvailable:
+ dmi.product.name: 8932CTO
+ dmi.product.version: ThinkPad R61
+ dmi.sys.vendor: LENOVO

-- 
Conexant CX20549 Patch for ThinkPad R61i?
https://bugs.launchpad.net/bugs/476174
You received this bug notification because you are a member of Ubuntu
Bugs,

[Bug 560523] Re: Overlap of Listing and Text in http://embeddeddsp.embedded.com/columns/technicalinsights/199200950?pgno=2

2010-04-11 Thread Rick J.P.

** Attachment added: "Screenshot showing the overlap."
   http://launchpadlibrarian.net/43757965/Overlap-Firefox.png

** Attachment added: "Dependencies.txt"
   http://launchpadlibrarian.net/43757748/Dependencies.txt

** Attachment added: "XsessionErrors.txt"
   http://launchpadlibrarian.net/43757749/XsessionErrors.txt

** Attachment added: "profile_default_pluginreg.dat.txt"
   http://launchpadlibrarian.net/43757750/profile_default_pluginreg.dat.txt

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

-- 
Overlap of Listing and Text in 
http://embeddeddsp.embedded.com/columns/technicalinsights/199200950?pgno=2
https://bugs.launchpad.net/bugs/560523
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 560523] [NEW] Overlap of Listing and Text in http://embeddeddsp.embedded.com/columns/technicalinsights/199200950?pgno=2

2010-04-11 Thread Rick J.P.
Public bug reported:

Binary package hint: firefox-3.5

See attached screenshot Overlap-Firefox.png.

Displays OK in Opera 10.10 on same platform.

$ uname -a
Linux rickp-pc 2.6.31-20-generic #58-Ubuntu SMP Fri Mar 12 04:38:19 UTC 2010 
x86_64 GNU/Linux
$ lsb_release -a
LSB Version:
core-2.0-amd64:core-2.0-noarch:core-3.0-amd64:core-3.0-noarch:core-3.1-amd64:core-3.1-noarch:core-3.2-amd64:core-3.2-noarch:core-4.0-amd64:core-4.0-noarch
Distributor ID: Ubuntu
Description:Ubuntu 9.10
Release:9.10
Codename:   karmic

ProblemType: Bug
Architecture: amd64
Date: Sun Apr 11 10:39:36 2010
DistroRelease: Ubuntu 9.10
Package: firefox-3.5 3.5.8+build1+nobinonly-0ubuntu0.9.10.1
ProcEnviron:
 LANGUAGE=en_US.UTF-8
 LANG=en_US.UTF-8
 SHELL=/bin/bash
ProcVersionSignature: Ubuntu 2.6.31-20.58-generic
SourcePackage: firefox-3.5
Uname: Linux 2.6.31-20-generic x86_64

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


** Tags: amd64 apport-bug

-- 
Overlap of Listing and Text in 
http://embeddeddsp.embedded.com/columns/technicalinsights/199200950?pgno=2
https://bugs.launchpad.net/bugs/560523
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 510677] Re: OO Writer: Diagonal of letter "z" not visible in Times New Roman, cursiva typeface, size 12 pt, 100% zoom

2010-02-26 Thread Rick J.P.
Same problem exists in the Chrome browser:
http://code.google.com/p/chromium/issues/detail?id=36965

** Bug watch added: code.google.com/p/chromium/issues #36965
   http://code.google.com/p/chromium/issues/detail?id=36965

-- 
OO Writer: Diagonal of letter "z" not visible in Times New Roman, cursiva 
typeface, size 12 pt, 100% zoom
https://bugs.launchpad.net/bugs/510677
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 523599] Re: OOo 3.1 toolbars and menus in Greek characters

2010-02-17 Thread J.P. Porter

** Attachment added: "error messages received when restarting OOo"
   http://launchpadlibrarian.net/39344142/OOo%20corrupt5%20fatal%20error.png

-- 
OOo 3.1 toolbars and menus in Greek characters 
https://bugs.launchpad.net/bugs/523599
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 523599] Re: OOo 3.1 toolbars and menus in Greek characters

2010-02-17 Thread J.P. Porter

** Attachment added: "Dependencies.txt"
   http://launchpadlibrarian.net/39343027/Dependencies.txt

** Attachment added: "XsessionErrors.txt"
   http://launchpadlibrarian.net/39343028/XsessionErrors.txt

-- 
OOo 3.1 toolbars and menus in Greek characters 
https://bugs.launchpad.net/bugs/523599
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 523599] [NEW] OOo 3.1 toolbars and menus in Greek characters

2010-02-17 Thread J.P. Porter
Public bug reported:

Binary package hint: openoffice.org

The toolbars and menus (and dialogues) in OpenOffice.org 3.1 have
suddenly changed to greek characters - I am somewhat familiar with
greek, and can make out most of the words (the words are english, but
written using greek characters).  I have tried to change the language on
the user interface settings in Tools-Options-Language-Language Settings
(have done it three times - once, got back a series of messages advising
that the new lib-files were corrupted).

It's all greek to me.

ProblemType: Bug
Architecture: amd64
Date: Wed Feb 17 21:49:09 2010
DistroRelease: Ubuntu 9.10
NonfreeKernelModules: nvidia
Package: openoffice.org-core 1:3.1.1-5ubuntu1 [modified: 
var/lib/openoffice/basis3.1/program/services.rdb]
ProcEnviron:
 PATH=(custom, no user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
ProcVersionSignature: Ubuntu 2.6.31-20.57-generic
SourcePackage: openoffice.org
Uname: Linux 2.6.31-20-generic x86_64

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


** Tags: amd64 apport-bug

-- 
OOo 3.1 toolbars and menus in Greek characters 
https://bugs.launchpad.net/bugs/523599
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 510677] Re: OO Writer: Diagonal of letter "z" not visible in Times New Roman, cursiva typeface, size 12 pt, 100% zoom

2010-02-16 Thread Rick J.P.
Changed status to "New" after adding missing information.

** Changed in: openoffice.org (Ubuntu)
   Status: Incomplete => New

-- 
OO Writer: Diagonal of letter "z" not visible in Times New Roman, cursiva 
typeface, size 12 pt, 100% zoom
https://bugs.launchpad.net/bugs/510677
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 515491] Re: Incorrect SVG file from OO Draw

2010-02-01 Thread Rick J.P.

** Attachment added: "The OO drawing file exported as SVG"
   http://launchpadlibrarian.net/38617531/for-svg-try.odg

** Attachment added: "Dependencies.txt"
   http://launchpadlibrarian.net/38617532/Dependencies.txt

** Attachment added: "XsessionErrors.txt"
   http://launchpadlibrarian.net/38617533/XsessionErrors.txt

-- 
Incorrect SVG file from OO Draw
https://bugs.launchpad.net/bugs/515491
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 515491] Re: Incorrect SVG file from OO Draw

2010-02-01 Thread Rick J.P.
The exported SVG file is also attached. It was checked both in OO Draw
and in Inkscape.

** Attachment added: "The SVG export."
   http://launchpadlibrarian.net/38617554/for-svg-try.svg

-- 
Incorrect SVG file from OO Draw
https://bugs.launchpad.net/bugs/515491
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 515491] [NEW] Incorrect SVG file from OO Draw

2010-02-01 Thread Rick J.P.
Public bug reported:

Binary package hint: openoffice.org

The attached file "for-svg-try.odg" is exported incorrectly in SVG
format.

ProblemType: Bug
Architecture: amd64
Date: Mon Feb  1 15:48:20 2010
DistroRelease: Ubuntu 9.10
Package: openoffice.org-core 1:3.1.1-5ubuntu1
ProcEnviron:
 LANGUAGE=en_US.UTF-8
 PATH=(custom, no user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
ProcVersionSignature: Ubuntu 2.6.31-17.54-generic
SourcePackage: openoffice.org
Uname: Linux 2.6.31-17-generic x86_64

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


** Tags: amd64 apport-bug

-- 
Incorrect SVG file from OO Draw
https://bugs.launchpad.net/bugs/515491
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 510677] Re: OO Writer: Diagonal of letter "z" not visible in Times New Roman, cursiva typeface, size 12 pt, 100% zoom

2010-01-23 Thread Rick J.P.
Apologies for the missing information:
* The package: sudo apt-get install msttcorefonts
* Happened at both resolutions/monitors that I checked: laptop monitor at 
1280x800, and external monitor at 1680x1050
* Attaching an OO document that shows the problem

** Attachment added: "z-problem.odt"
   http://launchpadlibrarian.net/38302196/z-problem.odt

-- 
OO Writer: Diagonal of letter "z" not visible in Times New Roman, cursiva 
typeface, size 12 pt, 100% zoom
https://bugs.launchpad.net/bugs/510677
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 510677] Re: OO Writer: Diagonal of letter "z" not visible in Times New Roman, cursiva typeface, size 12 pt, 100% zoom

2010-01-21 Thread Rick J.P.

** Attachment added: "z-problem.png"
   http://launchpadlibrarian.net/38188890/z-problem.png

** Attachment added: "Dependencies.txt"
   http://launchpadlibrarian.net/38188891/Dependencies.txt

** Attachment added: "XsessionErrors.txt"
   http://launchpadlibrarian.net/38188893/XsessionErrors.txt

-- 
OO Writer: Diagonal of letter "z" not visible in Times New Roman, cursiva 
typeface, size 12 pt, 100% zoom
https://bugs.launchpad.net/bugs/510677
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 510677] [NEW] OO Writer: Diagonal of letter "z" not visible in Times New Roman, cursiva typeface, size 12 pt, 100% zoom

2010-01-21 Thread Rick J.P.
Public bug reported:

Binary package hint: openoffice.org

See attachment z-problem.png.

Only at zoom 150% the diagonal becomes visible.

ProblemType: Bug
Architecture: amd64
Date: Thu Jan 21 16:39:07 2010
DistroRelease: Ubuntu 9.10
Package: openoffice.org-core 1:3.1.1-5ubuntu1
ProcEnviron:
 LANGUAGE=en_US.UTF-8
 PATH=(custom, no user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
ProcVersionSignature: Ubuntu 2.6.31-17.54-generic
SourcePackage: openoffice.org
Uname: Linux 2.6.31-17-generic x86_64

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


** Tags: amd64 apport-bug

-- 
OO Writer: Diagonal of letter "z" not visible in Times New Roman, cursiva 
typeface, size 12 pt, 100% zoom
https://bugs.launchpad.net/bugs/510677
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 278648] Re: [regression]snd-hda-intel sound input does not work at all with Conexant CX20549 (Venice) chips

2009-11-07 Thread J.P.
I've submitted 476174 in hopes of getting this patch into both upstream
and Lucid.

-- 
[regression]snd-hda-intel sound input does not work at all with Conexant 
CX20549 (Venice) chips 
https://bugs.launchpad.net/bugs/278648
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 476174] [NEW] Conexant CX20549 Patch for ThinkPad R61i?

2009-11-05 Thread J.P.
Public bug reported:

Feel free to mark this as a dupe of 278648, but as of Karmic, ThinkPad
R61s with Conexant CX20549 (Venice) sound devices have non-functioning
microphones and less-than-stellar sound output.  This submission is in
hopes that ALSA can be patched by the Lucid LTS to include a working mic
and fully functional sound.

Currently the workaround requires the following:

1.  Grabbing the ALSA upgrade script from
http://ubuntuforums.org/showthread.php?p=6589810

2.  Downloading the Conexant patch from
https://bugtrack.alsa-project.org/alsa-bug/login.php?username=guest&password=guest&return=/alsa-bug/view.php%3Fid%3D4163

3.  Applying the patch:
$ cd /to/your/directory/where/the/script/is/saved
$ sudo sh ./AlsaUpgrade-1.0.x-rev-1.17.sh -d
$ sudo patch 
/usr/src/Alsa-1.0.20/alsa-driver-1.0.20/alsa-kernel/pci/hda/patch_conexant.c 
~/path/to/patch_conexant.c.patch
$ sudo ./AlsaUpgrade-1.0.x-rev-1.17.sh -i

4.  Saving the patch and script in case of future kernel upgrades (at
minimum performing the last command in step 3 after a kernel upgrade).

5.  Upon rebooting, readjusting sound levels and performing the general
PA fixes as suggested by other Ubuntu forum threads.

According to the comments in 278648, this has NOT been submitted
upstream and there doesn't seem to be a consensus on how to best notify
upstream of the patch.  This is a potential showstopper for those with
R61i machines who need to be able to use the microphone and the sooner
this patch can be applied before Lucid, the better.

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

-- 
Conexant CX20549 Patch for ThinkPad R61i?
https://bugs.launchpad.net/bugs/476174
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 474324] Re: package libdeskbar-tracker 0.6.95-1ubuntu3 failed to install/upgrade: trying to overwrite '/usr/lib/deskbar-applet/deskbar-applet', which is also in package deskbar-applet 0:2.26.1-0u

2009-11-04 Thread Rick J.P.

** Attachment added: "Dependencies.txt"
   http://launchpadlibrarian.net/35100189/Dependencies.txt

** Attachment added: "DpkgTerminalLog.txt"
   http://launchpadlibrarian.net/35100190/DpkgTerminalLog.txt

-- 
package libdeskbar-tracker 0.6.95-1ubuntu3 failed to install/upgrade: trying to 
overwrite '/usr/lib/deskbar-applet/deskbar-applet', which is also in package 
deskbar-applet 0:2.26.1-0ubuntu1
https://bugs.launchpad.net/bugs/474324
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 474324] [NEW] package libdeskbar-tracker 0.6.95-1ubuntu3 failed to install/upgrade: trying to overwrite '/usr/lib/deskbar-applet/deskbar-applet', which is also in package deskbar-applet 0:2.26.1-

2009-11-04 Thread Rick J.P.
Public bug reported:

Binary package hint: tracker

Sorry, don't know. Was trying to update Ubuntu using the "Update
Manager".

ProblemType: Package
Architecture: amd64
Date: Tue Nov  3 12:57:56 2009
DistroRelease: Ubuntu 9.10
ErrorMessage: trying to overwrite '/usr/lib/deskbar-applet/deskbar-applet', 
which is also in package deskbar-applet 0:2.26.1-0ubuntu1
Package: libdeskbar-tracker 0.6.95-1ubuntu3
PackageArchitecture: all
ProcVersionSignature: Ubuntu 2.6.31-14.48-generic
SourcePackage: tracker
Title: package libdeskbar-tracker 0.6.95-1ubuntu3 failed to install/upgrade: 
trying to overwrite '/usr/lib/deskbar-applet/deskbar-applet', which is also in 
package deskbar-applet 0:2.26.1-0ubuntu1
Uname: Linux 2.6.31-14-generic x86_64

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


** Tags: amd64 apport-package

-- 
package libdeskbar-tracker 0.6.95-1ubuntu3 failed to install/upgrade: trying to 
overwrite '/usr/lib/deskbar-applet/deskbar-applet', which is also in package 
deskbar-applet 0:2.26.1-0ubuntu1
https://bugs.launchpad.net/bugs/474324
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 252094] Re: MASTER: Poor graphics performance on Intel

2009-05-25 Thread J.P.
FWIW my ThinkPad R61i had a drastic improvement after upgrading the kernel to 
the 2.6.29 line following the 'optimal' config per this HOWTO:
http://ubuntuforums.org/showthread.php?t=1130582

Unfortunately, the text will garble up after suspending/hibernating or
switching users.  Restarting X solves the issue.  Others have reported
the issue in the above thread as well, including Karmic testers.

-- 
MASTER: Poor graphics performance on Intel
https://bugs.launchpad.net/bugs/252094
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 259157] Re: [MASTER 0.7 regression] atheros/madwifi and orinoco drivers not supported

2008-11-07 Thread J.P.
I also recommend Wicd as a workaround solution to this issue as it
solved what I thought I had 'fixed' the problem in #291848.  With
"Automatically reconnect" checked in the preferences, I watched as the
connection would drop and Wicd would immediately reconnect without any
hiccups to network activity.  With Network Manager, I would have just
gotten the spinning animation and a dialog box to enter the WAP
passphrase.  Keep in mind that instead of using madwifi you simply use
wext.

A restart isn't necessary; just log out and log back in for the
notification applet to appear.

-- 
[MASTER 0.7 regression] atheros/madwifi and orinoco drivers not supported
https://bugs.launchpad.net/bugs/259157
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 194916] Re: background music doesn't play correctly

2008-11-06 Thread J.P.
So, given the low priority of this bug, what can we do to fix this
problem ourselves without upgrading to Ibex?

-- 
background music doesn't play correctly
https://bugs.launchpad.net/bugs/194916
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 292023] Re: Regression: HP Deskjet 5440 Prints Random Characters instead of Desired Page

2008-11-01 Thread J.P.
Downloaded and installed HPLIP 2.8.9 and it solves my printing issue.

-- 
Regression:  HP Deskjet 5440 Prints Random Characters instead of Desired Page
https://bugs.launchpad.net/bugs/292023
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 292023] Re: Regression: HP Deskjet 5440 Prints Random Characters instead of Desired Page

2008-11-01 Thread J.P.

** Attachment added: "syslog"
   http://launchpadlibrarian.net/19171807/syslog

-- 
Regression:  HP Deskjet 5440 Prints Random Characters instead of Desired Page
https://bugs.launchpad.net/bugs/292023
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 292023] [NEW] Regression: HP Deskjet 5440 Prints Random Characters instead of Desired Page

2008-11-01 Thread J.P.
Public bug reported:

Been using a HP Deskjet 5440 flawlessly with two different Ubuntu
laptops since Feisty.  Under Ibex, it will print one line of random
characters, spit out the page, and attempt to print more of the same on
subsequent pages.

Ibex correctly detects the printer (connected to an AirPort Express) and
offers the correct driver (HP Deskjet 5400 series).  Printing a test
page or any document results in the above outcome.  Manually configuring
the printer (HP Jet Direct) with the correct URI results in the same
outcome.  Attempting to set up the printer directly via USB and printing
a test page results in the same outcome.

Printing a test page from an Ibex live CD results in the same outcome.
However, if I boot from a Hardy live CD, printing a test page results in
the desired outcome.

Hardware:
ThinkPad R61i
PowerBook G4 (Feisty)

Attached is my syslog.

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

-- 
Regression:  HP Deskjet 5440 Prints Random Characters instead of Desired Page
https://bugs.launchpad.net/bugs/292023
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 291848] Re: ThinkPad R61i with AR5212: Connection Drops After a Few Minutes

2008-10-31 Thread J.P.
*** This bug is a duplicate of bug 259157 ***
https://bugs.launchpad.net/bugs/259157

I installed linux-backport-modules as suggested in the other bug reports
linked to #259157 and in the UF.  This seems to have 'fixed' the issue
for now.

-- 
ThinkPad R61i with AR5212:  Connection Drops After a Few Minutes
https://bugs.launchpad.net/bugs/291848
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 291848] Re: ThinkPad R61i with AR5212: Connection Drops After a Few Minutes

2008-10-31 Thread J.P.

** Attachment added: "syslog"
   http://launchpadlibrarian.net/19152419/syslog

-- 
ThinkPad R61i with AR5212:  Connection Drops After a Few Minutes
https://bugs.launchpad.net/bugs/291848
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 291848] Re: ThinkPad R61i with AR5212: Connection Drops After a Few Minutes

2008-10-31 Thread J.P.
** Summary changed:

- AR5212:  Connection Drops After a Few Minutes
+ ThinkPad R61i with AR5212:  Connection Drops After a Few Minutes

** Tags added: thinkpad

-- 
ThinkPad R61i with AR5212:  Connection Drops After a Few Minutes
https://bugs.launchpad.net/bugs/291848
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 291848] [NEW] ThinkPad R61i with AR5212: Connection Drops After a Few Minutes

2008-10-31 Thread J.P.
Public bug reported:

Binary package hint: network-manager

On a ThinkPad R61i with a built-in AR5212 card running Ibex with the
latest kernel 2.6.27-7-generic, Network Manager drops the connection
with my WAP after every few minutes, especially when the system goes
idle.  I am prompted for the WAP passphrase; I dismiss the dialog with
OK.  NM then fails to connect, requiring manually selecting the WAP from
the list in the applet.  This wasn't an issue in Gutsy or Hardy.

Running dmesg shows multiple lines of:
ADDRCONF(NETDEV_CHANGE): ath0: link becomes ready

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


** Tags: atheros intrepid manager network thinkpad

-- 
ThinkPad R61i with AR5212:  Connection Drops After a Few Minutes
https://bugs.launchpad.net/bugs/291848
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 269656] Re: AN IRRELEVANT LICENSE IS PRESENTED TO YOU FREE-OF-CHARGE ON STARTUP

2008-09-14 Thread J.P.
I don't understand those who don't see EULAs as a big deal.  EULAs are
what you would expect from proprietary software running on proprietary
operating systems, not free software.  The enforceability of them are
still legally gray in some places and outright rubbish in others.
Besides, who in here really sits down to read these things?  But that
doesn't stop the vendors from mustering up their lawyers.

The problem with EULAs is that the goal posts can be moved at any time,
leaving you at the mercy of the vendors.  A prominent example of this is
iTunes and its music store.  Apple even have language to the effect of
you accepting whatever they decide to do down the road because you
clicked "Agree" after reading a previous EULA.  This doesn't take into
account whatever DRM or other lock-in mechanisms they have in place, but
we all already know this.

Now we have Mozilla acting like a proprietary vendor and moving the goal
posts for whatever they see fit for themselves.  Mozilla first went to
Debian and told them that they better use the official artwork or else.
Canonical obliged.  However, that wasn't enough for them and now they
want a EULA included.  A few months from now it could be something else
with another distro.  Where does it stop?  End users don't need EULAs
forced down their throats under the guise of protecting trademarks; if
that were the case every time we upgraded our kernels we would have a
new Linux EULA pop up in our faces after we reboot.

If Canonical decides to ship FF with the EULA intact, it could very well
start our way down a slippery slope.  It's one thing to see EULAs in
Linux because we knowingly run proprietary apps from multiverse; it's
another to have supposedly 'free' software shipping with them.

-- 
AN IRRELEVANT LICENSE IS PRESENTED TO YOU FREE-OF-CHARGE ON STARTUP
https://bugs.launchpad.net/bugs/269656
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 269656] Re: AN IRRELEVANT LICENSE IS PRESENTED TO YOU FREE-OF-CHARGE ON STARTUP

2008-09-14 Thread J.P.
Another voice for Epiphany.  Firefox and Thunderbird should go into
multiverse.

-- 
AN IRRELEVANT LICENSE IS PRESENTED TO YOU FREE-OF-CHARGE ON STARTUP
https://bugs.launchpad.net/bugs/269656
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 194916] Re: background music doesn't play correctly

2008-05-12 Thread J.P.
Confirmed with Planet Penguin Racer in Hardy.  Both menu and gameplay
soundtrack (exactly as heard in the ogg sample).

-- 
background music doesn't play correctly
https://bugs.launchpad.net/bugs/194916
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 101857] Re: WPA doesn't work with NetworkManager on big-endian (works with wpa_supplicant)

2007-10-14 Thread J.P.
Any word on getting the patch out to Feisty users?

-- 
WPA doesn't work with NetworkManager on big-endian (works with wpa_supplicant)
https://bugs.launchpad.net/bugs/101857
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 148110] Re: compiz opengl rendering artefacts

2007-10-07 Thread J.P.
To clarify the above post, the artifacting was occurring using the "ati"
driver.

-- 
compiz opengl rendering artefacts
https://bugs.launchpad.net/bugs/148110
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 148110] Re: compiz opengl rendering artefacts

2007-10-07 Thread J.P.
Same issue running Feisty on a PowerBook G4 (ATI Radeon 9600).  Also
happens under Beryl as well.

-- 
compiz opengl rendering artefacts
https://bugs.launchpad.net/bugs/148110
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 93178] installer crash

2007-03-17 Thread J.P. Cloot
Public bug reported:

Binary package hint: ubiquity

Traceback (most recent call last):
  File "/usr/bin/ubiquity", line 166, in ?
main()
  File "/usr/bin/ubiquity", line 161, in main
install(sys.argv[1])
  File "/usr/bin/ubiquity", line 57, in install
ret = wizard.run()
  File "/usr/lib/ubiquity/ubiquity/frontend/kde-ui.py", line 338, in run
self.process_step()
  File "/usr/lib/ubiquity/ubiquity/frontend/kde-ui.py", line 828, in 
process_step
self.progress_loop()
  File "/usr/lib/ubiquity/ubiquity/frontend/kde-ui.py", line 599, in 
progress_loop
raise RuntimeError, ("Install failed with exit code %s\n%s" %
RuntimeError: Install failed with exit code 1
Traceback (most recent call last):
  File "/usr/share/ubiquity/install.py", line 1404, in ?
install.run()
  File "/usr/share/ubiquity/install.py", line 306, in run
self.copy_all()
  File "/usr/share/ubiquity/install.py", line 484, in copy_all
shutil.copyfile(sourcepath, targetpath)
  File "shutil.py", line 48, in copyfile
fdst = open(dst, 'wb')
IOError: [Errno 30] Read-only file system: 
'/target/usr/share/doc/libisc11/changelog.Debian.gz'

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

-- 
installer crash
https://launchpad.net/bugs/93178

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