[Ubuntu-x-swat] [Bug 1755097] Re: LIBGL_ALWAYS_SOFTWARE=1 renderer used instead of Intel on Xorg sessions because of unity leftover file /etc/X11/Xsession.d/50_check_unity_support

2018-08-08 Thread shankao
*** This bug is a duplicate of bug 1768610 ***
https://bugs.launchpad.net/bugs/1768610

** This bug has been marked a duplicate of bug 1768610
   leftover conffile forces GNOME is software rendering

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

Title:
  LIBGL_ALWAYS_SOFTWARE=1 renderer used instead of Intel on Xorg
  sessions because of unity leftover file
  /etc/X11/Xsession.d/50_check_unity_support

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mesa/+bug/1755097/+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 1755097] Re: LLVMpipe renderer used instead of Intel on Xorg sessions because of unity leftover file /etc/X11/Xsession.d/50_check_unity_support

2018-04-19 Thread shankao
I solved the problem for my with "apt purge nux-tools"

** Summary changed:

- LLVMpipe renderer used instead of Intel on Xorg sessions
+ LLVMpipe renderer used instead of Intel on Xorg sessions because of unity 
leftover file /etc/X11/Xsession.d/50_check_unity_support

** Summary changed:

- LLVMpipe renderer used instead of Intel on Xorg sessions because of unity 
leftover file /etc/X11/Xsession.d/50_check_unity_support
+ LIBGL_ALWAYS_SOFTWARE=1 renderer used instead of Intel on Xorg sessions 
because of unity leftover file /etc/X11/Xsession.d/50_check_unity_support

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

Title:
  LIBGL_ALWAYS_SOFTWARE=1 renderer used instead of Intel on Xorg
  sessions because of unity leftover file
  /etc/X11/Xsession.d/50_check_unity_support

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mesa/+bug/1755097/+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 1755097] Re: LLVMpipe renderer used instead of Intel on Xorg sessions

2018-04-19 Thread shankao
For the record:

$ dpkg -S /etc/X11/Xsession.d/50_check_unity_support
nux-tools: /etc/X11/Xsession.d/50_check_unity_support

$ apt rdepends --installed unity
unity
Reverse Depends:
  Breaks: ubuntu-session (<< 7.5.0+17.10.20170619)

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

Title:
  LIBGL_ALWAYS_SOFTWARE=1 renderer used instead of Intel on Xorg
  sessions because of unity leftover file
  /etc/X11/Xsession.d/50_check_unity_support

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mesa/+bug/1755097/+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 1755097] Re: LLVMpipe renderer used instead of Intel on Xorg sessions

2018-04-19 Thread shankao
So, after investigating this problem, I finally saw the cause: under
X.org, the environment variable LIBGL_ALWAYS_SOFTWARE is set to 1
*always*. Without it, it uses the intel driver as usual:

$ LIBGL_ALWAYS_SOFTWARE=0 glxinfo | grep -i opengl
OpenGL vendor string: Intel Open Source Technology Center
OpenGL renderer string: Mesa DRI Intel(R) UHD Graphics 620 (Kabylake GT2) 
OpenGL core profile version string: 4.5 (Core Profile) Mesa 18.0.0-rc5
OpenGL core profile shading language version string: 4.50
OpenGL core profile context flags: (none)
OpenGL core profile profile mask: core profile
OpenGL core profile extensions:
OpenGL version string: 3.0 Mesa 18.0.0-rc5
OpenGL shading language version string: 1.30
OpenGL context flags: (none)
OpenGL extensions:
OpenGL ES profile version string: OpenGL ES 3.2 Mesa 18.0.0-rc5
OpenGL ES profile shading language version string: OpenGL ES GLSL ES 3.20
OpenGL ES profile extensions:

This is probably because I have an old unity file that's running when my
session starts (/etc/X11/Xsession.d/50_check_unity_support) with these
contents:

# This file is sourced by Xsession(5), not executed.
# If the hardware does not pass unity_support_test, fall back to LLVMpipe
# which does.

if [ "x$DESKTOP_SESSION" = "xubuntu" ]; then
/usr/lib/nux/unity_support_test || export LIBGL_ALWAYS_SOFTWARE=1
fi

And given that the file /usr/lib/nux/unity_support_test doesn't exist
anymore, it always exports the variable.

I think that there is still a bug here, and some possible fixes:

a) Remove the offending file when unity is removed
b) Fix the condition to check if unity_support_test exists
c) Be sure that ubuntu-bug reports the status of the flag for mesa bugs
d) Make that glxinfo prominently warns that the current env forces it to run in 
software mode

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

Title:
  LIBGL_ALWAYS_SOFTWARE=1 renderer used instead of Intel on Xorg
  sessions because of unity leftover file
  /etc/X11/Xsession.d/50_check_unity_support

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mesa/+bug/1755097/+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 1755097] Re: LLVMpipe renderer used instead of Intel on Xorg sessions

2018-03-13 Thread shankao
Ok. Is there any other command to run or logs that I can add to spot the
problem of it using llvmpipe?

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

Title:
  LLVMpipe renderer used instead of Intel on Xorg sessions

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mesa/+bug/1755097/+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 1755097] Re: LLVMpipe renderer used instead of Intel on Xorg sessions

2018-03-12 Thread shankao
Shouldn't this info be included in the original report that ubuntu-bug
creates? It would remove the step of asking it later in the bug report

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

Title:
  LLVMpipe renderer used instead of Intel on Xorg sessions

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mesa/+bug/1755097/+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 1755097] Re: LLVMpipe renderer used instead of Intel on Xorg sessions

2018-03-12 Thread shankao
$ apt-cache policy libegl-mesa0 libglx-mesa0
libegl-mesa0:
  Installed: 18.0.0~rc4-1ubuntu3
  Candidate: 18.0.0~rc4-1ubuntu3
  Version table:
 *** 18.0.0~rc4-1ubuntu3 500
500 http://archive.ubuntu.com/ubuntu bionic/main amd64 Packages
100 /var/lib/dpkg/status
libglx-mesa0:
  Installed: 18.0.0~rc4-1ubuntu3
  Candidate: 18.0.0~rc4-1ubuntu3
  Version table:
 *** 18.0.0~rc4-1ubuntu3 500
500 http://archive.ubuntu.com/ubuntu bionic/main amd64 Packages
100 /var/lib/dpkg/status

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

Title:
  LLVMpipe renderer used instead of Intel on Xorg sessions

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mesa/+bug/1755097/+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 1755097] Re: LLVMpipe renderer used instead of Intel on Xorg sessions

2018-03-12 Thread shankao
$ apt-cache policy libgl1 libegl1
libgl1:
  Installed: 1.0.0-2ubuntu2
  Candidate: 1.0.0-2ubuntu2
  Version table:
 *** 1.0.0-2ubuntu2 500
500 http://archive.ubuntu.com/ubuntu bionic/main amd64 Packages
100 /var/lib/dpkg/status
libegl1:
  Installed: 1.0.0-2ubuntu2
  Candidate: 1.0.0-2ubuntu2
  Version table:
 *** 1.0.0-2ubuntu2 500
500 http://archive.ubuntu.com/ubuntu bionic/main amd64 Packages
100 /var/lib/dpkg/status

** Changed in: mesa (Ubuntu)
   Status: Incomplete => Confirmed

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

Title:
  LLVMpipe renderer used instead of Intel on Xorg sessions

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mesa/+bug/1755097/+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 1755097] [NEW] LLVMpipe renderer used instead of Intel on Xorg sessions

2018-03-12 Thread shankao
Public bug reported:

3D acceleration is not working at the moment in Xorg because the
LLVMpipe renderer is used. Instead, the correct Intel driver is used
when trying Wayland sessions.

shankao@schwifty:~$ glxinfo | grep -i opengl
OpenGL vendor string: VMware, Inc.
OpenGL renderer string: llvmpipe (LLVM 5.0, 256 bits)
OpenGL core profile version string: 3.3 (Core Profile) Mesa 18.0.0-rc4
OpenGL core profile shading language version string: 3.30
OpenGL core profile context flags: (none)
OpenGL core profile profile mask: core profile
OpenGL core profile extensions:
OpenGL version string: 3.0 Mesa 18.0.0-rc4
OpenGL shading language version string: 1.30
OpenGL context flags: (none)
OpenGL extensions:
OpenGL ES profile version string: OpenGL ES 3.0 Mesa 18.0.0-rc4
OpenGL ES profile shading language version string: OpenGL ES GLSL ES 3.00
OpenGL ES profile extensions:
shankao@schwifty:~$

ProblemType: Bug
DistroRelease: Ubuntu 18.04
Package: libegl-mesa0 18.0.0~rc4-1ubuntu3
ProcVersionSignature: Ubuntu 4.15.0-10.11-generic 4.15.3
Uname: Linux 4.15.0-10-generic x86_64
ApportVersion: 2.20.8-0ubuntu10
Architecture: amd64
CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
CompositorRunning: None
CurrentDesktop: ubuntu:GNOME
Date: Mon Mar 12 15:06:16 2018
DistUpgraded: 2018-01-09 22:07:50,078 DEBUG Running PostInstallScript: 
'./xorg_fix_proprietary.py'
DistroCodename: bionic
DistroVariant: ubuntu
DkmsStatus: virtualbox, 5.2.8, 4.15.0-10-generic, x86_64: installed
EcryptfsInUse: Yes
ExtraDebuggingInterest: Yes, if not too technical
GraphicsCard:
 Intel Corporation UHD Graphics 620 [8086:5917] (rev 07) (prog-if 00 [VGA 
controller])
   Subsystem: Acer Incorporated [ALI] UHD Graphics 620 [1025:118c]
InstallationDate: Installed on 2018-01-09 (61 days ago)
InstallationMedia: Ubuntu 16.04.2 LTS "Xenial Xerus" - Release amd64 
(20170215.2)
MachineType: Acer Swift SF314-52
ProcEnviron:
 LANGUAGE=en_SG:en
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=en_SG.UTF-8
 SHELL=/bin/bash
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.15.0-10-generic 
root=UUID=e60d0a36-2013-48c7-bf91-fd01764bae3b ro quiet splash vt.handoff=1
SourcePackage: mesa
UpgradeStatus: Upgraded to bionic on 2018-01-09 (61 days ago)
dmi.bios.date: 07/18/2017
dmi.bios.vendor: Insyde Corp.
dmi.bios.version: V1.06
dmi.board.asset.tag: Type2 - Board Asset Tag
dmi.board.name: Suntory_KL
dmi.board.vendor: KBL
dmi.board.version: V1.06
dmi.chassis.type: 10
dmi.chassis.vendor: Acer
dmi.chassis.version: Chassis Version
dmi.modalias: 
dmi:bvnInsydeCorp.:bvrV1.06:bd07/18/2017:svnAcer:pnSwiftSF314-52:pvrV1.06:rvnKBL:rnSuntory_KL:rvrV1.06:cvnAcer:ct10:cvrChassisVersion:
dmi.product.family: Swift 3
dmi.product.name: Swift SF314-52
dmi.product.version: V1.06
dmi.sys.vendor: Acer
version.compiz: compiz 1:0.9.13.1+18.04.20180302-0ubuntu1
version.libdrm2: libdrm2 2.4.90-1
version.libgl1-mesa-dri: libgl1-mesa-dri 18.0.0~rc4-1ubuntu3
version.libgl1-mesa-glx: libgl1-mesa-glx 18.0.0~rc4-1ubuntu3
version.xserver-xorg-core: xserver-xorg-core 2:1.19.6-1ubuntu2
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.10.0-1
version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20171229-1
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.15-2

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


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

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

Title:
  LLVMpipe renderer used instead of Intel on Xorg sessions

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mesa/+bug/1755097/+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 1753663] Re: [Mesa 18.0 + nvidia-390] No 3D acceleration, using llvmpipe

2018-03-07 Thread shankao
I have tried every solution in this bug, but still getting LLVMpipe
renderer. Strangely, it only happens in X.org, but picks the correct
Intel in Wayland

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

Title:
  [Mesa 18.0 + nvidia-390] No 3D acceleration, using llvmpipe

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libglvnd/+bug/1753663/+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 1753087] Re: package libgl1 1.0.0-2ubuntu1 failed to install/upgrade: zkouším přepsat soubor „/usr/lib/i386-linux-gnu/libGL.so.1“, který je také v balíku nvidia-340 340.106-0ubunt

2018-03-06 Thread shankao
*** This bug is a duplicate of bug 1753061 ***
https://bugs.launchpad.net/bugs/1753061

** This bug has been marked a duplicate of bug 1753061
   package libgl1 1.0.0-2ubuntu1 failed to install/upgrade: trying to overwrite 
'/usr/lib/i386-linux-gnu/libGL.so.1', which is also in package nvidia-340 
340.106-0ubuntu2

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

Title:
  package libgl1 1.0.0-2ubuntu1 failed to install/upgrade: zkouším
  přepsat soubor „/usr/lib/i386-linux-gnu/libGL.so.1“, který je také v
  balíku nvidia-340 340.106-0ubuntu2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libglvnd/+bug/1753087/+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 1753124] Re: package libgl1 1.0.0-2ubuntu1 failed to install/upgrade: intentando sobreescribir `/usr/lib/i386-linux-gnu/libGL.so.1', que está también en el paquete nvidia-340 340.

2018-03-06 Thread shankao
*** This bug is a duplicate of bug 1753061 ***
https://bugs.launchpad.net/bugs/1753061

** This bug has been marked a duplicate of bug 1753061
   package libgl1 1.0.0-2ubuntu1 failed to install/upgrade: trying to overwrite 
'/usr/lib/i386-linux-gnu/libGL.so.1', which is also in package nvidia-340 
340.106-0ubuntu2

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

Title:
  package libgl1 1.0.0-2ubuntu1 failed to install/upgrade: intentando
  sobreescribir `/usr/lib/i386-linux-gnu/libGL.so.1', que está también
  en el paquete nvidia-340 340.106-0ubuntu2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libglvnd/+bug/1753124/+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 1437931] Re: Stellarium causes X to freeze after a while

2016-03-19 Thread shankao
Changing package as per https://wiki.ubuntu.com/X/Triaging

** Package changed: xorg (Ubuntu) => xorg-server (Ubuntu)

** Tags added: xenial

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

Title:
  Stellarium causes X to freeze after a while

To manage notifications about this bug go to:
https://bugs.launchpad.net/stellarium/+bug/1437931/+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 1437931] Re: starting stellarium causes system crash

2016-03-19 Thread shankao
Confirmed as happening in Xenial too

** Also affects: xorg (Ubuntu)
   Importance: Undecided
   Status: New

** Summary changed:

- starting stellarium causes system crash
+ starting stellarium causes X to freeze

** Summary changed:

- starting stellarium causes X to freeze
+ Stellarium causes X to freeze after a while

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

Title:
  Stellarium causes X to freeze after a while

To manage notifications about this bug go to:
https://bugs.launchpad.net/stellarium/+bug/1437931/+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 1441951] Re: Enable DRI3

2016-03-18 Thread shankao
It seems to have being explicitly disabled in the driver after this bug report: 
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-intel/+bug/1401784
It includes instructions on how to try back DRI3 and an example of test case to 
try with the latest code

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

Title:
  Enable DRI3

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-intel/+bug/1441951/+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 1441951] Re: Enable DRI3

2016-02-24 Thread shankao
Those bugs should be reported to mesa, kernel and unity7 (if they are
already not) and maybe, added here, so we can keep track of the progress

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

Title:
  Enable DRI3

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-intel/+bug/1441951/+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 1003950] Re: launcher does not show minimized update manager while clicked

2015-01-31 Thread shankao
Quantal has reached EOL

** Changed in: xserver-xorg-video-nouveau (Ubuntu Quantal)
   Status: New = Invalid

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

Title:
  launcher does not show minimized update manager while clicked

To manage notifications about this bug go to:
https://bugs.launchpad.net/compiz/+bug/1003950/+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 1003950] Re: launcher does not show minimized update manager while clicked

2015-01-31 Thread shankao
Quantal has reached EOL

** Changed in: binary-driver-fglrx (Ubuntu Quantal)
   Status: New = Invalid

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

Title:
  launcher does not show minimized update manager while clicked

To manage notifications about this bug go to:
https://bugs.launchpad.net/compiz/+bug/1003950/+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 1003950] Re: launcher does not show minimized update manager while clicked

2015-01-31 Thread shankao
Quantal has reached EOL

** Changed in: intel-linux-graphics-installer (Ubuntu Quantal)
   Status: New = Invalid

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

Title:
  launcher does not show minimized update manager while clicked

To manage notifications about this bug go to:
https://bugs.launchpad.net/compiz/+bug/1003950/+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 1292737] Re: session

2014-03-31 Thread shankao
It seems more like a problem with X.org, per 
https://wiki.ubuntu.com/Bugs/FindRightPackage#Graphical_Environment
Changing package accordingly.

** Package changed: vlc (Ubuntu) = xorg (Ubuntu)

** Summary changed:

- session
+ Session terminates while using some video players

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

Title:
  Session terminates while using some video players

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1292737/+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 1002224] Re: Please include gallium vdpau and xvmc driver support

2014-01-19 Thread shankao
Maybe in Ubuntu is this one? https://launchpad.net/ubuntu/+source/linux-
firmware-nonfree

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is a bug assignee.
https://bugs.launchpad.net/bugs/1002224

Title:
  Please include gallium vdpau and xvmc driver support

To manage notifications about this bug go to:
https://bugs.launchpad.net/mesa/+bug/1002224/+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 1268229] Re: not HDMI output option (audio) xserver-xorg-video-ati (1:7.2.0-0ubuntu10)

2014-01-19 Thread shankao
The 3.11 kernel with radeon.audio=1 should work also, it's the method I
was using before. But your system could behave differently as it's a
different and more modern radeon card (HD 7770 in your case).

If the 3.11 kernel does not have the support for it (you could check in
some linux kernel forum to be sure), then it's not probable that Ubuntu
13.10 would backport it from kernel 3.13 and would be better to wait for
Ubuntu 14.04 that already includes the new kernel with proper HDMI audio
support.

So to recap: if you need the audio, update the kernel to 3.13, but
remember that you'll not get it updated until the default in your Ubuntu
version reaches it. This includes security updates... So it's a features
vs. security updates decision :)

** Summary changed:

- not HDMI output option (audio) xserver-xorg-video-ati (1:7.2.0-0ubuntu10)
+ No HDMI output option (audio) xserver-xorg-video-ati (1:7.2.0-0ubuntu10)

** Summary changed:

- No HDMI output option (audio) xserver-xorg-video-ati (1:7.2.0-0ubuntu10)
+ No HDMI audio on Radeon HD 7770 xserver-xorg-video-ati (1:7.2.0-0ubuntu10)

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

Title:
  No HDMI audio on Radeon HD 7770 xserver-xorg-video-ati
  (1:7.2.0-0ubuntu10)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-ati/+bug/1268229/+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 1268229] Re: not HDMI output option (audio) xserver-xorg-video-ati (1:7.2.0-0ubuntu10)

2014-01-15 Thread shankao
That's also an option; the 3.13 has radeon HDMI audio enabled by
default. Just remember that the 3.13 kernel is not supported in your
current Ubuntu release (13.10).

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

Title:
  not HDMI output option (audio) xserver-xorg-video-ati
  (1:7.2.0-0ubuntu10)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-ati/+bug/1268229/+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 680614] Re: Position of second monitor wrong in dual monitor setup if first monitor is 1366x768

2014-01-14 Thread shankao
** Also affects: xserver-xorg-driver-ati via
   https://bugs.freedesktop.org/show_bug.cgi?id=63900
   Importance: Unknown
   Status: Unknown

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

Title:
  Position of second monitor wrong in dual monitor setup if first
  monitor is 1366x768

To manage notifications about this bug go to:
https://bugs.launchpad.net/xserver-xorg-driver-ati/+bug/680614/+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 628256] Re: Part of the left screen shows up on the right

2014-01-14 Thread shankao
*** This bug is a duplicate of bug 680614 ***
https://bugs.launchpad.net/bugs/680614

Thank you for taking the time to report this bug and helping to make
Ubuntu better. This particular bug has already been reported and is a
duplicate of bug 680614, so it is being marked as such. Please look at
the other bug report to see if there is any missing information that you
can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report. Feel free to continue to report any other bugs you may
find.

** This bug has been marked a duplicate of bug 680614
   Position of second monitor wrong in dual monitor setup if first monitor is 
1366x768

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

Title:
  Part of the left screen shows up on the right

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-ati/+bug/628256/+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 472716] Re: dual screen setup: contents of both screens are shifted right by one pixel

2014-01-14 Thread shankao
*** This bug is a duplicate of bug 680614 ***
https://bugs.launchpad.net/bugs/680614

** This bug has been marked a duplicate of bug 680614
   Position of second monitor wrong in dual monitor setup if first monitor is 
1366x768

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

Title:
  dual screen setup: contents of both screens are shifted right by one
  pixel

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/472716/+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 666058] Re: Main Screen Overlaps Second Screen

2014-01-14 Thread shankao
*** This bug is a duplicate of bug 680614 ***
https://bugs.launchpad.net/bugs/680614

Thank you for taking the time to report this bug and helping to make
Ubuntu better. This particular bug has already been reported and is a
duplicate of bug 680614, so it is being marked as such. Please look at
the other bug report to see if there is any missing information that you
can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report. Feel free to continue to report any other bugs you may
find.

** This bug has been marked a duplicate of bug 680614
   Position of second monitor wrong in dual monitor setup if first monitor is 
1366x768

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

Title:
  Main Screen Overlaps Second Screen

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-ati/+bug/666058/+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 1268229] Re: not HDMI output option (audio) xserver-xorg-video-ati (1:7.2.0-0ubuntu10)

2014-01-14 Thread shankao
With a kernel before 3.13 (first included in Ubuntu trusty) the HDMI
output is not enabled by default in the open source driver. Please,
check that you're using the kernel parameter radeon.audio=1 during boot,
or add it to your grub configuration.

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

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

Title:
  not HDMI output option (audio) xserver-xorg-video-ati
  (1:7.2.0-0ubuntu10)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-ati/+bug/1268229/+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 1268229] Re: not HDMI output option (audio) xserver-xorg-video-ati (1:7.2.0-0ubuntu10)

2014-01-14 Thread shankao
You can mark a bug as duplicate of another by using the option on the
right top of the page (Mark as duplicate) and then indicate the main
bug number from which that bug is a duplicate.

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

Title:
  not HDMI output option (audio) xserver-xorg-video-ati
  (1:7.2.0-0ubuntu10)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-ati/+bug/1268229/+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 1268229] Re: not HDMI output option (audio) xserver-xorg-video-ati (1:7.2.0-0ubuntu10)

2014-01-14 Thread shankao
About the bug itself: can you please add here the output of the command: cat 
/proc/cmdline and dmesg | grep HDMI ?
Also, note that, once you have enabled the HDMI audio option in the kernel, you 
need to select it for output on the ubuntu sound settings.

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

Title:
  not HDMI output option (audio) xserver-xorg-video-ati
  (1:7.2.0-0ubuntu10)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-ati/+bug/1268229/+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 683905] Re: Xorg locks up after crash with Radeon HD5670 and dual-monitor setup

2014-01-14 Thread shankao
** Package changed: xserver-xorg-driver-ati (Ubuntu) = xserver-xorg-
video-ati (Ubuntu)

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

Title:
  Xorg locks up after crash with Radeon HD5670 and dual-monitor setup

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-ati/+bug/683905/+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 285603] Re: MASTER: xserver crash, performs poorly, or other severe problem when loading the radeon driver if -fglrx has not been properly removed first

2014-01-14 Thread shankao
** Tags added: jaunty karmic

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

Title:
  MASTER: xserver crash, performs poorly, or other severe problem when
  loading the radeon driver if -fglrx has not been properly removed
  first

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-ati/+bug/285603/+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 285603] Re: MASTER: xserver crash, performs poorly, or other severe problem when loading the radeon driver if -fglrx has not been properly removed first

2014-01-14 Thread shankao
More information here:
https://wiki.ubuntu.com/X/Troubleshooting/VideoDriverDetection#Problem
:_Need_to_purge_-fglrx

Is this still a problem? If it's so, shouldn't this bug be fixed via a 
conflicts in the packages of both the open source and the proprietary driver?
Otherwise, jockey could deal with the driver situation in a more automatic way.

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

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

Title:
  MASTER: xserver crash, performs poorly, or other severe problem when
  loading the radeon driver if -fglrx has not been properly removed
  first

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-ati/+bug/285603/+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 1085338]

2014-01-13 Thread shankao
This is still an existing problem since a couple of years in my setup,
so I'll try to move it a bit to get it solved:

I wonder if there's any way on which this alignment could be off-by-one
in the xrandr code for this specific case. Is there any way or place
where I could have a look and try?

Thanks.

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

Title:
  One pixel column that belongs in one monitor shows up in the other
  instead

To manage notifications about this bug go to:
https://bugs.launchpad.net/xserver-xorg-driver-ati/+bug/1085338/+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 1085338] Re: One pixel column that belongs in one monitor shows up in the other instead

2014-01-12 Thread shankao
The problem seems to be an upstream one as seen in the comments

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

Title:
  One pixel column that belongs in one monitor shows up in the other
  instead

To manage notifications about this bug go to:
https://bugs.launchpad.net/xserver-xorg-driver-ati/+bug/1085338/+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 1110286] Re: Xorg crashed with SIGABRT in EVERGREENUploadToScreen()

2014-01-10 Thread shankao
It is working fine now. Thanks

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

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

Title:
  Xorg crashed with SIGABRT in EVERGREENUploadToScreen()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-ati/+bug/1110286/+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 569711] Re: The system is very slow. The memory is not freed after closing a program. (-pae)

2013-10-15 Thread shankao
As per comment #11, it seems that the original reported got it solved in
a way unrelated to the -ati package.

Is this bug still affecting anyone? If not, I suggest this bug should be
marked as Invalid instead.

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

Title:
  The system is very slow. The memory is not freed after closing a
  program. (-pae)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-ati/+bug/569711/+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 1002224] Re: Please include gallium vdpau and xvmc driver support

2013-10-15 Thread shankao
@Timo, is there a testing package in any PPA around?

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is a bug assignee.
https://bugs.launchpad.net/bugs/1002224

Title:
  Please include gallium vdpau and xvmc driver support

To manage notifications about this bug go to:
https://bugs.launchpad.net/mesa/+bug/1002224/+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 1072096] Re: Update to mesa 8.0.5

2013-10-15 Thread shankao
Confirmed. This upgrade is not in precise -proposed even after the
12.04.3 release

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

Title:
  Update to mesa 8.0.5

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mesa/+bug/1072096/+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 1023785] Re: Enabling VDPAU within Mesa for r600

2013-08-29 Thread shankao
*** This bug is a duplicate of bug 1002224 ***
https://bugs.launchpad.net/bugs/1002224

** This bug has been marked a duplicate of bug 1002224
   Please include gallium vdpau and xvmc driver support

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

Title:
  Enabling VDPAU within Mesa for r600

To manage notifications about this bug go to:
https://bugs.launchpad.net/mesa/+bug/1023785/+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 41301] Re: Mouse clicks stop working sporadically

2013-08-22 Thread shankao
** Also affects: xorg-server via
   https://bugs.freedesktop.org/show_bug.cgi?id=26213
   Importance: Unknown
   Status: Unknown

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

Title:
  Mouse clicks stop working sporadically

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-server/+bug/41301/+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 33214] Re: gnome-screensaver restores default color-correction settings

2013-05-13 Thread shankao
Thank you for reporting this bug to Ubuntu. Hardy reached EOL on May 9, 2013.
See this document for currently supported Ubuntu releases: 
https://wiki.ubuntu.com/Releases

** Changed in: nvidia-settings (Ubuntu Hardy)
   Status: New = Invalid

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

Title:
  gnome-screensaver restores default color-correction settings

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-screensaver/+bug/33214/+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 33214] Re: gnome-screensaver restores default color-correction settings

2013-05-13 Thread shankao
Thank you for reporting this bug to Ubuntu. Hardy reached EOL on May 9, 2013.
See this document for currently supported Ubuntu releases: 
https://wiki.ubuntu.com/Releases

** Changed in: gnome-screensaver (Ubuntu Hardy)
   Status: Confirmed = Invalid

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

Title:
  gnome-screensaver restores default color-correction settings

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-screensaver/+bug/33214/+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 33214] Re: gnome-screensaver restores default color-correction settings

2013-05-13 Thread shankao
Is this problem still present in any of the currently supported Ubuntu
releases?

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

Title:
  gnome-screensaver restores default color-correction settings

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-screensaver/+bug/33214/+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 1006100] Re: unable to set extended desktop

2013-03-29 Thread shankao
Thank you for taking the time to report this bug and helping to make
Ubuntu better. This bug did not have a package associated with it, which
is important for ensuring that it gets looked at by the proper
developers. You can learn more about finding the right package at
https://wiki.ubuntu.com/Bugs/FindRightPackage . I have classified this
bug as a bug in xorg.

When reporting bugs in the future please use apport by using 'ubuntu-
bug' and the name of the package affected. You can learn more about this
functionality at https://help.ubuntu.com/community/ReportingBugs.

** Tags added: precise

** Package changed: ubuntu = xorg (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/1006100

Title:
  unable to set extended desktop

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1006100/+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 1003803] Re: Ubuntu 12.04 crashes at irregular intervals

2013-01-17 Thread shankao
Thank you for taking the time to report this bug and helping to make
Ubuntu better. This bug did not have a package associated with it, which
is important for ensuring that it gets looked at by the proper
developers. You can learn more about finding the right package at
https://wiki.ubuntu.com/Bugs/FindRightPackage . I have classified this
bug as a bug in xorg.

When reporting bugs in the future please use apport by using 'ubuntu-
bug' and the name of the package affected. You can learn more about this
functionality at https://help.ubuntu.com/community/ReportingBugs.

** Package changed: ubuntu = xorg (Ubuntu)

** Tags added: precise

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

Title:
  Ubuntu 12.04 crashes at irregular intervals

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1003803/+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 1001934] Re: Some files and folder unreachable on the desktop when using dual screen

2013-01-17 Thread shankao
Thank you for taking the time to report this bug and helping to make
Ubuntu better. This bug did not have a package associated with it, which
is important for ensuring that it gets looked at by the proper
developers. You can learn more about finding the right package at
https://wiki.ubuntu.com/Bugs/FindRightPackage . I have classified this
bug as a bug in xorg.

When reporting bugs in the future please use apport by using 'ubuntu-
bug' and the name of the package affected. You can learn more about this
functionality at https://help.ubuntu.com/community/ReportingBugs.

** Package changed: ubuntu = xorg (Ubuntu)

** Tags removed: dual-screen
** Tags added: dual-head

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

Title:
  Some files and folder unreachable on the desktop when using dual
  screen

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1001934/+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 996176] Re: scroll wheel doesn't work with VmarkerUSB

2013-01-16 Thread shankao
Filling against xorg in the case somebody there has a better hint of
what can be causing this problem. Thanks!

** Package changed: ubuntu = xorg (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/996176

Title:
  scroll wheel doesn't work with VmarkerUSB

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/996176/+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 993753] Re: mouse click behaves incorrectly on ubuntu12.04 unity 2d on VmWare

2013-01-07 Thread shankao
Thank you for taking the time to report this bug and helping to make
Ubuntu better. This bug did not have a package associated with it, which
is important for ensuring that it gets looked at by the proper
developers. You can learn more about finding the right package at
https://wiki.ubuntu.com/Bugs/FindRightPackage . I have classified this
bug as a bug in xserver-xorg-input-vmmouse.

When reporting bugs in the future please use apport by using 'ubuntu-
bug' and the name of the package affected. You can learn more about this
functionality at https://help.ubuntu.com/community/ReportingBugs.

** Package changed: ubuntu = xserver-xorg-input-vmmouse (Ubuntu)

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

Title:
  mouse click behaves incorrectly on ubuntu12.04 unity 2d on VmWare

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-input-vmmouse/+bug/993753/+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 995294] Re: Session end (back to login screen) on apport unhandled exception

2013-01-07 Thread shankao
Thank you for taking the time to report this bug and helping to make
Ubuntu better. This bug did not have a package associated with it, which
is important for ensuring that it gets looked at by the proper
developers. You can learn more about finding the right package at
https://wiki.ubuntu.com/Bugs/FindRightPackage . I have classified this
bug as a bug in xorg.

When reporting bugs in the future please use apport by using 'ubuntu-
bug' and the name of the package affected. You can learn more about this
functionality at https://help.ubuntu.com/community/ReportingBugs.

** Package changed: ubuntu = xorg (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/995294

Title:
  Session end (back to login screen) on apport unhandled exception

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/995294/+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 1085338] Re: One pixel column that belongs in one monitor shows up in the other instead

2012-12-22 Thread shankao
Nope, it's not a recent regression. It's being happening since oneiric at 
least, or that's when I noticed it.
I have not tried with anything newer than the latest development raring that I 
use currently. 
I think that it makes sense to contact X.org next and link them to this bug 
report

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

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

Title:
  One pixel column that belongs in one monitor shows up in the other
  instead

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-ati/+bug/1085338/+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 1085338] Re: One pixel column that belongs in one monitor shows up in the other instead

2012-12-22 Thread shankao
I just got an answer in there:

This is a limitation due to the way xrandr works.  It uses a single
surface for all enabled displays rather than one surface per display.
The display hardware has alignment requirements that can cause this
situation since we align the start address down.  The per-crtc pixmaps
work should fix the issue when it finally goes into the xserver.

Now I have a doubt on what's the best procedure to deal with this.
Should we leave this bug report open until xrandx 1.4 is in ubuntu and the 
problem is actually fixed, or it's declared as closed? In my opinion, the bug 
should be kept open until the moment it's actually fixed, even if waiting for 
upstream.

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

** Also affects: xserver-xorg-driver-ati via
   https://bugs.freedesktop.org/show_bug.cgi?id=58652
   Importance: Unknown
   Status: Unknown

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

Title:
  One pixel column that belongs in one monitor shows up in the other
  instead

To manage notifications about this bug go to:
https://bugs.launchpad.net/xserver-xorg-driver-ati/+bug/1085338/+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 1085338] Re: One pixel column that belongs in one monitor shows up in the other instead

2012-12-03 Thread shankao
Actually, I have seen these problem since the time of oneiric (around the time 
when I bought this laptop), but it's only evident on fullscreen -like while 
watching a movie- and so, I always ended forgetting to do the bug report. 
Anyway, the effect happens all the time, and yes, it happens unrelated of any 
VM being running or not.

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

** Tags added: multimonitor

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

Title:
  One pixel column that belongs in one monitor shows up in the other
  instead

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-ati/+bug/1085338/+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 1085338] Re: One pixel column that belongs in one monitor shows up in the other instead

2012-12-03 Thread shankao
Just trying now with a 1920x1200 monitor (HP Compaq LA2405x) and I'm
still seeing the same problem.

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

Title:
  One pixel column that belongs in one monitor shows up in the other
  instead

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-ati/+bug/1085338/+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 1085338] [NEW] One pixel column that belongs in one monitor shows up in the other instead

2012-11-30 Thread shankao
Public bug reported:

I have configured the laptop screen in the left and a external monitor
in the right. On the left most part of the monitor, I can see 1 column
of pixels that belong to the content that is in the right most part of
the laptop.

Strangely, it does not show up when I try to do a screenshot, but is
quite evident when watching a fullscreen movie in the monitor, for
example.

ProblemType: Bug
DistroRelease: Ubuntu 13.04
Package: xorg 1:7.7+1ubuntu4
ProcVersionSignature: Ubuntu 3.7.0-4.12-generic 3.7.0-rc7
Uname: Linux 3.7.0-4-generic x86_64
.tmp.unity.support.test.0:
 
