Re: [Ubuntu-x-swat] [Bug 528026] Re: [gm45] Often freezes before GDM login screen appears

2010-04-08 Thread Daniel Voina
Hello Chris,

The incorrect display still persist.
In the moment when X and GDM start the Plymouth purple boot screen is 
stretched in top left corner, then the image is corrupted in horizontal 
repeating bars. Then the default GDM background appears and everything 
gos back to normal... well except the cases when GDM login widgets donot 
appear.

Daniel


On 04/08/2010 03:37 AM, Chris Halse Rogers wrote:
 But the incorrect display during boot is still present with 2.6.32-19?



-- 
[gm45] Often freezes before GDM login screen  appears
https://bugs.launchpad.net/bugs/528026
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-intel in ubuntu.

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


[Ubuntu-x-swat] [Bug 399636] Re: [i915gm] karmic 2.6.31-2 and -3 lid closing blacks screen until reboot on thinkpad r52

2010-04-08 Thread Chris Halse Rogers
The “screen doesn't come back from blank when opening the lid” part of
this bug has should have been fixed by the 2.6.32-19 kernel.  I'm
marking this bug as fixed, since you've indicated that this particular
problem is fixed.

Although it's got a similar trigger, the “no cursor after opening the
lid” will be a separate problem.  Could you please file a new bug about
that?  It'll be much easier to keep track of the problem as a separate
bug.

** Changed in: xserver-xorg-video-intel (Ubuntu)
   Status: Confirmed = Fix Released

-- 
[i915gm] karmic 2.6.31-2 and -3 lid closing blacks screen until reboot on 
thinkpad r52
https://bugs.launchpad.net/bugs/399636
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-intel in ubuntu.

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


[Ubuntu-x-swat] [Bug 556631] Re: Portion of second monitor unusable

2010-04-08 Thread Bryce Harrington
*** This bug is a duplicate of bug 428769 ***
https://bugs.launchpad.net/bugs/428769

Ah interesting - as per the upstream bug report, your hardware supports
only up to 2048x2048 with compiz - see bug #555641 which I guess this is
a dupe of.

However, compiz *should* be checking for max texture size and refusing
to start up in this case.  Not totally sure how it's changed in lucid,
but in karmic it looks at the max texture size reported by glxinfo, and
compares it with the current dimensions reported by xdpyinfo, and if the
latter is larger than the former it refuses to start.  Not sure why that
didn't do it's thing in this case.  Anyway, this is bug #428769

-- 
Portion of second monitor unusable
https://bugs.launchpad.net/bugs/556631
You received this bug notification because you are a member of Ubuntu-X,
which is the registrant for xserver-xorg-driver-ati.

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


[Ubuntu-x-swat] [Bug 556631] Re: Portion of second monitor unusable

2010-04-08 Thread Bryce Harrington
** This bug has been marked a duplicate of bug 428769
   compiz starts with a blank screen on a 2048x1152 monitor due to hw limit 
with textures  2048

** This bug is no longer a duplicate of bug 428769
   compiz starts with a blank screen on a 2048x1152 monitor due to hw limit 
with textures  2048

** Summary changed:

- Portion of second monitor unusable
+ Compiz showing corruption because not refusing to run when rez  max texture 
size

-- 
Compiz showing corruption because not refusing to run when rez  max texture 
size
https://bugs.launchpad.net/bugs/556631
You received this bug notification because you are a member of Ubuntu-X,
which is the registrant for xserver-xorg-driver-ati.

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


[Ubuntu-x-swat] [Bug 428769] Re: compiz starts with a blank screen on a 2048x1152 monitor due to hw limit with textures 2048

2010-04-08 Thread Bryce Harrington
I took another look at this as part of handling bug #556631.

In Karmic, /usr/bin/compiz was a shell script, which included a check
for max texture size:

check_texture_size()
{
# Check how many screens we've got and iterate over them
  
N=$(xdpyinfo | grep -i number of screens | sed 's/.*[^0-9]//g')
for i in $(seq 1 $N); do
verbose Checking screen $i
TEXTURE_LIMIT=$(glxinfo -l | grep GL_MAX_TEXTURE_SIZE | sed -n $i 
s/^.*=[^0-9]//g p)
RESOLUTION=$(xdpyinfo | grep -i dimensions: | sed -n -e $i s/^ 
*dimensions: *\([0-9]*x[0-9]*\) pixels.*/\1/ p)
VRES=$(echo $RESOLUTION | sed 's/.*x//')
HRES=$(echo $RESOLUTION | sed 's/x.*//')
verbose Comparing resolution ($RESOLUTION) to maximum 3D texture 
size ($TEXTURE_LIMIT): ;
if [ $VRES -gt $TEXTURE_LIMIT ] || [ $HRES -gt $TEXTURE_LIMIT ]; 
then
verbose Failed.\n
return 1;
fi
verbose Passed.\n
done
return 0
}


It appears that as of 1:0.8.4-0ubuntu4 in lucid, the checks that the compiz 
wrapper had been doing have moved to the compiz binary itself:

br...@blumonc:~$ cat /etc/lsb-release ; file /usr/bin/compiz
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=10.04
DISTRIB_CODENAME=lucid
DISTRIB_DESCRIPTION=Ubuntu lucid (development branch)
/usr/bin/compiz: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), 
dynamically linked (uses shared libs), for GNU/Linux 2.6.15, stripped

compiz (1:0.8.4-0ubuntu4) lucid; urgency=low
...
  [ Travis Watkins ]
  * debian/patches/060_move_checks_to_compiz.patch:
- add all relevant checks from compiz-manager to compiz itself
  Compiz already checks for almost everything it needs so there is no
  need to check twice.

So the texture size check appears to be occurring in this chunk of the
patch:

@@ -244,13 +246,21 @@
 CompFBConfig *config = screen-glxPixmapFBConfigs[depth];
 int  attribs[7], i = 0;
 
+if (width  screen-maxTextureSize || height  screen-maxTextureSize)
+{
+   compLogMessage (core, CompLogLevelWarn,
+   Exceeded max texture size);
+
+   launchFallbackWM ();
+}
+
 if (!config-fbConfig)
 {
compLogMessage (core, CompLogLevelWarn,
No GLXFBConfig for depth %d,
depth);
 
-   return FALSE;
+   launchFallbackWM ();
 }
 
 attribs[i++] = GLX_TEXTURE_FORMAT_EXT;

So that all looks like it should work...  You should get an error
message Exceeded max texture size in your compiz log

-- 
compiz starts with a blank screen on a 2048x1152 monitor due to hw limit with 
textures  2048
https://bugs.launchpad.net/bugs/428769
You received this bug notification because you are a member of Ubuntu-X,
which is the registrant for xf86-video-intel.

___
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 428769] Re: compiz starts with a blank screen on a 2048x1152 monitor due to hw limit with textures 2048

2010-04-08 Thread Bryce Harrington
While the tone of comment #8 is entirely inappropriate, I agree with its
assessment that, if indeed this is a regression with compiz, it is quite
serious and needs attention soon

** Also affects: compiz (Ubuntu Lucid)
   Importance: Undecided
   Status: New

** Changed in: compiz (Ubuntu Lucid)
   Importance: Undecided = Critical

** Changed in: compiz (Ubuntu Lucid)
 Assignee: (unassigned) = Canonical Desktop Team (canonical-desktop-team)

-- 
compiz starts with a blank screen on a 2048x1152 monitor due to hw limit with 
textures  2048
https://bugs.launchpad.net/bugs/428769
You received this bug notification because you are a member of Ubuntu-X,
which is the registrant for xf86-video-intel.

___
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 428769] Re: compiz starts with a blank screen on a 2048x1152 monitor due to hw limit with textures 2048

2010-04-08 Thread Bryce Harrington
I *think* the problem may be that this code:

+if (width  screen-maxTextureSize || height 
screen-maxTextureSize)

needs to be:

+if (width = screen-maxTextureSize || height =
screen-maxTextureSize)


** Changed in: compiz (Ubuntu Lucid)
Milestone: None = ubuntu-10.04

** Changed in: compiz (Ubuntu Lucid)
 Assignee: Canonical Desktop Team (canonical-desktop-team) = (unassigned)

-- 
compiz starts with a blank screen on a 2048x1152 monitor due to hw limit with 
textures  2048
https://bugs.launchpad.net/bugs/428769
You received this bug notification because you are a member of Ubuntu-X,
which is the registrant for xf86-video-intel.

___
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 556631] Re: Compiz showing corruption because not refusing to run when rez max texture size

2010-04-08 Thread Bryce Harrington
Actually rather than duping to bug #428769 I'm going to just move this
to compiz and let those guys decide if it's a dupe.  Your symptoms are
quite a bit different, and the hardware is different, and that case is
for when the resolution == 2048 whereas yours is 2048.

One other question, are you doing anything to override compiz checks?
Can you run `apport-collect 556631` - which should pick up the relevant
compiz logs and config files for them to review?

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

** Also affects: compiz (Ubuntu Lucid)
   Importance: Medium
   Status: Triaged

** Changed in: compiz (Ubuntu Lucid)
   Importance: Medium = High

** Changed in: compiz (Ubuntu Lucid)
 Assignee: (unassigned) = Canonical Desktop Team (canonical-desktop-team)

-- 
Compiz showing corruption because not refusing to run when rez  max texture 
size
https://bugs.launchpad.net/bugs/556631
You received this bug notification because you are a member of Ubuntu-X,
which is the registrant for xserver-xorg-driver-ati.

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


Re: [Ubuntu-x-swat] [Bug 556253] Re: [2.6.32-19 regression] Does not check lid status any more, external screen powered off

2010-04-08 Thread Martin Pitt
Bryce Harrington [2010-04-07 23:46 -]:
 Martin, to isolate g-s-d, remove your monitors.xml file (in .config
 somewhere).  If that is not present, AFAIK g-s-d will not attempt to do
 any changes to your system.  If that makes the problem go away, then
 this bug should focus on g-s-d.

