Find the answer to your Linux question:
Results 1 to 6 of 6
Hi The owners manual of my monitor gives me the following informations: Sync H 30 kHz - 72 kHz automatically V 50 Hz - 160 Hz automatically When editing my ...
  1. #1
    Just Joined! chris81's Avatar
    Join Date
    Jan 2009
    Posts
    62

    [SOLVED] Question about monitor / xorg.conf

    Hi

    The owners manual of my monitor gives me the following informations:

    Sync
    H 30 kHz - 72 kHz automatically
    V 50 Hz - 160 Hz automatically

    When editing my xorg.conf, do I have to add the automatically 'keyword' ?
    (saw nothing about it in man xorg.conf or man nv)

    Thanks.
    chris81

  2. #2
    Linux Guru reed9's Avatar
    Join Date
    Feb 2009
    Location
    Boston, MA
    Posts
    4,651
    No, you don't.

    In many cases, you don't need to edit xorg.conf yourself at all. Were you having trouble with something? What version of Debian are you using?

  3. #3
    Just Joined! chris81's Avatar
    Join Date
    Jan 2009
    Posts
    62
    Quote Originally Posted by reed9 View Post
    Were you having trouble with something?
    Yes. I'm mostly certain that the refresh rate or something is misconfigured, because every each seconds (or less), I can see an horizontal medium grey stip that starts from the bottom of the screen and ends at the middle. It's boring and not ergonomic (making eyes tired faster ?)

    The debian version that I am using is the 5.0.1.

    thanks
    chris81

  4. #4
    Just Joined! mrrangerman's Avatar
    Join Date
    Jul 2008
    Posts
    34
    No you don't need to add automatically here is a copy of my xorg.conf monitor section,

    Code:
    Section "Monitor"
    
        # HorizSync source: edid, VertRefresh source: edid
        Identifier     "Monitor0"
        VendorName     "Unknown"
        ModelName      "LG L1932TQ"
        HorizSync       30.0 - 71.0  yours > 30.00 - 72.00
        VertRefresh     56.0 - 75.0  yours > 50.00 - 160.00
        Option         "DPMS"
    EndSection
    Just fallow the form of mine, I added yours in red so you know where and how to enter them. You need to be root when you edit this section, MAKE sure you make a copy of your xorg.conf just in case something goes wrong

    as root

    Code:
    cp /etc/X11/xorg.conf xorg.conf.backup

  5. #5
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    Most of distros use default values for X Server but these default values do not work well in all machines. One has to edit xorg.conf file to configure X Server correctly.

    Edit Monitor section of xorg.conf
    Code:
    sudo nano /etc/X11/xorg.conf
    It will open xorg.conf file in nano editor.
    Code:
    Section "Monitor"
        Identifier     "Monitor0"
        HorizSync       30.0 - 72.0  
        VertRefresh     50.0 - 160.0
        Option         "DPMS"
    EndSection
    Press Ctrl+X, Y and hit Enter key to save file.
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

  6. #6
    Just Joined! chris81's Avatar
    Join Date
    Jan 2009
    Posts
    62
    ok

    thanks all.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •