PM 33.20:
64 bit:
Cinnamon Crash on Launch:
I recently updated my laptop to LMDE 6, and Pale Moon crashes Cinnamon (the X window manager) and sends me back to the login screen. Xorg.0.log snippet is below. Pale Moon does not launch even in safe mode.
[ 194.910] (II) modeset(0): EDID vendor "LGD", prod id 684
[ 194.910] (II) modeset(0): Printing DDC gathered Modelines:
[ 194.910] (II) modeset(0): Modeline "1366x768"x0.0 69.30 1366 1398 1430 1486 768 770 774 782 -hsync -vsync (46.6 kHz eP)
[ 195.253] (II) modeset(0): EDID vendor "LGD", prod id 684
[ 195.253] (II) modeset(0): Printing DDC gathered Modelines:
[ 195.253] (II) modeset(0): Modeline "1366x768"x0.0 69.30 1366 1398 1430 1486 768 770 774 782 -hsync -vsync (46.6 kHz eP)
[ 195.303] (II) modeset(0): EDID vendor "LGD", prod id 684
[ 195.303] (II) modeset(0): Printing DDC gathered Modelines:
[ 195.303] (II) modeset(0): Modeline "1366x768"x0.0 69.30 1366 1398 1430 1486 768 770 774 782 -hsync -vsync (46.6 kHz eP)
[ 196.116] (II) modeset(0): EDID vendor "LGD", prod id 684
[ 196.117] (II) modeset(0): Printing DDC gathered Modelines:
[ 196.117] (II) modeset(0): Modeline "1366x768"x0.0 69.30 1366 1398 1430 1486 768 770 774 782 -hsync -vsync (46.6 kHz eP)
[ 196.211] (II) modeset(0): EDID vendor "LGD", prod id 684
[ 196.211] (II) modeset(0): Printing DDC gathered Modelines:
[ 196.211] (II) modeset(0): Modeline "1366x768"x0.0 69.30 1366 1398 1430 1486 768 770 774 782 -hsync -vsync (46.6 kHz eP)
[ 361.633] 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
[ 361.633] 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)
[ 361.633] (EE)
Fatal server error:
[ 361.633] (EE) GLSL compile failure
[ 361.633] (EE)
[ 361.633] (EE)
Please consult the The X.Org Foundation support
at http://wiki.x.org
for help.
[ 361.634] (EE) Please also check the log file at "/var/log/Xorg.0.log" for additional information.
[ 361.634] (EE)
[ 361.634] (II) AIGLX: Suspending AIGLX clients for VT switch
[ 361.708] (EE) Server terminated with error (1). Closing log file.
[ 194.910] (II) modeset(0): Printing DDC gathered Modelines:
[ 194.910] (II) modeset(0): Modeline "1366x768"x0.0 69.30 1366 1398 1430 1486 768 770 774 782 -hsync -vsync (46.6 kHz eP)
[ 195.253] (II) modeset(0): EDID vendor "LGD", prod id 684
[ 195.253] (II) modeset(0): Printing DDC gathered Modelines:
[ 195.253] (II) modeset(0): Modeline "1366x768"x0.0 69.30 1366 1398 1430 1486 768 770 774 782 -hsync -vsync (46.6 kHz eP)
[ 195.303] (II) modeset(0): EDID vendor "LGD", prod id 684
[ 195.303] (II) modeset(0): Printing DDC gathered Modelines:
[ 195.303] (II) modeset(0): Modeline "1366x768"x0.0 69.30 1366 1398 1430 1486 768 770 774 782 -hsync -vsync (46.6 kHz eP)
[ 196.116] (II) modeset(0): EDID vendor "LGD", prod id 684
[ 196.117] (II) modeset(0): Printing DDC gathered Modelines:
[ 196.117] (II) modeset(0): Modeline "1366x768"x0.0 69.30 1366 1398 1430 1486 768 770 774 782 -hsync -vsync (46.6 kHz eP)
[ 196.211] (II) modeset(0): EDID vendor "LGD", prod id 684
[ 196.211] (II) modeset(0): Printing DDC gathered Modelines:
[ 196.211] (II) modeset(0): Modeline "1366x768"x0.0 69.30 1366 1398 1430 1486 768 770 774 782 -hsync -vsync (46.6 kHz eP)
[ 361.633] 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
[ 361.633] 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)
[ 361.633] (EE)
Fatal server error:
[ 361.633] (EE) GLSL compile failure
[ 361.633] (EE)
[ 361.633] (EE)
Please consult the The X.Org Foundation support
at http://wiki.x.org
for help.
[ 361.634] (EE) Please also check the log file at "/var/log/Xorg.0.log" for additional information.
[ 361.634] (EE)
[ 361.634] (II) AIGLX: Suspending AIGLX clients for VT switch
[ 361.708] (EE) Server terminated with error (1). Closing log file.