[Bug 2063376] Re: linux-source-6.5.0 will install kernel 6.5.13

2024-05-08 Thread Gero Schwäricke
Hi Juerg,

Thanks for the fast response. I should have looked up the kernel naming
conventions [1] before posting. Sorry for the noise.

In case anyone finds this issue via websearch in 5 years, here's some
more information on this, which I dug up:

1. I was confused why building a kernel from 6.5.13 sources would report
to the command uname as being 6.5.0:

- /usr/bin/uname get's its information via the syscall "uname" which reports 
the values that were baked into the kernel at compile time [2]
- I'm not entirely sure on this but grep-ing through files of 
linux-source-6.5.0 I concluded the following: When building a debian kernel, 
the debian build framework is used [3], which wraps the kernel Makefile and 
overwrites KERNELVERSION to the base kernel version, which it parses from the 
changelog (debian/rules.d/0-common-vars.mk).

2. I only wanted to recompile a kernel module for my kernel, but using
the classic Linux makefile targets I was familiar with resulted in
kernel objects with wrong vermagic (because 1.). There exists a guide on
how to do this [4], but that is pretty out of date [5]. Here's what I
did to recompile the "btusb" kernel module for my running kernel (my
"uname -r" was "6.5.0-28-generic", so "base_version=6.5.0"):

  sudo su
  base_version=$(uname -r | cut -f1 -d-)
  apt-get install linux-source-${base_version}
  cd /usr/src
  tar xjf /usr/src/linux-source-${base_version}.tar.bz2  # may take some time
  cd linux-source-${base_version}
  make mrproper
  cp /lib/modules/$(uname -r)/build/.config ./
  cp /lib/modules/$(uname -r)/build/Module.symvers ./
  cp /lib/modules/$(uname -r)/build/Makefile ./
  head Makefile
  uname -r
  # Version in Makefile does not match the version of the running kernel's 
"uname -r", edit Makefile to fix, mine is now:
  # VERSION = 6
  # PATCHLEVEL = 5
  # SUBLEVEL = 0
  # EXTRAVERSION = -28-generic
  make -j $(nproc) prepare
  make -j $(nproc) modules_prepare
  make -j $(nproc) modules M=drivers/bluetooth CONFIG_DEBUG_INFO=n
  modinfo drivers/bluetooth/btusb.ko | grep vermagic
  modinfo btusb | grep vermagic
  # vermagics should match
  cp --backup drivers/bluetooth/btusb.ko /lib/modules/$(uname 
-r)/kernel/drivers/bluetooth/btusb.ko

3. I also wanted to patch the kernel module. But for the patch to
persist, in the end I looked into DKMS [6]. I copied and patched the
module and added a dkms.conf.

Best,
Gero

[1] (the linked mainline kernel mapping unfortunately doesn't include hwe 
kernels for jammy) 
https://wiki.ubuntu.com/Kernel/FAQ#Kernel.2FFAQ.2FGeneralVersionToMainline.Given_an_Ubuntu_kernel_package_version_how_do_we_find_the_exact_mainline_release_it_is_based_on.3F
[2] 
https://unix.stackexchange.com/questions/136959/where-does-uname-get-its-information-from
[3] https://wiki.ubuntu.com/Kernel/BuildYourOwnKernel
[4] https://wiki.ubuntu.com/Kernel/Dev/KernelModuleRebuild
[5] you need to "make modules_prepare", and "SUBDIRS=" is now called "M="
[6] man dkms  or https://github.com/dell/dkms

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

Title:
  linux-source-6.5.0 will install kernel 6.5.13

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-hwe-6.5/+bug/2063376/+subscriptions


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

[Bug 2063376] Re: linux-source-6.5.0 will install kernel 6.5.13

2024-04-24 Thread Gero Schwäricke
** Tags added: jammy

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

Title:
  linux-source-6.5.0 will install kernel 6.5.13

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-hwe-6.5/+bug/2063376/+subscriptions


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

[Bug 2063376] [NEW] linux-source-6.5.0 will install kernel 6.5.13

2024-04-24 Thread Gero Schwäricke
Public bug reported:

Hi,

As the summary suggests, when I install linux-source-6.5.0 it will
actually install the 6.5.13 kernel sources. Querying

  apt show linux-source-6.5.0

reports:

  [...]
  Description: Linux kernel source for version 6.5.0 with Ubuntu patches
   This package provides the source code for the Linux kernel version
   6.5.0.
  [...]

So providing 6.5.13 seems like a bug to me. But it's my first time
trying to build a kernel module for Debian myself, so I'm quite unsure
what's happening here. Any pointers welcome.

Here's what I did:

  sudo su
  apt install linux-source-6.5.0
  cd /usr/src
  tar xjf linux-source-6.5.0.tar.bz2
  head linux-source-6.5.0/Makefile

which shows:

  # SPDX-License-Identifier: GPL-2.0
  VERSION = 6
  PATCHLEVEL = 5
  SUBLEVEL = 13
  EXTRAVERSION =
  NAME = Hurr durr I'ma ninja sloth
  
  # *DOCUMENTATION*
  # To see a list of typical targets execute "make help"
  # More info can be located in ./README

I don't know how or why this happens, but I found the following in dmesg

  $ dmesg | grep 6.5.13
  [0.00] Linux version 6.5.0-28-generic (buildd@lcy02-amd64-098) 
(x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU 
Binutils for Ubuntu) 2.38) #29~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Thu Apr  4 
14:39:20 UTC 2 (Ubuntu 6.5.0-28.29~22.04.1-generic 6.5.13)

If I'm decyphering this correctly my running 6.5.0 kernel was build on a
machine running 6.5.13. Is it possible that this machine by accident
uploaded it's own kernel source tree rather than the built kernel's?

  $ lsb_release -rd
  Description:  Linux Mint 21.3
  Release:  21.3

  $ apt-cache policy linux-source-6.5.0
  linux-source-6.5.0:
Installed: 6.5.0-28.29~22.04.1
Candidate: 6.5.0-28.29~22.04.1
Version table:
   *** 6.5.0-28.29~22.04.1 500
  500 http://mirror.ipb.de/ubuntu jammy-updates/main amd64 Packages
  500 http://mirror.ipb.de/ubuntu jammy-updates/main i386 Packages
  500 http://security.ubuntu.com/ubuntu jammy-security/main amd64 
Packages
  500 http://security.ubuntu.com/ubuntu jammy-security/main i386 
Packages
  100 /var/lib/dpkg/status
   6.5.0-27.28~22.04.1 500
  500 http://mirror.ipb.de/ubuntu jammy-updates/main amd64 Packages
  500 http://mirror.ipb.de/ubuntu jammy-updates/main i386 Packages
  500 http://security.ubuntu.com/ubuntu jammy-security/main amd64 
Packages
  500 http://security.ubuntu.com/ubuntu jammy-security/main i386 
Packages
   6.5.0-26.26~22.04.1 500
  500 http://mirror.ipb.de/ubuntu jammy-updates/main amd64 Packages
  500 http://mirror.ipb.de/ubuntu jammy-updates/main i386 Packages
  500 http://security.ubuntu.com/ubuntu jammy-security/main amd64 
Packages
  500 http://security.ubuntu.com/ubuntu jammy-security/main i386 
Packages
   6.5.0-25.25~22.04.1 500
  500 http://mirror.ipb.de/ubuntu jammy-updates/main amd64 Packages
  500 http://mirror.ipb.de/ubuntu jammy-updates/main i386 Packages
  500 http://security.ubuntu.com/ubuntu jammy-security/main amd64 
Packages
  500 http://security.ubuntu.com/ubuntu jammy-security/main i386 
Packages
   6.5.0-21.21~22.04.1 500
  500 http://mirror.ipb.de/ubuntu jammy-updates/main amd64 Packages
  500 http://mirror.ipb.de/ubuntu jammy-updates/main i386 Packages
  500 http://security.ubuntu.com/ubuntu jammy-security/main amd64 
Packages
  500 http://security.ubuntu.com/ubuntu jammy-security/main i386 
Packages
   6.5.0-18.18~22.04.1 500
  500 http://mirror.ipb.de/ubuntu jammy-updates/main amd64 Packages
  500 http://mirror.ipb.de/ubuntu jammy-updates/main i386 Packages
  500 http://security.ubuntu.com/ubuntu jammy-security/main amd64 
Packages
  500 http://security.ubuntu.com/ubuntu jammy-security/main i386 
Packages
   6.5.0-17.17~22.04.1 500
  500 http://mirror.ipb.de/ubuntu jammy-updates/main amd64 Packages
  500 http://mirror.ipb.de/ubuntu jammy-updates/main i386 Packages
  500 http://security.ubuntu.com/ubuntu jammy-security/main amd64 
Packages
  500 http://security.ubuntu.com/ubuntu jammy-security/main i386 
Packages
   6.5.0-15.15~22.04.1 500
  500 http://mirror.ipb.de/ubuntu jammy-updates/main amd64 Packages
  500 http://mirror.ipb.de/ubuntu jammy-updates/main i386 Packages
  500 http://security.ubuntu.com/ubuntu jammy-security/main amd64 
Packages
  500 http://security.ubuntu.com/ubuntu jammy-security/main i386 
Packages
   6.5.0-14.14~22.04.1 500
  500 http://mirror.ipb.de/ubuntu jammy-updates/main amd64 Packages
  500 http://mirror.ipb.de/ubuntu jammy-updates/main i386 Packages
  500 http://security.ubuntu.com/ubuntu jammy-security/main amd64 
Packages
  500 http://security.ubuntu.com/ubuntu jammy-security/main i386 
Packages

Best,
Gero

** Affe

[Bug 1002978] Re: [meta-bug] Inverted Internal microphone (phase inversion)

2016-01-05 Thread Gero
Same problem on Lenovo B50-80

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

Title:
  [meta-bug] Inverted Internal microphone (phase inversion)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/1002978/+subscriptions

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


[Bug 896922] Re: Lenovo L520 - psmouse.c: touchpad at isa0060/serio4/input0 lost sync and stops working for seconds

2013-09-26 Thread Gero Graubner
I just discovered (using Thinkpad L520 with 12.04 LTS, Kernel
3.2.0-53-generic), that there must be something wrong with the CPU
frequency scaling.

Found this in the Arch-Linux Wiki:

'If you use CPU frequency scaling, avoid using the ondemand governor
and use the performance governor when possible, as the touchpad may
lose sync when the CPU frequency changes.

https://wiki.archlinux.org/index.php/Touchpad_Synaptics#Touchpad_synchronization_issues

If I set the governor to performance instead of ondemand the sync-
faults totaly gone.

If you run Unity you can try the indicator-cpufreq (sudo apt-get install
indicator-cpufreq)

Choose performance and test it. No stucks and sync-faults.
After going back to ondemand the stucks are back.

The gonvernor was always set to performance after boot/login, but was
switched to ondemand after a minute or so (to speed up login speed as
much as possible)

As a workaround until (hopefully) a fix is comming:
So, if you want to set the govenor fix to performance you have to edit the 
file: etc/init.d/ondemand (line 27) and change 

echo -n ondemand  $CPUFREQ

to

echo -n performance  $CPUFREQ'

or simply paste:
sudo sed -i s/'echo -n ondemand  $CPUFREQ'/'echo -n performance  $CPUFREQ'/g 
/etc/init.d/ondemand

and reboot.

To switch it back to default ondemand paste:
sudo sed -i s/'echo -n performance  $CPUFREQ'/'echo -n ondemand  $CPUFREQ'/g 
/etc/init.d/ondemand

Gero

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

Title:
  Lenovo L520 - psmouse.c: touchpad at isa0060/serio4/input0 lost sync
  and stops working for seconds

To manage notifications about this bug go to:
https://bugs.launchpad.net/linux/+bug/896922/+subscriptions

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


[Bug 1165089] Re: [Lenovo 3000 N100 Notebook 0768] Synaptic Touchpad constantly losing sync

2013-09-26 Thread Gero Graubner
I just discovered (using Thinkpad L520 with 12.04 LTS, Kernel
3.2.0-53-generic), that there must be something wrong with the CPU
frequency scaling.

Found this in the Arch-Linux Wiki:

'If you use CPU frequency scaling, avoid using the ondemand governor
and use the performance governor when possible, as the touchpad may
lose sync when the CPU frequency changes.

https://wiki.archlinux.org/index.php/Touchpad_Synaptics#Touchpad_synchronization_issues

If I set the governor to performance instead of ondemand the sync-
faults totaly gone.

If you run Unity you can try the indicator-cpufreq (sudo apt-get install
indicator-cpufreq)

Choose performance and test it. No stucks and sync-faults.
After going back to ondemand the stucks are back.

The gonvernor was always set to performance after boot/login, but was
switched to ondemand after a minute or so (to speed up login speed as
much as possible)

As a workaround until (hopefully) a fix is comming:
So, if you want to set the govenor fix to performance you have to edit the 
file: etc/init.d/ondemand (line 27) and change

echo -n ondemand  $CPUFREQ

to

echo -n performance  $CPUFREQ'

or simply paste:
sudo sed -i s/'echo -n ondemand  $CPUFREQ'/'echo -n performance  $CPUFREQ'/g 
/etc/init.d/ondemand

and reboot.

To switch it back to default ondemand paste:
sudo sed -i s/'echo -n performance  $CPUFREQ'/'echo -n ondemand  $CPUFREQ'/g 
/etc/init.d/ondemand

Gero

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

Title:
  [Lenovo 3000 N100 Notebook 0768] Synaptic Touchpad constantly losing
  sync

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

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


[Bug 1171096] Re: BUG: soft lockup - CPU#3 stuck for 22s! [tvheadend:29245] - flush_tlb_others_ipi

2013-05-07 Thread Gero Graubner
Hello,

same Problem here, running

Ubuntu 12.04 Server x64, Kernel 3.2.0-41-generic with XBMC 12.2 and tvheadend 
3.4.
I have an nvidia gforce 210 with 304.84 driver, and an L4M Cine S2 V.6.2.

03:00.0 Multimedia controller: Digital Devices GmbH Octopus LE DVB adapter
Subsystem: Digital Devices GmbH Device 0020
Control: I/O- Mem+ BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- 
SERR- FastB2B- DisINTx-
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast TAbort- TAbort- 
MAbort- SERR- PERR- INTx-
Interrupt: pin A routed to IRQ 16
Region 0: Memory at fb10 (64-bit, non-prefetchable) [size=64K]
Capabilities: [50] Power Management version 3
Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME
Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
Capabilities: [70] MSI: Enable- Count=1/2 Maskable- 64bit+
Address:  Data: 
Capabilities: [90] Express (v2) Endpoint, MSI 00
DevCap: MaxPayload 128 bytes, PhantFunc 0, Latency L0s 64ns, L1 1us
ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset-
DevCtl: Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
MaxPayload 128 bytes, MaxReadReq 128 bytes
DevSta: CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
LnkCap: Port #0, Speed 2.5GT/s, Width x1, ASPM L0s, Latency L0 unlimited, L1 
1us
ClockPM- Surprise- LLActRep- BwNot-
LnkCtl: ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk+
ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
LnkSta: Speed 2.5GT/s, Width x1, TrErr- Train- SlotClk+ DLActive- BWMgmt- 
ABWMgmt-
DevCap2: Completion Timeout: Range A, TimeoutDis+
DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable 
De-emphasis: 6dB
Transmit Margin: Normal Operating Range, EnterModifiedCompliance ComplianceSOS-
Compliance De-emphasis: -6dB
LnkSta2: Current De-emphasis Level: -6dB
Capabilities: [100 v1] Vendor Specific Information: ID= Rev=0 Len=00c
Kernel driver in use: DDBridge
Kernel modules: ddbridge

In TVHeadend the card is detected as STV090x.

With tvheadend 3.2 all things ran smoothly, but since the Upgrade to
Version 3.4 there are random lockups.

