LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 07-08-2006, 02:49 AM   #1
tungaw2001
Member
 
Registered: Aug 2003
Posts: 45

Rep: Reputation: 15
TV and Monitor clone display


HI Guys,

I'm having problem on my testing. I want to have a display on both TV and my monitor are the same time. in short cloned. I already tried the ff: on my setup


Section "Monitor"
Identifier "Monitor0"
VendorName "Monitor Vendor"
ModelName "Unprobed Monitor"
HorizSync 31.5 - 37.9
VertRefresh 50.0 - 70.0
Option "dpms"
EndSection

Section "Device"
Identifier "Videocard0"
Driver "nvidia"
VendorName "Videocard vendor"
BoardName "nVidia GeForce 2 Go"
EndSection

Section "Screen"
Identifier "Screen0"
Device "Videocard0"
Monitor "Monitor0"
DefaultDepth 24
SubSection "Display"
Depth 24
#Modes "800x600" "640x480"
Modes "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 16
#Modes "800x600" "640x480"
Modes "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 8
#Modes "800x600" "640x480"
Modes "1024x768" "800x600" "640x480"
EndSubSection
EndSection

Given the settings on other post, I was able to change the ff: but still no luck. BTW, I'm using Redhat 9.0 and Nvidia Gforce MX4000. I have an Svideo outout, directly connected to the TV. I was able to see that there's a TV configured but the display on the TV is just plain blue screen.
 
Old 07-08-2006, 05:00 AM   #2
auditek747
Member
 
Registered: Feb 2004
Location: Ohio, USA
Distribution: Arch Linux
Posts: 464

Rep: Reputation: 30
This is my device section. (Xorg, Slackware 10.2)

Code:
Section "Device"
    Identifier  "FX5500"
    Driver      "nvidia"
    #VideoRam    256000
    # Insert Clocks lines here if appropriate
    Option "TwinView"
    Option "SecondMonitorHorizSync" "30-50"
    Option "SecondMonitorVertRefresh" "60"
    Option "MetaModes" "1024x768, 1024x768; 800x600, 800x600; 640x480, 640x480;"
    Option "TVStandard" "NTSC-M"
    Option "TVOutFormat" "SVIDEO"
    Option "TwinViewOrientation" "Clone"
    Option "ConnectedMonitor" "CRT, TV"
EndSection
Try adding the "Options" to your XF86Config4 or whatever, like so:

Code:
Section "Device"
Identifier "Videocard0"
Driver "nvidia"
VendorName "Videocard vendor"
BoardName "nVidia GeForce 2 Go"
Option "TwinView"
Option "SecondMonitorHorizSync" "30-50"
Option "SecondMonitorVertRefresh" "60"
Option "MetaModes" "1024x768, 1024x768; 800x600, 800x600; 640x480, 640x480;"
Option "TVStandard" "NTSC-M"
Option "TVOutFormat" "SVIDEO"
Option "TwinViewOrientation" "Clone"
Option "ConnectedMonitor" "CRT, TV"
EndSection
You may have to change:

Code:
Option "TVStandard" "NTSC-M"
to something else if you are not in the USA. (PAL perhaps)
 
Old 07-09-2006, 11:59 PM   #3
tungaw2001
Member
 
Registered: Aug 2003
Posts: 45

Original Poster
Rep: Reputation: 15
Thanks for the help. I was able to see the output from TV. I used composite connection from PC to TV. However, when i unplugged the composite and restart over again, it did not work anymore. What caused the problem??????

These are my settings on XF86Config:

# XFree86 4 configuration created by redhat-config-xfree86

Section "ServerLayout"
Identifier "Default Layout"
Screen 0 "Screen0" 0 0
InputDevice "Mouse0" "CorePointer"
InputDevice "Keyboard0" "CoreKeyboard"
InputDevice "DevInputMice" "AlwaysCore"
EndSection

Section "Files"

# RgbPath is the location of the RGB database. Note, this is the name of the
# file minus the extension (like ".txt" or ".db"). There is normally
# no need to change the default.
# Multiple FontPath entries are allowed (they are concatenated together)
# By default, Red Hat 6.0 and later now use a font server independent of
# the X server to render fonts.
RgbPath "/usr/X11R6/lib/X11/rgb"
FontPath "unix/:7100"
EndSection

Section "Module"
Load "dbe"
Load "extmod"
Load "fbdevhw"
Load "glx"
Load "record"
Load "freetype"
Load "type1"
EndSection

Section "InputDevice"

