[Ubuntu-x-swat] [Bug 1768232] Re: Stuck at ubuntu logo while booting after installing Ubuntu 18.04 (Resolution 1024x768 after nomodeset, i915 driver issue)

2018-05-18 Thread Shane Semanek
I have a Dell Optiplex 330 workstation with Intel 82G33/G31 Express
graphics. It ran Ubuntu 16.04, Ubuntu 17.10, and Ubuntu 18.04 beta2
without any issues. When Ubuntu 18.04 was released I did a clean install
and it would boot to the Ubuntu logo screen and stop. I tried several
kernels from http://kernel.ubuntu.com/~kernel-ppa/mainline but the issue
was not resolved.

To resolve the issue I had to disable Wayland in GDM3.

sudo vi /etc/gdm3/custom.conf

Change #WaylandEnable=false to WaylandEnable=false and reboot

Reference: https://linuxconfig.org/how-to-disable-wayland-and-enable-
xorg-display-server-on-ubuntu-18-04-bionic-beaver-linux

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

Title:
  Stuck at ubuntu logo while booting after installing Ubuntu 18.04
  (Resolution 1024x768 after nomodeset, i915 driver issue)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1768232/+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 1316873] Re: Left mouse button stops working

2017-04-07 Thread Shane Powell
I have the same issue and the trigger seemed to be moving from an AMD to
an Nvidia graphics card. Switching to console (CTRL Alt F1) and back
fixes it but can cause some issues with any graphical applications
running at the time. I am also using the Ubuntu automatic Nvidia driver
that appears to currently be one version behind the one on their
website.

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

Title:
  Left mouse button stops working

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1316873/+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 1275416] Re: touchscreen do not work after suspend/resume

2014-12-15 Thread Shane Sanders
Finally fixed this!!

Blacklist usbtouchscreen as above but put the following in
/etc/pm/sleep.d/20touchscreen


#!/bin/sh
#
# apmd proxy script for touch screen

case ${1} in
resume|thaw)
/sbin/rmmod hid_multitouch  /sbin/modprobe hid_multitouch
;;
esac

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

Title:
  touchscreen do not work after suspend/resume

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xinput/+bug/1275416/+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 1275416] Re: touchscreen do not work after suspend/resume

2014-09-13 Thread Shane Sanders
The fix may be a little more complicated.
I had to add an 'apmd' script.
(1.)  Blacklist usbtouchscreen in the file:  /etc/modprobe.d/blacklist.conf
   ie. add an entry to the end of the file  blacklist usbtouchscreen
   ie. sudo gedit /etc/modprobe.d/blacklist.conf

(2.)  Create a file in /etc/apm/scripts.d  called touchscreen and put
the following contents in it.

#!/bin/sh
#
# apmd proxy script for ALSA

[ -x /usr/sbin/alsactl ] || exit 0

case $1,$2 in
suspend,*) /usr/sbin/alsactl store  /sbin/alsa suspend ;;
resume,suspend) /sbin/alsa resume  /usr/sbin/alsactl restore ;;
esac



(3.)  Then save it and type sudo chmod 755
/etc/apm/scripts.d/touchscreen

(4.)  Then type cd /etc/apm/resume.d

(5.)  Then from that path type, sudo ln -s ../scripts.d/touchscreen
./20touchscreen

(6.)  Shut your lid and re-open it and see if the touchscreen starts
working...


ASUS Vivobook here

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

Title:
  touchscreen do not work after suspend/resume

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xinput/+bug/1275416/+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 1275416] Re: touchscreen do not work after suspend/resume

2014-09-13 Thread Shane Sanders
*** UPDATED// SLEEPY *

The fix may be a little more complicated.
I had to add an 'apmd' script.
(1.)  Blacklist usbtouchscreen in the file:  /etc/modprobe.d/blacklist.conf
   ie. add an entry to the end of the file  blacklist usbtouchscreen
   ie. sudo gedit /etc/modprobe.d/blacklist.conf

(2.)  Create a file in /etc/apm/scripts.d  called touchscreen and put
the following contents in it.

#!/bin/sh
#
# apmd proxy script for touch screen

[ -x /usr/sbin/alsactl ] || exit 0

case $1,$2 in
suspend,*) rmmod hid_multitouch  modprobe hid_multitouch
esac



(3.)  Then save it and type sudo chmod 755
/etc/apm/scripts.d/touchscreen

(4.)  Then type cd /etc/apm/resume.d

(5.)  Then from that path type, sudo ln -s ../scripts.d/touchscreen
./20touchscreen

(6.)  Shut your lid and re-open it and see if the touchscreen starts
working...


ASUS Vivobook here

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

Title:
  touchscreen do not work after suspend/resume

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xinput/+bug/1275416/+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 1275416] Re: touchscreen do not work after suspend/resume

2014-09-13 Thread Shane Sanders
UPDDATE #2

for the apm script just use

#!/bin/sh
rmmod hid_multitouch  modprobe hid_multitouch

The conditional isn't necessary!

Appologies for the confusion

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

Title:
  touchscreen do not work after suspend/resume

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xinput/+bug/1275416/+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 1348810] [NEW] video crashes

2014-07-25 Thread shane
Public bug reported:

computer lock up

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: xorg 1:7.7+1ubuntu8
ProcVersionSignature: Ubuntu 3.13.0-32.57-generic 3.13.11.4
Uname: Linux 3.13.0-32-generic x86_64
NonfreeKernelModules: nvidia
.proc.driver.nvidia.gpus.0: Error: [Errno 21] Is a directory: 
'/proc/driver/nvidia/gpus/0'
.proc.driver.nvidia.registry: Binary: 
.proc.driver.nvidia.version:
 NVRM version: NVIDIA UNIX x86_64 Kernel Module  304.117  Tue Nov 26 21:25:36 
PST 2013
 GCC version:  gcc version 4.8.2 (Ubuntu 4.8.2-19ubuntu1)
.tmp.unity.support.test.0:
 
ApportVersion: 2.14.1-0ubuntu3.2
Architecture: amd64
CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
CompositorRunning: None
Date: Fri Jul 25 15:57:53 2014
DistUpgraded: 2014-07-21 12:04:04,143 DEBUG enabling apt cron job
DistroCodename: trusty
DistroVariant: ubuntu
ExtraDebuggingInterest: Yes
GraphicsCard:
 NVIDIA Corporation G86 [GeForce 8400 GS] [10de:0422] (rev a1) (prog-if 00 [VGA 
controller])
   Subsystem: XFX Pine Group Inc. Device [1682:2312]