When the Server died, there is no opportunity to get a message from it
(via ssh), also there are no helpfull entries in the logs.

If Kernel 3.9 running smoothly, there must be something wrong withe the
frontend-driver STV090x ore the backend ddbridge in the lower kernels
3.2-3.8.

Gero

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

Title:
  BUG: soft lockup - CPU#3 stuck for 22s! [tvheadend:29245] -
  flush_tlb_others_ipi

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

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


[Bug 1007133] Re: Evolution locks up under KDE in Kubuntu 12.04 when setting an alarm on an appointment

2013-01-08 Thread gero
Same problem. Changing System Settings  Application Appearance  GTK+
Appearance from oxygen-gtk to Radiance, as Kurt suggested, works as a
workaround.

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

Title:
  Evolution locks up under KDE in Kubuntu 12.04 when setting an alarm on
  an appointment

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

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


[Bug 526955] Re: NVIDIA X Server configuration not working

2011-05-16 Thread gero
David, thanks for this advice which inspired another workaround:

After clicking the Detect Displays button (which will recognize the
new screen and the loss of the old one) select Apply before
configuring the new screen. Only after switching to a one-screen set-up,
configure the new screen. This procedure will leave the configuration
intact.

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

Title:
  NVIDIA X Server configuration not working

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


[Bug 526955] Re: NVIDIA X Server configuration not working

2011-04-29 Thread gero
I still see this problem in Lucid when ever I unplug one screen, attach
another and then try to change the NVidia setup accordingly. The change
works but when I start the NVidia tool again it shows the message
mentioned above and I'm stuck until the next X-server restart.

This confirms that the bug still exists in a current version of Ubuntu.
Can you please change the status back to 'New'?

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

Title:
  NVIDIA X Server configuration not working

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


[Bug 294648] Re: svn over https with client certificates broken (regression in intrepid)

2010-12-21 Thread gero
Here's what I see with the setup from #44:

$ svn co https://lavalit.com/svn/openbor/trunk
svn: OPTIONS of 'https://lavalit.com/svn/openbor/trunk': SSL handshake failed: 
SSL error: A TLS warning alert has been received. (https://lavalit.com)
$ LD_PRELOAD=/usr/lib/libneon.so.27 svn co https://lavalit.com/svn/openbor/trunk
svn: OPTIONS of 'https://lavalit.com/svn/openbor/trunk': SSL handshake failed: 
SSL error code -1/1/336032856 (https://lavalit.com)

$ svn co https://www.opensc-project.org/svn/test/
svn: OPTIONS of 'https://www.opensc-project.org/svn/test': Could not read 
status line: SSL alert received: Handshake failed 
(https://www.opensc-project.org)
$ LD_PRELOAD=/usr/lib/libneon.so.27 svn co 
https://www.opensc-project.org/svn/test/
Authentication realm: https://www.opensc-project.org:443
Client certificate filename:

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

Title:
  svn over https with client certificates broken (regression in intrepid)

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


[Bug 294648] Re: svn over https with client certificates broken (regression in intrepid)

2010-12-21 Thread gero
Bryan, my results in #48 are with libneon27_0.29.5-1_i386.deb which,
according to #38, includes the patch.

I would appreciate reopening this bug, thanks.

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

Title:
  svn over https with client certificates broken (regression in intrepid)

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


[Bug 294648] Re: svn over https with client certificates broken (regression in intrepid)

2010-12-20 Thread gero
For me this bug hasn't been fixed either. I've installed
libneon27_0.29.5-1_i386.deb and by dependency libssl0.9.8_0.9.8o-
1ubuntu4.3_i386.deb on Lucid. I still get the error messages:

$ svn update
svn: OPTIONS of 'https://server/path': SSL handshake failed: SSL error: A 
TLS warning alert has been received. (https://server)

$ LD_PRELOAD=/usr/lib/libneon.so.27 svn update
svn: OPTIONS of 'https://server/path': SSL handshake failed: SSL error code 
-1/1/336032856 (https://server)

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

Title:
  svn over https with client certificates broken (regression in intrepid)

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


[Bug 581486] Re: Using scroll bar in emacs highlights/selects text

2010-09-16 Thread gero
phil, it's an environment variable. You can prepend it to calling emacs
like this ('$' being the shell prompt):

$ GDK_NATIVE_WINDOWS=1 emacs

-- 
Using scroll bar in emacs highlights/selects text
https://bugs.launchpad.net/bugs/581486
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 294648] Re: svn over https with client certificates broken (regression in intrepid)

2010-09-06 Thread gero
Thank you for the advice!

Tony, I'm afraid I don't control the server.

Andreas, that's one of the methods I tried, but like I said: Using
libneon instead of libneon-gnutls has not helped, [...]

Either way, AFAIC the current Ubuntu subversion package is broken and
needs to be fixed.

-- 
svn over https with client certificates broken (regression in intrepid)
https://bugs.launchpad.net/bugs/294648
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 294648] Re: svn over https with client certificates broken (regression in intrepid)

2010-09-05 Thread gero
Hi, I've had problems since upgrading from Hardy to Lucid:

$ svn update
svn: OPTIONS of 'https://svn.example.com/path/to/svn/trunk': SSL handshake 
failed: SSL error: A TLS warning alert has been received. 
(https://svn.example.com)

I assume the old svn client version was 1.4.6:
http://packages.ubuntu.com/hardy/subversion The new version is 1.6.6.

The repository has other users for whom it continues to work.

Could this be the same problem? Using libneon instead of libneon-gnutls
has not helped, only changed the error message slightly:

svn: OPTIONS of 'https://svn.example.com/path/to/svn/trunk': SSL
handshake failed: SSL error code -1/1/336032856
(https://svn.example.com)

Any other ideas?

-- 
svn over https with client certificates broken (regression in intrepid)
https://bugs.launchpad.net/bugs/294648
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 581486] Re: Using scroll bar in emacs highlights/selects text

2010-09-04 Thread gero
This bug is indeed very annoying. Any chance to get it fixed soon,
please?

Moreover, when I let go of the scrollbar it frequently snaps back to
it's previous position (and with it the displayed section of the file)
instead of staying where it is. Is this problem related?

-- 
Using scroll bar in emacs highlights/selects text
https://bugs.launchpad.net/bugs/581486
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 588203] Re: [FFe] Please merge emacs23 23.2+1-4 (main) from Debian unstable (main)

2010-09-04 Thread gero
Bug #581486 is not really a duplicate of this bug but fixing this one
would probably also fix the other one.

It's about two very annoying bugs in the Emacs version currently shipping with 
Lucid (23.1.1):
* Moving the scroll bar is marking text.
* When letting go of the scroll bar it often snaps back to its previous 
position (and with it the displayed section of the file) instead of staying 
where it is.

I gather that these problems stem from bugs in the interaction with GTK
and X. Apparently they have been fixed in later versions, including
Emacs 23.2.

As these are rather severe usability problems, is there any chance to
get Lucid upgraded to Emacs 23.2?

-- 
[FFe] Please merge emacs23 23.2+1-4 (main) from Debian unstable (main)
https://bugs.launchpad.net/bugs/588203
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 161176] Re: Crash when CIFS mount goes offline

2010-04-24 Thread Gero Mudersbach
I can confirm this behaviour:

When I mount a Samba share with cifs and the Samba server goes offline (for 
whatever reason) I get the following errors in dmesg:
CIFS VFS: No repsonse for cmd 114 mid x
CIFS VFS: Unexpected lookup error -112

All programs currently accessing the directory - to where the share is
mounted to - freeze/stall until the problem is solved by lazy
unmounting the share. For example dolphin filemanager is unusable or in
a shell I can't cd to the mounted dir (it stalls, too).

Similar or related bugs are:
#428129
#211631

-- 
Crash when CIFS mount goes offline
https://bugs.launchpad.net/bugs/161176
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 161176] Re: Crash when CIFS mount goes offline

2010-04-24 Thread Gero Mudersbach
More related bugs:
Bug #224414

The symptoms are also exactly like reported in the kernel list back in 2005:
http://lkml.org/lkml/2005/2/20/78


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

-- 
Crash when CIFS mount goes offline
https://bugs.launchpad.net/bugs/161176
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 561637] Re: Ubuntu Firefox Modification 0.8 Flash Plugin Freezes Namoroka in Karmic

