Can't change screen resolution to 1280x1024 on Ubuntu with ATI Radeon Mobility X1600
Linux - NewbieThis Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place!
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
I had the same problem with my video card. You have to modify your xorg.conf located in /etc/X11/xorg.conf to allow for such a resolution.
An example of what you need to changes is this... Scroll down until you see something similar to this:
All I added was the "1440x900". You have more sections such as 8, 16, 24, 32, but you most likely only use 24 (it is the default). But there is no need to delete them, just leave them there and only modify the Modes line. Modify your xorg.conf and dont forget the ""'s. Save it and restart X (Ctrl + Shift + Backspace). And enjoy your new screen resolution!
The problem went away on its own, I think. I booted my computer without the external monitor connected, and behold, the resolution changed to 1280x800.
I need help.I just install linux Ubuntu and i have the same problem.I cant make my operating system work with resolution 1280x1024. I read the topic u wrote before some days but when i try do the same i had an error which said i dont have the permissions to change these file. What is it talking about lol!!
It's a pretty vital system file so it's protected from regular users. If it needs to be edited, you have to get the permissions to do so. The magic word is: sudo.
So you do it like this:
make sure that gedit is installed; and then start a terminal and type
sudo gedit /etc/X11/xorg.conf
It will ask for your password and then it will launch the file in gedit.
Yes, just restart although, in this case, a simple Ctrl + alt + backspace would do as well.
Btw, if you ever need to edit xorg.conf again, do make sure you don't make any typos (a missing blank space or comma can be enough). If you do, you may be unable to get back into your GUI - that can be solved but it's quite uncomfortable until you know your way about Linux a bit better. So always double-check before you either reboot or do the ctrl+alt+bacspace.
Check the "monitor" section for the VertRefresh and HorizSync values, i.e. the minimum and maximum vertical and horizontal refresh rates. Those are directly related to the kind of resolutions that are available; if the maximum rates are lower than what your monitor can actually support, you simply won't be able to get the higher resolutions. In my case, for a 19inch ACER LCD, the VertRefresh is 31-75 and HorizSync is 31-82. Yours may be different because these values vary from one type of monitor to the next. If you have a manual, check whether those values are specified somewhere - if not, search google (that's where I got mine).
I googled around and found the right vert. and horiz. sync values (56-75 Hz & 30-83kHz, respectively). Can I insert these values manually? If so, what's the right syntax?
my xorg.conf looks like this when it comes to vert/horiz sync values:
Code:
Section "Monitor"
# HorizSync is in kHz unless units are specified.
# HorizSync may be a comma separated list of discrete values, or a
# comma separated list of ranges of values.
# NOTE: THE VALUES HERE ARE EXAMPLES ONLY. REFER TO YOUR MONITOR'S
# USER MANUAL FOR THE CORRECT NUMBERS.
# HorizSync 30-64 # multisync
# HorizSync 31.5, 35.2 # multiple fixed sync frequencies
# HorizSync 15-25, 30-50 # multiple ranges of sync frequencies
# VertRefresh is in Hz unless units are specified.
# VertRefresh may be a comma separated list of discrete values, or a
# comma separated list of ranges of values.
# NOTE: THE VALUES HERE ARE EXAMPLES ONLY. REFER TO YOUR MONITOR'S
# USER MANUAL FOR THE CORRECT NUMBERS.
Identifier "My Monitor"
HorizSync 31.5 - 50.0
VertRefresh 40.0 - 90.0
EndSection
No, of course not, vertical and horizontal refresh rates vary according to monitor brand / type. What works for one person, doesn't necessarily work for the other. For example , my own refresh rates (ACER 19 inch LCD) are 31-82 horizontal and 31-75 vertical...
Here is mine; it may work better considering that your monitor seems to have pretty much the same refresh rates as mine. This is a heavily modified xorg.conf as generated by Suse but it should work on any distro - it does for me. If you haven't installed the ATI driver yet, you need to locate the "Device" section and replace "fglrx" with "vesa" or you'll still end up with a blank screen. Then you can install the ATI driver and let it rewrite your xorg.conf or you can do so yourself. You may also receive some errors concerning the paths to your fonts but that shouldn't have any consequences. Also, most distros use video group 0666 instead of 0660 so you could adjust this before you actually give this file a try - unless you are using Suse, of course.
Quote:
# /.../
# SaX generated X11 config file
# Created on: 2007-05-26T04:03:58+0200.
#
# Version: 8.1
# Contact: Marcus Schaefer <sax@suse.de>, 2005
# Contact: SaX-User list <https://lists.berlios.de/mailman/listinfo/sax-users>
#
# Automatically generated by [ISaX] (8.1)
# PLEASE DO NOT EDIT THIS FILE!
#
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.