I bought a Levono Q190 for whatever reason I am stuck at 1024x768 screen resolution.
inxi -G
Graphics: Card: Intel 3rd Gen Core processor Graphics Controller
Display Server: X.Org 1.16.1.901 drivers: intel (unloaded: fbdev,vesa) Resolution: 1024x768@60.00hz
GLX Renderer: Mesa DRI Intel Ivybridge Mobile GLX Version: 3.0 Mesa 10.3.2
se7en@smallBox:~$ xrandr
Screen 0: minimum 320 x 200, current 1024 x 768, maximum 8192 x 8192
VGA1 connected primary 1024x768+0+0 (normal left inverted right x axis y axis) 0mm x 0mm
1024x768 60.00*
800x600 60.32 56.25
848x480 60.00
640x480 59.94
HDMI1 disconnected (normal left inverted right x axis y axis)
DP1 disconnected (normal left inverted right x axis y axis)
Screen 0: minimum 320 x 200, current 1024 x 768, maximum 8192 x 8192
here is my xorg.log
http://pastebin.com/gtShxzK8 (http://pastebin.com/gtShxzK8)
If someone could help me please.
I will download ... Kubuntu to see if the resolution on another iso is better. But I would like to know why and how to fix it in siduction.
Thanks
Sven
If your display's resolution is not recognized, as with one of my display-port monitors, you could try to add the display's resolution with xrandr and apply it. Works for my monitor...
# add resolution
xrandr --addmode VGA1 "1920x1200"
# set resolution
xrandr --output VGA1 --mode "1920x1200"
Don't forget to replace my resolution with the optimal resolution of you your display.
root@smallBox:/home/se7en# xrandr --addmode VGA1 "1280x1024"
xrandr: cannot find mode "1280x1024"
I can not add any mode
you need to first define the new mode... archwiki has detailed instructions on that:
https://wiki.archlinux.org/index.php/xrandr#Adding_undetected_resolutions
You are my hero!!!
Thanks
Will it stay that way or do I have to adjust it every time I reboot?
hm, i do not know for sure, never had to do that myself...
i suppose there should be an option. probably by writing these command into a script file that will be called each time when X is started... maybe in the display manager config ( lightdm.conf ) ?
anyone else more knowledgeable is welcome to comment on this
xrandr settings need to go in a script to outlive the first reboot. another way is setting up modeleines and a Section "Screen" in xorg.conf.d
greetz
devil