2010-04-13 Thread Gero Mudersbach
Set dom.ipc.plugins.enabled.libflashplayer.so to false in
about:config.

See the following post for the workaround:
http://ubuntuforums.org/showpost.php?p=9112649postcount=5

-- 
Ubuntu Firefox Modification 0.8  Flash Plugin Freezes Namoroka in Karmic
https://bugs.launchpad.net/bugs/561637
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 560008] Re: gwibber-service crashed with NameError in get_account_passwords()

2010-04-11 Thread gero
i just turn on my computer and this error appeared..

-- 
gwibber-service crashed with NameError in get_account_passwords()
https://bugs.launchpad.net/bugs/560008
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 557800] Re: gnome-keyring-daemon crashed with SIGSEGV in dbus_message_iter_open_container()

2010-04-07 Thread gero
*** This bug is a duplicate of bug 532378 ***
https://bugs.launchpad.net/bugs/532378

** Changed in: gnome-keyring (Ubuntu)
 Assignee: (unassigned) = gero (tkd4)

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

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


[Bug 557800] Re: gnome-keyring-daemon crashed with SIGSEGV in dbus_message_iter_open_container()

2010-04-07 Thread gero
*** This bug is a duplicate of bug 532378 ***
https://bugs.launchpad.net/bugs/532378


sorry I want to add something else, a few minutes later since this error I 
tried to run an update but the system didnt allow me.
I think it is strongly related with the issue.

Here is what I got from Terminal.

r...@geronimo-desktop:/home/geronimo# sudo aptitude update
E: Could not get lock /var/lib/apt/lists/lock - open (11: Resource temporarily 
unavailable)
E: Couldn't lock list directory..are you root?

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

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


[Bug 544506] Re: nautilus-sendto crashed with SIGSEGV in g_slice_alloc()

2010-04-07 Thread gero
well I am not quite sure about what you mean, but I can tell you this,
sendto was working fine, I used it just a minute before I removed the
empathy, then I removed empathy and sendto stopped working, next I re-
installed empathy and sendto began to work correctly.

i wish i could help more...

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

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


[Bug 544506] Re: nautilus-sendto crashed with SIGSEGV in g_slice_alloc()

2010-04-04 Thread gero
well, this  error happened to me when I removed empathy.. there is a
package in empathy related with nautilus. this package is called
nautilus-sendto-empathy , and the problem occurred when I removed it.

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

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


[Bug 194494] Re: telepathy-butterfly crashed with NotImplementedError in _on_error()

2010-04-03 Thread gero
its happened to me when i was removing the jabber account from
emphaty.

-- 
telepathy-butterfly crashed with NotImplementedError in _on_error()
https://bugs.launchpad.net/bugs/194494
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 513922] Re: telepathy-butterfly crashed with AttributeError in on_addressbook_contact_added()

2010-04-03 Thread gero
i was adding a  new contact, but I dint select a group, so a i pressed
the add button and the error occurs...

-- 
telepathy-butterfly crashed with AttributeError in 
on_addressbook_contact_added()
https://bugs.launchpad.net/bugs/513922
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 552227] Re: gwibber-accounts crashed with KeyError in get_account_data()

2010-04-03 Thread gero
i was trying to configure my broadcast account in facebook and when i
clicked on add the error appeared.

-- 
gwibber-accounts crashed with KeyError in get_account_data()
https://bugs.launchpad.net/bugs/552227
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 528467] Re: [i855] GPU hung (drm i915 intel) on Lucid Lynx Alpha 3 live CD

2010-03-02 Thread Gero Mudersbach
Geir, the patch helped delaying the freeze and it was possible to switch
to another console. In the long run it didn't prevent the freeze. I
think it's still a flushing problem and the big hammer patch just
makes it happen less often.

Until now it wasn't possible for me to test it with Lucid. I will test
both and report back soon.

-- 
[i855] GPU hung (drm i915 intel) on Lucid Lynx Alpha 3 live CD
https://bugs.launchpad.net/bugs/528467
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 528467] Re: [i855] GPU hung (drm i915 intel) on Lucid Lynx Alpha 3 live CD

2010-02-28 Thread Gero Mudersbach
BTW: using vesa in xorg.conf and nomodeset at the kernel command
line seems to be a workaround until the bug is fixed in the intel
driver.

-- 
[i855] GPU hung (drm i915 intel) on Lucid Lynx Alpha 3 live CD
https://bugs.launchpad.net/bugs/528467
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 528467] Re: [i855] GPU hung (drm i915 intel) on Lucid Lynx Alpha 3 live CD

2010-02-27 Thread Gero Mudersbach

** Attachment added: i915_error_state, dmesg, Xorg.0.log with kernel 
2.6.33-997-generic_2.6.33-997.201002271147_i386
   
http://launchpadlibrarian.net/39865927/kernel-2.6.33-997-generic_2.6.33-997.201002271147_i386-debug-logs.tar.gz

-- 
[i855] GPU hung (drm i915 intel) on Lucid Lynx Alpha 3 live CD
https://bugs.launchpad.net/bugs/528467
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 528467] [NEW] [i855] GPU hung (drm i915 intel) on Lucid Lynx Alpha 3 live CD

2010-02-26 Thread Gero Mudersbach
Public bug reported:

Binary package hint: xserver-xorg-video-intel

With the alpha 3 version of the Lucid Lynx live CD I get a GPU hung
shortly after the splash screen of the the desktop (KDE) is shown.

the following messages are from dmesg:
[drm:i915_hangcheck_elapsed] * ERROR * Hangcheck timer elapsed... GPU hung
render error detected , EIR: 0x
i915: waking up sleeping processes
reboot required

The loginmanager then tries to respawn the xserver several times until
there is a non blinking cursor shown at the botton of the screen.

On some other boot tries with the live cd the xserver freezes completely
and it is not possible to switch to another console.

Hardware info:
00:02.0 VGA compatible controller: Intel Corporation 82852/855GM Integrated 
Graphics Device (rev 02)
Subsystem: ASUSTeK Computer Inc. Device 1712

Flags: bus master, fast devsel, latency 0, IRQ 16   

Memory at f000 (32-bit, prefetchable) [size=128M]   

Memory at feb8 (32-bit, non-prefetchable) [size=512K]   

I/O ports at dc00 [size=8]  

Capabilities: [d0] Power Management version 1   

Kernel driver in use: i915  

Kernel modules: i915


00:02.1 Display controller: Intel Corporation 82852/855GM Integrated Graphics 
Device (rev 02)
Subsystem: ASUSTeK Computer Inc. Device 1712
 
Flags: bus master, fast devsel, latency 0   
 
Memory at e800 (32-bit, prefetchable) [size=128M]   
 
Memory at fea8 (32-bit, non-prefetchable) [size=512K]   
 
Capabilities: [d0] Power Management version 1

** Affects: xserver-xorg-video-intel (Ubuntu)
 Importance: Undecided
 Status: New

-- 
[i855] GPU hung (drm i915 intel) on Lucid Lynx Alpha 3 live CD
https://bugs.launchpad.net/bugs/528467
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 528491] [NEW] [i855] GPU hung with intel i915 driver

2010-02-26 Thread Gero Mudersbach
Public bug reported:

Binary package hint: xserver-xorg-video-intel

I get the following error as a dmesg output right after the xserver
freezes (mouse still works, ssh too):

[ 9136.844018] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... 
GPU hung
[ 9136.844035] render error detected, EIR: 0x
[ 9136.844047] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns 
-5 (awaiting 1032585 at 1032582)
[ 9155.537443] [drm:i915_gem_idle] *ERROR* hardware wedged

