LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   Fixed screen resolution and frequency - running on Fedora 8 (https://www.linuxquestions.org/questions/linux-newbie-8/fixed-screen-resolution-and-frequency-running-on-fedora-8-a-620654/)

werg 02-12-2008 03:47 PM

Fixed screen resolution and frequency - running on Fedora 8
 
Hi, I'm relatively new to Linux, so please go easy with the technical jargon. My screen has been locked into 1024x768 and at 61 Hz for some obscure reason. I tried to change the resolution of the monitor through system -> administration -> display (running on GNOME) and then rebooted, but the problem still persists. As for the frequency, it doesn't give me any other option other than 61 Hz (this is kind of problematic, as the screen looks really fuzzy). It seems to me that the graphics drivers are not set properly. How do I fix these problems? Thanks in advance.

pixellany 02-12-2008 04:00 PM

It sounds like the VESA driver was installed. Tell us the specs on your monitor and video card, and we can get you pointed in the right direction.

To jump in with both feet, open up /etc/X11/xorg.conf The sections we will want to look at are similar to the following:

Code:

Section "Monitor"
    Identifier "monitor1"
    VendorName "Generic"
    ModelName "Flat Panel 1920x1200"
    Option "DPMS"
    HorizSync 31.5-90
    VertRefresh 59.9 - 60.1
    Modeline "1920x1200" 193.16 1920 2048 2256 2592  1200 1201 1204 1242
 +Hsync -Vsync
EndSection

Section "Device"
    Identifier "device1"
    VendorName "nVidia Corp."
    BoardName "NVIDIA GeForce FX (generic)"
    Driver "nv"
EndSection

Section "Screen"
    Identifier "screen1"
    Device "device1"
    Monitor "monitor1"
    DefaultColorDepth 24

    Subsection "Display"
        Depth 24
        Modes "1920x1200" "1440x900" "1280x800"
    EndSubsection
EndSection

Yours will be similar, but might not have a modeline entry. Some of the entries are obvious, others not.

Post the equivalent sections from your file.

werg 02-13-2008 12:02 PM

Ok so my graphic card is "Radeon RV100 QY [Radeon 7000/VE]" and my monitor is a 19" Dell Ultrasharp 1900FP. Here is the content of xorg.conf:

Code:

# Xorg configuration created by system-config-display

Section "ServerLayout"
        Identifier    "single head configuration"
        Screen      0  "Screen0" 0 0
        InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "InputDevice"
        Identifier  "Keyboard0"
        Driver      "kbd"
        Option            "XkbModel" "pc105"
        Option            "XkbLayout" "us"
EndSection

Section "Monitor"
        Identifier  "Monitor0"
        ModelName    "LCD Panel 1280x800"
        HorizSync    31.5 - 50.0
        VertRefresh  56.0 - 65.0
        Option            "dpms"
EndSection

Section "Device"
        Identifier  "Videocard0"
        Driver      "vesa"
EndSection

Section "Screen"
        Identifier "Screen0"
        Device    "Videocard0"
        Monitor    "Monitor0"
        DefaultDepth    24
        SubSection "Display"
                Viewport  0 0
                Depth    24
        EndSubSection
        SubSection "Display"
                Viewport  0 0
                Depth    16
                Modes    "1360x768" "1280x1024" "1280x960" "1280x800" "1280x720" "1152x864" "1024x768" "800x600" "640x480"
        EndSubSection
EndSection

Thanks for the reply!

pixellany 02-13-2008 01:46 PM

the first thing to try is to replace "vesa" with "ati" (in the Device section). You can also try "radeon" if that driver is on your system. I also think the HorizSync maximum looks too low. (Check the specs on your monitor.)

You have no modes specified for the default depth of 24 bits. I would simply change 16 to 24 in the 2nd Display subsection, and delete the first one.

If it won't run at the desired resolution, then try a modeline. Use gtf to generate it, and then put it in xorg.conf following my example.


to edit xorg.conf, open a terminal, "su" to root, and enter "nano /etc/X11/xorg.conf". If you don't like nano, substitute gedit or whatever else you like.

werg 02-14-2008 05:09 PM

Hi again,

Apparently there's an issue with the graphics drivers. I can't choose anything other than vesa - setting "ati" or "radeon" prompts me that those drivers weren't found. I've check whether the driver files were on my machine and they were quite strangely. Would you have an idea of what's going on? Thanks in advance.

pixellany 02-14-2008 08:10 PM

Here's what I have (partial)
in /usr/lib/xorg/modules/drivers:

Quote:

ati_drv.la*
ati_drv.so*

radeon_drv.la*
radeon_drv.so*
And in xorg.conf:
Code:

Section "Device"
    Identifier "device1"
   
    Driver "radeon"
   
EndSection

Do you have similar stuff?

GrilledCheez 02-14-2008 09:06 PM

I'm having a similar problem. When I go to System->Prefs->System Hardware->Scren Res and click on either the Res or Refresh Rate, nothing shows up on the drop down.

Code:

My xorg.conf contents:

Section "Device"
        Identifier  "Videocard0"
        Driver      "vesa"
EndSection

Section "Screen"
        Identifier "Screen0"
        Device    "Videocard0"
        DefaultDepth    24
        SubSection "Display"
                Viewport  0 0
                Depth    24
        EndSubSection
EndSection

There is nothing for Monitor.
I'm using a Dell Inspiron E1505 laptop with a:
256MB ATI MOBILITY™ RADEON® X1400 HyperMemory™ Video Card and a
15.4 inch UltraSharp™ Wide Screen SXGA+ Display with TrueLife™ monitor

pixellany 02-15-2008 07:05 AM

Grilled;

Normally, it's not good to jump into existing threads with a different problem. In this case, there is obviously SOME overlap.

You can manually add a Monitor section using mine as an example (Use the specs for your hardware). You can also try running "xorgconfig" (In a terminal, just enter that one word--without the quotes.

For the complete spec on xorg.conf, do "man xorg.conf"

GrilledCheez 02-17-2008 07:22 PM

Had the thread not been so similar to mine or been so old that I would've majorly bumped it, I would have made my own, but people often end up getting mad at not using the Search function of Message Boards, so I figured I'd avoid that.

And I'm running Fedora 8, and since the Fedora crew took xorgconfig out of the command list, I can't run it.
Also, is there an easy place to find out what my hardware is capable of for me to put it into xorg.conf?

taurusx5 03-02-2008 02:46 PM

pixellany, i dont have a problem per se, but i do want to update my video driver and enhance my video experience. I got Ubuntu 7.10 and I got an Intel 82852/855GM Integrated Graphics Device. How do I update this integreted video card?

Also, how can I further tweak my video settings optimally?

Thanks!!!


All times are GMT -5. The time now is 07:49 AM.