InstallationDate: Installed on 2013-02-20 (520 days ago)
InstallationMedia: Ubuntu 12.10 Quantal Quetzal - Release amd64 (20121017.5)
MachineType: MSI MS-7252
ProcEnviron:
 LANGUAGE=en_US
 PATH=(custom, no user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.13.0-32-generic 
root=UUID=b111b39c-d99f-4a11-83b2-5065edcbdf98 ro
SourcePackage: xorg
UpgradeStatus: Upgraded to trusty on 2014-07-21 (4 days ago)
dmi.bios.date: 09/06/2007
dmi.bios.vendor: MS-7252
dmi.bios.version: V5.6
dmi.board.asset.tag: To Be Filled By O.E.M.
dmi.board.name: MS-7252
dmi.board.vendor: MSI
dmi.board.version: 1.0
dmi.chassis.asset.tag: To Be Filled By O.E.M.
dmi.chassis.type: 3
dmi.chassis.vendor: To Be Filled By O.E.M.
dmi.chassis.version: To Be Filled By O.E.M.
dmi.modalias: 
dmi:bvnMS-7252:bvrV5.6:bd09/06/2007:svnMSI:pnMS-7252:pvr1.0:rvnMSI:rnMS-7252:rvr1.0:cvnToBeFilledByO.E.M.:ct3:cvrToBeFilledByO.E.M.:
dmi.product.name: MS-7252
dmi.product.version: 1.0
dmi.sys.vendor: MSI
version.compiz: compiz 1:0.9.11.2+14.04.20140714-0ubuntu1
version.ia32-libs: ia32-libs N/A
version.libdrm2: libdrm2 2.4.52-1
version.libgl1-mesa-dri: libgl1-mesa-dri 10.1.3-0ubuntu0.1
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 10.1.3-0ubuntu0.1
version.nvidia-graphics-drivers: nvidia-graphics-drivers N/A
version.xserver-xorg-core: xserver-xorg-core 2:1.15.1-0ubuntu2
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.8.2-1ubuntu2
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.3.0-1ubuntu3.1
version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.99.910-0ubuntu1
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.10-1ubuntu2
xserver.bootTime: Fri Jul 25 07:44:36 2014
xserver.configfile: default
xserver.devices:
 inputPower Button KEYBOARD, id 6
 inputPower Button KEYBOARD, id 7
 inputMicrosoft Natural® Ergonomic Keyboard 4000 KEYBOARD, id 8
 inputMicrosoft Natural® Ergonomic Keyboard 4000 KEYBOARD, id 9
 inputMicrosoft Microsoft Optical Mouse with Tilt Wheel MOUSE, id 10
xserver.errors:
 open /dev/dri/card0: No such file or directory
 open /dev/fb0: No such file or directory
xserver.logfile: /var/log/Xorg.0.log
xserver.outputs:
 
xserver.version: 2:1.15.1-0ubuntu2

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


** Tags: amd64 apport-bug trusty ubuntu

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

Title:
  video crashes

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1348810/+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 1323618] Re: Pymol not working.

2014-07-22 Thread Shane Mulligan
As a workaround, it's possible to run pymol within a Xephyr.

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

Title:
  Pymol not working.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1323618/+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 1299499] Re: kwin crashes on desktop startup with wobbly windows enabled

2014-04-02 Thread Shane
Same here,20 desktop effects not working on  Intel Ironlake Mobile 
.Look like it's gone to high importance so may see a fix very soon
hopefully.

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

Title:
  kwin crashes on desktop startup with wobbly windows enabled

To manage notifications about this bug go to:
https://bugs.launchpad.net/mesa/+bug/1299499/+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 1001842] Re: No Audio from HDMI After Switching Monitor Off / On

2012-08-13 Thread Shane Sanders
Any chance there will be a patch for the old cards as well.  This is a
MAJOR! issue...

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

Title:
  No Audio from HDMI After Switching Monitor Off / On

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/fglrx-installer/+bug/1001842/+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 1017011] [NEW] Quirk for 2-button mouse Ubuntu Mouse (Pokket Mouse)

2012-06-23 Thread Shane Synan
Public bug reported:

