LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - General
User Name
Password
Linux - General This Linux forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place.

Notices


Reply
  Search this Thread
Old 07-11-2006, 03:24 AM   #1
Tristan9669
LQ Newbie
 
Registered: Jun 2005
Posts: 23

Rep: Reputation: 15
Extended Desktop onto TV


I have Ubuntu 6.06 with an ATI 9000(w/ s-video out). I want to know how I can setup an extended desktop onto a tv using the s-video out(just like I do on XP).
 
Old 07-12-2006, 12:33 PM   #2
haertig
Senior Member
 
Registered: Nov 2004
Distribution: Debian, Ubuntu, LinuxMint, Slackware, SysrescueCD, Raspbian, Arch
Posts: 2,331

Rep: Reputation: 357Reputation: 357Reputation: 357Reputation: 357
The setup depends on whether you want your TV to be an extension of your current CRT display, or a seperate display.

Here's the relevent xorg.conf settings I use for a SEPERATE DISPLAY with a nVidia card, svideo hooked up to a TV running at 640x480, VGA hooked up to a CRT running at 1024x768. It is very important to get your HorizSync and VertRefresh setup correctly for your TV. Check your TV's specs. Setting these too high can damage or destroy your TV. HorizSync of 30-50 is generally considered safe for TV's I believe, 60 for VertRefresh. But no guarrantees on these settings from me - verify your TV's specs yourself!!!
Code:
Section "InputDevice"
        Identifier      "AOpen keyboard"
        Driver          "keyboard"
        Option          "CoreKeyboard"
        Option          "XkbRules"              "xfree86"
        Option          "XkbModel"              "pc104"
        Option          "XkbLayout"             "us"
EndSection

Section "InputDevice"
        Identifier      "Logitech mouse"
        Driver          "mouse"
        Option          "CorePointer"
        Option          "Device"                "/dev/input/mice"
        Option          "Protocol"              "ImPS/2"
        Option          "Emulate3Buttons"       "true"
        Option          "ZAxisMapping"          "4 5"
EndSection

Section "Device"
        Identifier      "nVidia MX4000 (VGA output)"
        Driver          "nvidia"
        BusID           "PCI:1:0:0"
        Screen          0
        Option          "NoLogo"                "True"
        Option          "ConnectedMonitor"      "CRT"
EndSection

Section "Device"
        Identifier      "nVidia MX4000 (SVIDEO output)"
        Driver          "nvidia"
        BusID           "PCI:1:0:0"
        Screen          1
        Option          "NoLogo"                "True"
        Option          "ConnectedMonitor"      "TV"
        Option          "TVStandard"            "NTSC-M"
        Option          "TVOutFormat"           "SVIDEO"
EndSection

Section "Monitor"
        Identifier      "CRT"
        VendorName      "NEC"
        ModelName       "Multisync-70"
        Option          "DPMS"
        HorizSync       31-69
        # NEC states optimal at 1024x768@75Hz, set lower VertRefresh to force it
        # Actual VertRefresh specs for this monitor are 55-120
        VertRefresh     55-75
        DisplaySize     260 195
        # 100 DPI: calculated (1024*25.4)/100 = 260 and (768*25.4)/100 = 195
        # 96 DPI:  calculated (1024*25.4)/96  = 270 and (768*25.4)/96  = 203
        # 75 DPI:  calculated (1024*25.4)/75  = 346 and (768*25.4)/75  = 260
EndSection

Section "Monitor"
        Identifier      "TV"
        VendorName      "Mitsubishi"
        ModelName       "60 inch rear projection TV"
        HorizSync       30-50
        VertRefresh     60
        DisplaySize     163 122
        Modeline        "640x480@60" 24.11 640 672 760 792 480 490 495 505
        #Modeline       "800x600@60" 38.21 800 832 976 1008 600 612 618 631
        # 100 DPI: calculated (640*25.4)/100 = 163 and (480*25.4)/100 = 122
        # 96 DPI:  calculated (640*25.4)/96  = 169 and (480*25.4)/96  = 127
        # 75 DPI:  calculated (640*25.4)/75  = 216 and (480*25.4)/75  = 162
        # 100 DPI: calculated (800*25.4)/100 = 203 and (600*25.4)/100 = 152
        # 96 DPI:  calculated (800*25.4)/96  = 211 and (600*25.4)/96  = 158
        # 75 DPI:  calculated (800*25.4)/75  = 270 and (600*25.4)/75  = 203
EndSection

Section "Screen"
        Identifier      "Computer Monitor"
        Device          "nVidia MX4000 (VGA output)"
        Monitor         "CRT"
        DefaultDepth    24
        SubSection "Display"
                Depth           24
                Modes           "1024x768" "800x600" "640x480"
        EndSubSection
EndSection

Section "Screen"
        Identifier      "Television"
        Device          "nVidia MX4000 (SVIDEO output)"
        Monitor         "TV"
        DefaultDepth    24
        SubSection "Display"
                Depth           24
                Modes           "640x480"
        EndSubSection
EndSection

Section "ServerLayout"
        Identifier      "Default"
        Screen          0               "Computer Monitor"
        Screen          1               "Television" leftOf "Computer Monitor"
        InputDevice     "AOpen keyboard"
        InputDevice     "Logitech mouse"
EndSection

Last edited by haertig; 07-12-2006 at 12:35 PM.
 
Old 07-12-2006, 01:03 PM   #3
Tristan9669
LQ Newbie
 
Registered: Jun 2005
Posts: 23

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by haertig
The setup depends on whether you want your TV to be an extension of your current CRT display, or a seperate display.

Here's the relevent xorg.conf settings I use for a SEPERATE DISPLAY with a nVidia card, svideo hooked up to a TV running at 640x480, VGA hooked up to a CRT running at 1024x768. It is very important to get your HorizSync and VertRefresh setup correctly for your TV. Check your TV's specs. Setting these too high can damage or destroy your TV. HorizSync of 30-50 is generally considered safe for TV's I believe, 60 for VertRefresh. But no guarrantees on these settings from me - verify your TV's specs yourself!!!
Code:
Section "InputDevice"
        Identifier      "AOpen keyboard"
        Driver          "keyboard"
        Option          "CoreKeyboard"
        Option          "XkbRules"              "xfree86"
        Option          "XkbModel"              "pc104"
        Option          "XkbLayout"             "us"
EndSection

Section "InputDevice"
        Identifier      "Logitech mouse"
        Driver          "mouse"
        Option          "CorePointer"
        Option          "Device"                "/dev/input/mice"
        Option          "Protocol"              "ImPS/2"
        Option          "Emulate3Buttons"       "true"
        Option          "ZAxisMapping"          "4 5"
EndSection

Section "Device"
        Identifier      "nVidia MX4000 (VGA output)"
        Driver          "nvidia"
        BusID           "PCI:1:0:0"
        Screen          0
        Option          "NoLogo"                "True"
        Option          "ConnectedMonitor"      "CRT"
EndSection

Section "Device"
        Identifier      "nVidia MX4000 (SVIDEO output)"
        Driver          "nvidia"
        BusID           "PCI:1:0:0"
        Screen          1
        Option          "NoLogo"                "True"
        Option          "ConnectedMonitor"      "TV"
        Option          "TVStandard"            "NTSC-M"
        Option          "TVOutFormat"           "SVIDEO"
EndSection

Section "Monitor"
        Identifier      "CRT"
        VendorName      "NEC"
        ModelName       "Multisync-70"
        Option          "DPMS"
        HorizSync       31-69
        # NEC states optimal at 1024x768@75Hz, set lower VertRefresh to force it
        # Actual VertRefresh specs for this monitor are 55-120
        VertRefresh     55-75
        DisplaySize     260 195
        # 100 DPI: calculated (1024*25.4)/100 = 260 and (768*25.4)/100 = 195
        # 96 DPI:  calculated (1024*25.4)/96  = 270 and (768*25.4)/96  = 203
        # 75 DPI:  calculated (1024*25.4)/75  = 346 and (768*25.4)/75  = 260
EndSection

Section "Monitor"
        Identifier      "TV"
        VendorName      "Mitsubishi"
        ModelName       "60 inch rear projection TV"
        HorizSync       30-50
        VertRefresh     60
        DisplaySize     163 122
        Modeline        "640x480@60" 24.11 640 672 760 792 480 490 495 505
        #Modeline       "800x600@60" 38.21 800 832 976 1008 600 612 618 631
        # 100 DPI: calculated (640*25.4)/100 = 163 and (480*25.4)/100 = 122
        # 96 DPI:  calculated (640*25.4)/96  = 169 and (480*25.4)/96  = 127
        # 75 DPI:  calculated (640*25.4)/75  = 216 and (480*25.4)/75  = 162
        # 100 DPI: calculated (800*25.4)/100 = 203 and (600*25.4)/100 = 152
        # 96 DPI:  calculated (800*25.4)/96  = 211 and (600*25.4)/96  = 158
        # 75 DPI:  calculated (800*25.4)/75  = 270 and (600*25.4)/75  = 203
EndSection

Section "Screen"
        Identifier      "Computer Monitor"
        Device          "nVidia MX4000 (VGA output)"
        Monitor         "CRT"
        DefaultDepth    24
        SubSection "Display"
                Depth           24
                Modes           "1024x768" "800x600" "640x480"
        EndSubSection
EndSection

Section "Screen"
        Identifier      "Television"
        Device          "nVidia MX4000 (SVIDEO output)"
        Monitor         "TV"
        DefaultDepth    24
        SubSection "Display"
                Depth           24
                Modes           "640x480"
        EndSubSection
EndSection

Section "ServerLayout"
        Identifier      "Default"
        Screen          0               "Computer Monitor"
        Screen          1               "Television" leftOf "Computer Monitor"
        InputDevice     "AOpen keyboard"
        InputDevice     "Logitech mouse"
EndSection
no, I wanted to have an extension onto the tv
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Extended Desktop on Inspiron 2200? Rudy Linux - Hardware 0 06-05-2006 09:39 PM
Extended Desktop Özkan Gümü? Linux - Hardware 4 02-18-2006 02:02 PM
Dual monitors and extended desktop on ATI tofumonsters Linux - Newbie 1 04-06-2005 01:06 PM
Getting extended desktop mrodriguez Linux - Hardware 5 03-29-2005 07:25 AM
extended desktop, not session desktop over 2 monitors inertia666 Linux - Software 16 02-12-2005 04:01 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - General

All times are GMT -5. The time now is 07:13 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration