[Bug 796006] Re: Samsung Galaxy S Android 2.3.4 tethering does not work any longer

2012-05-06 Thread Markus Kolb
The current upstream patch which might have a chance to get merged...
[PATCH net v2] cdc_ether: Ignore bogus union descriptor for RNDIS devices

** Patch added: net_usb_cdc_ether_android_rndis_quirk.patch
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/796006/+attachment/3133043/+files/net_usb_cdc_ether_android_rndis_quirk.patch

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

Title:
  Samsung Galaxy S Android 2.3.4 tethering does not work any longer

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

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


[Bug 796006] Re: Samsung Galaxy S Android 2.3.4 tethering does not work any longer

2012-01-12 Thread Markus Kolb
Are you joking with invalid?
This is a upstream bug, which is discussed in the linux kernel ml!

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

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

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

Title:
  Samsung Galaxy S Android 2.3.4 tethering does not work any longer

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

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


[Bug 796006] Re: Samsung Galaxy S Android 2.3.4 tethering does not work any longer

2011-10-31 Thread Markus Kolb
The problem with dhclient ist a different problem.
Here the kernel driver does not detect and support the tether hw device and so 
there is no network interface usbX.

I don't know if this is really a bug in Linux kernel driver. Maybe the USB 
standard says the master interface need to start with 0.
Then the bug is in Android OS.
Newer Android versions = 2.3.7 has switched back the master interface nr to 0 
and there it works again...

Nevertheless I am disappointed that there is no comment by Ubuntu or
Google developers for over 4 months about this although I've provided a
patch to show the problem.

Is the kernel supported, Mr. Mark Shuttleworth!?

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

Title:
  Samsung Galaxy S Android 2.3.4 tethering does not work any longer

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

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


[Bug 796006] Re: Samsung Galaxy S Android 2.3.4 tethering does not work any longer

2011-06-30 Thread Markus Kolb
This is the DEBUG output...


[  659.660272] usb 1-4: new high speed USB device using ehci_hcd and address 6
[  659.812616] rndis_host 1-4:1.0: master #4/  (null) slave #5/ 
 (null)
[  659.812624] usb 1-4: bad CDC descriptors
[  659.812851] rndis_wlan 1-4:1.0: master #4/  (null) slave #5/ 
 (null)
[  659.812858] usb 1-4: bad CDC descriptors


And this the corresponding code...

/* we need a master/control interface (what we're
 * probed with) and a slave/data interface; union
 * descriptors sort this all out.
 */
info-control = usb_ifnum_to_if(dev-udev,
info-u-bMasterInterface0);
info-data = usb_ifnum_to_if(dev-udev,
info-u-bSlaveInterface0);
if (!info-control || !info-data) {
dev_dbg(intf-dev,
master #%u/%p slave #%u/%p\n,
info-u-bMasterInterface0,
info-control,
info-u-bSlaveInterface0,
info-data);
goto bad_desc;
}

Any ideas what to do next?

Could the problem be that the bInterfaceNumber starts with 0. 
So there is 0 and 1.
And the ifnum for master is 4 and for slave 5.
So that usb_ifnum_to_if doesn't find the configuration...
Is the condition bInterfaceNumber == ifnum the bug?

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

Title:
  Samsung Galaxy S Android 2.3.4 tethering does not work any longer

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

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


[Bug 796006] Re: Samsung Galaxy S Android 2.3.4 tethering does not work any longer

2011-06-30 Thread Markus Kolb
I write this comment via USB tethering fixed with attached patch.
Consider this patch as a workaround. 
My knowledge of coding for Linux kernel, USB and the tether hardware is close 
to be zero.
It works currently but it is no real solution. There should be a correct way 
to get the true interface numbers of master and slave.
E.g. there is a bFirstInterface. I think this might be the information to start 
with. But how to get this from the USB stack? I don't know up to now.


** Patch added: Ubuntu_bug_796006.patch
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/796006/+attachment/2185806/+files/Ubuntu_bug_796006.patch

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

Title:
  Samsung Galaxy S Android 2.3.4 tethering does not work any longer

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

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


