Find the answer to your Linux question:
Results 1 to 4 of 4
I have a 23 inch samsung hdtv that I use as a monitor. Its native resolution is 1280x720 and it runs perfectly in XP. My graphics are Intel Integrated. I ...
  1. #1
    Just Joined!
    Join Date
    Mar 2007
    Posts
    2

    Widescreen Problems- Intel

    I have a 23 inch samsung hdtv that I use as a monitor. Its native resolution is 1280x720 and it runs perfectly in XP. My graphics are Intel Integrated. I installed Suse 10.2 yesterday. When going through the install, it recognized my monitor but had the resolution set to 1280x768. I tried to change it but it didnt have the native res I needed. I installed anyway and on restart my monitor said video mode not supported.

    So right now I have it running on an old CRT. Unfortunately, it is at 1280x768 and has a refresh rate of 75 (which is too high for my lcd) and I am unable to change it. I want to be able to run Suse at 1280x720 if at all possible, but I need some help. Any ideas?

  2. #2
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    Hi Wilund,

    Welcome to LinuxForums.

    edit xorg.conf file and set correct HorizSync, VertiRefresh rates and Resolutions.
    log in as root, open terminal/konsole and create a backup copy of xorg.conf file
    Code:
    cd /etc/X11
    cp xorg.conf xorg.conf.orig
    open xorg.conf in nano editor
    Code:
    nano xorg.conf
    edit and save file. shutdown, plug-in hdtv and reboot.
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

  3. #3
    Just Joined!
    Join Date
    Mar 2007
    Posts
    2
    Hello and thanks for the warm welcome.
    I am at school right now but I have a couple questions. I'm somewhat farmiliar with the xorg.conf file, but isn't there some kind of modeline thing that I need to add to it as well?

    Also, how do I figure out the exact HorizSync and VertiRefresh settings that will work for my hdtv?

  4. #4
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    Quote Originally Posted by Wilund
    I am at school right now but I have a couple questions. I'm somewhat farmiliar with the xorg.conf file, but isn't there some kind of modeline thing that I need to add to it as well?
    mode lines are Resolutions. something like this
    Code:
    Section "Screen"
    	Identifier "Screen0"
    	Device     "Videocard0"
    	Monitor    "Monitor0"
    	DefaultDepth     24
    	SubSection "Display"
    		Viewport   0 0
    		Depth     24
    		Modes    "1280x1024" "1280x720" "1024x768" "800x600" "640x480"
    	EndSubSection
    EndSection
    Quote Originally Posted by Wilund
    Also, how do I figure out the exact HorizSync and VertiRefresh settings that will work for my hdtv?
    no idea. these are Generic Rates
    Code:
    Section "Monitor"
    	Identifier   "Monitor0"
    	ModelName    "xxxxx"
    	HorizSync    30.0 - 60.0
    	VertRefresh  50.0 - 85.0
    	Option	    "dpms"
    EndSection
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

Posting Permissions

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