PDA

View Full Version : [ubuntu] 12.04 login screen resolution wrong



sebastian.s
April 27th, 2012, 06:55 PM
After i updated to 12.04 the resolution at the login screen is wrong, the resolution at login is to low. When i login to the desktop the resolution adjusts to the one i want. So how do i change the resolution for the login screen?

codingman
April 27th, 2012, 07:05 PM
Thats normal. On login on most computers the resolution is not good. It should get fixed with some updates that should come in package manager.

sebastian.s
April 27th, 2012, 07:12 PM
Thats normal. On login on most computers the resolution is not good. It should get fixed with some updates that should come in package manager.

So all i can do right now is to wait?

TheValk
April 28th, 2012, 11:30 AM
http://ubuntuforums.org/showthread.php?t=1195275

Section 9 worked for me.

HTH

Lipaugus Vociferans
May 16th, 2012, 03:30 AM
It happened to me also, the problem is not grub starting, the problem is in the login screen (welcome screen) inside ubuntu, where usernames are, sessions, etc... It seems that login screen and inside my session have different screen resolutions, making impossible to switch from users because is hidden on one side of the screen...:(:confused:

abajto
June 13th, 2012, 11:58 AM
Here is solution I used and it works perfectly:

http://www.ashwinraon.com/2012/05/how-to-change-lightdm-resolution-in-ubuntu/

sebastian.s
August 24th, 2012, 04:08 PM
Here is solution I used and it works perfectly:

http://www.ashwinraon.com/2012/05/how-to-change-lightdm-resolution-in-ubuntu/

Followed the steps but it's not working.

Running.


xrandr -q

I got this.


Screen 0: minimum 320 x 240, current 1920 x 1080, maximum 1920 x 1080
default connected 1920x1080+0+0 0mm x 0mm
1920x1080 50.0* 51.0
1680x1050 52.0 53.0
1440x900 54.0
1400x1050 55.0 56.0
1360x768 57.0 58.0
1280x1024 59.0 60.0
1280x960 61.0
1152x864 62.0 63.0 64.0 65.0
1024x768 66.0 67.0 68.0
960x600 69.0
960x540 70.0
840x525 71.0 72.0 73.0 74.0
832x624 75.0
800x600 76.0 77.0 78.0 79.0
720x450 80.0
700x525 81.0 82.0
680x384 83.0 84.0
640x480 85.0 86.0 87.0 88.0
512x384 89.0 90.0
400x300 91.0
320x240 92.0 93.0


So my script looked like this.


#!/bin/sh xrandr --output Screen-0 --primary --mode 1920x1080


The wrong resolution is not a big issue, but i would be nice to get it right. I don't like to give up! :D

Billnux
September 9th, 2012, 01:15 AM
@ sebastian.s

Shouldn't your output be "default"?

#!/bin/sh xrandr --output default --primary --mode 1920x1080

sebastian.s
September 12th, 2012, 08:03 PM
@ sebastian.s

Shouldn't your output be "default"?

#!/bin/sh xrandr --output default --primary --mode 1920x1080

My new script looks like this.


#!/bin/sh xrandr --output default --primary --mode 1920x1080

Still won't work.

sebastian.s
November 20th, 2012, 10:17 PM
thought i would post an update on this problem, it sorted itself as soon as i upgraded to 12.10. I have no idea what was causing the problem but I'm glad it's fixed now :)

Should i mark this thread as solved now?

paul_will
July 3rd, 2013, 12:03 AM
I've just been through this with a 13.04 install. http://www.ashwinraon.com/2012/05/how-to-change-lightdm-resolution-in-ubuntu/ does have the answer, but there is a slight error corrected in the comments below it. ie a missing newline after the interpreter directive so:

#!/bin/sh
xrandr --output default --primary --mode 1920x1080

would have worked. I added a --rate 75 to my xrandr line for the refresh.
But then after getting a beautiful login screen I found my own login was reverting back to 60Hz refresh.
The answer to that was in ~/.config/monitors.xml where I found a refresh of 60 specified and easily altered.
Finally - job done :)