[Bug 796006] Re: Samsung Galaxy S Android 2.3.4 tethering does not work any longer

2011-06-13 Thread Markus Kolb
I add the lsusb output with tether switch enabled in phone menu.
Then the settings are different.
I've had a look in the kernel sources for the cdc_error message and maybe the 
kernel
driver has only problems with the correct detection.
Is there a precompiled ubuntu kernel with dev_dbg printk output?

** Attachment added: lsusb_v_v.txt
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/796006/+attachment/2167169/+files/lsusb_v_v.txt

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

Title:
  Samsung Galaxy S Android 2.3.4 tethering does not work any longer

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

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


[Bug 796006] [NEW] Samsung Galaxy S Android 2.3.4 tethering does not work any longer

2011-06-11 Thread Markus Kolb
Public bug reported:

When upgrading my Samsung Galaxy S to Android 2.3.4 the USB tehering does not 
work any longer.
There was no problem with Android 2.2.1

Is there any workaround to get this working again?

ProblemType: Bug
DistroRelease: Ubuntu 11.04
Package: linux-image-2.6.38-8-generic 2.6.38-8.42
ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
Uname: Linux 2.6.38-8-generic x86_64
NonfreeKernelModules: nvidia
AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.23.
AplayDevices:
  List of PLAYBACK Hardware Devices 
 card 0: Intel [HDA Intel], device 0: ALC268 Analog [ALC268 Analog]
   Subdevices: 1/1
   Subdevice #0: subdevice #0
Architecture: amd64
ArecordDevices:
  List of CAPTURE Hardware Devices 
 card 0: Intel [HDA Intel], device 0: ALC268 Analog [ALC268 Analog]
   Subdevices: 1/1
   Subdevice #0: subdevice #0
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  makolb 1399 F pulseaudio
CRDA: Error: [Errno 2] Datei oder Verzeichnis nicht gefunden
Card0.Amixer.info:
 Card hw:0 'Intel'/'HDA Intel at 0xf830 irq 47'
   Mixer name   : 'Realtek ALC268'
   Components   : 'HDA:10ec0268,10280275,0013'
   Controls  : 12
   Simple ctrls  : 7
Date: Sat Jun 11 20:21:25 2011
HibernationDevice: RESUME=UUID=ae9261d8-4373-4212-b4a5-2c18fc57bc15
InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release amd64 (20110427.1)
MachineType: Dell Inc. Vostro1710
ProcEnviron:
 LANGUAGE=de_DE:en
 PATH=(custom, user)
 LANG=de_DE.UTF-8
 SHELL=/bin/bash
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.38-8-generic 
root=UUID=8c3136dd-666b-4ba9-9acb-3b9eff47adba ro quiet splash vt.handoff=7
RelatedPackageVersions:
 linux-restricted-modules-2.6.38-8-generic N/A
 linux-backports-modules-2.6.38-8-generic  N/A
 linux-firmware1.52
SourcePackage: linux
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 10/09/2008
dmi.bios.vendor: Dell Inc.
dmi.bios.version: A10
dmi.board.name: 0X805C
dmi.board.vendor: Dell Inc.
dmi.chassis.type: 8
dmi.chassis.vendor: Dell Inc.
dmi.chassis.version: N/A
dmi.modalias: 
dmi:bvnDellInc.:bvrA10:bd10/09/2008:svnDellInc.:pnVostro1710:pvrNull:rvnDellInc.:rn0X805C:rvr:cvnDellInc.:ct8:cvrN/A:
dmi.product.name: Vostro1710
dmi.product.version: Null
dmi.sys.vendor: Dell Inc.

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


** Tags: amd64 apport-bug natty running-unity

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

Title:
  Samsung Galaxy S Android 2.3.4 tethering does not work any longer

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

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


[Bug 796006] Re: Samsung Galaxy S Android 2.3.4 tethering does not work any longer

2011-06-11 Thread Markus Kolb
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/796006

Title:
  Samsung Galaxy S Android 2.3.4 tethering does not work any longer

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

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


[Bug 531836] Re: [Lucid] resume from suspend to ram with no screen

2010-07-02 Thread Markus Kolb
This works in Lucid for me. Sorry for late response.

