Results 1 to 3 of 3

Thread: TV Out

  1. #1
    Join Date
    Apr 2009
    Beans
    11

    Unhappy TV Out

    Hi, Im trying to get my laptop to work with my TV screen on ubuntu 8.04

    Im using an S-Video cable and I have a toshiba satellite pro a200. I found this thread: http://ubuntuforums.org/showthread.php?t=340904
    and it almost works, theres a flicker on screen but no actual picture. Heres the output of lspci:

    Code:
    00:00.0 Host bridge: Intel Corporation Mobile 945GM/PM/GMS, 943/940GML and 945GT Express Memory Controller Hub (rev 03)
    00:02.0 VGA compatible controller: Intel Corporation Mobile 945GM/GMS, 943/940GML Express Integrated Graphics Controller (rev 03)
    00:02.1 Display controller: Intel Corporation Mobile 945GM/GMS/GME, 943/940GML Express Integrated Graphics Controller (rev 03)
    00:1b.0 Audio device: Intel Corporation 82801G (ICH7 Family) High Definition Audio Controller (rev 02)
    00:1c.0 PCI bridge: Intel Corporation 82801G (ICH7 Family) PCI Express Port 1 (rev 02)
    00:1c.1 PCI bridge: Intel Corporation 82801G (ICH7 Family) PCI Express Port 2 (rev 02)
    00:1c.2 PCI bridge: Intel Corporation 82801G (ICH7 Family) PCI Express Port 3 (rev 02)
    00:1d.0 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #1 (rev 02)
    00:1d.1 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #2 (rev 02)
    00:1d.2 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #3 (rev 02)
    00:1d.3 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #4 (rev 02)
    00:1d.7 USB Controller: Intel Corporation 82801G (ICH7 Family) USB2 EHCI Controller (rev 02)
    00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev e2)
    00:1f.0 ISA bridge: Intel Corporation 82801GBM (ICH7-M) LPC Interface Bridge (rev 02)
    00:1f.2 IDE interface: Intel Corporation 82801GBM/GHM (ICH7 Family) SATA IDE Controller (rev 02)
    00:1f.3 SMBus: Intel Corporation 82801G (ICH7 Family) SMBus Controller (rev 02)
    04:00.0 Ethernet controller: Atheros Communications Inc. AR242x 802.11abg Wireless PCI Express Adapter (rev 01)
    05:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8101E PCI Express Fast Ethernet controller (rev 01)
    06:04.0 CardBus bridge: Texas Instruments PCIxx12 Cardbus Controller
    06:04.1 FireWire (IEEE 1394): Texas Instruments PCIxx12 OHCI Compliant IEEE 1394 Host Controller
    06:04.2 Mass storage controller: Texas Instruments 5-in-1 Multimedia Card Reader (SD/MMC/MS/MS PRO/xD)
    06:04.3 SD Host controller: Texas Instruments PCIxx12 SDA Standard Compliant SD Host Controller
    And the contents of my original xorg.conf:

    Code:
    # xorg.conf (X.Org X Window System server configuration file)
    #
    # This file was generated by failsafeDexconf, using
    # values from the debconf database and some overrides to use vesa mode.
    #
    # You should use dexconf or another such tool for creating a "real" xorg.conf
    # For example:
    #   sudo dpkg-reconfigure -phigh xserver-xorg
    Section "InputDevice"
    	Identifier	"Generic Keyboard"
    	Driver		"kbd"
    	Option		"XkbRules"	"xorg"
    	Option		"XkbModel"	"pc105"
    	Option		"XkbLayout"	"gb"
    	Option		"XkbOptions"	"lv3:ralt_switch"
    EndSection
    
    Section "InputDevice"
    	Identifier	"Configured Mouse"
    	Driver		"mouse"
    EndSection
    
    
    Section "InputDevice"
    	Identifier	"Synaptics Touchpad"
    	Driver		"synaptics"
    	Option		"SendCoreEvents"	"true"
    	Option		"Device"	"/dev/psaux"
    	Option		"Protocol"	"auto-dev"
    	Option		"HorizEdgeScroll"	"0"
    EndSection
    Section "Device"
    	Identifier	"Configured Video Device"
    	Boardname	"vesa"
    	Busid		"PCI:0:2:1"
    	Driver		"vesa"
    	Screen	0
    EndSection
    
    Section "Monitor"
    	Identifier	"Configured Monitor"
    	Vendorname	"Plug 'n' Play"
    	Modelname	"Plug 'n' Play"
      modeline  "640x480@60" 25.2 640 656 752 800 480 490 492 525 -vsync -hsync
    	Gamma	1.0
    EndSection
    
    Section "Screen"
    	Identifier	"Default Screen"
    	Device		"Configured Video Device"
    	Monitor		"Configured Monitor"
    	Defaultdepth	24
    	SubSection "Display"
    		Depth	24
    		Virtual	640	480
    		Modes		"640x480@60"
    	EndSubSection
    EndSection
    
    Section "ServerLayout"
    	Identifier	"Default Layout"
      screen 0 "Default Screen" 0 0
    	Inputdevice	"Synaptics Touchpad"
    EndSection
    Section "Module"
    	Load		"glx"
    	Load		"GLcore"
    	Load		"v4l"
    EndSection
    Section "device" # 
    	Identifier	"device1"
    	Boardname	"Intel 945"
    	Busid		"PCI:0:2:0"
    	Driver		"i810"
    	Screen	0
    	Vendorname	"Intel"
    EndSection
    Section "screen" # 
    	Identifier	"screen1"
    	Device		"device1"
    	Defaultdepth	24
    	Monitor		"monitor1"
    EndSection
    Section "monitor" # 
    	Identifier	"monitor1"
    	Gamma	1.0
    EndSection
    Section "device" # 
    	Identifier	"device2"
    	Boardname	"vesa"
    	Busid		"PCI:0:2:1"
    	Driver		"vesa"
    	Screen	1
    EndSection
    Section "screen" # 
    	Identifier	"screen2"
    	Device		"device2"
    	Defaultdepth	24
    	Monitor		"monitor2"
    EndSection
    Section "monitor" # 
    	Identifier	"monitor2"
    	Gamma	1.0
    EndSection
    Section "ServerFlags"
    EndSection
    I dont know where to go from here. Thanks for any help

  2. #2
    Join Date
    May 2007
    Location
    Canada
    Beans
    581

    Re: TV Out

    you are using the barebones vesa driver. Try installing the intel video driver first.


    64-Bit Ubuntu! Join the future of computing.

  3. #3
    Join Date
    Apr 2009
    Beans
    11

    Re: TV Out

    fixed a much easier way. For anyone with a similar problem, try this:

    plug it in, set your tv to SVideo then press "fn" and "f5" together (if you have an fn button) and the tv should get the signal

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •