LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware
User Name
Password
Linux - Hardware This forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux?

Notices


Reply
  Search this Thread
Old 03-31-2010, 03:28 AM   #1
1349
Member
 
Registered: Oct 2009
Distribution: Slackware
Posts: 35

Rep: Reputation: 15
S-video not detecting my tv.


I'm using a GeForce 6200 AGP with 195.36.15 drivers and I can't get s-video to detect my TV in Slackware 13. I did some things I got linked to in Google but none of them worked but here are the results.

bash-3.1$ xrandr --output S-video --set load_detection 1
X Error of failed request: BadRROutput (invalid Output parameter)
Major opcode of failed request: 151 (RANDR)
Minor opcode of failed request: 15 (RRGetOutputProperty)
Serial number of failed request: 19
Current serial number in output stream: 19

bash-3.1$ xrandr --output S-video --set tv_standard ntsc
X Error of failed request: BadRROutput (invalid Output parameter)
Major opcode of failed request: 151 (RANDR)
Minor opcode of failed request: 15 (RRGetOutputProperty)
Serial number of failed request: 19
Current serial number in output stream: 19

I don't know what any of this means. I tried to do 'Detect Displays' numerous times in nvidia-settings and I get nothing.

http://pastebin.com/6asWa5Jx <- Here is my xorg.conf if it's ever needed.

And here is some results from just doing xrandr.

bash-3.1$ xrandr
Screen 0: minimum 320 x 240, current 1600 x 1200, maximum 1600 x 1200
default connected 1600x1200+0+0 0mm x 0mm
1600x1200 50.0* 63.0
1024x768 51.0 63.0
800x600 52.0 57.0
640x480 53.0 59.0
1400x1050 54.0
1280x1024 55.0
1280x960 56.0
640x512 58.0
512x384 60.0
400x300 61.0
320x240 62.0

Can someone shed some light upon this? The cables are brand new and I know they work because I get the sound coming through.

Last edited by 1349; 03-31-2010 at 03:32 AM.
 
Old 03-31-2010, 05:53 AM   #2
smoker
Senior Member
 
Registered: Oct 2004
Distribution: Fedora Core 4, 12, 13, 14, 15, 17
Posts: 2,279

Rep: Reputation: 250Reputation: 250Reputation: 250
I have no idea about slackware, but in fedora we need to set up xorg.conf like this
Code:
Section "Device"
Identifier "Videocard0"
Driver "nvidia"
VendorName "Asus"
BoardName "NVIDIA GeForce 4 Ti4200"
Option "NoLogo" "1"
Option "ConnectedMonitor" "CRT,TV"
Option "TVOutFormat" "SVIDEO"
Option "TVStandard" "NTSC-M"
Option "TwinView" "1"
Option "TwinViewOrientation" "Clone"
Option "MetaModes" "1024x768,1024x768; 800x600,800x600"
Option "SecondMonitorHorizSync" "30-50"
Option "SecondMonitorVertRefresh" "60"
EndSection
Obviously you would have to use your specific parameters for vendor name , board name ,tv standard etc.

Or you could try this tool
http://sourceforge.net/projects/nv-tv-out/

Last edited by smoker; 03-31-2010 at 05:54 AM.
 
Old 03-31-2010, 06:58 AM   #3
1349
Member
 
Registered: Oct 2009
Distribution: Slackware
Posts: 35

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by smoker View Post
I have no idea about slackware, but in fedora we need to set up xorg.conf like this
Code:
Section "Device"
Identifier "Videocard0"
Driver "nvidia"
VendorName "Asus"
BoardName "NVIDIA GeForce 4 Ti4200"
Option "NoLogo" "1"
Option "ConnectedMonitor" "CRT,TV"
Option "TVOutFormat" "SVIDEO"
Option "TVStandard" "NTSC-M"
Option "TwinView" "1"
Option "TwinViewOrientation" "Clone"
Option "MetaModes" "1024x768,1024x768; 800x600,800x600"
Option "SecondMonitorHorizSync" "30-50"
Option "SecondMonitorVertRefresh" "60"
EndSection
Obviously you would have to use your specific parameters for vendor name , board name ,tv standard etc.

Or you could try this tool
http://sourceforge.net/projects/nv-tv-out/
bash-3.1$ wine WINIO.SYS
wine: Unhandled page fault on read access to 0x00010268 at address 0x23034d (thread 0009), starting debugger...
Unhandled exception: page fault on read access to 0x00010268 in 32-bit code (0x0023034d).
err:dbghelp_msce_load_debug_directory Got a page fault while loading symbols
Register dump:
CS:0073 SS:007b DS:007b ES:007b FS:0033 GS:003b
EIP:0023034d ESP:0033fe98 EBP:0033feb8 EFLAGS:00010202( R- -- I - - - )
EAX:00000000 EBX:7ee265b4 ECX:e6c8af03 EDX:00000000
ESI:7ffdf000 EDI:00230344
Stack dump:
0x0033fe98: 00230344 7ffdf000 7ee265b4 00000000
0x0033fea8: 00000000 00000000 7ee265b4 7ffdf000
0x0033feb8: 0033fee8 7edfe0e5 7ffdf000 00000000
0x0033fec8: 00000000 00000000 00000000 00000000
0x0033fed8: 00000000 7efe4448 bfb13674 00000000
0x0033fee8: 0033fef8 7efba9d4 7ffdf000 bfb13674
Backtrace:
=>0 0x0023034d in winio.sys (+0x34d) (0x0033feb8)
wine: Unhandled page fault on read access to 0x001535e0 at address 0x7ef933ac (thread 0019), starting debugger...
err:seh:raise_exception Unhandled exception code c0000005 flags 0 addr 0x7ef933ac