ApportVersion: 2.6.3-0ubuntu2
Architecture: amd64
CompizPlugins: 
[core,composite,opengl,compiztoolbox,decor,vpswitch,snap,mousepoll,resize,place,move,wall,grid,regex,imgpng,session,gnomecompat,animation,fade,unitymtgrabhandles,workarounds,scale,expo,ezoom,unityshell]
CompositorRunning: compiz
Date: Sat Dec  1 12:42:13 2012
DistUpgraded: 2012-11-25 13:52:25,604 DEBUG enabling apt cron job
DistroCodename: raring
DistroVariant: ubuntu
DkmsStatus:
 virtualbox, 4.1.22, 3.7.0-3-generic, x86_64: installed
 virtualbox, 4.1.22, 3.7.0-4-generic, x86_64: installed
EcryptfsInUse: Yes
ExtraDebuggingInterest: Yes
GraphicsCard:
 Advanced Micro Devices [AMD] nee ATI Wrestler [Radeon HD 6310] [1002:9802] 
(prog-if 00 [VGA controller])
   Subsystem: Sony Corporation Device [104d:9082]
InstallationDate: Installed on 2012-11-25 (6 days ago)
InstallationMedia: Ubuntu 12.10 Quantal Quetzal - Alpha amd64 (20120627)
MachineType: Sony Corporation VPCYB16KG
MarkForUpload: True
ProcEnviron:
 LANGUAGE=en_SG:en
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=set
 LANG=en_SG.UTF-8
 SHELL=/bin/bash
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.7.0-4-generic 
root=UUID=c5e8db97-be79-41c7-a2d8-be5fa7b409a8 ro quiet splash vt.handoff=7
SourcePackage: xorg
UpgradeStatus: Upgraded to raring on 2012-11-25 (5 days ago)
dmi.bios.date: 12/22/2010
dmi.bios.vendor: Insyde Corp.
dmi.bios.version: R0160Z7
dmi.board.asset.tag: N/A
dmi.board.name: VAIO
dmi.board.vendor: Sony Corporation
dmi.board.version: N/A
dmi.chassis.asset.tag: N/A
dmi.chassis.type: 10
dmi.chassis.vendor: Sony Corporation
dmi.chassis.version: N/A
dmi.modalias: 
dmi:bvnInsydeCorp.:bvrR0160Z7:bd12/22/2010:svnSonyCorporation:pnVPCYB16KG:pvrC900K9AU:rvnSonyCorporation:rnVAIO:rvrN/A:cvnSonyCorporation:ct10:cvrN/A:
dmi.product.name: VPCYB16KG
dmi.product.version: C900K9AU
dmi.sys.vendor: Sony Corporation
version.compiz: compiz 1:0.9.8.4+bzr3412-0ubuntu1
version.ia32-libs: ia32-libs N/A
version.libdrm2: libdrm2 2.4.40-1
version.libgl1-mesa-dri: libgl1-mesa-dri 9.0.1-0ubuntu1
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 9.0.1-0ubuntu1
version.xserver-xorg-core: xserver-xorg-core 2:1.13.0-0ubuntu8
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.7.3-0ubuntu2
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.0.0-0ubuntu1
version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.20.14-0ubuntu1
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.4-0ubuntu1
xserver.bootTime: Fri Nov 30 13:03:50 2012
xserver.configfile: default
xserver.errors:
 
xserver.logfile: /var/log/Xorg.0.log
xserver.version: 2:1.13.0-0ubuntu8
xserver.video_driver: radeon

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


** Tags: amd64 apport-bug compiz-0.9 raring running-unity 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/1085338

Title:
  One pixel column that belongs in one monitor shows up in the other
  instead

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1085338/+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 1064329] Re: High CPU load (above 50%) on Xorg process when browsing low graphic intensive sites

2012-10-12 Thread shankao
I agree that is not the cause, but it affects it (so I marked it as
such)

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

Title:
  High CPU load (above 50%) on Xorg process when browsing low graphic
  intensive sites

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/chromium-browser/+bug/1064329/+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 1064329] [NEW] High CPU load (above 50%) on Xorg process when browsing low graphic intensive sites

2012-10-09 Thread shankao
Public bug reported:

While using grooveshark.com, I noticed a big bump in the Xorg process CPU usage 
after selecting its tab. It jumps from the usual 5% to more than 50%.
The webpage is not graphical intensive, but the interface is all HTML5.
I'm attaching a video that shows the effect. Note that the recording also adds 
some weight to the Xorg process, but it's still noticeable, from 20% to 50%.

ProblemType: Bug
DistroRelease: Ubuntu 12.10
Package: chromium-browser 20.0.1132.47~r144678-0ubuntu6
ProcVersionSignature: Ubuntu 3.5.0-17.27-generic 3.5.5
Uname: Linux 3.5.0-17-generic x86_64
ApportVersion: 2.6.1-0ubuntu1
Architecture: amd64
Date: Tue Oct  9 19:26:08 2012
Desktop-Session:
 DESKTOP_SESSION = ubuntu
 XDG_CONFIG_DIRS = /etc/xdg/xdg-ubuntu:/etc/xdg
 XDG_DATA_DIRS = 
/usr/share/ubuntu:/usr/share/gnome:/usr/local/share/:/usr/share/
EcryptfsInUse: Yes
Env:
 MOZ_PLUGIN_PATH = None
 LD_LIBRARY_PATH = None
InstallationMedia: Ubuntu 11.10 Oneiric Ocelot - Release amd64 (20111012)
ProcEnviron:
 LANGUAGE=en_SG:en
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=set
 LANG=en_SG.UTF-8
 SHELL=/bin/bash
SourcePackage: chromium-browser
UpgradeStatus: Upgraded to quantal on 2012-05-15 (146 days ago)
chromium-default: CHROMIUM_FLAGS=
gconf-keys: /desktop/gnome/applications/browser/exec = 
b'/usr/bin/chromium-browser\n'/desktop/gnome/url-handlers/https/command = 
b'/usr/bin/chromium-browser %s\n'/desktop/gnome/url-handlers/https/enabled = 
b'true\n'/desktop/gnome/url-handlers/http/command = b'/usr/bin/chromium-browser 
%s\n'/desktop/gnome/url-handlers/http/enabled = 
b'true\n'/desktop/gnome/session/required_components/windowmanager = 
b''/apps/metacity/general/compositing_manager = 
b''/desktop/gnome/interface/icon_theme = 
b'ubuntu-mono-dark\n'/desktop/gnome/interface/gtk_theme = b'Ambiance\n'

** Affects: chromium-browser (Ubuntu)
 Importance: Undecided
 Status: New

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


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

** Attachment added: High Xorg CPU usage when browsing grooveshark
   
https://bugs.launchpad.net/bugs/1064329/+attachment/3389218/+files/gs-cpu-xorg.ogv

** Also affects: xorg-server
   Importance: Undecided
   Status: New

** Project changed: xorg-server = xorg-server (Ubuntu)

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

Title:
  High CPU load (above 50%) on Xorg process when browsing low graphic
  intensive sites

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/chromium-browser/+bug/1064329/+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 731856] Re: Can't install wayland

2011-05-09 Thread shankao
Timo was right, I had some PPA dependency problems at that moment.

@Fabrizio: last time I checked out this, wayland was not installable
cause the ubuntu's libcairo has not support for cairo-gl (that is
requeriment for the current wayland in ubuntu). cairo-gl was deactivated
as it gave multiple problems in other apps. Anyway, it's a separate bug.

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

Title:
  Can't install wayland

___
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 731856] [NEW] Can't install wayland

2011-03-09 Thread shankao
Public bug reported:

Binary package hint: wayland

I had wayland installed from the xorg-edgers PPA. Removed it and the PPA
from my sources list. Tried to install the wayland package in universe
and got this output:

$ sudo apt-get install wayland
[sudo] password for shankao: 
Reading package lists... Done
Building dependency tree   
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 wayland : Depends: libcairo2-dev (= 1.10.2-2) but it is not going to be 
installed
E: Broken packages
$

ProblemType: Bug
DistroRelease: Ubuntu 11.04
Package: wayland (not installed)
ProcVersionSignature: Ubuntu 2.6.38-5.32-generic 2.6.38-rc6
Uname: Linux 2.6.38-5-generic i686
Architecture: i386
Date: Wed Mar  9 11:52:50 2011
EcryptfsInUse: Yes
ProcEnviron:
 LANGUAGE=en_US:en
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: wayland
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: apport-bug i386 natty

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

Title:
  Can't install wayland

___
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 700986] [NEW] [xorg-edgers] Wayland fails to start

2011-01-10 Thread shankao
Public bug reported:

Binary package hint: xorg

I have added the wayland repo and launched the program with the
following error:

shan...@emilia:~/dev/natty$ wayland-compositor -b 
/usr/share/backgrounds/space-01.jpg 
[1] 6288
shan...@emilia:~/dev/natty$ wayland-compositor: error while loading shared 
libraries: libEGL.so.1: cannot open shared object file: No such file or 
directory

As a side note, some of the last ubuntu versions in that repo does not
seem to have build. The version that I get when I apt-get install
wayland is 0.1~git20101124.32ff6901-0ubuntu1~natty, so It has not some
of the last fixes made to the package neither the wstart script.