# Specify which keyboard LEDs can be user-controlled (eg, with xset(1))
# Option "Xleds" "1 2 3"
# To disable the XKEYBOARD extension, uncomment XkbDisable.
# Option "XkbDisable"
# To customise the XKB settings to suit your keyboard, modify the
# lines below (which are the defaults). For example, for a non-U.S.
# keyboard, you will probably want to use:
# Option "XkbModel" "pc102"
# If you have a US Microsoft Natural keyboard, you can use:
# Option "XkbModel" "microsoft"
#
# Then to change the language, change the Layout setting.
# For example, a german layout can be obtained with:
# Option "XkbLayout" "de"
# or:
# Option "XkbLayout" "de"
# Option "XkbVariant" "nodeadkeys"
#
# If you'd like to switch the positions of your capslock and
# control keys, use:
# Option "XkbOptions" "ctrl:swapcaps"
# Or if you just want both to be control, use:
# Option "XkbOptions" "ctrl:nocaps"
#
Identifier "Keyboard0"
Driver "keyboard"
Option "XkbRules" "xfree86"
Option "XkbModel" "pc105"
Option "XkbLayout" "us"
EndSection

Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "PS/2"
Option "Device" "/dev/psaux"
Option "ZAxisMapping" "4 5"
Option "Emulate3Buttons" "no"
EndSection

Section "InputDevice"

# If the normal CorePointer mouse is not a USB mouse then
# this input device can be used in AlwaysCore mode to let you
# also use USB mice at the same time.
Identifier "DevInputMice"
Driver "mouse"
Option "Protocol" "IMPS/2"
Option "Device" "/dev/input/mice"
Option "ZAxisMapping" "4 5"
Option "Emulate3Buttons" "no"
EndSection

Section "Monitor"
Identifier "Monitor0"
VendorName "Monitor Vendor"
ModelName "Unprobed Monitor"
HorizSync 31.5 - 37.9
VertRefresh 50.0 - 70.0
Option "dpms"
EndSection

Section "Device"
Identifier "Videocard0"
Driver "nvidia"
VendorName "Videocard vendor"
BoardName "nVidia GeForce 2 Go"

### ronald
OPTION "Twinview" "True"
OPTION "SecondMonitorHorizSync" "30-50"
OPTION "SecondMonitorVertRefresh" "60"
OPTION "MetaModes" "1024x768,1024x768; 800x600,800x600;640x480,640x480;"
OPTION "TvStandard" "PAL"
OPTION "TVOutFormat" "Auto"
OPTION "TwinViewOrientation" "Clone"
OPTION "ConnectedMonitor" "CRT,TV"
#### ends here

EndSection

Section "Screen"
Identifier "Screen0"
Device "Videocard0"
Monitor "Monitor0"
DefaultDepth 24
SubSection "Display"
Depth 24
#Modes "800x600" "640x480"
Modes "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 16
#Modes "800x600" "640x480"
Modes "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 8
#Modes "800x600" "640x480"
Modes "1024x768" "800x600" "640x480"
EndSubSection
EndSection
 
Old 07-10-2006, 12:55 AM   #4
auditek747
Member
 
Registered: Feb 2004
Location: Ohio, USA
Distribution: Arch Linux
Posts: 464

Rep: Reputation: 30
Don't know.
My card has SVIDEO out, my TV has RCA, I connect with an adapter.
I alsways set:

OPTION "TVOutFormat" "Auto"

To:

OPTION "TVOutFormat" "SVIDEO"

That's all I can think of
 
Old 07-10-2006, 09:40 PM   #5
tungaw2001
Member
 
Registered: Aug 2003
Posts: 45

Original Poster
Rep: Reputation: 15
I already did that kind of testing. I will try my luck again. These are the settings i've done on my testing.

TVOutFormat "Composite" or
TVOutFormat "SVIDEO" or
TVOutFormat "AUTO"

Is there any other alternative solution???????

Thanks,
 
  


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 Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Clone a screen with monitor using different resolution phen Linux - Laptop and Netbook 1 12-31-2007 07:58 AM
intel 915 graphics and dualhead / display clone kwbolte Linux - Laptop and Netbook 1 06-07-2005 11:47 AM
display 2 monitor edmlo Linux - Hardware 0 04-17-2005 11:55 AM
clone X session into a second monitor rbirmann Linux - Hardware 0 08-06-2004 12:27 AM
Tv out, clone the monitor to the TV ludeKing Linux - Hardware 1 05-26-2004 04:26 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 11:16 AM.

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