-- 
[Lucid] resume from suspend to ram with no screen
https://bugs.launchpad.net/bugs/531836
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 504998] Re: Laptop screen brightness resets to 0 when returning from suspend

2010-07-02 Thread Markus Kolb
*** This bug is a duplicate of bug 409664 ***
https://bugs.launchpad.net/bugs/409664

** This bug has been marked a duplicate of bug 409664
   Screen Dimmed After Resume

-- 
Laptop screen brightness resets to 0 when returning from suspend
https://bugs.launchpad.net/bugs/504998
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 601196] [NEW] i18n is not supported [patch]

2010-07-02 Thread Markus Kolb
Public bug reported:

Binary package hint: gresistor

I've patched the gresistor code to support gettext locale translation files.
Added also German translation to desktop file and a de.po.
Out of the de.po the gresistor.mo file is generated during build with expanded 
rules file.
I think it should be no problem to include the changes in the maverick package, 
too.

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

-- 
i18n is not supported [patch]
https://bugs.launchpad.net/bugs/601196
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 601196] Re: i18n is not supported [patch]

2010-07-02 Thread Markus Kolb

** Patch added: diff.gz for lucid
   http://launchpadlibrarian.net/51304835/gresistor_0.0.1-0ubuntu2.diff.gz

-- 
i18n is not supported [patch]
https://bugs.launchpad.net/bugs/601196
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 601196] Re: i18n is not supported [patch]

2010-07-02 Thread Markus Kolb

** Attachment added: gresistor_0.0.1-0ubuntu2.dsc for lucid
   http://launchpadlibrarian.net/51304909/gresistor_0.0.1-0ubuntu2.dsc

-- 
i18n is not supported [patch]
https://bugs.launchpad.net/bugs/601196
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 331711] Re: gresistor crashed with AttributeError in bindtextdomain()

2010-07-02 Thread Markus Kolb
This has to do something with special locale settings.
Locales and gettext are not supported by upstream (see #601196).

mak...@horatio:~$ locale
LANG=de_AT.utf8
LC_CTYPE=de_AT.utf8
LC_NUMERIC=de_AT.utf8
LC_TIME=de_AT.utf8
LC_COLLATE=de_AT.utf8
LC_MONETARY=de_AT.utf8
LC_MESSAGES=de_AT.utf8
LC_PAPER=de_AT.utf8
LC_NAME=de_AT.utf8
LC_ADDRESS=de_AT.utf8
LC_TELEPHONE=de_AT.utf8
LC_MEASUREMENT=de_AT.utf8
LC_IDENTIFICATION=de_AT.utf8
LC_ALL=
mak...@horatio:~$ LANG=C gresistor
mak...@horatio:~$ LANG=de gresistor

(process:12116): Gtk-WARNING **: Locale not supported by C library.
Using the fallback 'C' locale.
Warning gresistor unsupported locale setting
Traceback (most recent call last):
  File /usr/bin/gresistor, line 26, in module
bindtextdomain(app_name, locale_dir)
  File /usr/lib/python2.6/dist-packages/SimpleGladeApp.py, line 56, in 
bindtextdomain
__builtins__.__dict__[_] = lambda x : x
AttributeError: 'dict' object has no attribute '__dict__'
mak...@horatio:~$ LANG=de_AT gresistor

(process:12117): Gtk-WARNING **: Locale not supported by C library.
Using the fallback 'C' locale.
Warning gresistor unsupported locale setting
Traceback (most recent call last):
  File /usr/bin/gresistor, line 26, in module
bindtextdomain(app_name, locale_dir)
  File /usr/lib/python2.6/dist-packages/SimpleGladeApp.py, line 56, in 
bindtextdomain
__builtins__.__dict__[_] = lambda x : x
AttributeError: 'dict' object has no attribute '__dict__'
mak...@horatio:~$ LANG=de_AT.utf-8 gresistor
mak...@horatio:~$ LC_ALL=de gresistor

(process:12119): Gtk-WARNING **: Locale not supported by C library.
Using the fallback 'C' locale.
Warning gresistor unsupported locale setting
Traceback (most recent call last):
  File /usr/bin/gresistor, line 26, in module
bindtextdomain(app_name, locale_dir)
  File /usr/lib/python2.6/dist-packages/SimpleGladeApp.py, line 56, in 
bindtextdomain
__builtins__.__dict__[_] = lambda x : x
AttributeError: 'dict' object has no attribute '__dict__'
mak...@horatio:~$ LC_ALL=C gresistor
mak...@horatio:~$

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

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


[Bug 488720] Re: Suspend/resume with nvidia driver fails

2010-03-06 Thread Markus Kolb
For me, with the drm kernel, it works better but not 100 percent.
Sometimes/rarely I still get a black screen after resuming from suspend. No VT 
switching possible.
After waking up from standby I've just logged in to GDM and tried to switch to 
VT = black screen and no VT.
Switching back to X doesn't work either.
Looks like a kernel bug. Hopefully this will get fixed until lucid release. My 
laptop already works perfectly with jaunty.
By the way the standby doesn't lock the user, the session is logged out, but 
this should be another bug.

-- 
Suspend/resume with nvidia driver fails
https://bugs.launchpad.net/bugs/488720
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 488720] Re: Suspend/resume with nvidia driver fails

2010-03-04 Thread Markus Kolb
Ok, commenting out the line works for me at the problem after resume
from suspend to disk.

-- 
Suspend/resume with nvidia driver fails
https://bugs.launchpad.net/bugs/488720
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 504998] Re: Laptop screen brightness resets to 0 when returning from suspend

2010-03-04 Thread Markus Kolb
I see this currently in Lucid, too.

-- 
Laptop screen brightness resets to 0 when returning from suspend
https://bugs.launchpad.net/bugs/504998
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 531836] [NEW] [Lucid] resume from suspend to ram with no screen

2010-03-04 Thread Markus Kolb
Public bug reported:

Binary package hint: pm-utils

The suspend to ram works as expected.
On resume from the suspend I don't get any output on screen. It stays black.
I see hd activity and hearing the bell sound from password dialog.
Trying to switch to another console doesn't do any visible change.
This worked already in Jaunty without problems. Please fix it for Lucid release!

ProblemType: Bug
Architecture: amd64
Date: Thu Mar  4 11:54:49 2010
DistroRelease: Ubuntu 10.04
NonfreeKernelModules: nvidia
Package: pm-utils 1.3.0~rc3-2 [modified: 
usr/lib/pm-utils/sleep.d/98-video-quirk-db-handler]
PackageArchitecture: all
ProcEnviron:
 PATH=(custom, user)
 LANG=de_AT.UTF-8
 SHELL=/bin/bash
ProcVersionSignature: Ubuntu 2.6.32-15.22-generic
SourcePackage: pm-utils
Uname: Linux 2.6.32-15-generic x86_64

** Affects: pm-utils (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug lucid

-- 
[Lucid] resume from suspend to ram with no screen
https://bugs.launchpad.net/bugs/531836
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 531836] Re: [Lucid] resume from suspend to ram with no screen

2010-03-04 Thread Markus Kolb

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

-- 
[Lucid] resume from suspend to ram with no screen
https://bugs.launchpad.net/bugs/531836
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 531534] [NEW] gdm login restarts the first time

2010-03-03 Thread Markus Kolb
Public bug reported:

Binary package hint: gdm

After boot the GDM greeter shows my login name.
I click on name and  try to enter the password.
But suddenly the screen goes black and the greeter loads again.
The 2nd time I click the login name and I can enter password and login.

ProblemType: Bug
Architecture: amd64
Date: Wed Mar  3 19:38:16 2010
DistroRelease: Ubuntu 10.04
NonfreeKernelModules: nvidia
Package: gdm 2.29.6-0ubuntu4
ProcEnviron:
 PATH=(custom, user)
 LANG=de_AT.UTF-8
 SHELL=/bin/bash
ProcVersionSignature: Ubuntu 2.6.32-15.22-generic
SourcePackage: gdm
Uname: Linux 2.6.32-15-generic x86_64

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


** Tags: amd64 apport-bug lucid

-- 
gdm login restarts the first time
https://bugs.launchpad.net/bugs/531534
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 531534] Re: gdm login restarts the first time

2010-03-03 Thread Markus Kolb

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

-- 
gdm login restarts the first time
https://bugs.launchpad.net/bugs/531534
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 531534] Re: gdm login restarts the first time

2010-03-03 Thread Markus Kolb
*** This bug is a duplicate of bug 525386 ***
https://bugs.launchpad.net/bugs/525386

** This bug has been marked a duplicate of bug 525386
   GDM restarts once after boot in Lucid

-- 
gdm login restarts the first time
https://bugs.launchpad.net/bugs/531534
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 107425] Re: cant print

2007-05-15 Thread Markus Kolb
The workaround with the touched ppd file works for me, too.

-- 
cant print
https://bugs.launchpad.net/bugs/107425
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 107425] Re: cant print

2007-05-02 Thread Markus Kolb
I think and got told from Bug #66379 that I've the problem, too.
I've no problem with other applications so far and I remember the problem 
already existed in Dapper.
In which package is the gtk-demo stuff?

ii  evince 0.8.1-0ubuntu1

== System information ==
Release   : Ubuntu 7.04 (feisty)
Architecture  : i686
Kernel: 2.6.20-15-generic
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8, LC_PAPER=de_DE.UTF-8
/etc/papersize: a4

== Configured printers ==
device for Queue: ipp://192.168.0.130/printers/tp0

== Versions of important printing packages ==
ii  cupsys   1.2.8-0ubuntu8  Common UNIX Printing 
System(tm) - server
ii  cupsys-driver-gutenprint 5.0.0.99.1-0ubuntu2 printer drivers for CUPS
ii  foomatic-db  20070327-0ubuntu1   OpenPrinting printer 
support - database
ii  foomatic-db-engine   3.0.2-20070303-0ubuntu1 OpenPrinting printer 
support - programs
ii  foomatic-db-gimp-print   5.0.0.99.1-0ubuntu2 OpenPrinting printer 
support - database for 
ii  foomatic-db-gutenprint   5.0.0.99.1-0ubuntu2 OpenPrinting printer 
support - database for 
ii  foomatic-filters 3.0.2-20070323-0ubuntu1 OpenPrinting printer 
support - filters
ii  gs-common0.3.11ubuntu1   Common files for different 
Ghostscript relea
ii  gs-esp   8.15.4.dfsg.1-0ubuntu1  The Ghostscript PostScript 
interpreter - ESP
ii  gs-esp-x 8.15.4.dfsg.1-0ubuntu1  The Ghostscript PostScript 
interpreter - ESP
ii  ijsgutenprint5.0.0.99.1-0ubuntu2 inkjet server - 
Ghostscript driver for Guten
ii  libgnomeprint2.2-0   2.18.0-0ubuntu1 The GNOME 2.2 print 
architecture - runtime f

Created with printingbuginfo script v1.4 
(https://wiki.ubuntu.com/PrintingBugInfoScript)
Tue, 01 May 2007 16:51:30 +0200

---

127.0.0.1 localhost.localdomain localhost menteth

# The following lines are desirable for IPv6 capable hosts
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
ff02::3 ip6-allhosts

# The following lines are desirable for IPv6 capable hosts
# (added automatically by netbase upgrade)

::1 ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
ff02::3 ip6-allhosts

-- 
cant print
https://bugs.launchpad.net/bugs/107425
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 66379] Re: evince does not enable print

2007-05-01 Thread Markus Kolb
Well, here printing is enabled but there is no job generated.
Starting evince from console there is a message: (evince:16402): Gtk-WARNING 
**: Unsupported unit

== System information ==
Release   : Ubuntu 7.04 (feisty)
Architecture  : i686
Kernel: 2.6.20-15-generic
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8, LC_PAPER=de_DE.UTF-8
/etc/papersize: a4

== Configured printers ==
device for Queue: ipp://192.168.0.130/printers/tp0

== Versions of important printing packages ==
ii  cupsys   1.2.8-0ubuntu8  Common UNIX Printing 
System(tm) - server
ii  cupsys-driver-gutenprint 5.0.0.99.1-0ubuntu2 printer drivers for CUPS
ii  foomatic-db  20070327-0ubuntu1   OpenPrinting printer 
support - database
ii  foomatic-db-engine   3.0.2-20070303-0ubuntu1 OpenPrinting printer 
support - programs
ii  foomatic-db-gimp-print   5.0.0.99.1-0ubuntu2 OpenPrinting printer 
support - database for 
ii  foomatic-db-gutenprint   5.0.0.99.1-0ubuntu2 OpenPrinting printer 
support - database for 
ii  foomatic-filters 3.0.2-20070323-0ubuntu1 OpenPrinting printer 
support - filters
ii  gs-common0.3.11ubuntu1   Common files for different 
Ghostscript relea
ii  gs-esp   8.15.4.dfsg.1-0ubuntu1  The Ghostscript PostScript 
interpreter - ESP
ii  gs-esp-x 8.15.4.dfsg.1-0ubuntu1  The Ghostscript PostScript 
interpreter - ESP
ii  ijsgutenprint5.0.0.99.1-0ubuntu2 inkjet server - 
Ghostscript driver for Guten
ii  libgnomeprint2.2-0   2.18.0-0ubuntu1 The GNOME 2.2 print 
architecture - runtime f

Created with printingbuginfo script v1.4 
(https://wiki.ubuntu.com/PrintingBugInfoScript)
Tue, 01 May 2007 16:51:30 +0200

---

127.0.0.1 localhost.localdomain localhost menteth

# The following lines are desirable for IPv6 capable hosts
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
ff02::3 ip6-allhosts

# The following lines are desirable for IPv6 capable hosts
# (added automatically by netbase upgrade)

::1 ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
ff02::3 ip6-allhosts

-- 
evince does not enable print 
https://bugs.launchpad.net/bugs/66379
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 62815] Re: Firefox 1.5.0.7 introduces a crash bug

2006-10-15 Thread Markus Kolb
Here is a patch for the crash problem...
https://bugzilla.mozilla.org/attachment.cgi?id=200886

** Bug watch added: Mozilla Bugzilla #313400
   https://bugzilla.mozilla.org/show_bug.cgi?id=313400

** Also affects: firefox (upstream) via
   https://bugzilla.mozilla.org/show_bug.cgi?id=313400
   Importance: Unknown
   Status: Unknown

-- 
Firefox 1.5.0.7 introduces a crash bug
https://launchpad.net/bugs/62815

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


[Bug 62815] Re: Firefox 1.5.0.7 introduces a crash bug

2006-10-02 Thread Markus Kolb
It seems to be a platform independent bug.
The backtrace is attached.

** Attachment added: Firefox crash backtrace
   http://librarian.launchpad.net/4605425/firefox-crash-bt.txt

-- 
Firefox 1.5.0.7 introduces a crash bug
https://launchpad.net/bugs/62815

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


[Bug 62815] Firefox 1.5.0.7 introduces a crash bug

2006-09-28 Thread Markus Kolb
Public bug reported:

With the dapper security update to 1.5.0.7 Firefox crashes on complex web 
applications.
See http://bugs.typo3.org/view.php?id=4238 for more information.

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

-- 
Firefox 1.5.0.7 introduces a crash bug
https://launchpad.net/bugs/62815

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


[Bug 42608] Re: Ethernet interface not working after reboot

2006-07-09 Thread Markus Kolb
I can confirm this defect.

I have a

:00:09.0 Ethernet controller: Broadcom Corporation BCM4401 100Base-T (rev 
01)
:00:09.0 0200: 14e4:4401 (rev 01)
Subsystem: ASUSTeK Computer Inc. A7V8X motherboard
Subsystem: 1043:80a8

I am not sure if it is the problem of dhclient3 because sometimes after boot 
the process hangs in Dead state and the card got no IP. I think the log entries 
corresponding to this says the network was down.
So was the network still down when dhclient3 started or did dhclient3 only 
thinks it was down?!  I don't know...

I try it now with a interfaces preup sleep line.

Perhaps these bugs are related: #48153 , #33968

-- 
Ethernet interface not working after reboot
https://launchpad.net/bugs/42608

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