bash-3.1$ wine WINIO.VXD
err:dosmemOSMEM_MapDosLayout Need full access to the first megabyte for DOS mode

I'm getting errors for any executable that I'm trying to run. This isn't working right now.
 
Old 03-31-2010, 07:47 AM   #4
1349
Member
 
Registered: Oct 2009
Distribution: Slackware
Posts: 35

Original Poster
Rep: Reputation: 15
fg3r

Last edited by 1349; 03-31-2010 at 08:04 AM.
 
Old 03-31-2010, 08:03 AM   #5
thorkelljarl
Senior Member
 
Registered: Jun 2008
Posts: 1,820

Rep: Reputation: 229Reputation: 229Reputation: 229
Please don't swear...

We all know and have used the word, but not using it here helps to maintain the general tone of friendliness, helpfulness and co-operation that characterizes the LQ forum.
 
Old 03-31-2010, 08:06 AM   #6
1349
Member
 
Registered: Oct 2009
Distribution: Slackware
Posts: 35

Original Poster
Rep: Reputation: 15
i deleted the comment. now i got a new issue. my xorg.conf broke. now im going to spend hours fixing it after i cant even use my old one i posted. this makes no sense whatsoever. forget the fact i probably wasted all that money on this nice cables and now its useless. i cant take this no more. im tired of it. im literally crying because of how frustrated i am. i felt like i done everything in my power to fix everything. now its all broken and i cant go beyond a resolution of 640x480. im tired.
 
Old 03-31-2010, 08:10 AM   #7
thorkelljarl
Senior Member
 
Registered: Jun 2008
Posts: 1,820

Rep: Reputation: 229Reputation: 229Reputation: 229
Thank you...

Let's hope that good behavior is it's own reward by attracting more qualified responses to your problem.
 
Old 03-31-2010, 08:12 AM   #8
1349
Member
 
Registered: Oct 2009
Distribution: Slackware
Posts: 35

Original Poster
Rep: Reputation: 15
I needed to edit to take out the negative energy of the thread.

Last edited by 1349; 04-01-2010 at 07:20 AM.
 
Old 03-31-2010, 08:50 AM   #9
smoker
Senior Member
 
Registered: Oct 2004
Distribution: Fedora Core 4, 12, 13, 14, 15, 17
Posts: 2,279

Rep: Reputation: 250Reputation: 250Reputation: 250
Firstly, I don't see what wine has to do with xorg, and secondly, do you mean you didn't back up your existing xorg.conf, and thirdly, can you read ?
I told you to set your own parameters, and I also told you that that was the way to set it up in fedora, not slackware.

You haven't even given us a description of what you changed and what errors go with what problem.
All you seem to be worried about is your "nice new cables" !
 
Old 03-31-2010, 10:44 AM   #10
1349
Member
 
Registered: Oct 2009
Distribution: Slackware
Posts: 35

Original Poster
Rep: Reputation: 15
I'm sorry I was out of line. I didn't really exclaim what the problem was. That is on my own fault and I should gotten off the computer earlier. I will post my failure or success at a later time.
 
Old 03-31-2010, 12:12 PM   #11
thorkelljarl
Senior Member
 
Registered: Jun 2008
Posts: 1,820

Rep: Reputation: 229Reputation: 229Reputation: 229
Throw something at the problem...

What about trying a live-cd with the TV connected to see what happens. You might gain some useful information. Mint, Mandriva, fedora, openSUSE, all differently based?

Last edited by thorkelljarl; 03-31-2010 at 12:14 PM.
 
Old 04-01-2010, 07:09 AM   #12
1349
Member
 
Registered: Oct 2009
Distribution: Slackware
Posts: 35

Original Poster
Rep: Reputation: 15
My cables went missing and now I got this green tint on my monitor when I left my house and came back. I guess problem is solved by stolen possessions haha. Thanks for trying to help. Your first solution might help someone else in the future. I was a little drunk when I was trying to fix everything so anger was multiply by 9000.
 
  


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
Many video format (such as video/x-ms-asf and video/x-ms-wvx ) does not play? jmettova Debian 1 05-05-2009 11:22 AM
RedHat 9 is not detecting the LAN card, but Win'98 is detecting the LAN card SKYNAT Linux - Newbie 4 12-28-2007 10:25 PM
F7 graphic errors after detecting video card evilkorn Fedora - Installation 6 06-19-2007 08:56 AM
detecting '\t' haobaba1 Programming 5 02-22-2004 11:01 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware

All times are GMT -5. The time now is 12:33 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