Tell me more ×
Ask Ubuntu is a question and answer site for Ubuntu users and developers. It's 100% free, no registration required.

I have installed Ubuntu on my desktop, but my monitor don't pass more than 800x600 resolution.

My monitor is good at 1360x768. How can I set resolution at 1380x768 ?

share|improve this question
1  
In System Settings in Display U can not seeing Resolution settings? U can not adjust it through that? – Gaurav Sep 16 '12 at 3:17
Please post the output from the following command: lspci -nnk | grep -i vga -A3 – BuZZ-dEE Jan 30 at 10:48

2 Answers

I show you an example, how you can set your resolution.

Get the Modeline with the following command. 60 is the monitor frequency in Hz. You have to know your monitor frequency!!!

cvt 1360 768 60

The output looks like this. Copy the modeline after Modeline to use it in the next command.:

# 1360x768 59.80 Hz (CVT) hsync: 47.72 kHz; pclk: 84.75 MHz
Modeline "1360x768_60.00"   84.75  1360 1432 1568 1776  768 771 781 798 -hsync +vsync

Create a new mode with the copied modeline and xrandr.:

xrandr --newmode "1360x768_60.00"   84.75  1360 1432 1568 1776  768 771 781 798 -hsync +vsync

With the following command, you get the connected port.

xrandr --query | grep connected

The output looks like this. You can see, in my case the connected port is DVI-0.:

HDMI-0 disconnected (normal left inverted right x axis y axis)
DVI-0 connected 1920x1080+0+0 (normal left inverted right x axis y axis) 521mm x 293mm
VGA-0 disconnected (normal left inverted right x axis y axis)

Add the new mode using your connected port.:

xrandr --addmode DVI-0 "1360x768_60.00"

Change the monitor resolution.:

xrandr --output DVI-0 --mode "1360x768_60.00"
share|improve this answer

You should access System Settings - Display. There you'll see a Resolution drop-down menu. Just click on it an check the resolution you desire, as 1360x768. Then, just click Apply and you should see the changes.

I hope it works to you and you can tell us if it worked!

Select System Settings

Select Displays from the list

Change your resolution

share|improve this answer
2  
Thanks for the screenshots jamie! – Addison Montgomery Sep 16 '12 at 11:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.