The official Ubuntu Mouse sold through the Canonical Store
(http://shop.canonical.com/product_info.php?products_id=643) does not
have a middle mouse button, and by default you can not middle-click with
it.  After following the directions for X Quirks on the Ubuntu Wiki
(https://wiki.ubuntu.com/X/Quirks#A2-button_Mice), middle-click by
pressing the left and right buttons works as expected.


(I could not attach the output of 'sudo lsinput' as it does not appear to be in 
the precise repos)
Output of 'sudo dmidecode':
# dmidecode 2.11
SMBIOS 2.6 present.
35 structures occupying 1871 bytes.
Table at 0x000DC010.

Handle 0x, DMI type 0, 24 bytes
BIOS Information
Vendor: Phoenix Technologies LTD
Version: CALPELLACRB.86C..X.00
Release Date: 11/25/2010
Address: 0xE2360
Runtime Size: 122016 bytes
ROM Size: 4096 kB
Characteristics:
ISA is supported
PCI is supported
PC Card (PCMCIA) is supported
PNP is supported
BIOS is upgradeable
BIOS shadowing is allowed
ESCD support is available
Boot from CD is supported
ACPI is supported
USB legacy is supported
AGP is supported
BIOS boot specification is supported
Targeted content distribution is supported

Handle 0x0001, DMI type 1, 27 bytes
System Information
Manufacturer: System76, Inc.  
Product Name: Pangolin Performance  
Version: panp7
Serial Number: Not Applicable   
UUID: B2F59000-6E67---
Wake-up Type: Power Switch
SKU Number: Not Specified
Family: Not Specified

Handle 0x0002, DMI type 2, 17 bytes
Base Board Information
Manufacturer: CLEVO
Product Name: W76x/M77xCUH  
Version: Not Applicable
Serial Number: Not Applicable
Asset Tag: Tag 12345
Features:
Board is a hosting board
Board is replaceable
Location In Chassis: Not Applicable
Chassis Handle: 0x0003
Type: Motherboard
Contained Object Handles: 1
0x

Handle 0x0003, DMI type 3, 21 bytes
Chassis Information
Manufacturer: CLEVO   
Type: Laptop
Lock: Not Present
Version: N/A 
Serial Number: None
Asset Tag: No Asset Tag
Boot-up State: Safe
Power Supply State: Safe
Thermal State: Safe
Security Status: None
OEM Information: 0x1234
Height: Unspecified
Number Of Power Cords: Unspecified
Contained Elements: 0

Handle 0x0004, DMI type 4, 42 bytes
Processor Information
Socket Designation: CPU 1
Type: Central Processor
Family: Core i7
Manufacturer: Intel
ID: 55 06 02 00 FF FB EB BF
Signature: Type 0, Family 6, Model 37, Stepping 5
Flags:
FPU (Floating-point unit on-chip)
VME (Virtual mode extension)
DE (Debugging extension)
PSE (Page size extension)
TSC (Time stamp counter)
MSR (Model specific registers)
PAE (Physical address extension)
MCE (Machine check exception)
CX8 (CMPXCHG8 instruction supported)
APIC (On-chip APIC hardware supported)
SEP (Fast system call)
MTRR (Memory type range registers)
PGE (Page global enable)
MCA (Machine check architecture)
CMOV (Conditional move instruction supported)
PAT (Page attribute table)
PSE-36 (36-bit page size extension)
CLFSH (CLFLUSH instruction supported)
DS (Debug store)
ACPI (ACPI supported)
MMX (MMX technology supported)
FXSR (FXSAVE and FXSTOR instructions supported)
SSE (Streaming SIMD extensions)
SSE2 (Streaming SIMD extensions 2)
SS (Self-snoop)
HTT (Multi-threading)
TM (Thermal monitor supported)
PBE (Pending break enabled)
Version: Genuine Intel(R) CPU
Voltage: 3.3 V
External Clock: 133 MHz
Max Speed: 3200 MHz
Current Speed: 2530 MHz
Status: Populated, Enabled
Upgrade: Slot 1
L1 Cache Handle: 0x0005
L2 Cache Handle: 0x0006
L3 Cache Handle: 0x0007
Serial Number: Not Specified
Asset Tag: Not Specified
Part Number: Not Specified
Core Count: 2
Core Enabled: 

[Ubuntu-x-swat] [Bug 1017011] Re: Quirk for 2-button mouse Ubuntu Mouse (Pokket Mouse)

2012-06-23 Thread Shane Synan
-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-input-evdev in Ubuntu.
https://bugs.launchpad.net/bugs/1017011

Title:
  Quirk for 2-button mouse Ubuntu Mouse (Pokket Mouse)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-input-evdev/+bug/1017011/+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 874218] Re: LightDM restarts after first login attempt

2012-05-10 Thread Shane L
Having the exact same issue with fglrx driver via Additional Drivers in
12.04.  Prior to installing the driver the problem was not existant.

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to nvidia-graphics-drivers in Ubuntu.
https://bugs.launchpad.net/bugs/874218

Title:
  LightDM restarts after first login attempt

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers/+bug/874218/+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 840509] Re: touchpad triple-tap to middle-click stopped working in 11.10

2012-05-06 Thread shane
There are other bugs related to this and all seem to be being completely
ignored, marked as won't fix or marked as duplicates of other bugs.
What exactly is going on?

-- 
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/840509

Title:
  touchpad triple-tap to middle-click stopped working in 11.10

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-input-synaptics/+bug/840509/+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 971783] Re: 3 touch taps and clicks are broken

2012-05-06 Thread shane
The workaround of using synclient works to a point but is disabled
again after resume from suspend

-- 
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/971783

Title:
  3 touch taps and clicks are broken

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-input-synaptics/+bug/971783/+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 873482] Re: elantech: Touchpad always reports 3 finger tap as 1 finger tap

2012-03-31 Thread shane
For Heavens sake!  I struggled with this issue on another laptop for so
long and eventually settled for the synclient workaround.

I switched to a new laptop a few days which has an elantech touchpad and
synclient workaround was still working and then suddenly stopped.

Just please tell me, is three finger tap ever going to actually PROPERLY
work in unity or should I just switch back to another distro that CAN
seem to manage it

-- 
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/873482

Title:
  elantech: Touchpad always reports 3 finger tap as 1 finger tap

To manage notifications about this bug go to:
https://bugs.launchpad.net/xserver-xorg-input-synaptics/+bug/873482/+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 754000] Re: Running Unity disables Xorg's 3-finger click support (middle click)

2011-10-05 Thread shane
Does this fix only affect the Mac problem with CLICKABLE touchpads or
should this work with 3 finger TAPS also?

-- 
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/754000

Title:
  Running Unity disables Xorg's 3-finger click support (middle click)

To manage notifications about this bug go to:
https://bugs.launchpad.net/mactel-support/+bug/754000/+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 754000] Re: 3 finger touch interferes with 3 finger click (middle click)

2011-09-26 Thread shane
I meant I don't get this problem in natty ^

-- 
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/754000

Title:
  3 finger touch interferes with 3 finger click (middle click)

To manage notifications about this bug go to:
https://bugs.launchpad.net/mactel-support/+bug/754000/+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 754000] Re: 3 finger touch interferes with 3 finger click (middle click)

2011-09-26 Thread shane
Well the workaround mentioned doesn't work for me I'm afraid.

As for a full fix for natty, I don't get this fix in natty.  I can use 3
finger middle-click there too.

-- 
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/754000

Title:
  3 finger touch interferes with 3 finger click (middle click)

To manage notifications about this bug go to:
https://bugs.launchpad.net/mactel-support/+bug/754000/+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 754000] Re: 3 finger touch interferes with 3 finger click (middle click)

2011-09-25 Thread shane
@ Ian,
I didn't think you were being sarcastic as this is a very frustrating issue for 
people who are used to the normal 3 finger middle-click behaviour.

But yes, neither gnome shell or unity 2d suffer from this problem (at
least they didn't last time I checked a couple of weeks ago), it is only
the compiz enabled unity 3d.

-- 
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/754000

Title:
  3 finger touch interferes with 3 finger click (middle click)

To manage notifications about this bug go to:
https://bugs.launchpad.net/mactel-support/+bug/754000/+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 686216] Re: [arrandale] Brightness is all the way down at login screen on HP Pavilion dm4

2011-09-25 Thread shane
I am getting this problem on kubuntu 11.10 64-bit  (Testing), fully up
to date as of today.

Same thing, the boot process is dimmed (one can just make out the boot
logo and login screen in a dark room) and have to turn up the brightness
at login screen.

HP Pavillion dm4-1150ea

Only had the laptop a couple of days so not messed around with it much
to try workarounds/experiments.

Any information I can provide to help?

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

Title:
  [arrandale] Brightness is all the way down at login screen on HP
  Pavilion dm4

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-intel/+bug/686216/+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 754000] Re: 3 finger touch interferes with 3 finger click (middle click)

2011-09-24 Thread shane
Well yes, also using windows, gnome shell or unity 2d also workaround the 
problem.
Having said that, they have their own issues but this 3 finger tap problem is 
one of the major factors in my decision to use KDE for the foreseeable future 
and since this has been marked as won't fix (for at least the next few releases 
I imagine), I guess it's up to people to weigh up how important middle clicks 
are and decide whether they want unity 3d or middle-clicks, you can't have both.

-- 
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/754000

Title:
  3 finger touch interferes with 3 finger click (middle click)

To manage notifications about this bug go to:
https://bugs.launchpad.net/mactel-support/+bug/754000/+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 715096] Re: [i945gm] GPU lockup (ESR: 0x00000001 IPEHR: 0x02000011)

2011-03-14 Thread Shane Fagan
I got this today on an up to date natty machine

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

Title:
  [i945gm] GPU lockup (ESR: 0x0001 IPEHR: 0x0211)

___
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 732312] [NEW] package fglrx 2:8.801-0ubuntu3 failed to install/upgrade: fglrx kernel module failed to build

2011-03-09 Thread Shane Fagan
Public bug reported:

Installed fglrx since im on an ati machine got a failed to install

ProblemType: Package
DistroRelease: Ubuntu 11.04
Package: fglrx 2:8.801-0ubuntu3
ProcVersionSignature: Ubuntu 2.6.38-5.32-generic 2.6.38-rc6
Uname: Linux 2.6.38-5-generic x86_64
Architecture: amd64
CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
CompositorRunning: None
Date: Sat Mar  5 19:01:17 2011
DistUpgraded: Log time: 2011-02-13 14:44:17.722655
DistroCodename: natty
DistroVariant: ubuntu
DkmsStatus: fglrx, 8.801: added
ErrorMessage: fglrx kernel module failed to build
GraphicsCard:
 ATI Technologies Inc Radeon HD 3200 Graphics [1002:9610] (prog-if 00 [VGA 
controller])
   Subsystem: Acer Incorporated [ALI] Device [1025:014f]
InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release amd64 (20101007)
MachineType: Acer Veriton M421G
PackageVersion: 2:8.801-0ubuntu3
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.38-5-generic 
root=UUID=d4fbd7cd-997e-4c5a-9549-833f59682c59 ro single
Renderer: Unknown
SourcePackage: fglrx-installer
Title: package fglrx 2:8.801-0ubuntu3 failed to install/upgrade: fglrx kernel 
module failed to build
UnitySupportTest: Error: command ['/usr/lib/nux/unity_support_test', '-p'] 
failed with exit code -11:
UpgradeStatus: Upgraded to natty on 2011-03-09 (0 days ago)
dmi.bios.date: 11/12/2009
dmi.bios.vendor: Acer
dmi.bios.version: P12-B1
dmi.board.asset.tag: To Be Filled By O.E.M.
dmi.board.name: RS780DV
dmi.board.vendor: Acer
dmi.chassis.type: 3
dmi.chassis.vendor: Acer
dmi.modalias: 
dmi:bvnAcer:bvrP12-B1:bd11/12/2009:svnAcer:pnVeritonM421G:pvr:rvnAcer:rnRS780DV:rvr:cvnAcer:ct3:cvr:
dmi.product.name: Veriton M421G
dmi.sys.vendor: Acer
version.compiz: compiz 1:0.9.4-0ubuntu3
version.libdrm2: libdrm2 2.4.23+git20110218.a697fb6a-0ubuntu0sarvatt
version.libgl1-mesa-glx: libgl1-mesa-glx 
7.11.0+git20110222.7aeb610f-0ubuntu0sarvatt
version.xserver-xorg: xserver-xorg 1:7.6~3ubuntu11
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:6.14.0-0ubuntu2
version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.14.0-1ubuntu11
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:0.0.16+git20110107+b795ca6e-0ubuntu5

** Affects: fglrx-installer (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package natty ubuntu

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to fglrx-installer in ubuntu.
https://bugs.launchpad.net/bugs/732312

Title:
  package fglrx 2:8.801-0ubuntu3 failed to install/upgrade: fglrx kernel
  module failed to build

___
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 732312] Re: package fglrx 2:8.801-0ubuntu3 failed to install/upgrade: fglrx kernel module failed to build

2011-03-09 Thread Shane Fagan
-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to fglrx-installer in ubuntu.
https://bugs.launchpad.net/bugs/732312

Title:
  package fglrx 2:8.801-0ubuntu3 failed to install/upgrade: fglrx kernel
  module failed to build

___
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 609044] [NEW] conflicting fb hw usage inteldrmfb vs VESA VGA

2010-07-23 Thread shane
Public bug reported:

Binary package hint: xserver-xorg-video-intel

The following error occurs early in the boot process and seems to be
responsible for stopping plymouth splash displaying:

conflicting fb hw usage inteldrmfb vs VESA VGA - removing generic driver

Adding FRAMEBUFFER=y in /etc/initramfs-tools/conf.d/splash appears to
workaround the problem but due to other (likely unrelated) boot warning
messages, plymouth is interrupted anyway so unsure whether or not it is
a proper workaround.

Ubuntu Maverick (from daily iso 22/07/10)
HP G62 laptop with Intel HD gfx

ProblemType: Bug
DistroRelease: Ubuntu 10.10
Package: xserver-xorg-video-intel 2:2.12.0-1ubuntu1
ProcVersionSignature: Ubuntu 2.6.35-9.14-generic 2.6.35-rc5
Uname: Linux 2.6.35-9-generic i686
Architecture: i386
DRM.card0.DisplayPort.1:
 status: disconnected
 enabled: disabled
 dpms: On
 modes: 
 edid-base64:
DRM.card0.HDMI_Type_A.1:
 status: disconnected
 enabled: disabled
 dpms: On
 modes: 
 edid-base64:
DRM.card0.LVDS.1:
 status: connected
 enabled: enabled
 dpms: On
 modes: 1366x768
 edid-base64: 
AP///wAw5GoCAAATAQOAIhN4CsElnV9bmycZUFQBAQEBAQEBAQEBAQEBAQEBEhtWeFAADjAgICQAWMIQAAAZ/gBMRyBEaXNwbGF5CiAg/ABMUDE1NldIMi1UTFFBAAc=
DRM.card0.VGA.1:
 status: disconnected
 enabled: disabled
 dpms: On
 modes: 
 edid-base64:
