View Single Post
  #4   (View Single Post)  
Old 3rd September 2011
J65nko J65nko is offline
Administrator
 
Join Date: May 2008
Location: Budel - the Netherlands
Posts: 4,128
Default

  • Google and download the manual/docs for the LG Flatron L194WT-SF monitor
  • Look for the the horizontal and vertical sync values in the manual, and add these in the monitor section of your Xorg.conf
    Code:
    Section "Monitor"
            Identifier   "Monitor0"
            VendorName   "Monitor Vendor"
            ModelName    "Monitor Model"
            HorizSync    30-80
            VertRefresh  58-75
    EndSection
    The 30-80 and 58-75 are for my monitor
  • Modify/add a Screen section to the Xorg.conf
    Code:
    Section "Screen"
            Identifier "Screen0"
            Device     "Card0"
            Monitor    "Monitor0"
            SubSection "Display"
                    Viewport   0 0
                    Depth     24
                    Modes "1280x1024" 
            EndSubSection
    EndSection
    My monitor can do "1280x1024", replace those values with the resolution of your monitor.
  • That is it
__________________
You don't need to be a genius to debug a pf.conf firewall ruleset, you just need the guts to run tcpdump
Reply With Quote