Cambiar Resolucion De Pantalla Canaima Letras Rojas
If your resolution is missing (e.g., 1366x768), add it manually:
cvt 1366 768 60
This returns a modeline:
Modeline "1366x768_60.00" 85.25 1366 1440 1576 1784 768 771 781 798 -hsync +vsync
Copy the part after Modeline, then:
xrandr --newmode "1366x768_60.00" 85.25 1366 1440 1576 1784 768 771 781 798 -hsync +vsync
xrandr --addmode LVDS-1 "1366x768_60.00"
xrandr --output LVDS-1 --mode "1366x768_60.00"
Red letters warning: If you see BadName (named color or font does not exist), it means your graphics driver doesn’t support custom modelines. You need a driver fix.
Al abrir la configuración de "Monitores" o "Pantalla" en una Canaima (normalmente con entorno gráfico LXDE o Mate), al intentar aplicar una resolución diferente a la nativa (por ejemplo, de 1024x768 a 1366x768) puede lanzarse un cuadro de diálogo con texto rojo que dice algo como: cambiar resolucion de pantalla canaima letras rojas
Esto ocurre porque:
No te preocupes. A continuación, te mostramos cómo resolverlo paso a paso.
Type:
xrandr
You will see something like:
Screen 0: minimum 320 x 200, current 1024 x 768, maximum 8192 x 8192
VGA-1 connected (normal left inverted right x axis y axis)
1024x768 60.00
800x600 60.32
640x480 59.94
LVDS-1 connected primary 1024x768+0+0 (normal left inverted right x axis y axis) 0mm x 0mm
Note the output name (e.g., LVDS-1 for laptop screen, VGA-1 for external monitor). The red letters might appear next to failed to get gamma – ignore it.
Si los dos métodos anteriores fallan y las letras rojas siguen apareciendo, el problema está en el servidor X.
Section "Monitor" Identifier "Monitor0" Modeline "1368x768_60.00" 85.25 1368 1440 1576 1784 768 771 781 798 -hsync +vsync Option "PreferredMode" "1368x768_60.00" EndSection
Section "Screen" Identifier "Screen0" Monitor "Monitor0" DefaultDepth 24 SubSection "Display" Depth 24 Modes "1368x768_60.00" "1024x768" EndSubSection EndSection
Al volver al escritorio, las letras rojas deberían haber desaparecido.
Crea un script automático:
sudo nano /etc/profile.d/resolucion.sh
Dentro escribe:
#!/bin/bash
xrandr --output LVDS-1 --mode 1366x768
Guarda (Ctrl + O, luego Ctrl + X), hazlo ejecutable: Cambiar profundidad de color:
sudo chmod +x /etc/profile.d/resolucion.sh
Nota: Para Canaima muy viejo, a veces conviene poner el comando en
~/.xprofileo~/.config/autostart.