ProblemType: Bug
DistroRelease: Ubuntu 11.04
Package: xorg 1:7.5+6ubuntu6
ProcVersionSignature: Ubuntu 2.6.37-12.26-generic 2.6.37
Uname: Linux 2.6.37-12-generic i686
Architecture: i386
CompizPlugins: No value set for 
`/apps/compiz-1/general/allscreens/options/active_plugins'
CompositorRunning: compiz
DRM.card0.LVDS.1:
 status: connected
 enabled: enabled
 dpms: On
 modes: 1024x600
 edid-base64: 
AP///wAGryAQAAESAQOAEwt4CvpWklZUmCQaT1QBAQEBAQEBAQEBAQEBAQEBsBMAQEFYGSAYiAMBw3EYDwAg/gBBVU8KICAgICAgICAg/gBBMDg5U1cwMSBWMCAKABk=
DRM.card0.VGA.1:
 status: connected
 enabled: enabled
 dpms: On
 modes: 1280x1024 1280x1024 1280x960 1280x960 1280x960 1152x864 1152x864 
1152x864 1024x768 1024x768 1024x768 832x624 800x600 800x600 800x600 800x600 
640x480 640x480 640x480 640x480 720x400
 edid-base64: 
AP///wAFI1B02CEAACcPAQNtIht46iwSolpKmSUbTla/7wBxQHFKcU+BQIFKgU+BgAEBMCoAmFEAKkAwcBMAUg4RAAAe/QAxSxhQDgAKICAgICAg/ABGLTQxNwogICAgICAg/wA4NjY0CiAgICAgICAgACM=
Date: Mon Jan 10 12:29:17 2011
DistUpgraded: Fresh install
DistroCodename: natty
DistroVariant: ubuntu
DkmsStatus: virtualbox-ose, 3.2.12, 2.6.37-12-generic, i686: installed
EcryptfsInUse: Yes
GraphicsCard:
 Subsystem: ASUSTeK Computer Inc. Device [1043:830f]
   Subsystem: ASUSTeK Computer Inc. Device [1043:830f]
InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release i386 (20101007)
MachineType: ASUSTeK Computer INC. 901
ProcEnviron:
 LANGUAGE=en_US:en
 LANG=en_US.UTF-8
 LC_MESSAGES=en_US.utf8
 SHELL=/bin/bash
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.37-12-generic 
root=UUID=3d38f4d7-5c67-4834-8246-1b1e1ac2123b ro vt.handoff=7 quiet splash
Renderer: Hardware acceleration
SourcePackage: xorg
UnitySupportTest: Mesa warning: couldn't open libtxc_dxtn.so, software DXTn 
compression/decompression unavailable
dmi.bios.date: 07/08/2008
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: 1001
dmi.board.asset.tag: To Be Filled By O.E.M.
dmi.board.name: 901
dmi.board.vendor: ASUSTeK Computer INC.
dmi.board.version: x.xx
dmi.chassis.asset.tag: 0x
dmi.chassis.type: 10
dmi.chassis.vendor: ASUSTek Computer INC.
dmi.chassis.version: x.x
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1001:bd07/08/2008:svnASUSTeKComputerINC.:pn901:pvrx.x:rvnASUSTeKComputerINC.:rn901:rvrx.xx:cvnASUSTekComputerINC.:ct10:cvrx.x:
dmi.product.name: 901
dmi.product.version: x.x
dmi.sys.vendor: ASUSTeK Computer INC.
version.libdrm2: libdrm2 2.4.23+git20101221.bad5242a-0ubuntu0sarvatt
version.libgl1-mesa-glx: libgl1-mesa-glx 
7.10.0+git20101118.3dcc3153-0ubuntu1~bryce10~natty
version.xserver-xorg: xserver-xorg 1:7.5+6ubuntu6
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:6.13.2-1ubuntu2
version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.13.901-2ubuntu2
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:0.0.16+git20100805+b96170a-0ubuntu1

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


** Tags: apport-bug i386 natty running-unity 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/700986

Title:
  [xorg-edgers] Wayland fails to start

___
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 700986] Re: [xorg-edgers] Wayland fails to start

2011-01-10 Thread shankao


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

Title:
  [xorg-edgers] Wayland fails to start

___
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 591060] Re: USB mouse moves across multiple desktops; touchpad mouse does not

2010-12-27 Thread shankao
Thank you for taking the time to report this bug and helping to make
Ubuntu better. This bug did not have a package associated with it, which
is important for ensuring that it gets looked at by the proper
developers. You can learn more about finding the right package at
https://wiki.ubuntu.com/Bugs/FindRightPackage . I have classified this
bug as a bug in xorg.

When reporting bugs in the future please use apport by using 'ubuntu-
bug' and the name of the package affected. You can learn more about this
functionality at https://help.ubuntu.com/community/ReportingBugs.

** Package changed: ubuntu = xorg (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/591060

Title:
  USB mouse moves across multiple desktops; touchpad mouse does not

___
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 591060] Re: USB mouse moves across multiple desktops; touchpad mouse does not

2010-12-27 Thread shankao
Could you also run apport-collect 591060 in order to get some extra
log files? Thanks in advance!

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

** Tags added: dual-head lucid pointer touch

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

Title:
  USB mouse moves across multiple desktops; touchpad mouse does not

___
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 572139] Re: [i915] Problem with 1080p resolution in Samsung LE-46B530 TV

2010-12-22 Thread shankao
Yes please, fill a different bug report for the other problem.

** Summary changed:

- Samsung LE-46B530 TV does not work with Intel DH55HC motherboard
+ [i915] Problem with 1080p resolution in Samsung LE-46B530 TV

** Description changed:

+ Video showing the problem with the 1080p resolution:
+ http://www.youtube.com/watch?v=PbFjy1Wf_CU
+ 
  I'm running current release of Lucid Lynx desktop version and trying to use 
1080p with this TV.
  This report includes description of the released official (non-RC) 10.04 LTS 
desktop version.
  BIOS is now the latest 0028 version.
  
  Two tests:
  1. Connect HDMI from motherboard to Onkyo amplifier and from Onkyo amplifier 
to TV:
   Onkyo 7  text shown in display settings.
  2. Connect HDMI from motherboard directly to TV:
   Samsung 7  text shown in display settings.
  
  The first setup is the one I'm planning to use. What happens is that in
  both tests 1 and 2 couple of centimeters (1 inch) is missing at least
  from top and bottom of the screen (probably also from left and right). I
  can't see any menus but they are there if I scroll the mouse outside
  the visible area and click there. A workaround to this problem is to use
  Screen Fit option in the TV, not 16:9. The Screen Fit option has
  to be used with both 1920 x 1080 (16:9) and 1280 x 720 (16:9)
  resolutions. The resolutions seem to be correct however: if I take a
  screenshot then it is exactly 1280 x 720.
  
  In summary, there are three problems with this TV:
  1) Screen Fit option has to be selected.
  2) Searching for Signals problem in 1920 x 1080: it starts when scrolling 
in Firefox or moving windows.
  3) Flickering problem in 1920 x 1080: the picture tears, this may include 
problem 2.
  4) No HDMI audio. There is only a faint click sound when trying to play 
audio.
  
  Scrolling in Firefox usually causes symptom 2 but the Searching for Signals 
text may disappear and the picture comes back if scrolling back.
  Flickering in problem 3 may disappear if moving the window back, but it 
starts again especially if window is on the border of the screen.
  
  Problems 2 and 3 do not occur with resolution 1280 x 720 so it is full
  HD specific.
  
  I also tried to install the latest PPA kernel (2.6.34-999). With this
  kernel problem 4 vanishes and the HDMI audio is played correctly. Also
  problem 3 is much less severe with the kernel update. Anyway even with
  the kernel update problems 1 and 2 remain.
  
- --- 
+ ---
  Architecture: amd64
  DRM.card0.DisplayPort.1:
-  status: disconnected
-  enabled: disabled
-  dpms: On
-  modes: 
-  edid-base64:
+  status: disconnected
+  enabled: disabled
+  dpms: On
+  modes:
+  edid-base64:
  DRM.card0.DisplayPort.2:
-  status: disconnected
-  enabled: disabled
-  dpms: On
-  modes: 
-  edid-base64:
+  status: disconnected
+  enabled: disabled
+  dpms: On
+  modes:
+  edid-base64:
  DRM.card0.HDMI_Type_A.1:
-  status: connected
-  enabled: enabled
-  dpms: On
-  modes: 1280x720 1920x1080 1600x1200 1680x1050 1280x1024 1280x1024 1440x900 
1440x900 1280x960 1280x800 1152x864 1280x720 1024x768 1024x768 1024x768 832x624 
800x600 800x600 800x600 640x480 640x480 640x480 640x480 640x480 720x400
-  edid-base64: 
AP///wA9ywEAAf//AQOAEAl4Cu6Ro1RMmSYPUFS974BxT4EAgUCBgJUAlQ+zAKlAAR0AclHQHiBuKFUAoFoeAR0AvFLQHiC4KFVAoFoe/ABUWC1TUjY3NCAgICAg/QAYSxpRFwAKICAgICAgAYYCAy7xTpABAwQFEhMUDx4fICEiLwl/Bw8fBxcHODcHMD8HwINPAABmAwwAEgCAAR2AGHEcFiBYLCUAoFoAAACeAR2A0HIcFiAQLCWAoFoAAACeAjqAGHE4LUBYLEUAoFoe1gmAoCDgLRAIYCIAgOAhCAgY1A==
+  status: connected
+  enabled: enabled
+  dpms: On
+  modes: 1280x720 1920x1080 1600x1200 1680x1050 1280x1024 1280x1024 1440x900 
1440x900 1280x960 1280x800 1152x864 1280x720 1024x768 1024x768 1024x768 832x624 
800x600 800x600 800x600 640x480 640x480 640x480 640x480 640x480 720x400
+  edid-base64: 
AP///wA9ywEAAf//AQOAEAl4Cu6Ro1RMmSYPUFS974BxT4EAgUCBgJUAlQ+zAKlAAR0AclHQHiBuKFUAoFoeAR0AvFLQHiC4KFVAoFoe/ABUWC1TUjY3NCAgICAg/QAYSxpRFwAKICAgICAgAYYCAy7xTpABAwQFEhMUDx4fICEiLwl/Bw8fBxcHODcHMD8HwINPAABmAwwAEgCAAR2AGHEcFiBYLCUAoFoAAACeAR2A0HIcFiAQLCWAoFoAAACeAjqAGHE4LUBYLEUAoFoe1gmAoCDgLRAIYCIAgOAhCAgY1A==
  DRM.card0.HDMI_Type_A.2:
-  status: disconnected
-  enabled: disabled
-  dpms: On
-  modes: 
-  edid-base64:
+  status: disconnected
+  enabled: disabled
+  dpms: On
+  modes:
+  edid-base64:
  DRM.card0.VGA.1:
-  status: disconnected
-  enabled: disabled
-  dpms: On
-  modes: 
-  edid-base64:
+  status: disconnected
+  enabled: disabled
+  dpms: On
+  modes:
+  edid-base64:
  DistroRelease: Ubuntu 10.10
  InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release amd64 (20101007)
  Package: xserver-xorg-video-intel 2:2.12.0-1ubuntu5.1
  PackageArchitecture: amd64
  ProcCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.35-23-generic 
root=UUID=f58ae567-8564-483f-a333-2e09fd73ebfa ro quiet splash
  ProcEnviron:
-  LANG=en_US.utf8
-  SHELL=/bin/bash
+  LANG=en_US.utf8
+  SHELL=/bin/bash
  

[Ubuntu-x-swat] [Bug 572139] Re: Samsung LE-46B530 TV does not work with Intel DH55HC motherboard

2010-12-17 Thread shankao
After reading the comments here, could you recap. the problems that you
are experiencing right now (not fixed)? If they are more than one, they
should go filled in different bugs, as the causes are likely different
as well. Let's continue here with the flickering/no signal problem,
please fill other separate bugs that you are experiencing.

I think this bug goes under the general package xorg or maybe the
kernel, but let's start investigating from the former as we need some
logs. In order to take them, could you please trigger the error (do the
firefox thing) and after that, run the command:

apport-collect 572139

It will automatically get the required logs and attach them to this bug
(as I'm changing the package to xorg, the information collected will be
the officially required for that package).

Thanks for your collaboration!

** Package changed: ubuntu = xorg (Ubuntu)

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

** Tags added: maverick tearing tv-out

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

Title:
  Samsung LE-46B530 TV does not work with Intel DH55HC motherboard

___
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 642773] Re: Maximized windows get their bottom part hidden when using a two monitor configuration

2010-09-19 Thread shankao

** Attachment added: BootDmesg.txt
   
https://bugs.launchpad.net/bugs/642773/+attachment/1608036/+files/BootDmesg.txt

** Attachment added: CurrentDmesg.txt
   
https://bugs.launchpad.net/bugs/642773/+attachment/1608037/+files/CurrentDmesg.txt

** Attachment added: Dependencies.txt
   
https://bugs.launchpad.net/bugs/642773/+attachment/1608038/+files/Dependencies.txt

** Attachment added: Lspci.txt
   https://bugs.launchpad.net/bugs/642773/+attachment/1608039/+files/Lspci.txt

** Attachment added: Lsusb.txt
   https://bugs.launchpad.net/bugs/642773/+attachment/1608040/+files/Lsusb.txt

** Attachment added: PciDisplay.txt
   
https://bugs.launchpad.net/bugs/642773/+attachment/1608041/+files/PciDisplay.txt

** Attachment added: ProcCpuinfo.txt
   
https://bugs.launchpad.net/bugs/642773/+attachment/1608042/+files/ProcCpuinfo.txt

** Attachment added: ProcInterrupts.txt
   
https://bugs.launchpad.net/bugs/642773/+attachment/1608043/+files/ProcInterrupts.txt

** Attachment added: ProcModules.txt
   
https://bugs.launchpad.net/bugs/642773/+attachment/1608044/+files/ProcModules.txt

** Attachment added: RelatedPackageVersions.txt
   
https://bugs.launchpad.net/bugs/642773/+attachment/1608045/+files/RelatedPackageVersions.txt

** Attachment added: UdevDb.txt
   https://bugs.launchpad.net/bugs/642773/+attachment/1608046/+files/UdevDb.txt

** Attachment added: UdevLog.txt
   https://bugs.launchpad.net/bugs/642773/+attachment/1608047/+files/UdevLog.txt

** Attachment added: XorgLog.txt
   https://bugs.launchpad.net/bugs/642773/+attachment/1608048/+files/XorgLog.txt

** Attachment added: XorgLogOld.txt
   
https://bugs.launchpad.net/bugs/642773/+attachment/1608049/+files/XorgLogOld.txt

** Attachment added: Xrandr.txt
   https://bugs.launchpad.net/bugs/642773/+attachment/1608050/+files/Xrandr.txt

** Attachment added: drirc.txt
   https://bugs.launchpad.net/bugs/642773/+attachment/1608051/+files/drirc.txt

** Attachment added: monitors.xml.txt
   
https://bugs.launchpad.net/bugs/642773/+attachment/1608052/+files/monitors.xml.txt

** Attachment added: peripherals.txt
   
https://bugs.launchpad.net/bugs/642773/+attachment/1608053/+files/peripherals.txt

** Attachment added: setxkbmap.txt
   
https://bugs.launchpad.net/bugs/642773/+attachment/1608054/+files/setxkbmap.txt

** Attachment added: xdpyinfo.txt
   
https://bugs.launchpad.net/bugs/642773/+attachment/1608055/+files/xdpyinfo.txt

** Attachment added: xkbcomp.txt
   https://bugs.launchpad.net/bugs/642773/+attachment/1608056/+files/xkbcomp.txt

-- 
Maximized windows get their bottom part hidden when using a two monitor 
configuration
https://bugs.launchpad.net/bugs/642773
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 642773] [NEW] Maximized windows get their bottom part hidden when using a two monitor configuration

2010-09-19 Thread shankao
Public bug reported:

Binary package hint: xorg

I'm using a two monitor configuration -external + laptop- with the
laptop at the bottom side of the virtual desktop.

When I maximize a window in the external monitor, its bottom edge gets
hidden by the bottom panel (i.e. chromium gets its url info hidden under
it).

The window should instead detect correctly the presence of the bottom
panel in gnome and get the correct size when maximized.

It happens in both metacity and compiz.

ProblemType: Bug
DistroRelease: Ubuntu 10.10
Package: xorg 1:7.5+6ubuntu3
ProcVersionSignature: Ubuntu 2.6.35-22.32-generic 2.6.35.4
Uname: Linux 2.6.35-22-generic i686
Architecture: i386
DRM.card0.LVDS.1:
 status: connected
 enabled: enabled
 dpms: On
 modes: 1024x600
 edid-base64: 
AP///wAGryAQAAESAQOAEwt4CvpWklZUmCQaT1QBAQEBAQEBAQEBAQEBAQEBsBMAQEFYGSAYiAMBw3EYDwAg/gBBVU8KICAgICAgICAg/gBBMDg5U1cwMSBWMCAKABk=
DRM.card0.VGA.1:
 status: connected
 enabled: enabled
 dpms: On
 modes: 1280x1024 1280x1024 1152x864 1024x768 1024x768 1024x768 1024x768 
832x624 800x600 800x600 800x600 800x600 640x480 640x480 640x480 640x480 720x400
 edid-base64: 
AP///wAebTFLlF0AAAoRAQNuJh546qKlo1dMnSURUFS/74AxT0VPYU+BgAEBAQEBAQEBMCoAmFEAKkAwcBMAeC0RAAAe/QA4Sx5TDgAKICAgICAg/ABMMTkxOFMKICAgICAg/AAgCiAgICAgICAgICAgACE=
Date: Sun Sep 19 14:45:14 2010
DkmsStatus:
 virtualbox-ose, 3.2.8, 2.6.35-21-generic, i686: installed 
 virtualbox-ose, 3.2.8, 2.6.35-22-generic, i686: installed
EcryptfsInUse: Yes
InstallationMedia: Ubuntu-Netbook 10.10 Maverick Meerkat - Alpha i386 
(20100803.1)
MachineType: ASUSTeK Computer INC. 901
ProcCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.35-22-generic 
root=UUID=bbc81762-cf0f-4e63-aef1-84a0d18843c8 ro quiet splash
ProcEnviron:
 LANG=en_US.utf8
 SHELL=/bin/bash
SourcePackage: xorg
dmi.bios.date: 07/08/2008
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: 1001
dmi.board.asset.tag: To Be Filled By O.E.M.
dmi.board.name: 901
dmi.board.vendor: ASUSTeK Computer INC.
dmi.board.version: x.xx
dmi.chassis.asset.tag: 0x
dmi.chassis.type: 10
dmi.chassis.vendor: ASUSTek Computer INC.
dmi.chassis.version: x.x
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1001:bd07/08/2008:svnASUSTeKComputerINC.:pn901:pvrx.x:rvnASUSTeKComputerINC.:rn901:rvrx.xx:cvnASUSTekComputerINC.:ct10:cvrx.x:
dmi.product.name: 901
dmi.product.version: x.x
dmi.sys.vendor: ASUSTeK Computer INC.
glxinfo: Error: [Errno 2] No such file or directory
system:
 distro: Ubuntu
 codename:   maverick
 architecture:   i686
 kernel: 2.6.35-22-generic

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


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

-- 
Maximized windows get their bottom part hidden when using a two monitor 
configuration
https://bugs.launchpad.net/bugs/642773
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 546083] [NEW] LG Flatron L1918S external monitor wrongly identified as Goldstar Company Ltd

2010-03-24 Thread shankao
Public bug reported:

Binary package hint: xorg

Using latest lucid in an Eee PC 901 with the LG as external monitor and
extended desktop.

ProblemType: Bug
Architecture: i386
Date: Wed Mar 24 16:05:10 2010
DistroRelease: Ubuntu 10.04
DkmsStatus: virtualbox-ose, 3.1.4, 2.6.32-16-generic, i686: installed
EcryptfsInUse: Yes
InstallationMedia: Ubuntu-Netbook 10.04 Lucid Lynx - Alpha i386 (20100224.3)
MachineType: ASUSTeK Computer INC. 901
Package: xorg 1:7.5+3ubuntu1
ProcCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.32-16-generic 
root=UUID=fa2624b9-e7e2-43c8-81a1-679647cecaae ro quiet splash
ProcEnviron:
 LANG=en_US.utf8
 SHELL=/bin/bash
ProcVersionSignature: Ubuntu 2.6.32-16.25-generic
SourcePackage: xorg
Uname: Linux 2.6.32-16-generic i686
dmi.bios.date: 07/08/2008
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: 1001
dmi.board.asset.tag: To Be Filled By O.E.M.
dmi.board.name: 901
dmi.board.vendor: ASUSTeK Computer INC.
dmi.board.version: x.xx
dmi.chassis.asset.tag: 0x
dmi.chassis.type: 10
dmi.chassis.vendor: ASUSTek Computer INC.
dmi.chassis.version: x.x
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1001:bd07/08/2008:svnASUSTeKComputerINC.:pn901:pvrx.x:rvnASUSTeKComputerINC.:rn901:rvrx.xx:cvnASUSTekComputerINC.:ct10:cvrx.x:
dmi.product.name: 901
dmi.product.version: x.x
dmi.sys.vendor: ASUSTeK Computer INC.
system:
 distro: Ubuntu
 codename:   lucid
 architecture:   i686
 kernel: 2.6.32-16-generic

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


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

-- 
LG Flatron L1918S external monitor wrongly identified as Goldstar Company Ltd
https://bugs.launchpad.net/bugs/546083
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 546083] Re: LG Flatron L1918S external monitor wrongly identified as Goldstar Company Ltd

2010-03-24 Thread shankao

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

** Attachment added: monitors.xml.txt
   http://launchpadlibrarian.net/41844582/monitors.xml.txt

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

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

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

-- 
LG Flatron L1918S external monitor wrongly identified as Goldstar Company Ltd
https://bugs.launchpad.net/bugs/546083
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 540314] [NEW] I cannot reproduce video (i.e. totem, vlc) when I change to display resolution 1280x1024, but I can with lower ones

2010-03-17 Thread shankao
Public bug reported:

Binary package hint: xorg

In a dual display setup, with the external monitor at 1024x768 I can
reproduce any video by using totem or VLC.

If I change to the maximum resolution supported for the external display
(1280x1024), then VLC and Totem show no image (just sound) but
everything else seems working fine in the X environment.

ProblemType: Bug
Architecture: i386
Date: Wed Mar 17 16:17:46 2010
DistroRelease: Ubuntu 10.04
DkmsStatus: virtualbox-ose, 3.1.4, 2.6.32-16-generic, i686: installed
EcryptfsInUse: Yes
InstallationMedia: Ubuntu-Netbook 10.04 Lucid Lynx - Alpha i386 (20100224.3)
MachineType: ASUSTeK Computer INC. 901
Package: xorg 1:7.5+3ubuntu1
ProcCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.32-16-generic 
root=UUID=fa2624b9-e7e2-43c8-81a1-679647cecaae ro quiet splash
ProcEnviron:
 LANG=en_US.utf8
 SHELL=/bin/bash
ProcVersionSignature: Ubuntu 2.6.32-16.25-generic
SourcePackage: xorg
Uname: Linux 2.6.32-16-generic i686
dmi.bios.date: 07/08/2008
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: 1001
dmi.board.asset.tag: To Be Filled By O.E.M.
dmi.board.name: 901
dmi.board.vendor: ASUSTeK Computer INC.
dmi.board.version: x.xx
dmi.chassis.asset.tag: 0x
dmi.chassis.type: 10
dmi.chassis.vendor: ASUSTek Computer INC.
dmi.chassis.version: x.x
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1001:bd07/08/2008:svnASUSTeKComputerINC.:pn901:pvrx.x:rvnASUSTeKComputerINC.:rn901:rvrx.xx:cvnASUSTekComputerINC.:ct10:cvrx.x:
dmi.product.name: 901
dmi.product.version: x.x
dmi.sys.vendor: ASUSTeK Computer INC.
system:
 distro: Ubuntu
 codename:   lucid
 architecture:   i686
 kernel: 2.6.32-16-generic

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


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

-- 
I cannot reproduce video (i.e. totem, vlc) when I change to display resolution 
1280x1024, but I can with lower ones
https://bugs.launchpad.net/bugs/540314
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 540314] Re: I cannot reproduce video (i.e. totem, vlc) when I change to display resolution 1280x1024, but I can with lower ones

2010-03-17 Thread shankao

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

** Attachment added: monitors.xml.txt
   http://launchpadlibrarian.net/41138636/monitors.xml.txt

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

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

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

-- 
I cannot reproduce video (i.e. totem, vlc) when I change to display resolution 
1280x1024, but I can with lower ones
https://bugs.launchpad.net/bugs/540314
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 138820] Re: 1680x1050 resolution is not available

2010-02-23 Thread shankao
Um... Is there any reason why this bug is filled against the general ubuntu? It 
should have an ubuntu package associated instead. 
I have changed it to xorg-server and confirmed it after the comments here.

** Package changed: ubuntu = xorg-server (Ubuntu)

** Changed in: xorg-server (Ubuntu)
   Status: New = Confirmed

-- 
1680x1050 resolution is not available
https://bugs.launchpad.net/bugs/138820
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 282939] Re: gnusound crashes X session immediately on launch (Affects Intrepid, Jaunty, Karmic)

2010-02-15 Thread shankao
Confirmed in lucid

** Tags added: lucid

-- 
gnusound crashes X session immediately on launch (Affects Intrepid, Jaunty, 
Karmic)
https://bugs.launchpad.net/bugs/282939
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to nvidia-graphics-drivers-180 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 333789] Re: window content is freezing

2010-02-08 Thread shankao
Do you use compiz as window manager? I have filled your bug under xorg-server 
in the absence of the current WM info.
Could you also follow the instructions in 
https://wiki.ubuntu.com/X/Troubleshooting/Freeze to improve your bug report? 
Thanks!

** Package changed: ubuntu = xorg-server (Ubuntu)

** Changed in: xorg-server (Ubuntu)
   Status: New = Incomplete

** Tags added: intrepid

-- 
window content is freezing
https://bugs.launchpad.net/bugs/333789
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 517276] Re: [G84] X freezes after pressing ENTER

2010-02-07 Thread shankao
Can this bug be a duplicate of #516412?

-- 
[G84] X freezes after pressing ENTER
https://bugs.launchpad.net/bugs/517276
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 513828] Re: Can't enable compiz on radeon xpress 1250

2010-01-29 Thread shankao
Then that's a regression, I used to have hardware acceleration support
in this computer until the X upgrades in lucid.

I'm changing the bug report to reflect that, as it's not a compiz
problem anymore.

** Package changed: compiz (Ubuntu) = xorg-server (Ubuntu)

** Changed in: xorg-server (Ubuntu)
   Status: Invalid = New

** Summary changed:

- Can't enable compiz on radeon xpress 1250
+ OpenGL render fallbacks to software rasterizer on radeon xpress 1250

-- 
OpenGL render fallbacks to software rasterizer on radeon xpress 1250
https://bugs.launchpad.net/bugs/513828
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 496476] Re: Keyboard stops working in Xorg after last automatic package actualization.

2009-12-17 Thread shankao
** Changed in: xserver-xorg-video-intel (Ubuntu)
   Status: Confirmed = Invalid

-- 
Keyboard stops working in Xorg after last automatic package actualization.
https://bugs.launchpad.net/bugs/496476
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