Page 2 of 2 FirstFirst 12
Results 11 to 18 of 18

Thread: Hooking up laptop with Ubuntu to Samsung Display

  1. #11
    Join Date
    Dec 2012
    Beans
    19

    Arrow Re: Hooking up laptop with Ubuntu to Samsung Display

    Quote Originally Posted by audiomick View Post
    Open a terminal and do
    Code:
    sudo lshw -C video
    You will be asked for your password. Type it in and hit enter.
    I did this, and this is the output:



    *-display
    description: VGA compatible controller
    product: Madison [Radeon HD 5000M Series]
    vendor: Hynix Semiconductor (Hyundai Electronics)
    physical id: 0
    bus info: pci@0000:01:00.0
    version: 00
    width: 64 bits
    clock: 33MHz
    capabilities: pm pciexpress msi vga_controller bus_master cap_list rom
    configuration: driver=fglrx_pci latency=0
    resources: irq:16 memory:a0000000-afffffff memory:c4400000-c441ffff ioport:4000(size=256) memory:c4440000-c445ffff
    *-display
    description: VGA compatible controller
    product: Core Processor Integrated Graphics Controller
    vendor: Intel Corporation
    physical id: 2
    bus info: pci@0000:00:02.0
    version: 02
    width: 64 bits
    clock: 33MHz
    capabilities: msi pm vga_controller bus_master cap_list rom
    configuration: driver=i915 latency=0
    resources: irq:46 memory:c0000000-c03fffff memory:b0000000-bfffffff ioport:5050(size=8)



    I have no idea what all of it means, but hopefully someone else will be able to make sense of it.

  2. #12
    Join Date
    Feb 2007
    Location
    West Hills CA
    Beans
    10,044
    Distro
    Ubuntu 14.04 Trusty Tahr

    Re: Hooking up laptop with Ubuntu to Samsung Display

    Your laptop has 2 graphics chips:

    An Intel Core Graphics chip, running and i915 driver.

    And you have an ATI Radeon HD 5000M graphics chip. Running the fglrx_pci driver.

    To verify this, list the modules (drivers) you are running:

    Code:
    lsmod
    Does your laptop have two graphics ports? Perhaps a VGA (15 pin, blue) port and a white, multipin DVI port.

    Not to scare you, but you may need to read this thread and start to understand the tweaking that may be required to get your combination to work.

    http://ubuntuforums.org/showthread.php?t=158686

    This came from a simple google search: ubuntu dual display fglrx_pci
    Last edited by tgalati4; December 10th, 2012 at 01:06 AM.
    -------------------------------------
    Oooh Shiny: PopularPages

    Unumquodque potest reparantur. Patientia sit virtus.

  3. #13
    Join Date
    Dec 2012
    Beans
    19

    Arrow Re: Hooking up laptop with Ubuntu to Samsung Display

    Quote Originally Posted by tgalati4 View Post
    To verify this, list the modules (drivers) you are running:

    Code:
    lsmod
    Does your laptop have two graphics ports? Perhaps a VGA (15 pin, blue) port and a white, multipin DVI port.
    I typed lsmod in the terminal and this is what I came up with:


    Module Size Used by
    michael_mic 12540 8
    arc4 12473 4
    parport_pc 32114 0
    ppdev 12849 0
    rfcomm 38139 12
    bnep 17830 2
    binfmt_misc 17292 1
    usblp 17885 0
    i915 419161 7
    hp_accel 25728 0
    lis3lv02d 19268 1 hp_accel
    hp_wmi 13652 0
    intel_ips 17822 0
    sparse_keymap 13658 1 hp_wmi
    wmi 18744 1 hp_wmi
    input_polldev 13648 1 lis3lv02d
    drm_kms_helper 45466 1 i915
    drm 197599 3 i915,drm_kms_helper
    snd_usb_audio 101566 1
    uvcvideo 67203 0
    videodev 86588 1 uvcvideo
    i2c_algo_bit 13199 1 i915
    btusb 17948 2
    video 19068 1 i915
    psmouse 86486 0
    joydev 17393 0
    serio_raw 13027 0
    snd_usbmidi_lib 24603 1 snd_usb_audio
    fglrx 2909855 0
    snd_hda_codec_hdmi 31775 1
    snd_hda_codec_idt 60251 1
    lib80211_crypt_tkip 17275 0
    snd_hda_intel 32765 5
    snd_hda_codec 109562 3 snd_hda_codec_hdmi,snd_hda_codec_idt,snd_hda_intel
    snd_seq_midi 13132 0
    wl 2646601 0
    snd_rawmidi 25424 2 snd_usbmidi_lib,snd_seq_midi
    snd_hwdep 13276 2 snd_usb_audio,snd_hda_codec
    snd_seq_midi_event 14475 1 snd_seq_midi
    lib80211 14040 2 lib80211_crypt_tkip,wl
    bluetooth 158438 23 rfcomm,bnep,btusb
    snd_pcm 80845 4 snd_usb_audio,snd_hda_codec_hdmi,snd_hda_intel,snd _hda_codec
    snd_seq 51567 2 snd_seq_midi,snd_seq_midi_event
    snd_timer 28931 2 snd_pcm,snd_seq
    snd_seq_device 14172 3 snd_seq_midi,snd_rawmidi,snd_seq
    snd 62064 24 snd_usb_audio,snd_usbmidi_lib,snd_hda_codec_hdmi,s nd_hda_codec_idt,snd_hda_intel,snd_hda_codec,snd_r awmidi,snd_hwdep,snd_pcm,snd_seq,snd_timer,snd_seq _device
    soundcore 14635 1 snd
    snd_page_alloc 14108 2 snd_hda_intel,snd_pcm
    mei 36570 0
    mac_hid 13077 0
    lp 17455 0
    parport 40930 3 parport_pc,ppdev,lp
    usbhid 41906 0
    hid 77392 1 usbhid
    uas 17828 0
    usb_storage 39646 4
    r8169 56321 0



    As for the graphics ports, I have a blue VGA and an HDMI port. Before I used the HDMI port to connect to the monitor in Windows.
    Last edited by elhancho; December 10th, 2012 at 01:10 AM.

  4. #14
    Join Date
    Feb 2007
    Location
    West Hills CA
    Beans
    10,044
    Distro
    Ubuntu 14.04 Trusty Tahr

    Re: Hooking up laptop with Ubuntu to Samsung Display

    And what is the model and native resolution of the Samsung display?
    -------------------------------------
    Oooh Shiny: PopularPages

    Unumquodque potest reparantur. Patientia sit virtus.

  5. #15
    Join Date
    Dec 2012
    Beans
    19

    Arrow Re: Hooking up laptop with Ubuntu to Samsung Display

    The model is the Samsung SyncMaster T260HD and the native resolution is 1080p 1920 x 1200 at 60 Hz.

  6. #16
    Join Date
    Feb 2007
    Location
    West Hills CA
    Beans
    10,044
    Distro
    Ubuntu 14.04 Trusty Tahr

    Re: Hooking up laptop with Ubuntu to Samsung Display

    I have an older version of that monitor, and I use dual-monitor all the time with my thinkpad. But I use a DVI port as my thinkpad does not have an HDMI out.

    So in reading the mega-thread that I posted above, there are some limitations using the fglrx driver and the arrangement of your monitors.

    I have 12.10 running on another machine, but I don't have dual monitors set up so I cannot help any more at this point. Others will have to chime in for the commands to use. There are several suggestions in the thread that I posted earlier.
    -------------------------------------
    Oooh Shiny: PopularPages

    Unumquodque potest reparantur. Patientia sit virtus.

  7. #17
    Join Date
    Dec 2012
    Beans
    19

    Smile Re: Hooking up laptop with Ubuntu to Samsung Display

    Thanks for your help!

  8. #18
    Join Date
    Feb 2007
    Location
    West Hills CA
    Beans
    10,044
    Distro
    Ubuntu 14.04 Trusty Tahr

    Re: Hooking up laptop with Ubuntu to Samsung Display

    More dual display stuff to read:

    http://ubuntuforums.org/showthread.php?t=1930450
    -------------------------------------
    Oooh Shiny: PopularPages

    Unumquodque potest reparantur. Patientia sit virtus.

Page 2 of 2 FirstFirst 12

Tags for this Thread

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
  •