It's quite the other way around: The gdm account doesn't have a
monitors.xml, and thus X decides for a compromise resolution between
LVDS and DVI (1024x768) and enables both. This has been like that for
several releases, and while it looks ugly and distorted, it at least
works good enough for gdm. The regression is that DVI now gets
powered off (which the kernel DRM/X logs have no evidence off, they
claim that it's on) -- we haven't figured out yet why that happens.

Once I log into my user account (blindly type password), my custom
monitors.xml kicks in, and g-s-d disables LVDS and sets DVI to
1280x1024, and things work perfectly again.

 Otherwise, perhaps reverse-quirks in the kernel are needed.  I might
 even suggest backing out the upstream patch, and sticking with
 individual quirks.  Quirking individual systems means a lot of work, but
 at least it's well understood how to recognize the problem and
 incorporate the quirk.

Like a known works whitelist? This sounds like an interesting case.
I'd expect vendors like Dell to at least get this right on their
business laptops, where they sell good docking stations for, and have
trouble with paying support if it fails..

Bryce Harrington [2010-04-08  2:21 -]:
 Can you explain in further detail how you think the kernel logic that
 handled this previously could be moved to the xserver?

This was an initial idea, but we have to discard it. The reason for
removing it from the kernel wasn't something like we do not want the
kernel to have policy and decide which port to favor, but initial
lid status detection is just plain broken on too many BIOSes. Thus if
we'd move that logic into X, we'd get the exact same problems back.

Now, without the initial lid state I see use cases in both directions
when you have multiple monitors -- if you attach a beamer, you usually
want both on, if you attach an external monitor (with a higher
resolution), you usually want only the external monitor).

So the root problem here (apart from the doesn't work as perfectly as
before in lucid) is why the DVI powers off. Getting back the better
behavior of previous lucid versions with driving DVI in native
resolution is certainly a bonus, but I don't see how to achieve that
easily at this point of the release.

-- 
Martin Pitt| http://www.piware.de
Ubuntu Developer (www.ubuntu.com)  | Debian Developer  (www.debian.org)

-- 
[2.6.32-19 regression] Does not check lid status any more, external screen 
powered off
https://bugs.launchpad.net/bugs/556253
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 513523] Re: [i965] 64 bit Webots simulator freezes system with Intel GM965

2010-04-08 Thread Chris Halse Rogers
None of the logs so far seem to contain a error state in the regdumps,
and the Lucid logs don't seem to contain *any* errors.  As a final
check, could you try installing the drm-intel-next kernel from the
kernel PPA here http://kernel.ubuntu.com/~kernel-ppa/mainline/drm-intel-
next/ - that has a patch to more reliably generate the crash data.  If
*that* doesn't contain an error state, we'll take what we've got
upstream and see if the have any ideas.

You said that this also causes hangs with software rendering - if so, it
might be better to get a debug trace with swrast, by running
“LIBGL_DRIVERS_PATH=/notapath webots”.  Attaching both traces might help
identify similarities to work out what's actually failing.

** Changed in: xserver-xorg-video-intel (Ubuntu Lucid)
   Status: Confirmed = Won't Fix

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

** Changed in: xserver-xorg-video-intel (Ubuntu)
 Assignee: Chris Halse Rogers (raof) = (unassigned)

** Changed in: xserver-xorg-video-intel (Ubuntu Lucid)
 Assignee: Chris Halse Rogers (raof) = (unassigned)

** Tags added: ctrev

-- 
[i965] 64 bit Webots simulator freezes system with Intel GM965
https://bugs.launchpad.net/bugs/513523
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-intel in ubuntu.

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


[Ubuntu-x-swat] [Bug 513523] Re: [i965] 64 bit Webots simulator freezes system with Intel GM965

2010-04-08 Thread Chris Halse Rogers
Rejecting the Lucid task; this has an easy work-around (using the 32bit
version), and we don't seem likely to have a fix in time.

-- 
[i965] 64 bit Webots simulator freezes system with Intel GM965
https://bugs.launchpad.net/bugs/513523
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-intel in ubuntu.

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


[Ubuntu-x-swat] [Bug 362359] Re: Focus gets stuck to a window - impossible to select other windows

2010-04-08 Thread Delan Azabani
Hmm... after one more reboot the problem seems to have disappeared for
now.

-- 
Focus gets stuck to a window - impossible to select other windows
https://bugs.launchpad.net/bugs/362359
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 549989] Re: [gm45] flicker on bottom third of screen

2010-04-08 Thread Chris Halse Rogers
This looks like a candidate for powersave quirking then.
@Adam: It would be good to know if i915.powersave=0 works for you as well.

** Package changed: xserver-xorg-video-intel (Ubuntu Lucid) = linux
(Ubuntu Lucid)

** Summary changed:

- [gm45] flicker on bottom third of screen
+ (Needs i915.powersave quirk) [gm45] flicker on bottom third of screen

** Changed in: linux (Ubuntu Lucid)
 Assignee: Chris Halse Rogers (raof) = (unassigned)

-- 
(Needs i915.powersave quirk) [gm45] flicker on bottom third of screen
https://bugs.launchpad.net/bugs/549989
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-intel in ubuntu.

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


[Ubuntu-x-swat] [Bug 428769] Re: compiz starts with a blank screen on a 2048x1152 monitor due to hw limit with textures 2048

2010-04-08 Thread Michael Vogt
** Changed in: compiz (Ubuntu Lucid)
   Status: New = In Progress

-- 
compiz starts with a blank screen on a 2048x1152 monitor due to hw limit with 
textures  2048
https://bugs.launchpad.net/bugs/428769
You received this bug notification because you are a member of Ubuntu-X,
which is the registrant for xf86-video-intel.

___
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 533269] Re: External display not working

2010-04-08 Thread Arne Kjell Vikhagen
I have the same problem on my T60 Thinkpad, with an ATI X1300 video
card. Running latest lucid as of today, with 2.6.32-19-generic. Used to
work with Karmic.

-- 
External display not working
https://bugs.launchpad.net/bugs/533269
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 520925] Re: [i810e] Can only get 1024x768, native 1152x864 mode deleted

2010-04-08 Thread Dhinakar
I tried these two modeline
Modeline 1152x864R 69.75 1152 1200 1232 1312 864 867 871 889 +hsync -vsync
and
Modeline 1152x864_60.00 81.75 1152 1216 1336 1520 864 867 871 879 -hsync 
+vsync
separately ...

Both cant help,,,
I tried it manytimes,,,
One time,the display crashed at startup and in all other times I cant even 
apply them and it says  Selected configuration for display could not be 
applied

-- 
[i810e] Can only get 1024x768,  native 1152x864 mode deleted
https://bugs.launchpad.net/bugs/520925
You received this bug notification because you are a member of Ubuntu-X,
which is the registrant for xf86-video-intel.

___
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 520925] Re: [i810e] Can only get 1024x768, native 1152x864 mode deleted

2010-04-08 Thread Dhinakar
I tried these two modeline
Modeline 1152x864R 69.75 1152 1200 1232 1312 864 867 871 889 +hsync -vsync
and
Modeline 1152x864_60.00 81.75 1152 1216 1336 1520 864 867 871 879 -hsync 
+vsync
separately ...

Both cant help,,,
I tried it manytimes,,,
One time,the display crashed at startup and in all other times I cant even 
apply them and it says  Selected configuration for display could not be 
applied as in screenshot 



** Attachment added: Screenshot of the display box
   http://launchpadlibrarian.net/43415844/Screenshot.png

-- 
[i810e] Can only get 1024x768,  native 1152x864 mode deleted
https://bugs.launchpad.net/bugs/520925
You received this bug notification because you are a member of Ubuntu-X,
which is the registrant for xf86-video-intel.

___
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 428769] Re: compiz starts with a blank screen on a 2048x1152 monitor due to hw limit with textures 2048

2010-04-08 Thread Launchpad Bug Tracker
** Branch linked: lp:compiz

-- 
compiz starts with a blank screen on a 2048x1152 monitor due to hw limit with 
textures  2048
https://bugs.launchpad.net/bugs/428769
You received this bug notification because you are a member of Ubuntu-X,
which is the registrant for xf86-video-intel.

___
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 428769] Re: compiz starts with a blank screen on a 2048x1152 monitor due to hw limit with textures 2048

2010-04-08 Thread Michael Vogt
I uploaded a new compiz now with the change suggested in comment #17. I
don't have the required hardware to test it myself, please let me know
if it works and stops compiz from running.

-- 
compiz starts with a blank screen on a 2048x1152 monitor due to hw limit with 
textures  2048
https://bugs.launchpad.net/bugs/428769
You received this bug notification because you are a member of Ubuntu-X,
which is the registrant for xf86-video-intel.

___
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 557688] Re: [RV730XT] sporadic freezes

2010-04-08 Thread Benjamin Drung
I uninstalled virtualbox-ose and I will see if the freezes are gone.

-- 
[RV730XT] sporadic freezes
https://bugs.launchpad.net/bugs/557688
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-ati in ubuntu.

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


[Ubuntu-x-swat] [Bug 557895] [NEW] Xorg freeze

2010-04-08 Thread Bryan Quigley
Public bug reported:

Binary package hint: xserver-xorg-video-nouveau

Freezes when X tries to load in bootup.

Need to turn accel off in nouveau, turning off splash or quiet have no
effect.


lspci detects it as 02:00.0 VGA compatible controller: nVidia
Corporation C79 [GeForce 9200M G] (rev b1)

but nvidia driver detects it as a 8200

ProblemType: Bug
DistroRelease: Ubuntu 10.04
Package: xorg 1:7.5+3ubuntu1
ProcVersionSignature: Ubuntu 2.6.32-19.28-generic 2.6.32.10+drm33.1
Uname: Linux 2.6.32-19-generic x86_64
Architecture: amd64
CurrentDmesg:
 [   23.809300] lp: driver loaded but no devices found
 [   23.865859] ppdev: user-space parallel port driver
 [   24.423140] hda_codec: ALC268: BIOS auto-probing.
 [   24.520131] input: HDA Digital PCBeep as 
/devices/pci:00/:00:08.0/input/input10
 [   32.950033] eth0: no IPv6 routers present
Date: Thu Apr  8 07:39:06 2010
DkmsStatus: Error: [Errno 2] No such file or directory
GdmLog1: Error: command ['gksu', '-D', 'Apport', '--', 'cat', 
'/var/log/gdm/:0.log.1'] failed with exit code 1: cat: /var/log/gdm/:0.log.1: 
No such file or directory
GdmLog2: Error: command ['gksu', '-D', 'Apport', '--', 'cat', 
'/var/log/gdm/:0.log.2'] failed with exit code 1: cat: /var/log/gdm/:0.log.2: 
No such file or directory
LiveMediaBuild: Ubuntu 10.04 Lucid Lynx - Beta amd64 (20100406.1)
MachineType: HCL Infosystems Limited Notebook PC
ProcCmdLine: BOOT_IMAGE=/casper/vmlinuz noprompt cdrom-detect/try-usb=true 
file=/cdrom/preseed/hostname.seed boot=casper initrd=/casper/initrd.lz quiet 
splash nouveau.noaccel=1
ProcEnviron:
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: xorg
Symptom: display
Title: Xorg freeze
dmi.bios.date: 06/04/2009
dmi.bios.vendor: Phoenix Technologies Ltd.
dmi.bios.version: H2.06
dmi.board.name: Notebook PC
dmi.board.vendor: HCL Infosystems Limited
dmi.board.version: REFERENCE
dmi.chassis.type: 10
dmi.chassis.vendor: HCL Infosystems Limited
dmi.modalias: 
dmi:bvnPhoenixTechnologiesLtd.:bvrH2.06:bd06/04/2009:svnHCLInfosystemsLimited:pnNotebookPC:pvrREFERENCE:rvnHCLInfosystemsLimited:rnNotebookPC:rvrREFERENCE:cvnHCLInfosystemsLimited:ct10:cvr:
dmi.product.name: Notebook PC
dmi.product.version: REFERENCE
dmi.sys.vendor: HCL Infosystems Limited
glxinfo: Error: [Errno 2] No such file or directory
system:
 distro: Ubuntu
 codename:   lucid
 architecture:   x86_64
 kernel: 2.6.32-19-generic

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


** Tags: amd64 apport-bug freeze lucid

-- 
Xorg freeze
https://bugs.launchpad.net/bugs/557895
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-nouveau 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 557895] Re: Xorg freeze

2010-04-08 Thread Bryan Quigley

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

-- 
Xorg freeze
https://bugs.launchpad.net/bugs/557895
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-nouveau 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 557896] [NEW] [Lucid] Tearing video with Radeon Xpress 200M

2010-04-08 Thread Lollerke
Public bug reported:

Binary package hint: xserver-xorg-video-ati

Videos are tearing in VLC and mplayer no matter which video output I
choose (I tried xv,xv textured video,gl). Higher bitrate = more tearing
(1000kbps xvid: no tearing , 1500kbps x264: rare tearing, 5000kbps x264:
lots of tearing).

ProblemType: Bug
DistroRelease: Ubuntu 10.04
Package: xserver-xorg-video-ati 1:6.12.192-2ubuntu2
ProcVersionSignature: Ubuntu 2.6.32-19.28-generic 2.6.32.10+drm33.1
Uname: Linux 2.6.32-19-generic i686
Architecture: i386
Date: Thu Apr  8 09:38:28 2010
DkmsStatus: Error: [Errno 2] Nincs ilyen fájl vagy könyvtár
InstallationMedia: Ubuntu 10.04 Lucid Lynx - Alpha i386 (20100228)
Lsusb:
 Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
 Bus 002 Device 003: ID 0603:00f2 Novatek Microelectronics Corp.
 Bus 002 Device 002: ID 0458:003a KYE Systems Corp. (Mouse Systems)
 Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
MachineType: TOSHIBA Satellite L30
PccardctlIdent:
 Socket 0:
   no product info available
PccardctlStatus:
 Socket 0:
   no card
ProcCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.32-19-generic 
root=UUID=51c7e128-fb3a-4af4-8f1a-a46072fc86dc ro quiet splash pci=nomsi
ProcEnviron:
 LANG=hu_HU.utf8
 SHELL=/bin/bash
SourcePackage: xserver-xorg-video-ati
dmi.bios.date: 08/17/2007
dmi.bios.vendor: TOSHIBA
dmi.bios.version: V3.00
dmi.board.name: Satellite L30
dmi.board.vendor: TOSHIBA
dmi.board.version: Not Applicable
dmi.chassis.type: 10
dmi.chassis.vendor: TOSHIBA
dmi.chassis.version: N/A
dmi.modalias: 
dmi:bvnTOSHIBA:bvrV3.00:bd08/17/2007:svnTOSHIBA:pnSatelliteL30:pvrPSL33E-00E00XHU:rvnTOSHIBA:rnSatelliteL30:rvrNotApplicable:cvnTOSHIBA:ct10:cvrN/A:
dmi.product.name: Satellite L30
dmi.product.version: PSL33E-00E00XHU
dmi.sys.vendor: TOSHIBA
system:
 distro: Ubuntu
 codename:   lucid
 architecture:   i686
 kernel: 2.6.32-19-generic

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


** Tags: apport-bug i386 lucid

-- 
[Lucid] Tearing video with Radeon Xpress 200M
https://bugs.launchpad.net/bugs/557896
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-ati in ubuntu.

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


[Ubuntu-x-swat] [Bug 557896] Re: [Lucid] Tearing video with Radeon Xpress 200M

2010-04-08 Thread Lollerke

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

** Description changed:

  Binary package hint: xserver-xorg-video-ati
  
  Videos are tearing in VLC and mplayer no matter which video output I
- choose. Higher bitrate = more tearing (1000kbps xvid: no tearing ,
- 1500kbps x264: rare tearing, 5000kbps x264: lots of tearing).
+ choose (I tried vx,xv textured video,gl). Higher bitrate = more tearing
+ (1000kbps xvid: no tearing , 1500kbps x264: rare tearing, 5000kbps x264:
+ lots of tearing).
  
  ProblemType: Bug
  DistroRelease: Ubuntu 10.04
  Package: xserver-xorg-video-ati 1:6.12.192-2ubuntu2
  ProcVersionSignature: Ubuntu 2.6.32-19.28-generic 2.6.32.10+drm33.1
  Uname: Linux 2.6.32-19-generic i686
  Architecture: i386
  Date: Thu Apr  8 09:38:28 2010
  DkmsStatus: Error: [Errno 2] Nincs ilyen fájl vagy könyvtár
  InstallationMedia: Ubuntu 10.04 Lucid Lynx - Alpha i386 (20100228)
  Lsusb:
-  Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
-  Bus 002 Device 003: ID 0603:00f2 Novatek Microelectronics Corp. 
-  Bus 002 Device 002: ID 0458:003a KYE Systems Corp. (Mouse Systems) 
-  Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
-  Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
+  Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
+  Bus 002 Device 003: ID 0603:00f2 Novatek Microelectronics Corp.
+  Bus 002 Device 002: ID 0458:003a KYE Systems Corp. (Mouse Systems)
+  Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
+  Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
  MachineType: TOSHIBA Satellite L30
  PccardctlIdent:
-  Socket 0:
-no product info available
+  Socket 0:
+    no product info available
  PccardctlStatus:
-  Socket 0:
-no card
+  Socket 0:
+    no card
  ProcCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.32-19-generic 
root=UUID=51c7e128-fb3a-4af4-8f1a-a46072fc86dc ro quiet splash pci=nomsi
  ProcEnviron:
-  LANG=hu_HU.utf8
-  SHELL=/bin/bash
+  LANG=hu_HU.utf8
+  SHELL=/bin/bash
  SourcePackage: xserver-xorg-video-ati
  dmi.bios.date: 08/17/2007
  dmi.bios.vendor: TOSHIBA
  dmi.bios.version: V3.00
  dmi.board.name: Satellite L30
  dmi.board.vendor: TOSHIBA
  dmi.board.version: Not Applicable
  dmi.chassis.type: 10
  dmi.chassis.vendor: TOSHIBA
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnTOSHIBA:bvrV3.00:bd08/17/2007:svnTOSHIBA:pnSatelliteL30:pvrPSL33E-00E00XHU:rvnTOSHIBA:rnSatelliteL30:rvrNotApplicable:cvnTOSHIBA:ct10:cvrN/A:
  dmi.product.name: Satellite L30
  dmi.product.version: PSL33E-00E00XHU
  dmi.sys.vendor: TOSHIBA
  system:
-  distro: Ubuntu
-  codename:   lucid
-  architecture:   i686
-  kernel: 2.6.32-19-generic
+  distro: Ubuntu
+  codename:   lucid
+  architecture:   i686
+  kernel: 2.6.32-19-generic

** Description changed:

  Binary package hint: xserver-xorg-video-ati
  
  Videos are tearing in VLC and mplayer no matter which video output I
- choose (I tried 

[Ubuntu-x-swat] [Bug 551207] Re: wrong colors on powerpc g4 imac

2010-04-08 Thread Gürkan Sengün
either that, or the version of vga card i have with ubuntu is just not 
supported yet. the one that works 
with debian is slightly newer:
:00:10.0 0300: 10de:0189 (rev a2)
:00:10.0 VGA compatible controller: nVidia Corporation NV18 [GeForce4 MX 
with AGP8X (Mac)] (rev a2)

-- 
wrong colors on powerpc g4 imac
https://bugs.launchpad.net/bugs/551207
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-nouveau 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 459153] Re: [r300 r600] Google Earth crashes

2010-04-08 Thread rabbitbug
*** This bug is a duplicate of bug 459961 ***
https://bugs.launchpad.net/bugs/459961

I met this crash of google earth on Karmic (0910) before on Compaq Evo
N800v with radeon graphic card. After I update ubuntu to Lucid (1004)
today, Google Earth works fine. Maybe Ubuntu update the driver for old
version radeon graphic card.

-- 
[r300 r600] Google Earth crashes
https://bugs.launchpad.net/bugs/459153
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to mesa 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 557923] [NEW] calibration utility is missing for touchscreen

2010-04-08 Thread Andrew Frank
Public bug reported:

Binary package hint: xorg

the lucid (beta 1) does recognize my touchscreen, but not precisely. i
need to calibrate, but cannot find the calibration utility.

recommendation: insert it automatically in
preferences/administration/accessory menu.

without calibration the touchscreen recognition is not worth it...

thank you!

andrew

ProblemType: Bug
DistroRelease: Ubuntu 10.04
Package: xorg 1:7.5+3ubuntu1
ProcVersionSignature: Ubuntu 2.6.32-19.28-generic 2.6.32.10+drm33.1
Uname: Linux 2.6.32-19-generic i686
Architecture: i386
Date: Thu Apr  8 10:20:54 2010
DkmsStatus: Error: [Errno 2] No such file or directory
GdmLog2: X: /tmp/.X11-unix has suspicious mode (not 1777) or is not a 
directory, aborting.
InstallationMedia: Ubuntu 10.04 Lucid Lynx - Beta i386 (20100318)
MachineType: FUJITSU LifeBook P1630
PccardctlIdent:
 Socket 0:
   no product info available
PccardctlStatus:
 Socket 0:
   no card
ProcCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.32-19-generic 
root=UUID=ed2639b4-f090-4f2a-a775-c821614f1b34 ro quiet splash
ProcEnviron:
 LANG=en_US.utf8
 SHELL=/bin/bash
SourcePackage: xorg
dmi.bios.date: 11/14/2008
dmi.bios.vendor: FUJITSU // Phoenix Technologies Ltd.
dmi.bios.version: Version 1.07
dmi.board.name: FJNB1F8
dmi.board.vendor: FUJITSU
dmi.chassis.type: 10
dmi.chassis.vendor: A322H10305301010
dmi.modalias: 
dmi:bvnFUJITSU//PhoenixTechnologiesLtd.:bvrVersion1.07:bd11/14/2008:svnFUJITSU:pnLifeBookP1630:pvr:rvnFUJITSU:rnFJNB1F8:rvr:cvnA322H10305301010:ct10:cvr:
dmi.product.name: LifeBook P1630
dmi.sys.vendor: FUJITSU
glxinfo: Error: [Errno 2] No such file or directory
system:
 distro: Ubuntu
 codename:   lucid
 architecture:   i686
 kernel: 2.6.32-19-generic

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


** Tags: apport-bug i386 lucid

-- 
calibration utility is missing for touchscreen 
https://bugs.launchpad.net/bugs/557923
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 557923] Re: calibration utility is missing for touchscreen

2010-04-08 Thread Andrew Frank

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

-- 
calibration utility is missing for touchscreen 
https://bugs.launchpad.net/bugs/557923
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 539196] Re: nvidia-settings X display configuration window doesn't work on nvidia-173 and nvidia-96

2010-04-08 Thread francois
** Changed in: nvidia-settings (Ubuntu Lucid)
   Status: Fix Committed = Fix Released

** Changed in: nvidia-settings (Ubuntu Lucid)
   Status: Fix Released = Fix Committed

-- 
nvidia-settings X display configuration window doesn't work on nvidia-173 and 
nvidia-96
https://bugs.launchpad.net/bugs/539196
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to nvidia-settings 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


Re: [Ubuntu-x-swat] [Bug 538377] Re: HD3450 HDMI output intermittently turns off

2010-04-08 Thread Daniel Newman
Ok, I've been running kernel 2.6.32-19-generic 
#29~lp538377v201004072017 SMP Wed Apr 7 19:50:45 UTC 2010 x86_64 
GNU/Linux for ovder 3 hours now, without the bug recurring.  So far 
everything I've tried related to the HDMI output seems to function 
normally.  It looks like this could be included in the Lucid kernel.

On 08/04/10 06:39, Andy Whitcroft wrote:
 I have tried pulling back the patches indicated to the Lucid kernel and
 produced some test kernels.  If those affected could try these kernels
 and report back here that would be helpful.  The kernel will be at the
 URL below shortly:

  http://people.canonical.com/~apw/lp538377-lucid/

 Thanks!



-- 
HD3450 HDMI output intermittently turns off
https://bugs.launchpad.net/bugs/538377
You received this bug notification because you are a member of Ubuntu-X,
which is the registrant for xserver-xorg-driver-ati.

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


[Ubuntu-x-swat] [Bug 555641] Re: MASTER: max texture size prevents compiz from running

2010-04-08 Thread Gazs
Thanks for figuring this out.

-- 
MASTER: max texture size prevents compiz from running
https://bugs.launchpad.net/bugs/555641
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 549486] Re: [945GME] During checkbox disk check, the screen goes crazy

2010-04-08 Thread James Gregory
A recent Checkbox test confirms that this is now fixed. Thanks.

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

-- 
[945GME] During checkbox disk check, the screen goes crazy
https://bugs.launchpad.net/bugs/549486
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


Re: [Ubuntu-x-swat] [Bug 379313] Re: Handling NextWindow Touchscreen (multitouch)

2010-04-08 Thread djp
Hmm there is probably a bug with one of the driver locks (if anyone wants to
help review the code the source to the kernel module is included with the
nwfermi package)

What kernel are you using?

On Tue, Apr 6, 2010 at 1:11 PM, robireland r...@robscreative.com wrote:

 Thanks for the quick reply, Dan.

 I tried the different installs, and I get the same thing regardless. It
 works for anything from a couple of seconds to a couple of minutes.
 Then the mouse buttons stop working and a few seconds later machine just
 stops dead and won't accept any input from anything forcing me to do a
 hard reboot.

 --
 Handling NextWindow Touchscreen (multitouch)
 https://bugs.launchpad.net/bugs/379313
 You received this bug notification because you are a direct subscriber
 of the bug.

 Status in “xserver-xorg-input-evdev” package in Ubuntu: Incomplete

 Bug description:
 Binary package hint: xserver-xorg-input-evdev

 Ubuntu 9.04/8.10 and probably other.

 The NextWindow touch screen is used on the HP TouchSmart systems however
 doesn't work out of the box on 8.10 or 9.04.

 Firstly it is allocated to a synaptic touchpad driver initially which is
 wrong, but can be overcome with the appropriate HAL fdi to change to evdev.

 Secondly (and this is a most likely a problem of either the hardware or X),
 it reports X, Y values using ABS_RX, ABS_Z rather than the expected ABS_X,
 ABS_Y. The evtouch driver will work because it accepts these as
 alternatives.

 Lastly, because the system is multi-touch aware it reports to the xserver
 that it has buttons. This causes it to be misclassified by evdev as a
 touchpad rather than a touchscreen.

 The following patch fixes the problem for me but is obviously not a general
 solution. This is against packaged version 1:2.1.1-1ubuntu4:

 --- src/evdev.c.orig2010-05-22 16:08:14.0 +1000
 +++ src/evdev.c 2009-05-22 16:09:30.0 +1000
 @@ -382,10 +382,12 @@

case EV_ABS:
switch (ev.code) {
 +case ABS_Z:
case ABS_X:
pEvdev-abs_x = value;
abs = 1;
break;
 +case ABS_RX:
case ABS_Y:
pEvdev-abs_y = value;
abs = 1;
 @@ -1368,11 +1370,11 @@
 xf86Msg(X_INFO, %s: Found x and y absolute axes\n, pInfo-name);
pEvdev-flags |= EVDEV_ABSOLUTE_EVENTS;
if (TestBit(BTN_TOUCH, key_bitmask)) {
 -if (num_buttons) {
 +/*  if (num_buttons) {
 xf86Msg(X_INFO, %s: Found absolute touchpad\n,
 pInfo-name);
 pEvdev-flags |= EVDEV_TOUCHPAD;
 pEvdev-old_x = pEvdev-old_y = -1;
 -} else {
 +} else */ {
 xf86Msg(X_INFO, %s: Found absolute touchscreen\n,
 pInfo-name);
 pEvdev-flags |= EVDEV_TOUCHSCREEN;
 pEvdev-flags |= EVDEV_BUTTON_EVENTS;

 ProblemType: Bug
 Architecture: amd64
 DistroRelease: Ubuntu 9.04
 NonfreeKernelModules: nvidia
 Package: xserver-xorg-input-evdev 1:2.1.1-1ubuntu4 [modified:
 usr/lib/xorg/modules/input/evdev_drv.so]
 ProcEnviron:
  LANG=en_AU.UTF-8
  SHELL=/bin/bash
 ProcVersion: Linux version 2.6.28-11-generic (bui...@crested) (gcc version
 4.3.3 (Ubuntu 4.3.3-5ubuntu4) ) #42-Ubuntu SMP Fri Apr 17 01:58:03 UTC 2009
 SourcePackage: xserver-xorg-input-evdev
 Uname: Linux 2.6.28-11-generic x86_64

 To unsubscribe from this bug, go to:

 https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-input-evdev/+bug/379313/+subscribe


-- 
Handling NextWindow Touchscreen (multitouch)
https://bugs.launchpad.net/bugs/379313
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-input-evdev 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 551207] Re: wrong colors on powerpc g4 imac

2010-04-08 Thread Gürkan Sengün
The differences I can think of are these:
UBUNTU
ii  xserver-xorg1:7.5+3ubuntu1  the X.Org X server
ii  libdrm-nouveau1   2.4.18-1ubuntu2   
  Userspace interface to nouveau-specific 
ii  xserver-xorg-video-nouveau1:0.0.15+git20100219+9b4118d-0ubuntu5 
  X.Org X server -- Nouveau display driver (ex

DEBIAN
ii  xserver-xorg  1:7.5+5   the 
X.Org X server
ii  libdrm-nouveau1   2.4.18-4  
Userspace interface to nouveau-specific kern
ii  xserver-xorg-video-nouveau1:0.0.15+git20100329+7858345-2
X.Org X server -- Nouveau display driver (ex

(the nouveau driver needed this or a newer libdrm-nouveau dev package to
build)

-- 
wrong colors on powerpc g4 imac
https://bugs.launchpad.net/bugs/551207
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-nouveau 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 552481] Re: [i845g] Login screen doesn't appear

2010-04-08 Thread Simon Lewis
Bryce: Turning off KMS made no difference. I haven't experienced the
symptoms in bug #541492, but that might be my next issue once this one
is resolved.

Chris: Output from modprobe:
$ sudo modprobe -vvv i915

insmod /lib/modules/2.6.32-19-generic/kernel/drivers/acpi/video.ko

WARNING: Error inserting video
(/lib/modules/2.6.32-19-generic/kernel/drivers/acpi/video.ko): No such
device

WARNING: Error inserting i2c_algo_bit
(/lib/modules/2.6.32-19-generic/kernel/drivers/i2c/algos/i2c-algo-
bit.ko): No such device

WARNING: Error inserting agpgart
(/lib/modules/2.6.32-19-generic/kernel/drivers/char/agp/agpgart.ko): No
such device

WARNING: Error inserting drm
(/lib/modules/2.6.32-19-generic/kernel/drivers/gpu/drm/drm.ko): No such
device

WARNING: Error inserting drm_kms_helper
(/lib/modules/2.6.32-19-generic/kernel/drivers/gpu/drm/drm_kms_helper.ko):
No such device

FATAL: Error inserting i915
(/lib/modules/2.6.32-19-generic/kernel/drivers/gpu/drm/i915/i915.ko): No
such device


It may not be relevant, but I also got an Xorg error this morning:
X: ../../intel/intel_bufmgr_fake.c:1447: drm_intel_fake_bo_exec: Assertion 'ret 
== 0' failed.

-- 
[i845g] Login screen doesn't appear
https://bugs.launchpad.net/bugs/552481
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-intel in ubuntu.

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


[Ubuntu-x-swat] [Bug 428769] Re: compiz starts with a blank screen on a 2048x1152 monitor due to hw limit with textures 2048

2010-04-08 Thread Michael Vogt
** Changed in: compiz (Ubuntu Lucid)
   Status: In Progress = Fix Committed

** Changed in: compiz (Ubuntu Lucid)
   Importance: Critical = High

-- 
compiz starts with a blank screen on a 2048x1152 monitor due to hw limit with 
textures  2048
https://bugs.launchpad.net/bugs/428769
You received this bug notification because you are a member of Ubuntu-X,
which is the registrant for xf86-video-intel.

___
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 466310] Re: [i845g] X freezes randomly. mouse pointer moves but nothing happens on cliking.

2010-04-08 Thread wavesailor
Hi, I too am experiencing random freezes on my  Dell Dimension 2400 with
Intel 82845G/GL/GE Chipset. Once it freezes I can no longer move the
mouse or type on the keyboard. CapsLock and NumLock both stop working. I
can however SSH into the box fine. I don't see any erros in any of the
logs - nothing unusual for my inexperienced eyes.

As far as I can remember this only started once I upgraded to the 9.04
and 9.10.

lspci -vv produces this:
00:02.0 VGA compatible controller: Intel Corporation 82845G/GL[Brookdale-G]/GE 
Chipset Integrated Graphics Device (rev 01)
Subsystem: Dell Device 0160
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx-
Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast TAbort- TAbort- 
MAbort- SERR- PERR- INTx-
Latency: 0
Interrupt: pin A routed to IRQ 16
Region 0: Memory at e800 (32-bit, prefetchable) [size=128M]
Region 1: Memory at feb8 (32-bit, non-prefetchable) [size=512K]
Capabilities: access denied
Kernel driver in use: i915
Kernel modules: i915

I see some people on the net say that the Intel Corporation
82845G/GL[Brookdale-G]/GE Chipset Integrated Graphics Device should use
the i810 driver - Is this true

I also see that some people have had results with Reverting the Jaunty Xorg 
intel driver to 2.4
Can you or anyone confirm this??

-- 
[i845g] X freezes randomly. mouse pointer moves but nothing happens on cliking.
https://bugs.launchpad.net/bugs/466310
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-intel in ubuntu.

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


[Ubuntu-x-swat] [Bug 548709] Re: [R423] gamma bug, display too bright when using DVI-VGA adapter

2010-04-08 Thread Bryce Harrington
** Also affects: linux (Ubuntu Lucid)
   Importance: Medium
   Status: Triaged

-- 
[R423] gamma bug, display too bright when using DVI-VGA adapter
https://bugs.launchpad.net/bugs/548709
You received this bug notification because you are a member of Ubuntu-X,
which is the registrant for xserver-xorg-driver-ati.

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


[Ubuntu-x-swat] [Bug 548709] Re: [R423] gamma bug, display too bright when using DVI-VGA adapter

2010-04-08 Thread aldoem
** Changed in: linux (Ubuntu Lucid)
   Status: Triaged = Confirmed

-- 
[R423] gamma bug, display too bright when using DVI-VGA adapter
https://bugs.launchpad.net/bugs/548709
You received this bug notification because you are a member of Ubuntu-X,
which is the registrant for xserver-xorg-driver-ati.

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


[Ubuntu-x-swat] [Bug 556872] Re: [lucid] [nouveau] blank screen on Dell Latitude E6410 (NVS 3100M [10de:0a6c])

2010-04-08 Thread Martin Pitt
** Changed in: xserver-xorg-video-nouveau (Ubuntu)
 Assignee: Canonical Desktop Team (canonical-desktop-team) = Chris Halse 
Rogers (raof)

-- 
[lucid] [nouveau] blank screen on Dell Latitude E6410 (NVS 3100M [10de:0a6c])
https://bugs.launchpad.net/bugs/556872
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-nouveau 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 556856] Re: [lucid] [nouveau] blank screen on Dell Precision M4500 [10de:0cbc]

2010-04-08 Thread Martin Pitt
** Changed in: xserver-xorg-video-nouveau (Ubuntu)
 Assignee: Canonical Desktop Team (canonical-desktop-team) = Chris Halse 
Rogers (raof)

-- 
[lucid] [nouveau] blank screen on Dell Precision M4500 [10de:0cbc]
https://bugs.launchpad.net/bugs/556856
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-nouveau 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 533269] Re: External display not working

2010-04-08 Thread Bryce Harrington

@reece - thanks for providing that info, but we would like to see it from the 
original reporter.  We may want to send this bug report upstream, but upstream 
has a hard and fast rule that logs from someone other than the original 
reporter are not acceptable.  The reason for that is that quite often with 
X.org bug reports, two people may *think* they have the same issue based on 
commonality of symptoms and/or hardware, but in truth they have separate issues 
and mixing the report and the files can cause the developers some confusion.

If this bug report seems not to be getting attention, I would encourage
you to file a new bug report with this data, and simply reference this
bug report in your bug description.


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

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

-- 
External display not working
https://bugs.launchpad.net/bugs/533269
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 379313] Re: Handling NextWindow Touchscreen (multitouch)

2010-04-08 Thread robireland
hi iox, I've sent  couple of emails over the past couple of weeks to no
avail.

Dan, my current kernel is 2.6.31-20-generic-pae , and it did the same
thing on the generic 20 and 14

thanks

-- 
Handling NextWindow Touchscreen (multitouch)
https://bugs.launchpad.net/bugs/379313
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-input-evdev 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 556653] Re: build fails in chrooted system

2010-04-08 Thread Luigi Capriotti
I'm ok with that workaround. Tks for the quick patch proposal.

-- 
build fails in chrooted system
https://bugs.launchpad.net/bugs/556653
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to nvidia-graphics-drivers-173 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 532281] Re: Cannot save screen resolution into X Config File

2010-04-08 Thread Bryce Harrington
** Changed in: xorg-server (Ubuntu)
   Status: Incomplete = New

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

-- 
Cannot save screen resolution into X Config File
https://bugs.launchpad.net/bugs/532281
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 554023] Re: gdm fails to start

2010-04-08 Thread mlindeblom

3


This bug was re-classified as an intel bug from a generic gdm issue.

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

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


[Ubuntu-x-swat] [Bug 555044] Re: Intel i740 max resolution 800x600 Lubuntu 10.04

2010-04-08 Thread Bryce Harrington
Thanks for the Xorg log.  We also need the lspci -vnvn output attached
to this bug as a file

** Tags removed: needs-xorglog

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

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

-- 
Intel i740 max resolution 800x600 Lubuntu 10.04
https://bugs.launchpad.net/bugs/555044
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-i740 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 508699] Re: [K8M800] Xorg freeze / Kernel 2.6.32-10-generic freeze

2010-04-08 Thread Thomas Schweikle
@Chase: 
Kernel 2.6.32-10-generic
Power on: hangs. Distorted screen.
Restart after successfull boot: works.
Restart after successfull boot, wipping memory: hangs. Distorted screen.

-- 
[K8M800] Xorg freeze / Kernel 2.6.32-10-generic freeze
https://bugs.launchpad.net/bugs/508699
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-openchrome 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 554023] Re: gdm fails to start

2010-04-08 Thread Bryce Harrington
** Changed in: xserver-xorg-video-intel (Ubuntu)
   Status: Incomplete = New

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

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

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


[Ubuntu-x-swat] [Bug 552782] Re: package fglrx (not installed) failed to install/upgrade: dpkg-divert: mismatch on package

2010-04-08 Thread Steve Langasek
** Changed in: fglrx-installer (Ubuntu Lucid)
   Status: Confirmed = Triaged

-- 
package fglrx (not installed) failed to install/upgrade: dpkg-divert: mismatch 
on package
https://bugs.launchpad.net/bugs/552782
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to fglrx-installer in ubuntu.

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


[Ubuntu-x-swat] [Bug 557930] [NEW] [Lucid Beta2] After first boot Live Kubuntu Netbook doesn't start X and fallback to a textual terminal

2010-04-08 Thread Launchpad Bug Tracker
You have been subscribed to a public bug:

While ISO Testing, Live Mode

1) Created usb stick with USB Creator, with persistence
2) Booted first time. It worked
3) Playing around in the menu and browser, then rebooted to check persistence
4) It showed textual shell and nothing else.

I collected log with apport, in attach here.

Hardware: Dell Inspiron 1520. Graphic Card: nVidia GeForce 8600M GT

ProblemType: Bug
Architecture: i386
Date: Thu Apr  8 08:39:11 2010
DistroRelease: Ubuntu 10.04
LiveMediaBuild: Kubuntu-Netbook 10.04 Lucid Lynx - Beta i386 (20100406.1)
Package: kubuntu-netbook 1.169
ProcEnviron:
 LANG=it_IT.UTF-8
 SHELL=/bin/bash
ProcVersionSignature: Ubuntu 2.6.32-19.28-generic 2.6.32.10+drm33.1
SourcePackage: kubuntu-meta
Tags: lucid
Uname: Linux 2.6.32-19-generic i686

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


** Tags: apport-bug i386 iso-testing lucid
-- 
[Lucid Beta2] After first boot Live Kubuntu Netbook doesn't start X and 
fallback to a textual terminal
https://bugs.launchpad.net/bugs/557930
You received this bug notification because you are a member of Ubuntu-X, which 
is subscribed to xserver-xorg-video-nouveau 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 557433] Re: Corrupted screen

2010-04-08 Thread Bryce Harrington
** Package changed: xorg (Ubuntu) = xserver-xorg-video-ati (Ubuntu)

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

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


[Ubuntu-x-swat] [Bug 557383] Re: Xorg freeze on suspend, flashing moon icon.

2010-04-08 Thread Bryce Harrington
** Package changed: xorg (Ubuntu) = xserver-xorg-video-ati (Ubuntu)

-- 
Xorg freeze on suspend, flashing moon icon.
https://bugs.launchpad.net/bugs/557383
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-ati in ubuntu.

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


[Ubuntu-x-swat] [Bug 557336] Re: xinerama mouse cursor on every screen after hibernation

2010-04-08 Thread Bryce Harrington
** Package changed: xorg (Ubuntu) = nvidia-graphics-drivers (Ubuntu)

-- 
xinerama mouse cursor on every screen after hibernation
https://bugs.launchpad.net/bugs/557336
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to nvidia-graphics-drivers 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 545952] Re: [G33] CRT monitor no signal

2010-04-08 Thread Bryce Harrington
** Tags removed: needs-xorglog

** Tags removed: needs-lspci-vvnn

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

-- 
[G33] CRT monitor no signal
https://bugs.launchpad.net/bugs/545952
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-intel in ubuntu.

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


[Ubuntu-x-swat] [Bug 520055] Re: Live CD on large screens

2010-04-08 Thread Bryce Harrington
** Package changed: xorg (Ubuntu) = nvidia-graphics-drivers-180
(Ubuntu)

-- 
Live CD on large screens
https://bugs.launchpad.net/bugs/520055
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 557635] Re: Intel GMA X4500HD - LCD Brightness Control no longer works

2010-04-08 Thread Bryce Harrington
** Package changed: xorg (Ubuntu) = xserver-xorg-video-intel (Ubuntu)

-- 
Intel GMA X4500HD - LCD Brightness Control no longer works
https://bugs.launchpad.net/bugs/557635
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-intel in ubuntu.

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


[Ubuntu-x-swat] [Bug 557930] Re: [Lucid Beta2] After first boot Live Kubuntu Netbook doesn't start X and fallback to a textual terminal

2010-04-08 Thread Jonathan Thomas
** Package changed: kubuntu-meta (Ubuntu) = xserver-xorg-video-nouveau
(Ubuntu)

-- 
[Lucid Beta2] After first boot Live Kubuntu Netbook doesn't start X and 
fallback to a textual terminal
https://bugs.launchpad.net/bugs/557930
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-nouveau 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 557923] Re: calibration utility is missing for touchscreen

2010-04-08 Thread Bryce Harrington
** Package changed: xorg (Ubuntu) = xserver-xorg-video-intel (Ubuntu)

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

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


[Ubuntu-x-swat] [Bug 557599] Re: KDE desktop crashes out to a command line screen

2010-04-08 Thread Bryce Harrington
** Package changed: xorg (Ubuntu) = xorg-server (Ubuntu)

-- 
KDE desktop crashes out to a command line screen
https://bugs.launchpad.net/bugs/557599
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 557572] Re: X session suddenly killed, back to login!

2010-04-08 Thread Bryce Harrington
** Package changed: xorg (Ubuntu) = xserver-xorg-video-nouveau (Ubuntu)

-- 
X session suddenly killed, back to login!
https://bugs.launchpad.net/bugs/557572
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-nouveau 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 556253] Re: [2.6.32-19 regression] Does not check lid status any more, external screen powered off

2010-04-08 Thread Martin Pitt
 Alternatively, can you try booting with i915.fbpercrtc=1?

Again no perceivable difference. Unlike with the SVIDEO-1:d test, I also
opened and closed the lid, to check that lid detection and resolution
updates still work (they do). Thus this X.org log is slightly longer
than the SVIDEO one.

** Attachment added: Xorg log with i915.fbpercrtc=1
   http://launchpadlibrarian.net/43426802/Xorg.log.fbpercrtc

-- 
[2.6.32-19 regression] Does not check lid status any more, external screen 
powered off
https://bugs.launchpad.net/bugs/556253
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 555151] Re: Scrolling applet out of view kills X11 with signal 11

2010-04-08 Thread Bryce Harrington
** Changed in: xserver-xorg-video-intel (Ubuntu)
   Status: Incomplete = New

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

-- 
Scrolling applet out of view kills X11 with signal 11
https://bugs.launchpad.net/bugs/555151
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-intel in ubuntu.

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


[Ubuntu-x-swat] [Bug 556253] Re: [2.6.32-19 regression] Does not check lid status any more, external screen powered off

2010-04-08 Thread Martin Pitt
 video=SVIDEO-1:d

No perceivable difference, DVI stays off and LVDS is on in non-native
1024x768 mode.

** Attachment added: Xorg log with video=SVIDEO-1:d
   http://launchpadlibrarian.net/43426771/Xorg.log.SVIDEO-1%3Ad

-- 
[2.6.32-19 regression] Does not check lid status any more, external screen 
powered off
https://bugs.launchpad.net/bugs/556253
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 546270] Re: Video crashes to black screen from gnome-screensaver-preferences

2010-04-08 Thread Bryce Harrington
** Tags removed: needs-xorglog

-- 
Video crashes to black screen from gnome-screensaver-preferences
https://bugs.launchpad.net/bugs/546270
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-intel in ubuntu.

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


[Ubuntu-x-swat] [Bug 555528] Re: Display switching not possible on HP Pavillion dv3510nr notebook [Karmic Regression]

2010-04-08 Thread Bryce Harrington
** Tags removed: needs-xorglog

** Tags removed: needs-lspci-vvnn

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

-- 
Display switching not possible on HP Pavillion dv3510nr notebook [Karmic 
Regression]
https://bugs.launchpad.net/bugs/28
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-nouveau 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 557895] Re: Xorg freeze

2010-04-08 Thread Chris Halse Rogers
** Changed in: xserver-xorg-video-nouveau (Ubuntu)
   Status: New = Incomplete

-- 
Xorg freeze
https://bugs.launchpad.net/bugs/557895
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-nouveau 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 556051] Re: SiS662 video card doesn't work properly

2010-04-08 Thread Bryce Harrington
** Tags removed: needs-xorglog

** Tags removed: needs-lspci-vvnn

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

-- 
SiS662 video card doesn't work properly
https://bugs.launchpad.net/bugs/556051
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-sis 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 558370] [NEW] X server crash when closing quadrapassel while running

2010-04-08 Thread Steve Langasek
Public bug reported:

Binary package hint: xserver-xorg-video-intel

Launching quadrapassel to see what it was, I closed the window in the
middle of the game and X crashed as shown in Xorg.0.log.old.

I'm using metacity w/o compositing enabled.

ProblemType: Bug
DistroRelease: Ubuntu 10.04
Package: xserver-xorg-video-intel 2:2.9.1-3ubuntu1
ProcVersionSignature: Ubuntu 2.6.32-19.28-generic 2.6.32.10+drm33.1
Uname: Linux 2.6.32-19-generic x86_64
Architecture: amd64
Date: Thu Apr  8 04:25:08 2010
DkmsStatus: Error: [Errno 2] No such file or directory
MachineType: LENOVO 6371CTO
PccardctlIdent:
 Socket 0:
   no product info available
PccardctlStatus:
 Socket 0:
   no card
ProcCmdLine: root=/dev/mapper/hostname-root ro quiet splash
ProcEnviron:
 PATH=(custom, user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: xserver-xorg-video-intel
dmi.bios.date: 12/27/2006
dmi.bios.vendor: LENOVO
dmi.bios.version: 7IET23WW (1.04 )
dmi.board.name: 6371CTO
dmi.board.vendor: LENOVO
dmi.board.version: Not Available
dmi.chassis.asset.tag: No Asset Information
dmi.chassis.type: 10
dmi.chassis.vendor: LENOVO
dmi.chassis.version: Not Available
dmi.modalias: 
dmi:bvnLENOVO:bvr7IET23WW(1.04):bd12/27/2006:svnLENOVO:pn6371CTO:pvrThinkPadT60:rvnLENOVO:rn6371CTO:rvrNotAvailable:cvnLENOVO:ct10:cvrNotAvailable:
dmi.product.name: 6371CTO
dmi.product.version: ThinkPad T60
dmi.sys.vendor: LENOVO
system:
 distro: Ubuntu
 codename:   lucid
 architecture:   x86_64
 kernel: 2.6.32-19-generic

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


** Tags: amd64 apport-bug lucid

-- 
X server crash when closing quadrapassel while running
https://bugs.launchpad.net/bugs/558370
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-intel in ubuntu.

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


[Ubuntu-x-swat] [Bug 539772] Re: Lucid 2.6.32-16 crashed to login screen - miCopyRegion

2010-04-08 Thread Wenzhuo Zhang
I was not able to get X to core dump, but I found one X crash report in
/var/crash. I don't even know if it was caused by the same bug.

I have installed the dbg packages as referred to in
https://wiki.ubuntu.com/X/Backtracing. What am I missing?

r...@micky:~/report# gdb /usr/bin/X CoreDump
GNU gdb (GDB) 7.1-ubuntu
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later http://gnu.org/licenses/gpl.html
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type show copying
and show warranty for details.
This GDB was configured as i486-linux-gnu.
For bug reporting instructions, please see:
http://www.gnu.org/software/gdb/bugs/...
Reading symbols from /usr/bin/X...(no debugging symbols found)...done.

warning: core file may not match specified executable file.
[New Thread 2609]
Reading symbols from /lib/ld-linux.so.2...(no debugging symbols found)...done.
Loaded symbols for /lib/ld-linux.so.2
Core was generated by `/usr/bin/X :0 -br -verbose -auth 
/var/run/gdm/auth-for-gdm-h2ATvw/database -nol'.
Program terminated with signal 11, Segmentation fault.
#0  0x00498fb6 in ?? ()
(gdb) bt f
#0  0x00498fb6 in ?? ()
No symbol table info available.
#1  0x in ?? ()
No symbol table info available.
(gdb) 


** Attachment added: _usr_bin_Xorg.0.crash
   http://launchpadlibrarian.net/43427946/_usr_bin_Xorg.0.crash

-- 
Lucid 2.6.32-16 crashed to login screen - miCopyRegion
https://bugs.launchpad.net/bugs/539772
You received this bug notification because you are a member of Ubuntu-X,
which is the registrant for xserver-xorg-driver-ati.

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


[Ubuntu-x-swat] [Bug 558370] Re: X server crash when closing quadrapassel while running

2010-04-08 Thread Steve Langasek

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

-- 
X server crash when closing quadrapassel while running
https://bugs.launchpad.net/bugs/558370
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-video-intel in ubuntu.

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


[Ubuntu-x-swat] [Bug 554023] Re: gdm fails to start

2010-04-08 Thread gmoore777
apport information

** Tags added: apport-collected

** Description changed:

  Binary package hint: gdm
  
  using the LiveCD of Wednesday 3/31/2010, Thursday's or Friday's, the machine 
does not display anything.
  The screen goes blank/black.
  Similar, if machine that was working, is updated with the lastest and 
greatest packages. The grub menu
  comes up, then monitor goes blank/black.
  
  In the latter case, I can still ssh to the machine. 
  This was in the /var/log/syslog, but not sure if it has any meaning:
  
  Apr  2 11:12:52 bee60 acpid: client 1784[0:0] has disconnected
  Apr  2 11:12:52 bee60 acpid: client connected from 1958[0:0]
  Apr  2 11:12:52 bee60 acpid: 1 client rule loaded
  Apr  2 11:12:52 bee60 gdm-binary[875]: WARNING: GdmDisplay: display lasted 
0.269835 seconds
  Apr  2 11:12:52 bee60 gdm-simple-slave[2107]: WARNING: Unable to load file 
'/etc/gdm/custom.conf': No such file or directory
  Apr  2 11:12:52 bee60 acpid: client 1958[0:0] has disconnected
  Apr  2 11:12:52 bee60 acpid: client connected from 2114[0:0]
  Apr  2 11:12:52 bee60 acpid: 1 client rule loaded
  Apr  2 11:12:53 bee60 gdm-binary[875]: WARNING: GdmDisplay: display lasted 
0.291561 seconds
  Apr  2 11:12:53 bee60 gdm-binary[875]: WARNING: GdmLocalDisplayFactory: 
maximum number of X display failures reached: check X server log for errors
  Apr  2 11:12:53 bee60 init: gdm main process (875) terminated with status 1
  Apr  2 11:12:53 bee60 acpid: client 2114[0:0] has disconnected
  Apr  2 11:12:53 bee60 acpid: client connected from 2137[0:0]
+ --- 
+ Architecture: amd64
+ DistroRelease: Ubuntu 10.04
+ DkmsStatus: Error: [Errno 2] No such file or directory
+ InstallationMedia: Ubuntu 10.04 Lucid Lynx - Alpha amd64 (20100313.1)
+ MachineType: Dell Inc. OptiPlex 780
+ Package: xserver-xorg-video-intel 2:2.9.1-3ubuntu1
+ PackageArchitecture: amd64
+ ProcCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.32-19-generic 
root=UUID=aac69827-1b25-489d-afc0-e8ee35fe9bc1 ro quiet splash
+ ProcEnviron:
+  PATH=(custom, no user)
+  LANG=en_US.UTF-8
+  SHELL=/bin/bash
+ ProcVersionSignature: Ubuntu 2.6.32-19.28-generic 2.6.32.10+drm33.1
+ Tags: lucid lucid
+ Uname: Linux 2.6.32-19-generic x86_64
+ UserGroups: adm admin audio cdrom dialout dip fax floppy galileo lpadmin 
plugdev tape video
+ dmi.bios.date: 02/13/2010
+ dmi.bios.vendor: Dell Inc.
+ dmi.bios.version: A03
+ dmi.board.name: 0200DY
+ dmi.board.vendor: Dell Inc.
+ dmi.board.version: A00
+ dmi.chassis.type: 3
+ dmi.chassis.vendor: Dell Inc.
+ dmi.modalias: 
dmi:bvnDellInc.:bvrA03:bd02/13/2010:svnDellInc.:pnOptiPlex780:pvr:rvnDellInc.:rn0200DY:rvrA00:cvnDellInc.:ct3:cvr:
+ dmi.product.name: OptiPlex 780
+ dmi.sys.vendor: Dell Inc.
+ glxinfo: Error: [Errno 2] No such file or directory
+ system:
+  distro: Ubuntu
+  codename:   lucid
+  architecture:   x86_64
+  kernel: 2.6.32-19-generic
+ xkbcomp:
+  Error: command ['xkbcomp', ':0', '-w0', '-'] failed with exit code 1: Error: 
   Cannot open display :0
+Exiting

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

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

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


[Ubuntu-x-swat] [Bug 554023] Dependencies.txt

2010-04-08 Thread gmoore777
apport information

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

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

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


[Ubuntu-x-swat] [Bug 554023] GdmLog.txt

2010-04-08 Thread gmoore777
apport information

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

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

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


[Ubuntu-x-swat] [Bug 554023] CurrentDmesg.txt

2010-04-08 Thread gmoore777
apport information

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

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

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


[Ubuntu-x-swat] [Bug 554023] GdmLog1.txt

2010-04-08 Thread gmoore777
apport information

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

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

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


[Ubuntu-x-swat] [Bug 554023] GdmLog2.txt

2010-04-08 Thread gmoore777
apport information

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

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

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


[Ubuntu-x-swat] [Bug 554023] Lspci.txt

2010-04-08 Thread gmoore777
apport information

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

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

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


[Ubuntu-x-swat] [Bug 554023] Lsusb.txt

2010-04-08 Thread gmoore777
apport information

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

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

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


[Ubuntu-x-swat] [Bug 554023] ProcModules.txt

2010-04-08 Thread gmoore777
apport information

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

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

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


[Ubuntu-x-swat] [Bug 554023] PciDisplay.txt

2010-04-08 Thread gmoore777
apport information

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

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

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


[Ubuntu-x-swat] [Bug 554023] ProcCpuinfo.txt

2010-04-08 Thread gmoore777
apport information

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

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

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


[Ubuntu-x-swat] [Bug 554023] ProcInterrupts.txt

2010-04-08 Thread gmoore777
apport information

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

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

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


[Ubuntu-x-swat] [Bug 554023] UdevLog.txt

2010-04-08 Thread gmoore777
apport information

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

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

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


[Ubuntu-x-swat] [Bug 554023] UdevDb.txt

2010-04-08 Thread gmoore777
apport information

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

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

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


[Ubuntu-x-swat] [Bug 554023] XorgLogOld.txt

2010-04-08 Thread gmoore777
apport information

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

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

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


[Ubuntu-x-swat] [Bug 554023] XorgLog.txt

2010-04-08 Thread gmoore777
apport information

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

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

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


[Ubuntu-x-swat] [Bug 554023] RelatedPackageVersions.txt

2010-04-08 Thread gmoore777
apport information

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

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

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


[Ubuntu-x-swat] [Bug 554023] Xrandr.txt

2010-04-08 Thread gmoore777
apport information

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

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

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


[Ubuntu-x-swat] [Bug 554023] setxkbmap.txt

2010-04-08 Thread gmoore777
apport information

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

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

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


[Ubuntu-x-swat] [Bug 554023] xdpyinfo.txt

2010-04-08 Thread gmoore777
apport information

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

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

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


[Ubuntu-x-swat] [Bug 546933] Re: FFE: xorg.conf.d/inputclass backport

2010-04-08 Thread Tobias Wolf
I dropped a rule into /etc/X11/xorg.conf.d and suddenly the catchall
snippets in /usr/lib/X11/xorg.conf.d weren’t applied anymore?

Can that be?

-- 
FFE: xorg.conf.d/inputclass backport
https://bugs.launchpad.net/bugs/546933
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-input-joystick 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 494699] Re: Does not support current Lucid kernel (2.6.32) or xserver (1.7)

2010-04-08 Thread Stephen Evans
Workaround in the mean-time is to uninstall -fglrx and use the open source -ati 
driver instead.
How do I install the OS driver from command line?

-- 
Does not support current Lucid kernel (2.6.32) or xserver (1.7)
https://bugs.launchpad.net/bugs/494699
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to fglrx-installer in ubuntu.

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


[Ubuntu-x-swat] [Bug 557684] Re: X11 starts on VT 8 instead of VT 7

2010-04-08 Thread Bryce Harrington
** Changed in: xorg (Ubuntu)
   Status: New = Confirmed

-- 
X11 starts on VT 8 instead of VT 7
https://bugs.launchpad.net/bugs/557684
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 557817] Re: usb mouse is not working for ubuntu 10.04 arml

2010-04-08 Thread Evan Dandrea
This is not a bug in the installer.  Moving to xorg.

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

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

-- 
usb mouse  is not working for ubuntu 10.04 arml 
https://bugs.launchpad.net/bugs/557817
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 556631] Re: Compiz showing corruption because not refusing to run when rez max texture size

2010-04-08 Thread mikelietz
apport information

** Tags added: apport-collected

** Description changed:

  Binary package hint: xserver-xorg-video-ati
  
  I have a Sapphire X550 Radeon. I installed Lucid Beta 1.
  
  The left monitor is 1680x1050. The right monitor is 1280x1024.
  
  The rightmost portion of the right monitor is unusable - in the picture
  below it's the black and white stripe. Only the mouse cursor shows up on
  it.
  
  http://www.ubuntu-pics.de/bild/50764/desk_1_002_6L0A6g.png
  
  The middle portion between the (default) wallpaper and the
  aforementioned stripe shows a trail of whatever I drag through it.
  
  If I move the monitors from side to side instead to top and bottom I get
  a smaller unusable area at the bottom of the second screen.
  
  ProblemType: Bug
  Architecture: i386
  Date: Tue Apr  6 11:51:05 2010
  DistroRelease: Ubuntu 10.04
  DkmsStatus: Error: [Errno 2] No such file or directory
  GdmLog1: Error: command ['gksu', '-D', 'Apport', '--', 'cat', 
'/var/log/gdm/:0.log.1'] failed with exit code 1: cat: /var/log/gdm/:0.log.1: 
No such file or directory
  GdmLog2: Error: command ['gksu', '-D', 'Apport', '--', 'cat', 
'/var/log/gdm/:0.log.2'] failed with exit code 1: cat: /var/log/gdm/:0.log.2: 
No such file or directory
  InstallationMedia: Ubuntu 10.04 Lucid Lynx - Beta i386 (20100318)
  MachineType: Hewlett-Packard HP Compaq dc7600 Convertible Minitower
  Package: xserver-xorg-video-radeon 1:6.12.191-1ubuntu2
  ProcCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.32-16-generic 
root=UUID=ead67149-8e87-4949-9b21-6c9af313f872 ro quiet splash
  ProcEnviron:
   LANGUAGE=
   LANG=en_US.utf8
   SHELL=/bin/bash
  ProcVersionSignature: Ubuntu 2.6.32-16.25-generic
  SourcePackage: xserver-xorg-video-ati
  Uname: Linux 2.6.32-16-generic i686
  dmi.bios.date: 05/18/2005
  dmi.bios.vendor: Hewlett-Packard
  dmi.bios.version: 786D1 v01.03
  dmi.board.name: 09F0h
  dmi.board.vendor: Hewlett-Packard
  dmi.chassis.asset.tag: 2UA621114Z
  dmi.chassis.type: 6
  dmi.chassis.vendor: Hewlett-Packard
  dmi.modalias: 
dmi:bvnHewlett-Packard:bvr786D1v01.03:bd05/18/2005:svnHewlett-Packard:pnHPCompaqdc7600ConvertibleMinitower:pvr:rvnHewlett-Packard:rn09F0h:rvr:cvnHewlett-Packard:ct6:cvr:
  dmi.product.name: HP Compaq dc7600 Convertible Minitower
  dmi.sys.vendor: Hewlett-Packard
  glxinfo: Error: [Errno 2] No such file or directory
  system:
   distro: Ubuntu
   codename:   lucid
   architecture:   i686
   kernel: 2.6.32-16-generic
+ --- 
+ Architecture: i386
+ CompizPlugins: 
[core,ccp,move,resize,place,decoration,dbus,mousepoll,gnomecompat,png,svg,imgjpeg,text,commands,neg,wall,snap,animation,scale,scaleaddon,expo,staticswitcher,regex,resizeinfo,workarounds,ezoom,vpswitch,fade,session]
+ DistroRelease: Ubuntu 10.04
+ InstallationMedia: Ubuntu 10.04 Lucid Lynx - Beta i386 (20100318)
+ MachineType: Hewlett-Packard HP Compaq dc7600 Convertible Minitower
+ Package: compiz 1:0.8.4-0ubuntu13
+ PackageArchitecture: all
+ PciDisplay: 01:00.0 VGA compatible controller [0300]: ATI Technologies Inc 
RV370 [Sapphire X550 Silent] [1002:5b63]
+ ProcCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.32-19-generic 
root=UUID=ead67149-8e87-4949-9b21-6c9af313f872 ro quiet splash
+ ProcEnviron:
+  LANGUAGE=
+  LANG=en_US.utf8
+  SHELL=/bin/bash
+ ProcVersionSignature: Ubuntu 2.6.32-19.28-generic 2.6.32.10+drm33.1
+ RelatedPackageVersions:
+  xserver-xorg 1:7.5+3ubuntu1
+  libgl1-mesa-glx 7.9.0~git20100405.50074ecd-0ubuntu0sarvatt
+  libdrm2 2.4.20+git20100404.c7650003-0ubuntu0sarvatt
+  xserver-xorg-video-intel 2:2.11.0+git20100330.440b4d20-0ubuntu0sarvatt
+  xserver-xorg-video-ati 1:6.12.192+git20100401.6baa96c4-0ubuntu0sarvatt
+ Tags: lucid lucid
+ Uname: Linux 2.6.32-19-generic i686
+ UserGroups: adm admin cdrom dialout lpadmin plugdev sambashare
+ XorgConf: Error: [Errno 2] No such file or directory: '/etc/X11/xorg.conf'
+ dmi.bios.date: 05/18/2005
+ dmi.bios.vendor: Hewlett-Packard
+ dmi.bios.version: 786D1 v01.03
+ dmi.board.name: 09F0h
+ dmi.board.vendor: Hewlett-Packard
+ dmi.chassis.asset.tag: 2UA621114Z
+ dmi.chassis.type: 6
+ dmi.chassis.vendor: Hewlett-Packard
+ dmi.modalias: 
dmi:bvnHewlett-Packard:bvr786D1v01.03:bd05/18/2005:svnHewlett-Packard:pnHPCompaqdc7600ConvertibleMinitower:pvr:rvnHewlett-Packard:rn09F0h:rvr:cvnHewlett-Packard:ct6:cvr:
+ dmi.product.name: HP Compaq dc7600 Convertible Minitower
+ dmi.sys.vendor: Hewlett-Packard
+ glxinfo: Error: [Errno 2] No such file or directory
+ system: distro = Ubuntu, architecture = i686, kernel = 2.6.32-19-generic

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

-- 
Compiz showing corruption because not refusing to run when rez  max texture 
size
https://bugs.launchpad.net/bugs/556631
You received this bug notification because you are a member of Ubuntu-X,
which is the registrant for xserver-xorg-driver-ati.

___
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to : 

[Ubuntu-x-swat] [Bug 556631] GconfCompiz.txt

2010-04-08 Thread mikelietz
apport information

** Attachment added: GconfCompiz.txt
   http://launchpadlibrarian.net/43430418/GconfCompiz.txt

-- 
Compiz showing corruption because not refusing to run when rez  max texture 
size
https://bugs.launchpad.net/bugs/556631
You received this bug notification because you are a member of Ubuntu-X,
which is the registrant for xserver-xorg-driver-ati.

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


[Ubuntu-x-swat] [Bug 556631] Lspci.txt

2010-04-08 Thread mikelietz
apport information

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

-- 
Compiz showing corruption because not refusing to run when rez  max texture 
size
https://bugs.launchpad.net/bugs/556631
You received this bug notification because you are a member of Ubuntu-X,
which is the registrant for xserver-xorg-driver-ati.

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


[Ubuntu-x-swat] [Bug 556631] ProcCpuinfo.txt

2010-04-08 Thread mikelietz
apport information

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

-- 
Compiz showing corruption because not refusing to run when rez  max texture 
size
https://bugs.launchpad.net/bugs/556631
You received this bug notification because you are a member of Ubuntu-X,
which is the registrant for xserver-xorg-driver-ati.

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


[Ubuntu-x-swat] [Bug 556631] XsessionErrors.txt

2010-04-08 Thread mikelietz
apport information

** Attachment added: XsessionErrors.txt
   http://launchpadlibrarian.net/43430540/XsessionErrors.txt

-- 
Compiz showing corruption because not refusing to run when rez  max texture 
size
https://bugs.launchpad.net/bugs/556631
You received this bug notification because you are a member of Ubuntu-X,
which is the registrant for xserver-xorg-driver-ati.

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


  1   2   3   4   >