<html>
  <head>
    <meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    <div class="moz-cite-prefix">On 09/19/2012 12:24 AM, Anthony Messina
      wrote:<br>
    </div>
    <blockquote cite="mid:1547302.pb8D1gj2Rk@linux-ws1.messinet.com"
      type="cite">
      <pre wrap="">On Tuesday, September 18, 2012 05:17:25 PM Jim wrote:
</pre>
      <blockquote type="cite">
        <pre wrap="">Fedora 17 / KDE

Can I use the nouveau driver in xorg.conf to Lock in the resolution ?.

I have a computer that defaults to 1920x1080 and that resolution is to 
high, and I have a older friend that will be using this computer and I 
want to Lock into
1280x1024x75 .

I don't want to use the nvidia drivers they are to unstable and nouveau 
drivers
are doing a good job on this computer.
</pre>
      </blockquote>
      <pre wrap="">
Try adding something like the following to your /etc/X11/xorg.conf file, where 
the "Identifier" is what you get from `xrandr -q`.

Section "Monitor"
        Identifier   "DVI-I-1"
        Option       "PreferredMode" "1280x1024"
EndSection

Section "Device"
        Identifier  "Device0"
        Driver      "nouveau"
EndSection


-A
</pre>
      <br>
      <fieldset class="mimeAttachmentHeader"></fieldset>
      <br>
    </blockquote>
    <br>
    Thanks for the initial Info.<br>
    <br>
    After I got it working  I found this a Fedoraproject.<br>
    <br>
    <a class="moz-txt-link-freetext" href="https://fedoraproject.org/wiki/How_to_create_xorg.conf">https://fedoraproject.org/wiki/How_to_create_xorg.conf</a><br>
    <br>
    <br>
    This did the job:<br>
    <br>
    <br>
    Section "Monitor"<br>
        Identifier      "VGA-1"<br>
        Modeline        "1280x1024_75.00"  108.88  1280 1360 1496 1712 
    1024 1025 1028 1060  -HSync +Vsync<br>
        Option          "PreferredMode" "1280x1024_75.00"<br>
    EndSection<br>
    Section "Device"<br>
        Identifier      "Device0"<br>
        Driver          "nouveau"<br>
        Option          ""<br>
    EndSection<br>
    Section "Screen"<br>
        Identifier      "Primary Screen"<br>
        Device          ""<br>
        DefaultDepth    24<br>
        SubSection "Display"<br>
            Depth           24<br>
            Modes   "1280x1024" "1024x768" "640x480"<br>
        EndSubSection<br>
    EndSection<br>
    <br>
    Section "ServerLayout"<br>
            Identifier      "Default Layout"<br>
            Screen          "Primary Screen"<br>
    EndSection<br>
    <br>
    <br>
    <br>
    <br>
  </body>
</html>