I can reproduce the bug with and without compositing enabled. Kernel parameter 
nomodeset doesn't have any effect on this. 
The bug seems to happen more often when setting UXA in xorg.conf. With EXA 
I have render errors but less often complete freezes. 

When I want to reproduce the bug all I have to do is doing fast
scrolling with konqueror or firefox on a webpage with many graphics.

On Lucid lynx I have a similar behaviour (see #528467).

With patches from https://bugs.freedesktop.org/show_bug.cgi?id=24789#c38
I could make the bug happen less often but not completelely disappear.

ProblemType: Bug
Architecture: i386
Date: Fri Feb 26 15:14:07 2010
DistroRelease: Ubuntu 9.10
InstallationMedia: Ubuntu 9.10 Karmic Koala - Release i386 (20091028.5)
Package: xserver-xorg-video-intel 2:2.9.0-1ubuntu2.1
ProcEnviron:
 LANGUAGE=
 PATH=(custom, user)
 LANG=de_DE.UTF-8
 SHELL=/bin/bash
RelatedPackageVersions:
 xserver-xorg 1:7.4+3ubuntu10
 libgl1-mesa-glx 1:7.4.1-1ubuntu6+karmic
 libdrm2 1:2.4.11-2+karmic3
 xserver-xorg-video-intel 2:2.9.0-1ubuntu2.1
 xserver-xorg-video-ati 1:6.12.99+git20090929.7968e1fb-0ubuntu1
SourcePackage: xserver-xorg-video-intel
Uname: Linux 2.6.33-rc8-custom i686
XsessionErrors:
 (polkit-gnome-authentication-agent-1:2930): GLib-CRITICAL **: 
g_once_init_leave: assertion `initialization_value != 0' failed
 (firefox:2945): GLib-WARNING **: g_set_prgname() called multiple times
system:
 distro: Ubuntu
 architecture:   i686kernel: 2.6.33-rc8-custom

** Affects: xserver-xorg-video-intel (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug i386

-- 
[i855] GPU hung with intel i915 driver
https://bugs.launchpad.net/bugs/528491
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 528491] Re: [i855] GPU hung with intel i915 driver

2010-02-26 Thread Gero Mudersbach

** Attachment added: apport.xserver-xorg-video-intel.iRSv2E.apport
   
http://launchpadlibrarian.net/39820695/apport.xserver-xorg-video-intel.iRSv2E.apport

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

-- 
[i855] GPU hung with intel i915 driver
https://bugs.launchpad.net/bugs/528491
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 528467] Re: [i855] GPU hung (drm i915 intel) on Lucid Lynx Alpha 3 live CD

2010-02-26 Thread Gero Mudersbach

** Attachment added: Dmesg output
   http://launchpadlibrarian.net/39820707/dmesg-lucid-alpha3-live-cd.txt

-- 
[i855] GPU hung (drm i915 intel) on Lucid Lynx Alpha 3 live CD
https://bugs.launchpad.net/bugs/528467
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 528467] Re: [i855] GPU hung (drm i915 intel) on Lucid Lynx Alpha 3 live CD

2010-02-26 Thread Gero Mudersbach

** Attachment added: ubuntu-bug (apport) output
   
http://launchpadlibrarian.net/39820760/apport.xserver-xorg-video-intel._JyBZZ.apport

-- 
[i855] GPU hung (drm i915 intel) on Lucid Lynx Alpha 3 live CD
https://bugs.launchpad.net/bugs/528467
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 528467] Re: [i855] GPU hung (drm i915 intel) on Lucid Lynx Alpha 3 live CD

2010-02-26 Thread Gero Mudersbach

** Attachment added: Xorg log
   http://launchpadlibrarian.net/39820765/Xorg.0.log-lucid-alpha3-live-cd.txt

-- 
[i855] GPU hung (drm i915 intel) on Lucid Lynx Alpha 3 live CD
https://bugs.launchpad.net/bugs/528467
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 528467] Re: [i855] GPU hung (drm i915 intel) on Lucid Lynx Alpha 3 live CD

2010-02-26 Thread Gero Mudersbach

** Attachment added: xsession error log
   
http://launchpadlibrarian.net/39820781/xsession-error-lucid-alpha3-live-cd.txt

-- 
[i855] GPU hung (drm i915 intel) on Lucid Lynx Alpha 3 live CD
https://bugs.launchpad.net/bugs/528467
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 528491] Re: [i855] GPU hung with intel i915 driver

2010-02-26 Thread Gero Mudersbach

** Attachment added: Kernel log with drm debug messages
   http://launchpadlibrarian.net/39821945/kernel-log.txt

-- 
[i855] GPU hung with intel i915 driver
https://bugs.launchpad.net/bugs/528491
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 342675] Re: [i945] Kubuntu freezes when I use the keyboard shortcut to start krunner (UXA bug)

2010-02-19 Thread Gero Mudersbach
Currently I am testing patches from
https://bugs.freedesktop.org/show_bug.cgi?id=24789#c38

which seem to solve the issue for me when compositing in KDE is turned
off. I haven't tested it with compositing turned on yet. I will report
back, when I have made more tests on this.


** Bug watch added: freedesktop.org Bugzilla #24789
   https://bugs.freedesktop.org/show_bug.cgi?id=24789

-- 
[i945] Kubuntu freezes when I use the keyboard shortcut to start krunner (UXA 
bug)
https://bugs.launchpad.net/bugs/342675
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 342675] Re: [i945] Kubuntu freezes when I use the keyboard shortcut to start krunner (UXA bug)

2010-02-18 Thread Gero Mudersbach
I am not sure if this is the right bug which applies to my problem since
there seem to be alot freezes with intel based chipsets and latest
kernel / intel driver. However, since I am using KDE and the freeze
occures at random (some times several times on one day, on the other not
a single time) I am attaching my debug output here.

It happens with and without compositing enabled in kde configuration.
The mouse cursor always still works (moving), but everything else is
frozen.

I have Intel Corporation 82852/855GM Integrated Graphics Device (rev
02)


** Attachment added: Debug output freeze
   http://launchpadlibrarian.net/39365087/dri_debug-20100218.tgz

-- 
[i945] Kubuntu freezes when I use the keyboard shortcut to start krunner (UXA 
bug)
https://bugs.launchpad.net/bugs/342675
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 465055] Re: Epson ALCX11NF Scanner I/O error in xsane

2009-11-25 Thread Gero Mudersbach
@PiK:

 It seems that the only resolution is coming back to the ubuntu 9.04.

Fortunately there is a dirty workaround:

download http://packages.ubuntu.com/jaunty/libsane (jaunty version) and install 
with
dpkg -i libsane_1.0.19-23ubuntu7_i386.deb

You may lock libsane with synaptics or with preferences of apt until
this bug is resolved.

-- 
Epson ALCX11NF Scanner I/O error in xsane
https://bugs.launchpad.net/bugs/465055
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 473319] Re: PDF files generated with iText 2.1.6 (Google docs) are not displayed correctly

2009-11-07 Thread Gero Mudersbach

** Attachment added: Same file viewed with Adobe Reader, full page visible
   http://launchpadlibrarian.net/35301126/okulartest-adobe.png

-- 
PDF files generated with iText 2.1.6 (Google docs) are not displayed correctly
https://bugs.launchpad.net/bugs/473319
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 473319] Re: PDF files generated with iText 2.1.6 (Google docs) are not displayed correctly

2009-11-07 Thread Gero Mudersbach

** Attachment added: File viewed with okular, notice the left side of the 
document is cut
   http://launchpadlibrarian.net/35301092/okulartest.png

-- 
PDF files generated with iText 2.1.6 (Google docs) are not displayed correctly
https://bugs.launchpad.net/bugs/473319
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 473319] Re: PDF files generated with iText 2.1.6 (Google docs) are not displayed correctly

2009-11-07 Thread Gero Mudersbach
 Bug in the PDF library.

Jonathan, I think it's a bug in Okular since the file can be viewed with
evince (which uses poppler) without problems.

If you look a tthe attached screenshot, you will see that okular
displays the file with the wrong orientation (portrait instead of
landscape). Evince and Adobe Reader display the file correctly with
landscape orientation and thus won't cut the left side of the document.

** Attachment added: Evince (left), Okular (right)
   http://launchpadlibrarian.net/35301575/okulartest-compare-evince-okular.png

-- 
PDF files generated with iText 2.1.6 (Google docs) are not displayed correctly
https://bugs.launchpad.net/bugs/473319
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 463251] Re: Openoffice KDE file dialog didn't ask to overwrite exists file

2009-11-02 Thread Gero Mudersbach
I can confirm this is an issue with the PDF export and Save-As dialog in
Kubuntu Karmic final.

-- 
Openoffice KDE file dialog didn't ask to overwrite exists file
https://bugs.launchpad.net/bugs/463251
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 461355] Re: Double Automatic file name extension checkbox in OOo KDE file dialog

2009-11-02 Thread Gero Mudersbach
I can confirm this is still an issue in Kubuntu Karmic final.

-- 
Double Automatic file name extension checkbox in OOo KDE file dialog
https://bugs.launchpad.net/bugs/461355
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 454507] [NEW] Upgrade of encrypted Jaunty to Karnic results in non bootable system

2009-10-18 Thread Gero Mudersbach
Public bug reported:

Binary package hint: initramfs-tools

Upgrading a kubuntu jaunty system which has been installed with the
alternate installation cd and is fully encrypted with luks (cryptsetup)
to karnic beta results in an unbootable system. Upon restart the system
waits for some time and then drops to BusyBox with the following error
message:

Boot froCheck cryptopts=source= bootarg cat /proc/cmdlinec20f
Startingor missing modules, devices: cat /proc/moduules ls /dev
-r ALERT! /dev/disk/by-uuid/8a3cb1e8-2981-4aab-863f-216bcb8611de does not exist.
 Dropping to a shell!

BusyBox v1.13.3 (Ubuntu 1:1.13.3-1ubuntu7) built-in shell (ash) .

The dist-upgrade to karnic beta was done via update-manager -d (gnome
upgrade tool, although it was a kubuntu installation)

Expected results:
Propper uppgrade of grub information and initramfs, so that the system prompts 
for a password and then boots normally.

** Affects: initramfs-tools (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: karnic

-- 
Upgrade of encrypted Jaunty to Karnic results in non bootable system
https://bugs.launchpad.net/bugs/454507
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 454507] Re: Upgrade of encrypted Jaunty to Karnic results in non bootable system

2009-10-18 Thread Gero Mudersbach
** Tags added: karmic
** Tags removed: karnic

-- 
Upgrade of encrypted Jaunty to Karnic results in non bootable system
https://bugs.launchpad.net/bugs/454507
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 289567] Re: Installing abrowser removes sun-java6-plugin

2009-07-27 Thread Gero Mudersbach
I can confirm that the firefox dependency of sun-java6-plugin is a
problem. When I remove the official firefox from ubuntu, I cannot
install sun-java6-plugin without reinstalling firefox again. Since other
browsers use the mozilla-plugin directories for plugins, firefox should
be only _recommended_ to install, it should not be a mandatory
dependency.

-- 
Installing abrowser removes sun-java6-plugin
https://bugs.launchpad.net/bugs/289567
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 401382] Re: sun-java-plugin firefox 3.0 unnecessary dependency

2009-07-27 Thread Gero Mudersbach
This bug seems to be a duplicate of bug #289567

-- 
sun-java-plugin firefox 3.0 unnecessary dependency
https://bugs.launchpad.net/bugs/401382
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 390588] [NEW] When having mounted a nfs-share and the connection breaks parts of the system freezes

2009-06-22 Thread Gero Mudersbach
Public bug reported:

This bug has been expierenced on Kubuntu Jaunty.

Steps to reproduce:
1. Mount a nfs share
2. Disconnect network or the device having the shared resource

Results:
- KDE Plasma freezes (while some systemtray icons remain accessible)
- manually unmounting the nfs-share results in a freeze of umount
- Shutting down the system results in a total system freeze
- Restarting HAL/DBUS etc has no effect

Expected result:
- unmount the disconnected share automatically
- don't let broken connections to remote shares affect the systems stability

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

-- 
When having mounted a nfs-share and the connection breaks parts of the system 
freezes
https://bugs.launchpad.net/bugs/390588
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 37346] Re: amarok: Watch folders for changes doesn't work - no automatic collection updates

2009-05-25 Thread gero
I can confirm now that it works in Amarok 1.4.9.1 (using KDE 3.5.10 on
Hardy).

Many thanks!

-- 
amarok: Watch folders for changes doesn't work - no automatic collection 
updates
https://bugs.launchpad.net/bugs/37346
You received this bug notification because you are a member of Kubuntu
Bugs, which is a direct subscriber.

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


[Bug 44740] Re: [i855] Windows not redrawn properly after resume from suspend or hibernate

2009-05-24 Thread Gero Mudersbach
I am experiencing this bug with jaunty. I haven't had a problem on
intrepid. See screenshot.

00:02.0 VGA compatible controller: Intel Corporation Mobile 945GME Express 
Integrated Graphics Controller (rev 03)
Subsystem: ASUSTeK Computer Inc. Device 8340
  
[...]
Kernel modules: intelfb 
  

00:02.1 Display controller: Intel Corporation Mobile 945GM/GMS/GME, 943/940GML 
Express Integrated Graphics Controller (rev 03)
Subsystem: ASUSTeK Computer Inc. Device 8340
  

Xorg uses /usr/lib/xorg/modules/drivers//intel_drv.so


** Attachment added: Screenshot on Kubuntu Jaunty showing the redraw problem
   http://launchpadlibrarian.net/27114677/bug-kubuntu-gfx2.png

-- 
[i855] Windows not redrawn properly after resume from suspend or hibernate
https://bugs.launchpad.net/bugs/44740
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 44740] Re: [i855] Windows not redrawn properly after resume from suspend or hibernate

2009-05-24 Thread Gero Mudersbach

** Attachment added: Output of lspci -v
   http://launchpadlibrarian.net/27114712/lspci.txt

-- 
[i855] Windows not redrawn properly after resume from suspend or hibernate
https://bugs.launchpad.net/bugs/44740
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 44740] Re: [i855] Windows not redrawn properly after resume from suspend or hibernate

2009-05-24 Thread Gero Mudersbach
I'm not sure if the problem I am having is related to this bug or to bug
#326008.

-- 
[i855] Windows not redrawn properly after resume from suspend or hibernate
https://bugs.launchpad.net/bugs/44740
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 217138] Re: Please include cryptsetup on live CD

2009-02-27 Thread Gero Mudersbach
I would like to see this, too. It would really help if cryptsetup and
lvm2 package is already installed in the live image and related modules
(dm-mod, dm-crypt, aes) would be already loaded.

As an exmaple case you would need it after your harddisk got corrupted
and you installed with alternate cd and lvm encrypted volumes. To access
your data and fix things you now need a network connection, install
cryptsetup, lvm2 and load the modules (intrepid).

-- 
Please include cryptsetup on live CD
https://bugs.launchpad.net/bugs/217138
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 147597] Re: xorg-server segfaults with intel (i810) driver and looses itself in infinite respawn

2008-12-10 Thread Gero Mudersbach
Yes, I had this yesterday, too. Seems to be a problem with intrepid, it
didn't occur with hardy.

This is the bt:
Backtrace:
0: /usr/bin/X(xf86SigHandler+0x79) [0x80c3009]
1: [0xb7fdb400]
2: /usr/lib/xorg/modules/drivers//intel_drv.so(I830WaitLpRing+0x1dc) 
[0xb7a411ac]
3: /usr/lib/xorg/modules/drivers//intel_drv.so(I830Sync+0x1c3) [0xb7a415e3]
4: /usr/lib/xorg/modules/drivers//intel_drv.so [0xb7a4c8d0]
5: /usr/lib/xorg/modules/drivers//intel_drv.so [0xb7a4ca30]
6: /usr/bin/X [0x80d6b0a]
7: /usr/lib/xorg/modules/extensions//libglx.so [0xb7b05be9]
8: /usr/bin/X(AbortDDX+0x79) [0x80a8b09]
9: /usr/bin/X(AbortServer+0x28) [0x813c498]
10: /usr/bin/X(FatalError+0x63) [0x813caa3]
11: /usr/lib/xorg/modules/drivers//intel_drv.so(I830WaitLpRing+0x201) 
[0xb7a411d1]
12: /usr/lib/xorg/modules/drivers//intel_drv.so(I830Sync+0x1c3) [0xb7a415e3]
13: /usr/lib/xorg/modules/drivers//intel_drv.so [0xb7a697ea]
14: /usr/lib/xorg/modules//libexa.so(exaWaitSync+0x65) [0xb791b045]
15: /usr/lib/xorg/modules//libexa.so(ExaDoPrepareAccess+0x7e) [0xb791c23e]
16: /usr/lib/xorg/modules//libexa.so(ExaCheckPutImage+0x103) [0xb7923e03]
17: /usr/lib/xorg/modules//libexa.so [0xb791d585]
18: /usr/bin/X [0x817948d]
19: /usr/bin/X(ProcPutImage+0x15e) [0x808951e]
20: /usr/bin/X(Dispatch+0x34f) [0x808c89f]
21: /usr/bin/X(main+0x47d) [0x8071d1d]
22: /lib/tls/i686/cmov/libc.so.6(__libc_start_main+0xe5) [0xb7bdd685]
23: /usr/bin/X [0x8071101]
Saw signal 11.  Server aborting.
(II) AIGLX: Suspending AIGLX clients for VT switch
Error in I830WaitLpRing(), timeout for 2 seconds
pgetbl_ctl: 0x3ffc0001 getbl_err: 0x
ipeir: 0x iphdr: 0x0211
LP ring tail: 0x01d0 head: 0x00011774 len: 0x0001f001 start 0x
eir: 0x esr: 0x emr: 0x
instdone: 0xfa41 instpm: 0x
memmode: 0x0306 instps: 0x800f04c4
hwstam: 0xfffe ier: 0x0002 imr: 0x iir: 0x0070
Ring at virtual 0xa77fc000 head 0x11774 tail 0x1d0 count 14999
Ring at virtual 0xa77fc000 head 0x11774 tail 0x1d0 count 14999
[...]
Ring end
space: 71068 wanted 131064

-- 
xorg-server segfaults with intel (i810) driver and looses itself in infinite 
respawn
https://bugs.launchpad.net/bugs/147597
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 264969] Re: rapidsvn Segmentation fault after svn add

2008-09-08 Thread Gero Mudersbach
Same problem here, rapidsvn and kdesvn both don't work after upgrade of
subversion

-- 
rapidsvn Segmentation fault after svn add
https://bugs.launchpad.net/bugs/264969
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 232453] Re: bmpx crashes when you start playing

2008-07-13 Thread Gero Mudersbach
I had the same problem when trying to play from shoutcast (MP3 stream).
After installing gstreamer-fluendo-mp3 it worked.

-- 
bmpx crashes when you start playing
https://bugs.launchpad.net/bugs/232453
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 93360] Re: Dhcdbd doesn't recognize permanent (-1) DHCP leases

2008-05-07 Thread Gero Mudersbach
@Gisbert

These log messages may have nothing to do with your wifi not working. I
have theses log messages and wifi is working perfectly well. Maybe you
should open a new bug for this describing the hardware (what chipset do
you have) of the machine. You may also try to post it to a forum. I am
willing to help you solve the problem there.

-- 
Dhcdbd doesn't recognize permanent (-1) DHCP leases
https://bugs.launchpad.net/bugs/93360
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 225550] [NEW] Crash: Installing new plugins results in a segmentation fault

2008-05-02 Thread Gero Mudersbach
Public bug reported:

After a fresh install of hardy I cannot install plugins into drpython
anymore.

Steps to reproduce:
1. Install package drpython
2. Start drpython
3. Go to Options-Configure Plugins-Install
4. Select a mirror
5. While trying to fetch the list of pugins drpython crashes with a segfault

Expected behavior:
Fetch plugin list and provide add function

It worked on gutsy.

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

-- 
Crash: Installing new plugins results in a segmentation fault
https://bugs.launchpad.net/bugs/225550
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 200548] [NEW] Reproducable crash on specific websites

2008-03-10 Thread Gero Mudersbach
Public bug reported:

Try this page and konqueror will crash (libkhtml):

http://www.adobe.com/de/products/acrobat/readstep2_allversions.html

I tried on different machines all with Kubuntu Gutsy with latest patches
installed.

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

-- 
Reproducable crash on specific websites
https://bugs.launchpad.net/bugs/200548
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 200548] Re: Reproducable crash on specific websites

2008-03-10 Thread Gero Mudersbach
Sorry for not being specific:

As this bug is marked for kdebase it only applies to Konqueror and gutsy
(Konqueror 3.5.8, KDE 3.5.8).

-- 
Reproducable crash on specific websites
https://bugs.launchpad.net/bugs/200548
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 162667] Re: missing kdefx prevents koffice2 to start

2008-03-07 Thread Gero Mudersbach
Also, in the original kde4 packages there is no libkdefx...

-- 
missing kdefx prevents koffice2 to start
https://bugs.launchpad.net/bugs/162667
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 162667] Re: missing kdefx prevents koffice2 to start

2008-03-07 Thread Gero Mudersbach
As anybody can see, there is no libkdefx.so or libkdefx.so.5 in
http://packages.ubuntu.com/gutsy/i386/kdelibs5/filelist

So, where is it? :)

-- 
missing kdefx prevents koffice2 to start
https://bugs.launchpad.net/bugs/162667
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 105778] Re: Suspend / Hibernation crash wpa_supplicant

2008-03-05 Thread Gero Mudersbach
Same problem here. If I kill wpa_supplicant after resume then most of the times 
NetworkManager works again. 
Nothing in the logs about any errors can be found. (K)NetworkManager tries to 
connect, sometimes it connects but the connection is lost right after that 
again. Sometimes it isn't possbile to get any connection. The wireless networks 
available are shown in the list though.

Hardware: ipw2200

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

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


[Bug 181221] Re: The application unknown (nspluginviewer) crashed and caused the signal 11 (SIGSEGV)

2008-02-08 Thread Gero Mudersbach
I reverted back to an older version that I downloaded from the adobe website:
http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_14266sliceId=2

The version I am using (and that is working now)
is:install_flash_player_9r48_linux.tar.gz

-- 
The application unknown (nspluginviewer) crashed and caused the signal 11 
(SIGSEGV)
https://bugs.launchpad.net/bugs/181221
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 181221] Re: The application unknown (nspluginviewer) crashed and caused the signal 11 (SIGSEGV)

2008-02-08 Thread Gero Mudersbach
I have the problem since yesterday (I updated with adept-notfier to
flashplugin-nonfree 9.0.48.0.2+really0ubuntu12.1). Before that
everything worked perfectly with konqueror. Now flash is only working
with firefox...

-- 
The application unknown (nspluginviewer) crashed and caused the signal 11 
(SIGSEGV)
https://bugs.launchpad.net/bugs/181221
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 120834] Re: intel gm965 freezes with 3d applications

2008-02-06 Thread Gero
I experience this bug with Ubuntu Gutsy (Kubuntu alternate-installation
on AMD64) on a Dell Optiplex 745 (a desktop computer), one graphics
controller Intel 965 with one or two monitors connected. I also tried to
install the newer driver package xserver-xorg-video-intel from Hardy
(Version 2.2.0+git20080107-1ubuntu2 instead of 2.1.1-0ubuntu9), it makes
no difference.

An excerpt from lspci:
00:02.0 VGA compatible controller: Intel Corporation 82Q963/Q965 Integrated 
Graphics Controller (rev 02)
00:02.1 Display controller: Intel Corporation 82Q963/Q965 Integrated Graphics 
Controller (rev 02)

-- 
intel gm965 freezes with 3d applications
https://bugs.launchpad.net/bugs/120834
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 177518] Re: opengl total freeze using DRI with intel graphics chip

2008-02-05 Thread Gero
I've got a similar experience with intel 965 with or without explicitly
loading the dri-module:

I tried to use the commercial CFD-mesh-generator IcemCFD with Ubuntu
Gutsy (Kubuntu alternate-installation on AMD64) on a Dell Optiplex 745,
one graphics controller Intel 965 with two monitors connected. First all
seems to do well but after a couple of IcemCFD-operations mouse and
keyboard input don't work, the screen is messed up and you need a hard
reboot.

In order to reproduce the error more easily (and without the need for an
IcemCFD-Licence) I tested gmsh which didn't seem to have problems. I
guess from the slow display that it doesn't use OpenGL/Mesa.

Next I compiled the contents of the mesademos-package. Those demos can
lead to the same experience: When more than one of them is running and
the windows are moved fast on the screen one over the other,  sooner or
later the system crashes (most of the time). The demos terrain,
tunnel, fire and bounce were my favorite candidates, two or three
of them, some window-moving preferably also from one screen to the other
and one over the other, and it took most certainly less than a minute to
stop my computer.

I tested three different setups to check wether the dualhead
configuration is the problem: First the dual head configuration with
correct resolution on both screens. For setting the correct resolution
on both screens I call the xrandr-utility from within
/etc/kde3/kdm/Xsetup: (/usr/bin/xrandr --output TMDS-1 --auto). Second I
skip the xrandr call which leads to a wrong aspect ratio on the second
screen connected to TMDS-1 since it is a wide screen 16:9 and the other
is 4:3. It makes no difference. Last I use only one screen. This does
not help either.

I also tried to install the newer driver package xserver-xorg-video-
intel from Hardy (Version 2.2.0+git20080107-1ubuntu2 instead of
2.1.1-0ubuntu9), it did not help.

I tried with and without explicitly loading the dri-module, but that
does not seem to have any effect. In the logfile it says that the dri-
module is loaded though in the xorg.conf there is no section Module at
all. How can I prevent xorg from loading the dri-module?

An excerpt from lspci:
00:02.0 VGA compatible controller: Intel Corporation 82Q963/Q965 Integrated 
Graphics Controller (rev 02)
00:02.1 Display controller: Intel Corporation 82Q963/Q965 Integrated Graphics 
Controller (rev 02)

Attached are the xorg.conf for the one-screen-configuration and the
corresponding logfile.


** Attachment added: xorg.conf
   http://launchpadlibrarian.net/11776296/xorg.conf

-- 
opengl total freeze using DRI with intel graphics chip
https://bugs.launchpad.net/bugs/177518
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 177518] Re: opengl total freeze using DRI with intel graphics chip

2008-02-05 Thread Gero
... the logfile

** Attachment added: Xorg.0.log
   http://launchpadlibrarian.net/11776321/Xorg.0.log

-- 
opengl total freeze using DRI with intel graphics chip
https://bugs.launchpad.net/bugs/177518
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 147597] Re: xorg-server segfaults with intel (i810) driver and looses itself in infinite respawn

2007-12-27 Thread Gero Mudersbach
Perhaps this is related to the following bug:
http://bugs.freedesktop.org/show_bug.cgi?id=12772

It's about intelfb and X driver incompatibility (won't fix).

-- 
xorg-server segfaults with intel (i810) driver and looses itself in infinite 
respawn
https://bugs.launchpad.net/bugs/147597
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 131276] Re: X does not use preferred mode when connected to Samsung 225bw

2007-10-01 Thread Gero Mudersbach
Forget that last comment, surprisingly it works with Kubuntu 7.10 beta
...

-- 
X does not use preferred mode when connected to Samsung 225bw
https://bugs.launchpad.net/bugs/131276
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 147597] xorg-server segfaults with intel (i810) driver and looses itself in infinite respawn

2007-10-01 Thread Gero Mudersbach
Public bug reported:

Steps to reproduce:

There are no specific steps required such as suspend/resume or using
video overlay apps. It happens without being reproducible with certain
steps required to make X crash.

The server crashes with signal 11 and then looses itself in an infinite
respawn, the machine has to be rebooted for normal operation.

Error messages in Xorg log:

Error in I830WaitLpRing(), timeout for 2 seconds
pgetbl_ctl: 0x3ffe0001 pgetbl_err: 0x0
ipeir: 0 iphdr: 0
LP ring tail: 408 head: 0 len: 1f001 start 0
eir: 0 esr: 1 emr: 
instdone: ffc1 instpm: 0
memmode: 108 instps: 20
hwstam:  ier: 0 imr:  iir: 0

(see attached xorg log for more details)

** Affects: xorg-server (Ubuntu)
 Importance: Undecided
 Status: New

-- 
xorg-server segfaults with intel (i810) driver and looses itself in infinite 
respawn
https://bugs.launchpad.net/bugs/147597
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 147597] Re: xorg-server segfaults with intel (i810) driver and looses itself in infinite respawn

2007-10-01 Thread Gero Mudersbach

** Attachment added: Xorg log for SEGV crash with intel driver
   http://launchpadlibrarian.net/9616151/Xorg.0.log-crash.txt

-- 
xorg-server segfaults with intel (i810) driver and looses itself in infinite 
respawn
https://bugs.launchpad.net/bugs/147597
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 147597] Re: xorg-server segfaults with intel (i810) driver and looses itself in infinite respawn

2007-10-01 Thread Gero Mudersbach
Just for the records: the crash happens on gutsy (kubuntu) beta, xorg-
server version is 1.3.0.0.dfsg-12ubuntu8

-- 
xorg-server segfaults with intel (i810) driver and looses itself in infinite 
respawn
https://bugs.launchpad.net/bugs/147597
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 131276] Re: X does not use preferred mode when connected to Samsung 225bw

2007-09-27 Thread Gero Mudersbach
Will this bug be resolved in 7.10 final? It still exists in 7.10 beta.
For me, it is a showstopper!

-- 
X does not use preferred mode when connected to Samsung 225bw
https://bugs.launchpad.net/bugs/131276
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 131276] X does not use preferred mode when connected to Samsung 225bw

2007-08-09 Thread Gero Mudersbach
Public bug reported:

This applies to gutsy version of xorg-server (1.3.0):

When connecting the flatpanel monitor Samsung 225BW, X does not use the
preferred mode of 1680x1050.

There is already a patch for this bug in upstream:
http://bugs.freedesktop.org/show_bug.cgi?id=10814

I tried to patch the gutsy patched sources, but I have problems with the
dependencies (build fails). So I request hereby to implement this patch
from upstream, so the next available built will work fine with the
225BW. Thanks!

** Affects: xorg-server (Ubuntu)
 Importance: Undecided
 Status: New

-- 
X does not use preferred mode when connected to Samsung 225bw
https://bugs.launchpad.net/bugs/131276
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 131276] Re: X does not use preferred mode when connected to Samsung 225bw

2007-08-09 Thread Gero Mudersbach

** Attachment added: Modes patch for the samsung 225bw
   http://launchpadlibrarian.net/8744918/xorg-server-sam225bw-quirks.patch

-- 
X does not use preferred mode when connected to Samsung 225bw
https://bugs.launchpad.net/bugs/131276
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 37346] Re: amarok: Watch folders for changes doesn't work - no automatic collection updates

2007-02-05 Thread gero
I don't see why this bug has status Needs Info. There doesn't seem to
be any outstanding request for info but we have six confirmations.
Changing status.

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

-- 
amarok: Watch folders for changes doesn't work - no automatic collection 
updates
https://launchpad.net/bugs/37346

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


[Bug 36745] Re: ID3 encoding: UTF-8 not properly supported

2006-08-17 Thread gero
** Changed in: grip (Ubuntu)
   Status: Unconfirmed = Confirmed

-- 
ID3 encoding: UTF-8 not properly supported
https://launchpad.net/bugs/36745

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