[Ubuntu-x-swat] [Bug 214786] Re: Apple USB ISO keyboard has incorrectly swapped keys

2013-02-06 Thread Dario Bertini
(when removing the obsolete error checking from the python script, I
forgot to remove the try, statement... if you use it and get a syntax
error, that's why)

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xkeyboard-config in Ubuntu.
https://bugs.launchpad.net/bugs/214786

Title:
  Apple USB ISO keyboard has incorrectly swapped keys

To manage notifications about this bug go to:
https://bugs.launchpad.net/mactel-support/+bug/214786/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 214786] Re: Apple USB ISO keyboard has incorrectly swapped keys

2013-02-06 Thread Dario Bertini
I'm affected by this problem as well, but the hid_apple fix didn't work
for me

this is weird, since I'm using the hid_apple.conf already to use the
special keys as default:

> cat /etc/modprobe.d/hid_apple.conf
options hid_apple iso_layout=0 fnmode=1

I tried all of the 3 alternatives that have been written here:
http://wiki.debian.org/InstallingDebianOn/Apple/PageFragmentKeyboard

but not even setting it from GRUB is working

I cannot use the xmodmap setting for a different reason, it seems that I'm 
affected by this bug:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-input-evdev/+bug/289781

the weird thing is that I don't have the evdev module loaded (I guess
that the keyboard driver is supplied through usbhid or something like
that), so for now I'm refraining to set that bug back to confirmed

I also tried to use this file for startup:

> cat .config/autostart/xmodmap.desktop 
[Desktop Entry]
Type=Application
Exec=xmodmap -e "keycode 49 = 0x3c 0x3e" -e "keycode 94 = 0x5c 0x7c"
Hidden=false
NoDisplay=false
X-GNOME-Autostart-enabled=false
Name=remap < and \
Comment=

but it doesn't work (it's for the italian layout if you need it)

If I remember correctly, some time ago I also tried to put a script in
/etc/acpi/resume.sh (now probably it should go into /etc/pm/sleep.d/ )
to no avail

and finally, sebastien bacher suggested me to use a gnome-settings-daemon hook:
http://git.gnome.org/browse/gnome-settings-daemon/commit/?id=2ec0fbd38cd9d787fc3ad003f462c537ea795890

I wrote this small script

#! /usr/bin/env python3

import argparse
from subprocess import check_call as call
from os.path import expanduser

parser = argparse.ArgumentParser()
parser.add_argument('-t')
parser.add_argument('-i')
parser.add_argument('name')
args = parser.parse_args()

if __name__ == '__main__':
try:
if args.t in ("added", "present") and args.i == "10":
call(["xmodmap", expanduser("~/.Xmodmap")])

#EOF
(I also added some error checking when debugging it, and 10 is the XID obtained 
from xinput)

and I added it to g-s-d with

gsettings set org.gnome.settings-daemon.peripherals.input-devices
hotplug-command '/path/to/mac_keyboard_fix.py'

but apparently, gnome-settings-daemon receives a device-added signal,
only for device #11(touchpad) and #14(unknown)

(so, this seems to be denying the hypothesis that the problem is due to
the driver loading the keyboard as a completely different keyboard)

right now, I'm not sure why, but when doing a suspend/resume, if I
previously applied the xmodmap, the change retains... but in the
meanwhile I removed the python script, deactivated the .desktop startup
item, and nothing else should be able to change the behaviour after-
resume without also changing it after bootup, so I'm quite baffled

I get fed up by this issue every few months, and I try to find a
workaround that works once and for all (unless something makes the
xmodmap script working, that is)... but now I've spent too much time on
this, I just hope that something/somebody will improve the situation in
the next months

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xkeyboard-config in Ubuntu.
https://bugs.launchpad.net/bugs/214786

Title:
  Apple USB ISO keyboard has incorrectly swapped keys

To manage notifications about this bug go to:
https://bugs.launchpad.net/mactel-support/+bug/214786/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 961140] Re: synclient ClickFinger configuration is ignored