Date: Fri Jul 23 08:36:25 2010
DkmsStatus: Error: [Errno 2] No such file or directory
InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Alpha i386 (20100722)
MachineType: Hewlett-Packard HP G62 Notebook PC
ProcCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.35-9-generic 
root=UUID=04a853e5-fa09-4fd0-a7dc-dbfc276346af ro --text
ProcEnviron:
 LANG=en_GB.utf8
 SHELL=/bin/bash
SourcePackage: xserver-xorg-video-intel
dmi.bios.date: 02/10/2010
dmi.bios.vendor: Hewlett-Packard
dmi.bios.version: F.07
dmi.board.asset.tag: Base Board Asset Tag
dmi.board.name: 1425
dmi.board.vendor: Hewlett-Packard
dmi.board.version: 54.13
dmi.chassis.type: 10
dmi.chassis.vendor: Hewlett-Packard
dmi.chassis.version: N/A
dmi.modalias: 
dmi:bvnHewlett-Packard:bvrF.07:bd02/10/2010:svnHewlett-Packard:pnHPG62NotebookPC:pvr049D102027102:rvnHewlett-Packard:rn1425:rvr54.13:cvnHewlett-Packard:ct10:cvrN/A:
dmi.product.name: HP G62 Notebook PC
dmi.product.version: 049D102027102
dmi.sys.vendor: Hewlett-Packard
glxinfo: Error: [Errno 2] No such file or directory
system:
 distro: Ubuntu
 codename:   maverick
 architecture:   i686
 kernel: 2.6.35-9-generic

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


** Tags: apport-bug i386 maverick ubuntu-une

-- 
conflicting fb hw usage inteldrmfb vs VESA VGA
https://bugs.launchpad.net/bugs/609044
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 609044] Re: conflicting fb hw usage inteldrmfb vs VESA VGA

2010-07-23 Thread shane

** Attachment added: BootDmesg.txt
   http://launchpadlibrarian.net/52354491/BootDmesg.txt

** Attachment added: CurrentDmesg.txt
   http://launchpadlibrarian.net/52354492/CurrentDmesg.txt

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

** Attachment added: GdmLog.txt
   http://launchpadlibrarian.net/52354494/GdmLog.txt

** Attachment added: GdmLog1.txt
   http://launchpadlibrarian.net/52354495/GdmLog1.txt

** Attachment added: GdmLog2.txt
   http://launchpadlibrarian.net/52354496/GdmLog2.txt

** Attachment added: Lspci.txt
   http://launchpadlibrarian.net/52354497/Lspci.txt

** Attachment added: Lsusb.txt
   http://launchpadlibrarian.net/52354498/Lsusb.txt

** Attachment added: PciDisplay.txt
   http://launchpadlibrarian.net/52354499/PciDisplay.txt

** Attachment added: ProcCpuinfo.txt
   http://launchpadlibrarian.net/52354500/ProcCpuinfo.txt

** Attachment added: ProcInterrupts.txt
   http://launchpadlibrarian.net/52354501/ProcInterrupts.txt

** Attachment added: ProcModules.txt
   http://launchpadlibrarian.net/52354502/ProcModules.txt

** Attachment added: RelatedPackageVersions.txt
   http://launchpadlibrarian.net/52354503/RelatedPackageVersions.txt

** Attachment added: UdevDb.txt
   http://launchpadlibrarian.net/52354504/UdevDb.txt

** Attachment added: UdevLog.txt
   http://launchpadlibrarian.net/52354505/UdevLog.txt

** Attachment added: XorgLog.txt
   http://launchpadlibrarian.net/52354506/XorgLog.txt

** Attachment added: XorgLogOld.txt
   http://launchpadlibrarian.net/52354507/XorgLogOld.txt

** Attachment added: Xrandr.txt
   http://launchpadlibrarian.net/52354508/Xrandr.txt

** Attachment added: setxkbmap.txt
   http://launchpadlibrarian.net/52354509/setxkbmap.txt

** Attachment added: xdpyinfo.txt
   http://launchpadlibrarian.net/52354510/xdpyinfo.txt

** Attachment added: xkbcomp.txt
   http://launchpadlibrarian.net/52354511/xkbcomp.txt

-- 
conflicting fb hw usage inteldrmfb vs VESA VGA
https://bugs.launchpad.net/bugs/609044
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 601447] [NEW] package fglrx 2:8.723.1-0ubuntu4 failed to install/upgrade: fglrx kernel module failed to build

2010-07-03 Thread Shane
Public bug reported:

(New bug was reported because other was not only abandoned, but it was
also for the 32bit version, rather than 64bit version.)

tried sudo apt-get clean, but did nothing.

If in the very least this cannot be solved, is there any way to make it
stop trying to install? It's quite annoying that it tries to install
even if i install some completely different package.

ProblemType: Package
DistroRelease: Ubuntu 10.04
Package: fglrx 2:8.723.1-0ubuntu4
ProcVersionSignature: Ubuntu 2.6.32-23.37-generic 2.6.32.15+drm33.5
Uname: Linux 2.6.32-23-generic x86_64
NonfreeKernelModules: r8192se_pci
Architecture: amd64
Date: Sat Jul  3 15:08:53 2010
DkmsStatus: fglrx, 8.723.1: added
ErrorMessage: fglrx kernel module failed to build
InstallationMedia: Ubuntu 10.04 LTS Lucid Lynx - Release amd64 (20100429)
MachineType: TOSHIBA Satellite L645D
PackageVersion: 2:8.723.1-0ubuntu4
ProcCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.32-23-generic 
root=UUID=98c46357-8333-4901-a7ac-09774321b0d2 ro quiet splash
SourcePackage: fglrx-installer
Title: package fglrx 2:8.723.1-0ubuntu4 failed to install/upgrade: fglrx kernel 
module failed to build
dmi.bios.date: 04/16/2010
dmi.bios.vendor: Insyde Corp.
dmi.bios.version: 1.40
dmi.board.asset.tag: Base Board Asset Tag
dmi.board.name: Guam
dmi.board.vendor: AMD Corp.
dmi.board.version: Base Board Version
dmi.chassis.asset.tag: No Asset Tag
dmi.chassis.type: 10
dmi.chassis.vendor: Chassis Manufacturer
dmi.chassis.version: Chassis Version
dmi.modalias: 
dmi:bvnInsydeCorp.:bvr1.40:bd04/16/2010:svnTOSHIBA:pnSatelliteL645D:pvrPSK0QU-00K001:rvnAMDCorp.:rnGuam:rvrBaseBoardVersion:cvnChassisManufacturer:ct10:cvrChassisVersion:
dmi.product.name: Satellite L645D
dmi.product.version: PSK0QU-00K001
dmi.sys.vendor: TOSHIBA
glxinfo: Error: [Errno 2] No such file or directory
system:
 distro: Ubuntu
 codename:   lucid
 architecture:   x86_64
 kernel: 2.6.32-23-generic

** Affects: fglrx-installer (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package lucid

-- 
package fglrx 2:8.723.1-0ubuntu4 failed to install/upgrade: fglrx kernel module 
failed to build
https://bugs.launchpad.net/bugs/601447
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to fglrx-installer 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 601447] Re: package fglrx 2:8.723.1-0ubuntu4 failed to install/upgrade: fglrx kernel module failed to build

2010-07-03 Thread Shane

** Attachment added: BootDmesg.txt
   http://launchpadlibrarian.net/51342384/BootDmesg.txt

** Attachment added: CurrentDmesg.txt
   http://launchpadlibrarian.net/51342385/CurrentDmesg.txt

** Attachment added: DKMSBuildLog.txt
   http://launchpadlibrarian.net/51342386/DKMSBuildLog.txt

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

** Attachment added: GdmLog.txt
   http://launchpadlibrarian.net/51342388/GdmLog.txt

** Attachment added: GdmLog1.txt
   http://launchpadlibrarian.net/51342389/GdmLog1.txt

** Attachment added: GdmLog2.txt
   http://launchpadlibrarian.net/51342390/GdmLog2.txt

** Attachment added: Lspci.txt
   http://launchpadlibrarian.net/51342391/Lspci.txt

** Attachment added: Lsusb.txt
   http://launchpadlibrarian.net/51342392/Lsusb.txt

** Attachment added: PciDisplay.txt
   http://launchpadlibrarian.net/51342393/PciDisplay.txt

** Attachment added: ProcCpuinfo.txt
   http://launchpadlibrarian.net/51342394/ProcCpuinfo.txt

** Attachment added: ProcInterrupts.txt
   http://launchpadlibrarian.net/51342396/ProcInterrupts.txt

** Attachment added: ProcModules.txt
   http://launchpadlibrarian.net/51342398/ProcModules.txt

** Attachment added: RelatedPackageVersions.txt
   http://launchpadlibrarian.net/51342399/RelatedPackageVersions.txt

** Attachment added: UdevDb.txt
   http://launchpadlibrarian.net/51342400/UdevDb.txt

** Attachment added: UdevLog.txt
   http://launchpadlibrarian.net/51342401/UdevLog.txt

** Attachment added: XorgLog.txt
   http://launchpadlibrarian.net/51342402/XorgLog.txt

** Attachment added: XorgLogOld.txt
   http://launchpadlibrarian.net/51342403/XorgLogOld.txt

** Attachment added: Xrandr.txt
   http://launchpadlibrarian.net/51342404/Xrandr.txt

** Attachment added: make.log.txt
   http://launchpadlibrarian.net/51342405/make.log.txt

** Attachment added: setxkbmap.txt
   http://launchpadlibrarian.net/51342406/setxkbmap.txt

** Attachment added: xdpyinfo.txt
   http://launchpadlibrarian.net/51342407/xdpyinfo.txt

** Attachment added: xkbcomp.txt
   http://launchpadlibrarian.net/51342408/xkbcomp.txt

-- 
package fglrx 2:8.723.1-0ubuntu4 failed to install/upgrade: fglrx kernel module 
failed to build
https://bugs.launchpad.net/bugs/601447
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to fglrx-installer 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 372841] Re: [X1400] Cursor vanishes in narrow vertical strip of 2nd display

2010-05-08 Thread Shane O'Connell
I'm still seeing this issue, using xserver-xorg-video-ati version
1:6.13.0-1ubuntu5, on lucid.

** Changed in: xserver-xorg-video-ati (Ubuntu)
   Status: Incomplete = Confirmed

-- 
[X1400] Cursor vanishes in narrow vertical strip of 2nd display
https://bugs.launchpad.net/bugs/372841
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-ati 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 509519] Re: Xorg crashed with SIGSEGV in FatalError()

2010-01-19 Thread Shane Fagan
This may be because its an upgrade from hardy to lucid.

-- 
Xorg crashed with SIGSEGV in FatalError()
https://bugs.launchpad.net/bugs/509519
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg-server 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 509519] Re: Xorg crashed with SIGSEGV in FatalError()

2010-01-19 Thread Shane Fagan
** Tags added: hardy2lucid

-- 
Xorg crashed with SIGSEGV in FatalError()
https://bugs.launchpad.net/bugs/509519
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xorg-server 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 493645] Re: Xorg has default screen blanking value set to 600secs

2009-12-09 Thread Shane Corgatelli
** Also affects: xserver-xorg-video-intel (Ubuntu)
   Importance: Undecided
   Status: New

-- 
Xorg has default screen blanking value set to 600secs
https://bugs.launchpad.net/bugs/493645
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 453989] Re: Xephyr - unrecognised device identifier!

2009-10-22 Thread Shane O'Connell
I'm seeing this same problem. I'm trying to use Xephyr to connect to a
host using XDMCP, using this command:

Xephyr :1 -query ip address

It works with Xnest (except for the fact that it looks terrible). If I
run the same command except with -verbosity 1000 I also see this extra
output:


(II) config/hal: initialized(II) AIGLX: Loaded and initialized 
/usr/lib/dri/swrast_dri.so
(II) GLX: Initialized DRISWRAST GL provider for screen 0
[dix] Could not init font path element /usr/share/fonts/X11/cyrillic, removing 
from list!
(II) config/hal: getting input.x11_driver on 
/org/freedesktop/Hal/devices/platform_i8042_i8042_KBD_port_logicaldev_input 
returned evdev
(II) config/hal: getting input.device on 
/org/freedesktop/Hal/devices/platform_i8042_i8042_KBD_port_logicaldev_input 
returned /dev/input/event3
(II) config/hal: getting info.product on 
/org/freedesktop/Hal/devices/platform_i8042_i8042_KBD_port_logicaldev_input 
returned AT Translated Set 2 keyboard
(II) config/hal: getting input.xkb.rules on 
/org/freedesktop/Hal/devices/platform_i8042_i8042_KBD_port_logicaldev_input 
returned base
(II) config/hal: getting input.xkb.model on 
/org/freedesktop/Hal/devices/platform_i8042_i8042_KBD_port_logicaldev_input 
returned pc105
(II) config/hal: getting input.xkb.layout on 
/org/freedesktop/Hal/devices/platform_i8042_i8042_KBD_port_logicaldev_input 
returned us
(II) config/hal: getting input.xkb.options on 
/org/freedesktop/Hal/devices/platform_i8042_i8042_KBD_port_logicaldev_input 
returned lv3:ralt_switch
(II) config/hal: Adding input device AT Translated Set 2 keyboard
unrecognised device identifier!
(EE) config/hal: NewInputDeviceRequest failed (2)
(II) config/hal: getting input.x11_driver on 
/org/freedesktop/Hal/devices/computer_logicaldev_input_0 returned evdev
(II) config/hal: getting input.device on 
/org/freedesktop/Hal/devices/computer_logicaldev_input_0 returned 
/dev/input/event1
(II) config/hal: getting info.product on 
/org/freedesktop/Hal/devices/computer_logicaldev_input_0 returned Power Button
(II) config/hal: getting input.xkb.rules on 
/org/freedesktop/Hal/devices/computer_logicaldev_input_0 returned base
(II) config/hal: getting input.xkb.model on 
/org/freedesktop/Hal/devices/computer_logicaldev_input_0 returned pc105
(II) config/hal: getting input.xkb.layout on 
/org/freedesktop/Hal/devices/computer_logicaldev_input_0 returned us
(II) config/hal: getting input.xkb.options on 
/org/freedesktop/Hal/devices/computer_logicaldev_input_0 returned 
lv3:ralt_switch
(II) config/hal: Adding input device Power Button
unrecognised device identifier!
(EE) config/hal: NewInputDeviceRequest failed (2)
(II) config/hal: getting input.x11_driver on 
/org/freedesktop/Hal/devices/computer_logicaldev_input returned evdev
(II) config/hal: getting input.device on 
/org/freedesktop/Hal/devices/computer_logicaldev_input returned 
/dev/input/event0
(II) config/hal: getting info.product on 
/org/freedesktop/Hal/devices/computer_logicaldev_input returned Power Button
(II) config/hal: getting input.xkb.rules on 
/org/freedesktop/Hal/devices/computer_logicaldev_input returned base
(II) config/hal: getting input.xkb.model on 
/org/freedesktop/Hal/devices/computer_logicaldev_input returned pc105
(II) config/hal: getting input.xkb.layout on 
/org/freedesktop/Hal/devices/computer_logicaldev_input returned us
(II) config/hal: getting input.xkb.options on 
/org/freedesktop/Hal/devices/computer_logicaldev_input returned lv3:ralt_switch
(II) config/hal: Adding input device Power Button
unrecognised device identifier!
(EE) config/hal: NewInputDeviceRequest failed (2)
(II) config/hal: getting input.x11_driver on 
/org/freedesktop/Hal/devices/computer_logicaldev_input_1 returned evdev
(II) config/hal: getting input.device on 
/org/freedesktop/Hal/devices/computer_logicaldev_input_1 returned 
/dev/input/event2
(II) config/hal: getting info.product on 
/org/freedesktop/Hal/devices/computer_logicaldev_input_1 returned Macintosh 
mouse button emulation
(II) config/hal: Adding input device Macintosh mouse button emulation
unrecognised device identifier!
(EE) config/hal: NewInputDeviceRequest failed (2)
(II) config/hal: getting input.x11_driver on 
/org/freedesktop/Hal/devices/usb_device_45e_1e_noserial_if0_logicaldev_input 
returned evdev
(II) config/hal: getting input.device on 
/org/freedesktop/Hal/devices/usb_device_45e_1e_noserial_if0_logicaldev_input 
returned /dev/input/event4
(II) config/hal: getting info.product on 
/org/freedesktop/Hal/devices/usb_device_45e_1e_noserial_if0_logicaldev_input 
returned Microsoft Microsoft IntelliMouse® Explorer
(II) config/hal: Adding input device Microsoft Microsoft IntelliMouse® Explorer
unrecognised device identifier!
(EE) config/hal: NewInputDeviceRequest failed (2)
(II) config/hal: getting input.x11_driver on 
/org/freedesktop/Hal/devices/pci_8086_293e_logicaldev_input returned (null)
(II) config/hal: no driver specified for device 

[Ubuntu-x-swat] [Bug 453989] Re: Xephyr - unrecognised device identifier!

2009-10-22 Thread Shane O'Connell

** Attachment added: dmesg.txt
   http://launchpadlibrarian.net/34194503/dmesg.txt

** Changed in: xorg (Ubuntu)
   Status: Incomplete = Confirmed

-- 
Xephyr - unrecognised device identifier!
https://bugs.launchpad.net/bugs/453989
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 453989] Re: Xephyr - unrecognised device identifier!

2009-10-22 Thread Shane O'Connell

** Attachment added: lspci.txt
   http://launchpadlibrarian.net/34194498/lspci.txt

-- 
Xephyr - unrecognised device identifier!
https://bugs.launchpad.net/bugs/453989
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 372841] Re: [X1400] Cursor vanishes in narrow vertical strip of 2nd display

2009-10-13 Thread Shane O'Connell
** Changed in: xserver-xorg-video-ati (Ubuntu)
   Status: Incomplete = Confirmed

-- 
[X1400] Cursor vanishes in narrow vertical strip of 2nd display
https://bugs.launchpad.net/bugs/372841
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-ati 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 372841] Re: [X1400] Cursor vanishes in narrow vertical strip of 2nd display

2009-10-07 Thread Shane O'Connell
I'm seeing this issue as well, using version
1:6.12.99+git20090825.fc74e119-0ubuntu3 with an ATI Radeon HD 3870, two
monitors at 1280x1024. The vertical strip appears on the right side
monitor, on the left side of it's screen and it's about the width of the
mouse cursor itself.

I also had to manually edit /etc/X11/xorg.conf as well, the graphical
configuration tool set the Virtual size incorrectly and I had to change
it to Virtual 2560 1024.

-- 
[X1400] Cursor vanishes in narrow vertical strip of 2nd display
https://bugs.launchpad.net/bugs/372841
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-ati 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 190585] Re: System lags after resume due to high hard drive activity

2009-09-08 Thread Shane Kerr
*** This bug is a duplicate of bug 15372 ***
https://bugs.launchpad.net/bugs/15372

It seems like everyone here has an ATI card. This may be more like bug
391628.

-- 
System lags after resume due to high hard drive activity
https://bugs.launchpad.net/bugs/190585
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to linux-restricted-modules-2.6.24 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 414773] Re: ATI-Driver do not work

2009-08-17 Thread shane fagan
This is not a bug with ubuntu docs. Im changing it to the package I
think it affects.

** Package changed: ubuntu-docs (Ubuntu) = xserver-xorg-video-ati
(Ubuntu)

-- 
ATI-Driver do not work
https://bugs.launchpad.net/bugs/414773
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-ati 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 393948] [NEW] Error in update [Karmic]

2009-06-30 Thread shane fagan
Public bug reported:

Binary package hint: xorg

Error in updating xserver-xorg. Here is the print out. 
(Reading database ... 182233 files and directories currently installed.)
Preparing to replace xserver-xorg 1:7.4~5ubuntu21 (using 
.../xserver-xorg_1%3a7.4+3ubuntu1_amd64.deb) ...
Unpacking replacement xserver-xorg ...
dpkg: error processing 
/var/cache/apt/archives/xserver-xorg_1%3a7.4+3ubuntu1_amd64.deb (--unpack):
 trying to overwrite `/usr/lib/hal/debian-setup-keyboard', which is also in 
package hal
Errors were encountered while processing:
 /var/cache/apt/archives/xserver-xorg_1%3a7.4+3ubuntu1_amd64.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)

ProblemType: Bug
Architecture: amd64
Date: Tue Jun 30 18:27:44 2009
DistroRelease: Ubuntu 9.10
MachineType: Hewlett-Packard Compaq Presario CQ60 Notebook PC
NonfreeKernelModules: nvidia
Package: xserver-xorg 1:7.4~5ubuntu21
ProcCmdLine: root=UUID=b7bc8d15-7919-4b9e-85c8-f6e21c89ed13 ro quiet splash
ProcEnviron:
 PATH=(custom, user)
 LANG=en_IE.UTF-8
 SHELL=/bin/bash
ProcVersionSignature: Ubuntu 2.6.30-10.12-generic
RelatedPackageVersions:
 xserver-xorg 1:7.4~5ubuntu21
 libgl1-mesa-glx 7.4.1-1ubuntu6
 libdrm2 2.4.11-0ubuntu1
 xserver-xorg-video-intel 2:2.7.99.1+git20090602.ec2fde7c-0ubuntu4
 xserver-xorg-video-ati 1:6.12.2-2ubuntu2
SourcePackage: xorg
Uname: Linux 2.6.30-10-generic x86_64
dmi.bios.date: 10/03/2008
dmi.bios.vendor: Hewlett-Packard
dmi.bios.version: F.25
dmi.board.name: 303C
dmi.board.vendor: Wistron
dmi.board.version: 08.45
dmi.chassis.type: 10
dmi.chassis.vendor: Wistron
dmi.chassis.version: N/A
dmi.modalias: 
dmi:bvnHewlett-Packard:bvrF.25:bd10/03/2008:svnHewlett-Packard:pnCompaqPresarioCQ60NotebookPC:pvrF.25:rvnWistron:rn303C:rvr08.45:cvnWistron:ct10:cvrN/A:
dmi.product.name: Compaq Presario CQ60 Notebook PC
dmi.product.version: F.25
dmi.sys.vendor: Hewlett-Packard
fglrx: Not loaded
system:
 distro: Ubuntu
 architecture:   x86_64kernel: 2.6.30-10-generic

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


** Tags: amd64 apport-bug karmic

-- 
Error in update [Karmic]
https://bugs.launchpad.net/bugs/393948
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 393948] Re: Error in update [Karmic]

2009-06-30 Thread shane fagan

** Attachment added: BootDmesg.txt
   http://launchpadlibrarian.net/28553789/BootDmesg.txt

** Attachment added: CurrentDmesg.txt
   http://launchpadlibrarian.net/28553790/CurrentDmesg.txt

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

** Attachment added: GdmLog.txt
   http://launchpadlibrarian.net/28553792/GdmLog.txt

** Attachment added: GdmLogOld.txt
   http://launchpadlibrarian.net/28553793/GdmLogOld.txt

** Attachment added: Lspci.txt
   http://launchpadlibrarian.net/28553794/Lspci.txt

** Attachment added: Lsusb.txt
   http://launchpadlibrarian.net/28553795/Lsusb.txt

** Attachment added: PciDisplay.txt
   http://launchpadlibrarian.net/28553796/PciDisplay.txt

** Attachment added: ProcCpuinfo.txt
   http://launchpadlibrarian.net/28553798/ProcCpuinfo.txt

** Attachment added: ProcInterrupts.txt
   http://launchpadlibrarian.net/28553800/ProcInterrupts.txt

** Attachment added: ProcModules.txt
   http://launchpadlibrarian.net/28553802/ProcModules.txt

** Attachment added: UdevDb.txt
   http://launchpadlibrarian.net/28553803/UdevDb.txt

** Attachment added: UdevLog.txt
   http://launchpadlibrarian.net/28553804/UdevLog.txt

** Attachment added: XorgConf.txt
   http://launchpadlibrarian.net/28553805/XorgConf.txt

** Attachment added: XorgLog.txt
   http://launchpadlibrarian.net/28553806/XorgLog.txt

** Attachment added: XorgLogOld.txt
   http://launchpadlibrarian.net/28553807/XorgLogOld.txt

** Attachment added: Xrandr.txt
   http://launchpadlibrarian.net/28553808/Xrandr.txt

** Attachment added: glxinfo.txt
   http://launchpadlibrarian.net/28553809/glxinfo.txt

** Attachment added: setxkbmap.txt
   http://launchpadlibrarian.net/28553810/setxkbmap.txt

** Attachment added: xdpyinfo.txt
   http://launchpadlibrarian.net/28553811/xdpyinfo.txt

** Attachment added: xkbcomp.txt
   http://launchpadlibrarian.net/28553812/xkbcomp.txt

** Tags added: karmic

-- 
Error in update [Karmic]
https://bugs.launchpad.net/bugs/393948
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 393948] Re: Error in update [Karmic]

2009-06-30 Thread shane fagan
Update fixes this.

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

-- 
Error in update [Karmic]
https://bugs.launchpad.net/bugs/393948
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