LinuxQuestions.org
Help answer threads with 0 replies.
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 09-23-2007, 05:40 AM   #1
Ossah
LQ Newbie
 
Registered: Mar 2005
Location: Morristown, NJ USA
Distribution: openSuse 10.2 / Suse 9.3
Posts: 23

Rep: Reputation: 15
Question Tv-out on OpenSuse with intel 945 gm


Hi everyone!

Can anybody tell me how to use the tv-out on OpenSuse 10.2 using the KDE? It sounds ridiculous but I couldn't figure it out and google was'nt much of a help. There must be some desktop applet I suppose.

I do have an Intel 945 GM.

Thanks a lot!
 
Old 09-24-2007, 05:09 PM   #2
GrapefruiTgirl
LQ Guru
 
Registered: Dec 2006
Location: underground
Distribution: Slackware64
Posts: 7,594

Rep: Reputation: 556Reputation: 556Reputation: 556Reputation: 556Reputation: 556Reputation: 556
Hiya!!

I figured I'd step in here, as you haven't gotten any reply yet.
I don't use SuSE, so I must ask first, what exactly you mean:

Is "tv out" some sort of program? Or is it the usual situation, where you have a video card with a TV-out connector, and you want to use a TV, like as a second screen or something?

If it's the latter, then tell me, do you want to use a TV AND a montitor, or do you want to only use a TV by itself?

Give a bit more info, and I/we will help you out.
For starters, you ought to familiarize yourself with the file /etc/X11/xorg.conf as well as read the man page 'man xorg.conf'. Also, if your video driver has documentation, read that too.

Even though I don't use SuSE, it's pretty standard across most distros to get a TV out working.
 
Old 09-24-2007, 05:21 PM   #3
Ossah
LQ Newbie
 
Registered: Mar 2005
Location: Morristown, NJ USA
Distribution: openSuse 10.2 / Suse 9.3
Posts: 23

Original Poster
Rep: Reputation: 15
Hiya!!

Sorry for not being specific.

I was referring to a video card with a TV-out connector. And it would be nice to use the TV by itself - pretty annoying to watch DVD's on my laptop screen. I will get into the xorg.conf. I just thought there must be something simple I haven't thought of / found yet.


I appreciate your help!
 
Old 09-24-2007, 05:59 PM   #4
GrapefruiTgirl
LQ Guru
 
Registered: Dec 2006
Location: underground
Distribution: Slackware64
Posts: 7,594

Rep: Reputation: 556Reputation: 556Reputation: 556Reputation: 556Reputation: 556Reputation: 556
Using TV-out.

Hiya, no problem about not being specific. Good that you mentioned its a laptop though -- not really significant for THIS thread, but in the future, if you need help, best to specify that first, because with many issues/problems, it is important to know it's a laptop.

Now.. Not too suprising you had trouble finding info on specifically using TV-out. It can be tricky.
FIrst, as I said, read the man oage for xorg.conf, get a little familiar with that, because you will want to reference it probably. And if you can find a man page or docs for the driver you use, that may halp with specifics too.

Basically, what you'll probably want to do, if you want to use EITHER the builtin screen OR the TV, is to add a second server layout to your xorg.conf file. This is what I did to mine. So the way it works, is when you boot up and start your desktop like usual, it will come up on the laptop screen. Then, if you want to watch TV, you would open a console window and type startx -- :1 -layout "television". It doesn't have to be called 'television' but that depends on what you call your alternate layout in xorg.conf.
Instead of typing this in a console, I just made a little script with this one line in it, and made a desktop link to it, so I just click the icon and a new X session starts in another TTY, with my TV going. The script looks like:
Code:
#!/bin/bash
startx -- :6 -layout "television"
..that's it.
So, the basic changes you will need to do to the xorg.conf file are like so:

1 - add a second device section. Identical to the existing one. You will need to add a BusID line to each device section too. This tells X where on the PCI bus is your video card. Also, in the NEW device section, add a line Screen 1 and in the OLD device section, add a line Screen 0.
2 - add a second Monitor section. In it, you will specify the horizontal and vertical rates for your TV, and the usual other stuff that goes in a Monitor section. Name it something different than the OLD Monitor section, maybe Identifier "tv-screen" if you like that.
3 - add a second Screen section. Identical to the first one that's already there, EXCEPT you will name it something like Identifier 'Screen1' as opposed to your original screen section which is probably called Identifier 'Screen0' and you will reference your new device & Monitor sections that you just made.
4 - Next you will make a new serverlayout section, identical to the original one in every way, EXCEPT it will list Screen 0 "Screen1" 0 0 instead of what the original serverlayout says which is probably Screen 0 "Screen0" 0 0 and you will call it Identifier "television" or whatever you like, as long as you can remember what you called it, and/or you want to make a little script like I made.

Finally, to your new Screen section, add the following:
Option "TVOutFormat" "SVIDEO"
Option "TVStandard" "NTSC-M"

NOTE: My TV-out is an S-Video plug. if yours is a composite plug (a round RCA-type plug) then change SVIDEO to COMPOSITE. Also, if you live somewhere other than North America, your TV Standard may be different. The TV Standard line may also be optional.

There! I *think* I covered most everything. I may have forgotten some detail, but this is basically it. SO, go ahead and edit your file, IF this sounds like it is the way you would like things to work. If not, or if you have troubles getting it to work, please post what's happening, and I shall try to help you fix it
Also, if your X won't start because of a config error, you will need to repair the xorg./conf in an editor like mc or Pico or nano or Vi or something, so make sure you have access to an editor, and that you know how to use it and save your file.

Best of luck; let me know how it goes.
 
  


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
intel 945 graphics and 1280x1024 resolution otoomet Linux - Hardware 7 10-04-2007 07:17 AM
Intel 945 chipset and 4GB of memory danielsbrewer Linux - Hardware 2 08-23-2007 03:25 AM
945 intel on board sound is not working amirshaik Red Hat 1 04-27-2007 12:02 PM
Intel 945 Recognition MattJUK Linux - Distributions 2 01-10-2007 01:11 AM
need information about Intel 915GM and intel 945 graphics chipsets mechmg93 Debian 1 04-15-2006 06:53 AM

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

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