|
|
#1 | |
|
Guest
Posts: n/a
|
I have an ASUS V-7700 Geforce2 GTS with TV input/output. I have gotten it working with Redhat 8.0 with NVIDIA's drivers. Will Twinview work on the GTS cards or do you have to have a MX card? If I add the twinview info into my XF86 file it only outputs to the TV. Now, my next question would be that if twinview will not work, what would be my best way of switching between TV and monitor without manually editing my XF86 file and restarting X? Could I use a shell script to choose which display to use? If anyone has a good script or idea of how to switch on the fly I would love to see it.
Thanks, Dave |
|
|
|
|
#2 | |
|
Registered User
Join Date: Sep 2002
Posts: 2,262
|
If the documentation says it only works on MX cards (and the GF4 Ti's, obviously), then my first guess would be that it won't work. And seeing as it doesn't work when you try it, that just backs that feeling up.
For switching between them, you can create two config files. Name them something like XF86Config-4-TV and XF86Config-4-CRT, and put them in /etc/X11, just like XF86Config-4 is. The difference is, one will be displaying to the TV, and the other will display to your monitor. Then create a script somewhere that looks like this (call it xstart or something): Code:
#!/bin/bash
if [ $# -lt 2 ] ; then
echo "Usage: $0 { TV | CRT } [ other X parameters ]" 1>&2
exit 1
fi
if [ "$1" != "TV" -a "$1" != "CRT" ] ; then
echo "Usage: $0 { TV | CRT } [ other X parameters ]" 1>&2
exit 1
fi
export XF86CONFIG="XF86Config-4-$1"
shift
startx "$@"
Also, the CRT or TV argument must be first. It would be possible to change it so that that could come later, but it's a whole bunch of work and I doubt it'd be worth it, personally. Check man 1 getopt if you want to try. Just run xstart TV to start up with the display on your TV, and xstart CRT for the display to go to your CRT. It would be possible to have a default setting as well, if you want. Let me know if this is the case, and I'll see if I can hack it into this script.
__________________
Registered Linux User #219692 |
|
|
|
|
|
|
#3 |
|
l33t master
Join Date: Jul 2002
Location: Santa Clara, CA
Posts: 1,163
|
From the README:
The TwinView feature is only supported on NVIDIA GPUs that support dual-display functionality, such as the GeForce2 MX, GeForce2 Go, Quadro2 MXR, Quadro2 Go, and any of the GeForce4 GPUs. The GeForce2 GTS family of cards does not support TwinView. --andy
__________________
Andy Mecham NVIDIA Corporation |
|
|
|
![]() |
| Thread Tools | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Twinview with different resolutions? | ocgltd | NVIDIA Linux | 7 | 11-04-12 02:07 PM |
| XF86Config for a Quadro4 without TwinView? | Twirlip | NVIDIA Linux | 1 | 10-09-02 10:36 AM |
| Suse Linux 8.0 - Geforce 4 TwinView | TA00 | NVIDIA Linux | 8 | 08-30-02 03:24 AM |
| Twinview with TV-out | karlaugust | NVIDIA Linux | 10 | 08-28-02 04:20 PM |
| How do I configure TwinView on Dell Inspiron | rutgerclaes | NVIDIA Linux | 6 | 08-01-02 03:20 AM |