2012-03-21 Thread Dario Bertini
** Description changed:

  This is related, but is not the same bug as
  
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-input-synaptics/+bug/936341
  
  this appeared only recently in the last 2 weeks, and it affects both the
  3 finger (ClickFinger3) and the 2 finger (ClickFInger2) settings
  
  now, by default this is the output of synclient:
  
- ClickFinger1= 1
- ClickFinger2= 3
- ClickFinger3= 0
+ ClickFinger1= 1
+ ClickFinger2= 3
+ ClickFinger3= 0
  
  this is wrong: there's not reason to disable ClickFinger3 while leaving 
enabled ClickFinger2 (and maybe this is the cause for bug 936341)
- if ClickFInger2 & 3 would've been disabled, that'd have been a change in 
behaviour that should be documented
+ if both ClickFInger2 & 3 would've been disabled, that'd have been a change in 
behaviour that should be documented
  
  but now, by changing any of the ClickFinger settings (any of the 1,2 or
  3) the setting is ignored and it generates a button1 event for all of
  these, regardless of it
  
  I found this thread in the ubuntu-devel mailing list, and what I'm
  referring to with "ClickFinger" there seems to be called "click
  actions", it appears that this change may be the cause of this bug, but
  Chase Douglas writes:
  
  "There are no changes for devices that have separate physical buttons."
  
  Instead, I'm stumbling onto this problem on a old macbook3,1 with a
  physical button (synclient correctly reports the ClickPad set at 0)
  
  I'm not sure if this is an unintended consequence on old machine with a
  non-clickpad synaptic touchpad, or if this is expected
  
  if it's the latter, aside from documenting it on the wiki, I think that
  then the ClickFinger options should be removed, if truly the ClickPad
  changes makes them unusable
  
  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: xserver-xorg-input-synaptics 1.5.99.901-0ubuntu1
  ProcVersionSignature: Ubuntu 3.2.0-19.30-generic 3.2.11
  Uname: Linux 3.2.0-19-generic x86_64
  NonfreeKernelModules: wl
  ApportVersion: 1.94.1-0ubuntu2
  Architecture: amd64
  CurrentDmesg: [  125.480542] init: plymouth-stop pre-start process (6216) 
terminated with status 1
  Date: Wed Mar 21 13:06:06 2012
  DistUpgraded: 2012-01-20 16:19:39,336 DEBUG enabling apt cron job
  DistroCodename: precise
  DistroVariant: ubuntu
  InstallationMedia: Kubuntu 11.10 "Oneiric Ocelot" - Release amd64+mac 
(20111012)
  MachineType: Apple Inc. MacBook3,1
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.2.0-19-generic 
root=UUID=0cbf08e2-4a82-472b-835a-54e8ff6da4e3 ro quiet splash vt.handoff=7
  SourcePackage: xserver-xorg-input-synaptics
  UpgradeStatus: Upgraded to precise on 2012-03-17 (3 days ago)
  dmi.bios.date: 03/05/08
  dmi.bios.vendor: Apple Inc.
  dmi.bios.version: MB31.88Z.008E.B02.0803051832
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: Mac-F22788C8
  dmi.board.vendor: Apple Inc.
  dmi.board.version: PVT
  dmi.chassis.asset.tag: Asset Tag#
  dmi.chassis.type: 2
  dmi.chassis.vendor: Apple Inc.
  dmi.chassis.version: Mac-F22788C8
  dmi.modalias: 
dmi:bvnAppleInc.:bvrMB31.88Z.008E.B02.0803051832:bd03/05/08:svnAppleInc.:pnMacBook3,1:pvr1.0:rvnAppleInc.:rnMac-F22788C8:rvrPVT:cvnAppleInc.:ct2:cvrMac-F22788C8:
  dmi.product.name: MacBook3,1
  dmi.product.version: 1.0
  dmi.sys.vendor: Apple Inc.
  version.compiz: compiz 1:0.9.7.0+bzr3035-0ubuntu1
  version.ia32-libs: ia32-libs 20090808ubuntu35
  version.libdrm2: libdrm2 2.4.30-1ubuntu1
  version.libgl1-mesa-dri: libgl1-mesa-dri 8.0.1-0ubuntu5
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 8.0.1-0ubuntu5
  version.xserver-xorg-core: xserver-xorg-core 2:1.11.4-0ubuntu6
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.7.0-0ubuntu1
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 
1:6.14.99~git20111219.aacbd629-0ubuntu2
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.17.0-1ubuntu4
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:0.0.16+git20111201+b5534a1-1build2

** Description changed:

  This is related, but is not the same bug as
  
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-input-synaptics/+bug/936341
  
  this appeared only recently in the last 2 weeks, and it affects both the
  3 finger (ClickFinger3) and the 2 finger (ClickFInger2) settings
  
  now, by default this is the output of synclient:
  
  ClickFinger1= 1
  ClickFinger2= 3
  ClickFinger3= 0
  
  this is wrong: there's not reason to disable ClickFinger3 while leaving 
enabled ClickFinger2 (and maybe this is the cause for bug 936341)
  if both ClickFInger2 & 3 would've been disabled, that'd have been a change in 
behaviour that should be documented
  
  but now, by changing any of the ClickFinger settings (any of the 1,2 or
  3) the setting is 

[Ubuntu-x-swat] [Bug 961140] [NEW] synclient ClickFinger configuration is ignored

2012-03-21 Thread Dario Bertini
Public bug reported:

This is related, but is not the same bug as
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-input-synaptics/+bug/936341

this appeared only recently in the last 2 weeks, and it affects both the
3 finger (ClickFinger3) and the 2 finger (ClickFInger2) settings

now, by default this is the output of synclient:

ClickFinger1= 1
ClickFinger2= 3
ClickFinger3= 0

this is wrong: there's not reason to disable ClickFinger3 while leaving enabled 
ClickFinger2 (and maybe this is the cause for bug 936341)
if both ClickFInger2 & 3 would've been disabled, that'd have been a change in 
behaviour that should be documented

but now, by changing any of the ClickFinger settings (any of the 1,2 or
3) the setting is ignored and it generates a button1 event for all of
these, regardless of it

I found this thread in the ubuntu-devel mailing list
https://lists.ubuntu.com/archives/ubuntu-devel/2012-February/034852.html

what I'm referring to with "ClickFinger" there seems to be called "click
actions", it appears that this change may be the cause of this bug, but
Chase Douglas writes:

"There are no changes for devices that have separate physical buttons."

Instead, I'm stumbling onto this problem on a old macbook3,1 with a
physical button (synclient correctly reports the ClickPad set at 0)

This is quite a problem, since on these devices you can't enable the
right click zone like on the ClickPads (this led me to use an external
mice in the last days)

I'm not sure if this is an unintended consequence on old machine with a
non-clickpad synaptic touchpad, or if this is expected

if it's the latter, aside from documenting it on the wiki, I think that
then the ClickFinger options should be removed, if truly the ClickPad
changes makes them unusable

ProblemType: Bug
DistroRelease: Ubuntu 12.04
Package: xserver-xorg-input-synaptics 1.5.99.901-0ubuntu1
ProcVersionSignature: Ubuntu 3.2.0-19.30-generic 3.2.11
Uname: Linux 3.2.0-19-generic x86_64
NonfreeKernelModules: wl
ApportVersion: 1.94.1-0ubuntu2
Architecture: amd64
CurrentDmesg: [  125.480542] init: plymouth-stop pre-start process (6216) 
terminated with status 1
Date: Wed Mar 21 13:06:06 2012
DistUpgraded: 2012-01-20 16:19:39,336 DEBUG enabling apt cron job
DistroCodename: precise
DistroVariant: ubuntu
InstallationMedia: Kubuntu 11.10 "Oneiric Ocelot" - Release amd64+mac (20111012)
MachineType: Apple Inc. MacBook3,1
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.2.0-19-generic 
root=UUID=0cbf08e2-4a82-472b-835a-54e8ff6da4e3 ro quiet splash vt.handoff=7
SourcePackage: xserver-xorg-input-synaptics
UpgradeStatus: Upgraded to precise on 2012-03-17 (3 days ago)
dmi.bios.date: 03/05/08
dmi.bios.vendor: Apple Inc.
dmi.bios.version: MB31.88Z.008E.B02.0803051832
dmi.board.asset.tag: Base Board Asset Tag
dmi.board.name: Mac-F22788C8
dmi.board.vendor: Apple Inc.
dmi.board.version: PVT
dmi.chassis.asset.tag: Asset Tag#
dmi.chassis.type: 2
dmi.chassis.vendor: Apple Inc.
dmi.chassis.version: Mac-F22788C8
dmi.modalias: 
dmi:bvnAppleInc.:bvrMB31.88Z.008E.B02.0803051832:bd03/05/08:svnAppleInc.:pnMacBook3,1:pvr1.0:rvnAppleInc.:rnMac-F22788C8:rvrPVT:cvnAppleInc.:ct2:cvrMac-F22788C8:
dmi.product.name: MacBook3,1
dmi.product.version: 1.0
dmi.sys.vendor: Apple Inc.
version.compiz: compiz 1:0.9.7.0+bzr3035-0ubuntu1
version.ia32-libs: ia32-libs 20090808ubuntu35
version.libdrm2: libdrm2 2.4.30-1ubuntu1
version.libgl1-mesa-dri: libgl1-mesa-dri 8.0.1-0ubuntu5
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 8.0.1-0ubuntu5
version.xserver-xorg-core: xserver-xorg-core 2:1.11.4-0ubuntu6
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.7.0-0ubuntu1
version.xserver-xorg-video-ati: xserver-xorg-video-ati 
1:6.14.99~git20111219.aacbd629-0ubuntu2
version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.17.0-1ubuntu4
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:0.0.16+git20111201+b5534a1-1build2

** Affects: xserver-xorg-input-synaptics (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug precise regression reproducible ubuntu

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-input-synaptics in Ubuntu.
https://bugs.launchpad.net/bugs/961140

Title:
  synclient ClickFinger configuration is ignored

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-input-synaptics/+bug/961140/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 936341] Re: Touchpad middle click generates button 1 event

2012-02-24 Thread Dario Bertini
** Tags removed: kubuntu

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-input-synaptics in Ubuntu.
https://bugs.launchpad.net/bugs/936341

Title:
  Touchpad middle click generates button 1 event

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-input-synaptics/+bug/936341/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 936341] Re: Touchpad middle click generates button 1 event

2012-02-19 Thread Dario Bertini
-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-input-synaptics in Ubuntu.
https://bugs.launchpad.net/bugs/936341

Title:
  Touchpad middle click generates button 1 event

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-input-synaptics/+bug/936341/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 936341] [NEW] Touchpad middle click generates button 1 event

2012-02-19 Thread Dario Bertini
Public bug reported:

Traditionally the middle click worked by clicking by holding 3 fingers
on the touchpad (similarly: the right click is done by clicking with 2
fingers on the touchpad)

The right click works fine, but the middle click now generates a button1
(left click) event

ProblemType: Bug
DistroRelease: Ubuntu 12.04
Package: xserver-xorg-input-synaptics 1.5.0+git20120210-0ubuntu2
ProcVersionSignature: Ubuntu 3.2.0-15.24-generic 3.2.5
Uname: Linux 3.2.0-15-generic x86_64
NonfreeKernelModules: wl
ApportVersion: 1.91-0ubuntu1
Architecture: amd64
CurrentDmesg:
 [ 2368.635035] do_trap: 45 callbacks suppressed
 [ 2368.635040] gsettings-data-[4757] trap int3 ip:7f72edda1f2b sp:7fff8d2f4800 
error:0
 [ 2368.941534] gsettings-data-[4784] trap int3 ip:7f1e90249f2b sp:7fff0c0e31f0 
error:0
 [ 2371.194472] bzr-notify[4812]: segfault at 7fff30b0afa8 ip 7f22f70c074b 
sp 7fff30b0afb0 error 6 in libc-2.15.so[7f22f7079000+1b1000]
 [ 2377.813128] unity-applicati[4875]: segfault at 0 ip 7fd35b4f7c98 sp 
7fff34d53db0 error 4 in libdee-1.0.so.4.1.0[7fd35b4df000+33000]
Date: Sun Feb 19 17:38:14 2012
DistUpgraded: Log time: 2012-01-20 14:57:34.146746
DistroCodename: precise
DistroVariant: ubuntu
InstallationMedia: Kubuntu 11.10 "Oneiric Ocelot" - Release amd64+mac (20111012)
MachineType: Apple Inc. MacBook3,1
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.2.0-15-generic 
root=UUID=0cbf08e2-4a82-472b-835a-54e8ff6da4e3 ro quiet splash vt.handoff=7
SourcePackage: xserver-xorg-input-synaptics
UpgradeStatus: Upgraded to precise on 2012-01-20 (30 days ago)
dmi.bios.date: 03/05/08
dmi.bios.vendor: Apple Inc.
dmi.bios.version: MB31.88Z.008E.B02.0803051832
dmi.board.asset.tag: Base Board Asset Tag
dmi.board.name: Mac-F22788C8
dmi.board.vendor: Apple Inc.
dmi.board.version: PVT
dmi.chassis.asset.tag: Asset Tag#
dmi.chassis.type: 2
dmi.chassis.vendor: Apple Inc.
dmi.chassis.version: Mac-F22788C8
dmi.modalias: 
dmi:bvnAppleInc.:bvrMB31.88Z.008E.B02.0803051832:bd03/05/08:svnAppleInc.:pnMacBook3,1:pvr1.0:rvnAppleInc.:rnMac-F22788C8:rvrPVT:cvnAppleInc.:ct2:cvrMac-F22788C8:
dmi.product.name: MacBook3,1
dmi.product.version: 1.0
dmi.sys.vendor: Apple Inc.
version.compiz: compiz 1:0.9.7.0~bzr2995-0ubuntu1
version.ia32-libs: ia32-libs 20090808ubuntu33
version.libdrm2: libdrm2 2.4.30-1ubuntu1
version.libgl1-mesa-dri: libgl1-mesa-dri 8.0~rc2-0ubuntu5
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 8.0~rc2-0ubuntu5
version.xserver-xorg-core: xserver-xorg-core 2:1.11.4-0ubuntu3
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 
1:2.6.99.901+git20120126-0ubuntu2
version.xserver-xorg-video-ati: xserver-xorg-video-ati 
1:6.14.99~git20111219.aacbd629-0ubuntu2
version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.17.0-1ubuntu4
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:0.0.16+git20111201+b5534a1-1build2

** Affects: xserver-xorg-input-synaptics (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug precise regression reproducible ubuntu

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-input-synaptics in Ubuntu.
https://bugs.launchpad.net/bugs/936341

Title:
  Touchpad middle click generates button 1 event

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-input-synaptics/+bug/936341/+subscriptions

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 397839] Re: Screen randomly goes off in karmic

2009-10-19 Thread Dario Bertini
i can confirm this is still present too

karmic with latest updates:
xorg   1:7.4+3ubuntu5
xorg-docs-core 1:1.4-5
xserver-xorg   1:7.4+3ubuntu5  
xserver-xorg-core  2:1.6.4-2ubuntu3 
xserver-xorg-video-intel   2:2.9.0-1ubuntu2 (using a gma965)

-- 
Screen randomly goes off in karmic
https://bugs.launchpad.net/bugs/397839
You received this bug notification because you are a member of Ubuntu-X,
which is the registrant for xserver-xorg-driver-ati.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 391687] Re: [i965] (UXA) Gdm/X freezes with gm965

2009-07-12 Thread Dario Bertini
i'm sorry but due to an hardware bug i'm unable to easily load a karmic
live environment :/

-- 
[i965] (UXA) Gdm/X freezes with gm965
https://bugs.launchpad.net/bugs/391687
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-intel in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 392279] Re: Gdm/X freezes when activating guest session

2009-07-08 Thread Dario Bertini
I did the apport-collect a second time after logging via ssh after
provoking the freeze (the first apport-collect was done in a normal
state)

-- 
Gdm/X freezes when activating guest session
https://bugs.launchpad.net/bugs/392279
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 392279]

2009-07-08 Thread Dario Bertini

** Attachment added: "system.txt"
   http://launchpadlibrarian.net/28817059/system.txt

-- 
Gdm/X freezes when activating guest session
https://bugs.launchpad.net/bugs/392279
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 392279]

2009-07-08 Thread Dario Bertini

** Attachment added: "XorgLogOld.txt"
   http://launchpadlibrarian.net/28817058/XorgLogOld.txt

-- 
Gdm/X freezes when activating guest session
https://bugs.launchpad.net/bugs/392279
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 392279]

2009-07-08 Thread Dario Bertini

** Attachment added: "XorgConf.txt"
   http://launchpadlibrarian.net/28817054/XorgConf.txt

-- 
Gdm/X freezes when activating guest session
https://bugs.launchpad.net/bugs/392279
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 392279]

2009-07-08 Thread Dario Bertini

** Attachment added: "XorgLog.txt"
   http://launchpadlibrarian.net/28817055/XorgLog.txt

-- 
Gdm/X freezes when activating guest session
https://bugs.launchpad.net/bugs/392279
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 392279]

2009-07-08 Thread Dario Bertini

** Attachment added: "LsPci.txt"
   http://launchpadlibrarian.net/28817053/LsPci.txt

-- 
Gdm/X freezes when activating guest session
https://bugs.launchpad.net/bugs/392279
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 392279]

2009-07-08 Thread Dario Bertini

** Attachment added: "LsMod.txt"
   http://launchpadlibrarian.net/28817052/LsMod.txt

-- 
Gdm/X freezes when activating guest session
https://bugs.launchpad.net/bugs/392279
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 392279]

2009-07-08 Thread Dario Bertini

** Attachment added: "LsHal.txt"
   http://launchpadlibrarian.net/28817051/LsHal.txt

-- 
Gdm/X freezes when activating guest session
https://bugs.launchpad.net/bugs/392279
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 392279]

2009-07-08 Thread Dario Bertini

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

-- 
Gdm/X freezes when activating guest session
https://bugs.launchpad.net/bugs/392279
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 392279] apport-collect data

2009-07-08 Thread Dario Bertini
Architecture: amd64
DistroRelease: Ubuntu 9.04
NonfreeKernelModules: wl
Package: xorg 1:7.4~5ubuntu18
PackageArchitecture: amd64
ProcEnviron:
 SHELL=/bin/bash
 PATH=(custom, no user)
 LANG=it_IT.UTF-8
ProcVersion: Linux version 2.6.28-13-generic (bui...@yellow) (gcc version 4.3.3 
(Ubuntu 4.3.3-5ubuntu4) ) #45-Ubuntu SMP Tue Jun 30 22:12:12 UTC 2009
Uname: Linux 2.6.28-13-generic x86_64
UserGroups: adm admin cdrom dialout lpadmin plugdev sambashare
Xrandr:
 
glxinfo:
 
setxkbmap:
 
xdpyinfo:
 
xkbcomp:

-- 
Gdm/X freezes when activating guest session
https://bugs.launchpad.net/bugs/392279
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 392279]

2009-07-08 Thread Dario Bertini

** Attachment added: "xkbcomp.txt"
   http://launchpadlibrarian.net/28815642/xkbcomp.txt

-- 
Gdm/X freezes when activating guest session
https://bugs.launchpad.net/bugs/392279
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 392279]

2009-07-08 Thread Dario Bertini

** Attachment added: "xdpyinfo.txt"
   http://launchpadlibrarian.net/28815641/xdpyinfo.txt

-- 
Gdm/X freezes when activating guest session
https://bugs.launchpad.net/bugs/392279
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 392279]

2009-07-08 Thread Dario Bertini

** Attachment added: "system.txt"
   http://launchpadlibrarian.net/28815639/system.txt

-- 
Gdm/X freezes when activating guest session
https://bugs.launchpad.net/bugs/392279
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 392279]

2009-07-08 Thread Dario Bertini

** Attachment added: "setxkbmap.txt"
   http://launchpadlibrarian.net/28815638/setxkbmap.txt

-- 
Gdm/X freezes when activating guest session
https://bugs.launchpad.net/bugs/392279
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 392279]

2009-07-08 Thread Dario Bertini

** Attachment added: "glxinfo.txt"
   http://launchpadlibrarian.net/28815635/glxinfo.txt

-- 
Gdm/X freezes when activating guest session
https://bugs.launchpad.net/bugs/392279
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 392279]

2009-07-08 Thread Dario Bertini

** Attachment added: "XorgLog.txt"
   http://launchpadlibrarian.net/28815631/XorgLog.txt

-- 
Gdm/X freezes when activating guest session
https://bugs.launchpad.net/bugs/392279
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 392279]

2009-07-08 Thread Dario Bertini

** Attachment added: "Xrandr.txt"
   http://launchpadlibrarian.net/28815634/Xrandr.txt

-- 
Gdm/X freezes when activating guest session
https://bugs.launchpad.net/bugs/392279
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 392279]

2009-07-08 Thread Dario Bertini

** Attachment added: "XorgLogOld.txt"
   http://launchpadlibrarian.net/28815633/XorgLogOld.txt

-- 
Gdm/X freezes when activating guest session
https://bugs.launchpad.net/bugs/392279
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 392279]

2009-07-08 Thread Dario Bertini

** Attachment added: "LsMod.txt"
   http://launchpadlibrarian.net/28815628/LsMod.txt

-- 
Gdm/X freezes when activating guest session
https://bugs.launchpad.net/bugs/392279
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 392279]

2009-07-08 Thread Dario Bertini

** Attachment added: "XorgConf.txt"
   http://launchpadlibrarian.net/28815630/XorgConf.txt

-- 
Gdm/X freezes when activating guest session
https://bugs.launchpad.net/bugs/392279
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 392279]

2009-07-08 Thread Dario Bertini

** Attachment added: "LsHal.txt"
   http://launchpadlibrarian.net/28815627/LsHal.txt

-- 
Gdm/X freezes when activating guest session
https://bugs.launchpad.net/bugs/392279
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 392279]

2009-07-08 Thread Dario Bertini

** Attachment added: "LsPci.txt"
   http://launchpadlibrarian.net/28815629/LsPci.txt

-- 
Gdm/X freezes when activating guest session
https://bugs.launchpad.net/bugs/392279
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 392279] apport-collect data

2009-07-08 Thread Dario Bertini
Architecture: amd64
DistroRelease: Ubuntu 9.04
NonfreeKernelModules: wl
Package: xorg 1:7.4~5ubuntu18
PackageArchitecture: amd64
ProcEnviron:
 SHELL=/bin/bash
 PATH=(custom, no user)
 LANG=it_IT.UTF-8
ProcVersion: Linux version 2.6.28-13-generic (bui...@yellow) (gcc version 4.3.3 
(Ubuntu 4.3.3-5ubuntu4) ) #45-Ubuntu SMP Tue Jun 30 22:12:12 UTC 2009
Uname: Linux 2.6.28-13-generic x86_64
UserGroups: adm admin cdrom dialout lpadmin plugdev sambashare

-- 
Gdm/X freezes when activating guest session
https://bugs.launchpad.net/bugs/392279
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 392279]

2009-07-08 Thread Dario Bertini

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

-- 
Gdm/X freezes when activating guest session
https://bugs.launchpad.net/bugs/392279
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 391687] [NEW] (UXA) Gdm/X freezes with gm965

2009-06-24 Thread Dario Bertini
Public bug reported:

Binary package hint: xserver-xorg-video-intel

I activated accelmethod uxa, logged out, and gdm worked fine... upon
returning in a gnome session i saw improvements in compiz performance
along with the absence of glitches when running 3d programs (like
google-earth and the demo of world of goo) inside compiz (and also a
slight decrease in glxgears fps)

then i powered off, and upon boot gdm got stuck... here's what it looks
like:

http://img34.imageshack.us/img34/7431/20090623093445.jpg

no mouse pointer, no cursors, entering username/password doesn't achieve
anything...

ctrl+alt+f1/f2/f3/etc. doesn't work... i was forced to powering down and
rebooting in single mode to change the xorg.conf

