für andere richte ich hin und wieder ältere Laptops ein. Nun habe ich auf einem HP Probook 4520s Debian bookworm installiert. Es läuft derzeit Kernel Linux 6.1.0-23-amd64 x86_64 mit MATE 1.26.0. Der Laptop lief in der Vergangenheit auf ubuntu, immer problemlos. Direkt nach der Installation von debian bookworm habe ich auch alle für den Gebrauch installierte Software durchgetestet, es gab kein Problem.
Nun wurde der Laptop eine Weile nicht genutzt, und danach stürzte das System bei ganz bestimmten Operationen immer ab: schwarzer Bildschirm, danach Neuanmeldung erforderlich. Nach einiger Suche im Internet konnte ich annehmen, dass offenbar ein Grafikproblem vorliegt. Die Fehlermeldung im xorg.log ist
Code: Alles auswählen
[ 1355.379] Failed to compile FS: 0:1(10): error: GLSL 1.30 is not supported. Supported versions are: 1.10, 1.20, and 1.00 ES
[ 1355.379] Program source:
#version 130
#ifdef GL_ES
precision mediump float;
#endif
#define RepeatNone 0
#define RepeatNormal 1
#define RepeatPad 2
#define RepeatReflect 3
#define RepeatFix 10
uniform int source_repeat_mode;
uniform int mask_repeat_mode;
vec2 rel_tex_coord(vec2 texture, vec4 wh, int repeat)
{
vec2 rel_tex;
rel_tex = texture * wh.xy;
if (repeat == RepeatFix + RepeatNone)
return rel_tex;
else if (repeat == RepeatFix + RepeatNormal)
rel_tex = floor(rel_tex) + (fract(rel_tex) / wh.xy);
else if (repeat == RepeatFix + RepeatPad) {
if (rel_tex.x >= 1.0)
rel_tex.x = 1.0 - wh.z * wh.x / 2.;
else if (rel_tex.x < 0.0)
rel_tex.x = 0.0;
if (rel_tex.y >= 1.0)
rel_tex.y = 1.0 - wh.w * wh.y / 2.;
else if (rel_tex.y < 0.0)
rel_tex.y = 0.0;
rel_tex = rel_tex / wh.xy;
} else if (repeat == RepeatFix + RepeatReflect) {
if ((1.0 - mod(abs(floor(rel_tex.x)), 2.0)) < 0.001)
[ 1355.379] (EE)
Fatal server error:
[ 1355.379] (EE) GLSL compile failure
[ 1355.379] (EE)
[ 1355.379] (EE)
Please consult the The X.Org Foundation support
at http://wiki.x.org
for help.
[ 1355.379] (EE) Please also check the log file at "/var/log/Xorg.0.log" for additional information.
[ 1355.379] (EE)
[ 1355.380] (II) AIGLX: Suspending AIGLX clients for VT switch
[ 1355.438] (EE) Server terminated with error (1). Closing log file.
Für eine Hilfestellung wäre ich dankbar.
Beste Grüße
cehuisken