[Bug 2060354] Re: Segfault in 2:21.1.4-2ubuntu1.7-22.04.9

2024-04-06 Thread Javier Noval
In my case (Android Studio 2023.2.1, also based on IntelliJ, on a fully-
updated Jammy), with the editor antialiasing set to "grayscale", the
crash is 100% reproducible (same stacktrace) as soon as any file is
opened. The default setting, "subpixel", doesn't seem to cause any
issues.

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

Title:
  Segfault in 2:21.1.4-2ubuntu1.7-22.04.9

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/2060354/+subscriptions


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

[Bug 298768] Re: Xorg crashes with EQ overflowing. using a X700 (Pro)

2008-11-24 Thread Javier Noval
*** This bug is a duplicate of bug 295904 ***
https://bugs.launchpad.net/bugs/295904

** This bug has been marked a duplicate of bug 295904
   [x700] server looping and system hang (DRILock+0xfa)

-- 
Xorg crashes with EQ overflowing. using a X700 (Pro)
https://bugs.launchpad.net/bugs/298768
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 295904] Re: [x700] server looping and system hang (DRILock+0xfa)

2008-11-24 Thread Javier Noval
This same bug affects two Dell computers here, both with Intel graphics
(865G and 945G), so I think that [not only] the driver is guilty here,
but the X server too. Both computers are running Intrepid, one was
updated from Hardy and the other one is a new install. The bug is
usually fired after a weekend of inactivity.

I'm attaching the log of the latest hang in one of those computers, in
case it may help. The fatal infinite loop message appears first at
line 673350, before that the X server insisted on probing the monitor
every half a minute or so (I think).

** Attachment added: X.org log
   http://launchpadlibrarian.net/19897700/Xorg.0.log.old.gz

-- 
[x700] server looping and system hang (DRILock+0xfa)
https://bugs.launchpad.net/bugs/295904
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 254840] Re: [intrepid] mouse and keyboard stop working under gdm and gnome

2008-08-26 Thread Javier Noval
I can also confirm this bug. As I was able to use ctrl+alt+f1 to switch
to a TTY, I could verify that the xorg server was not accessing any of
the /dev/input/event* devices; however after issuing a /etc/input/kdm
restart they were being accessed (and the keyboard  mouse worked OK),
so the problem looks like some race condition at system startup.

-- 
[intrepid] mouse and keyboard stop working under gdm and gnome
https://bugs.launchpad.net/bugs/254840
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 254590] Re: Latest kdebase in intrepid broke all KDE apps

2008-08-04 Thread Javier Noval
Confirmed here too. Not only applications fail to start, KDM doesn't
work either (it's permanently stuck in a black screen with the hourglass
cursor).

-- 
Latest kdebase in intrepid broke all KDE apps
https://bugs.launchpad.net/bugs/254590
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 246411] [NEW] Syntax error in lrm-manager: /sbin/lrm-manager: line 51: syntax error near unexpected token `)'

2008-07-07 Thread Javier Noval
Public bug reported:

Binary package hint: linux-restricted-modules-common

I found that the modules for my Atheros card were not available when I
upgrade my linux-image-generic to 2.6.26-3 (and its corresponding
restricted-modules package). The modules where in the latter, but they
where not being made available. I was able to trace the bug to lrm-
manager, which produces the following error:

$ sudo lrm-manager --kver=2.6.26-3-generic
/sbin/lrm-manager: 51: Syntax error: ) unexpected (expecting ;;)

The offending lines are:

49case $1 in
50  ath_hal)
51  madwifi)
52set -- $@ ath_hal ath_pci ath_rate_amrr ath_rate_minstrel \

I changed it to the following, after reading dash's manual page, and is
now working:

49case $1 in
50  ath_hal|madwifi)
51set -- $@ ath_hal ath_pci ath_rate_amrr ath_rate_minstrel \

-

About my system:

$ lsb_release -rd
Description:Ubuntu intrepid (development branch)
Release:8.10

$ apt-cache policy linux-restricted-modules-common
linux-restricted-modules-common:
  Installed: 2.6.26-3.6
  Candidate: 2.6.26-3.6
  Version table:
 *** 2.6.26-3.6 0
500 http://be.archive.ubuntu.com intrepid/restricted Packages
100 /var/lib/dpkg/status

** Affects: linux-restricted-modules (Ubuntu)
 Importance: Undecided
 Status: New

-- 
Syntax error in lrm-manager: /sbin/lrm-manager: line 51: syntax error near 
unexpected token `)'
https://bugs.launchpad.net/bugs/246411
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 241990] Re: grep -i fails to work on intrepid

2008-06-25 Thread Javier Noval
I can confirm this bug happens in UTF-8 locales.

This case fails:
$ echo Y | LC_ALL=en_US.UTF-8 grep -i '[y]'
$

And this one works as expected:
$ echo Y | LC_ALL=C grep -i '[y]'
Y
$

The patch 66-match_icase.patch is supposed to make the case-insensitive
searches work in non-UTF-8 locales, but it appears not to be working
(maybe it's not being applied at all?).

-- 
grep -i fails to work on intrepid
https://bugs.launchpad.net/bugs/241990
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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