i followed the instructions to do the freeze-test
https://edge.launchpad.net/~ubuntu-x-swat/+archive/x-freeze-test/

the problem persisted with 2.6.30... i'll attach the .tgz with the
logs...

then i disactivated uxa, entered a gnome session, reactivated uxa,
exited the gnome session to gdm and fetched 3 other log files (i'll
attach those too)

ProblemType: Bug
Architecture: amd64
DistroRelease: Ubuntu 9.04
Package: xserver-xorg-video-intel 2:2.6.3-0ubuntu9.3
ProcEnviron:
 PATH=(custom, no user)
 LANG=it_IT.UTF-8
 SHELL=/bin/bash
ProcVersion: Linux version 2.6.30-020630-generic (r...@zinc) (gcc version 4.2.3 
(Ubuntu 4.2.3-2ubuntu7)) #020630 SMP Wed Jun 10 09:04:38 UTC 2009
SourcePackage: xserver-xorg-video-intel
Uname: Linux 2.6.30-020630-generic x86_64

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


** Tags: amd64 apport-bug gdm gm965 intel uxa xorg

-- 
(UXA) Gdm/X freezes with gm965
https://bugs.launchpad.net/bugs/391687
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-intel in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 391687] Re: (UXA) Gdm/X freezes with gm965

2009-06-24 Thread Dario Bertini

** Attachment added: "dri_debug.tgz"
   http://launchpadlibrarian.net/28288829/dri_debug.tgz

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

** Attachment added: "LsHal.txt"
   http://launchpadlibrarian.net/28288831/LsHal.txt

** Attachment added: "LsMod.txt"
   http://launchpadlibrarian.net/28288832/LsMod.txt

** Attachment added: "LsPci.txt"
   http://launchpadlibrarian.net/28288833/LsPci.txt

** Attachment added: "XorgConf.txt"
   http://launchpadlibrarian.net/28288834/XorgConf.txt

** Attachment added: "XorgLog.txt"
   http://launchpadlibrarian.net/28288835/XorgLog.txt

** Attachment added: "XorgLogOld.txt"
   http://launchpadlibrarian.net/28288836/XorgLogOld.txt

** Attachment added: "Xrandr.txt"
   http://launchpadlibrarian.net/28288837/Xrandr.txt

** Attachment added: "glxinfo.txt"
   http://launchpadlibrarian.net/28288838/glxinfo.txt

** Attachment added: "setxkbmap.txt"
   http://launchpadlibrarian.net/28288839/setxkbmap.txt

** Attachment added: "system.txt"
   http://launchpadlibrarian.net/28288840/system.txt

** Attachment added: "xdpyinfo.txt"
   http://launchpadlibrarian.net/28288841/xdpyinfo.txt

** Attachment added: "xkbcomp.txt"
   http://launchpadlibrarian.net/28288842/xkbcomp.txt

-- 
(UXA) Gdm/X freezes with gm965
https://bugs.launchpad.net/bugs/391687
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-intel in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 391687] Re: (UXA) Gdm/X freezes with gm965

2009-06-24 Thread Dario Bertini

** Attachment added: "dmesg with uxa working"
   http://launchpadlibrarian.net/28288926/dmesg.txt

-- 
(UXA) Gdm/X freezes with gm965
https://bugs.launchpad.net/bugs/391687
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-intel in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 391687] Re: (UXA) Gdm/X freezes with gm965

2009-06-24 Thread Dario Bertini

** Attachment added: "xorg log with uxa working"
   http://launchpadlibrarian.net/28288957/Xorg.0.log

-- 
(UXA) Gdm/X freezes with gm965
https://bugs.launchpad.net/bugs/391687
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-intel in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp


[Ubuntu-x-swat] [Bug 391687] Re: (UXA) Gdm/X freezes with gm965

2009-06-24 Thread Dario Bertini

** Attachment added: "gdm :0 with uxa working"
   http://launchpadlibrarian.net/28288971/gdm.log

-- 
(UXA) Gdm/X freezes with gm965
https://bugs.launchpad.net/bugs/391687
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-intel in ubuntu.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp