How to connect two DVI screens to Thunderbolt Display's Thunderbolt Port?

Hi everyone,
I have a new MBP and an external Thunderbolt Display. The Thunderbolt Display itself has a Thunderbolt port, and I was wondering if there is anyway to connect to DVI screens to that. My goal is to have the Thunderbolt Display and 2 x 24" Samsung DVI screens connected to my MBP.
Alternatively, has anyone had success using a third party device like the Matrox 2 go to drive multiple monitors from the usb port?
Thanks,
Dave.

You could try a TB>DVI adapter (here's one from Monoprice) but I don't know that it will work - I'm thinking that you could have at least one of your Samsung displays use it. You may also want to see if you can find a HDMI>DVI adapter for your second Samsung display - something like this?
I know that I've seen three monitor set-ups on YouTube - but I'm not sure what was connected to what. Easy enough to daisy-chain ATDs but it gets a bit tougher when utilizing HDMI ports, etc., and I'm not sure about the GPUs ability to drive all three displays.
Oops - sorry - strike that second paragraph - I thought that you were running a Retina display MBP...
Clinton
Message was edited by: clintonfrombirmingham

Similar Messages

  • What adapter(s) do I need to connect two DVI-D non-Apple monitors to new 13" MacBook Pro w/Retina?

    What adapter(s) do I need to connect two DVI-D non-Apple monitors to new 13" MacBook Pro w/Retina?

    A DVI-D to Mini-DisplayPort or DVI-D to Thunderbolt cable adaptor.

  • How to connect two external monitors to a Mac Book Pro?

    How to connect two external monitors to a Mac Book Pro?

    Not as is, but  Matrox makes a peripheral that enables connecting more than one external monitor - matrox.com.

  • How to connect two computers

    please help me
    how to connect two computers through telephone line

    Double Post. See:
    http://forum.java.sun.com/thread.jspa?threadID=770305&tstart=0

  • How to connect iseries green screen from java program

    how to connect iseries green screen from java program to get the data in the DB files ,here the DB is DB2/400

    Just some Friday fun. Use the telnet program that comes with Windows and supports VT escape sequences.
    import java.io.*;
    import java.net.*;
    public class AutoTelnet {
         private static Socket s;
         public static void main(String[] args) throws Exception {
              Thread t = new Thread() {
                   @Override public void run() {
                        try {
                             s = new ServerSocket(5555).accept();
                        } catch (IOException ex) {
                             ex.printStackTrace();
              t.start();
              Process p = new ProcessBuilder("cmd", "/C", "start", "telnet", "127.0.0.1", "5555").redirectErrorStream(true).start();
              t.join();
              PrintStream ps = new PrintStream(s.getOutputStream());
              ps.println("Screen will be cleared in 5 seconds");
              ps.println("5");
              Thread.sleep(1000);
              ps.println("4");
              Thread.sleep(1000);
              ps.println("3");
              Thread.sleep(1000);
              ps.println("2");
              Thread.sleep(1000);
              ps.println("1");
              Thread.sleep(1000);
              ps.println("\u001b[2J");
              Thread.sleep(5000);
    }

  • Hibernate query...how to connect two databases...

    hi i m new to hibernate..
    i created two tables..
    1st table is catalog:
    2nd table is acctinfo
    //HBM file is :
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
    <hibernate-mapping>
    <class name="hibernate.example.Catalog" table="catalog">
    <id name="id" type="integer" column="ID">
    <generator class="increment"/>
    </id>
    <property name="journal" type="string" column="JOURNAL"/>
    <property name="publisher" type="string" column="PUBLISHER"/>
    <property name="edition" type="string" column="EDITION"/>
    <property name="title" type="string" column="TITLE"/>
    <property name="author" type="string" column="AUTHOR"/>
    <bag name="accinfo" cascade="all" >
    <key column="ID"/>
    <one-to-many class="hibernate.example.Acctinfo"/>
    </bag>
    </class>
    <class name="hibernate.example.Acctinfo" table="acctinfo">
    <id name="id" type="integer" column="ID">
    <generator class="increment"/>
    </id>
    <property name="account" type="string" column="ACCOUNT"/>
    <property name="password" type="string" column="PASSWORD"/>
    <property name="balance" type="string" column="BALANCE"/>
    </class>
    </hibernate-mapping>
    ///******************getter setter file is::****************
    package hibernate.example;
    public class Acctinfo
         int id;
         String account;
         String password;
         String balance;
         public Acctinfo()
         public void setId(int id)
              this.id = id;
         public int getId()
              return id;
         public void setAccount(String account)
              this.account = account;
         public void setPassword(String password)
              this.password = password;
         public void setBalance(String balance)
              this.balance = balance;
         public String getAccount()
              return account;
         public String getBalance()
              return balance;
         public String getPassword()
              return password;
    //********************2nd getter setter file is:***********************
    package hibernate.example;
    import java.util.List;
    public class Catalog
    int id;
    String journal;
    String publisher;
    String edition;
    String title;
    String author;
    private List accinfo;
    public Catalog()
    public void setId(int id)
    this.id = id;
    public int getId()
    return id;
    public void setJournal(String journal)
    this.journal = journal;
    public String getJournal()
    return journal;
    public void setPublisher(String publisher)
    this.publisher = publisher;
    public String getPublisher()
    return publisher;
    public void setEdition(String edition)
    this.edition = edition;
    public String getEdition()
    return edition;
    public void setTitle(String title)
    this.title = title;
    public String getTitle()
    return title;
    public void setAuthor(String author)
    this.author = author;
    public String getAuthor()
    return author;
    public void setAccinfo(List accinfo)
    this.accinfo = accinfo;
    public List getAccinfo()
    return accinfo;
    * To change this template, choose Tools | Templates
    * and open the template in the editor.
    package hibernate.example;
    import hibernate.example.Acctinfo;
    import hibernate.example.Catalog;
    import java.util.ArrayList;
    import java.util.Iterator;
    import java.util.List;
    import java.util.ListIterator;
    import org.hibernate.Query;
    import org.hibernate.SQLQuery;
    import org.hibernate.Session;
    import org.hibernate.SessionFactory;
    import org.hibernate.Transaction;
    import org.hibernate.cfg.Configuration;
    public class CatalogClient
         Session session = null;
         SessionFactory sessionFactory = new Configuration().configure().buildSessionFactory();
         public static void main(String str[])
              CatalogClient clc = new CatalogClient();
              //clc.saveData();
              //clc.deleteData();
              //clc.showData();
              clc.updateData();
         public void showData()
              try
                   session =sessionFactory.openSession();
                   String SQL_QUERY ="select id, journal, publisher, edition, title, author from catalog";
                   // String SQL_QUERY ="select c.ID, c.JOURNAL, c.PUBLISHER, c.EDITION, c.TITLE, c.AUTHOR, a.ACCOUNT, a.PASSWORD,a.BALANCE from catalog c, ACCTINFO a where c.ID = a.ID";
                   SQLQuery query = session.createSQLQuery(SQL_QUERY);
                   System.out.println("*** query : *** "+ query);
                   //for(ListIterator it=query.list().listIterator();it.hasNext();)
                   for (ListIterator lit = query.list().listIterator(); lit.hasNext();)
                        Object[] row = (Object[]) lit.next();
                        /*System.out.println("ID: " + row[0]);
                        System.out.println("Title: " + row[1]);
                        System.out.println("Author: " + row[2]);
                        System.out.println("Isbn: " + row[3]);
                        System.out.println("Pages: " + row[4]);
                        System.out.println("Copyright: " + row[5]);
                        System.out.println("Cost: " + row[6]);
                        System.out.println("******NEXT****************");
    Object[] row = (Object[]) it.next();*/
                        System.out.println("ID: " + row[0]);
                        System.out.println("JOURNAL: " + row[1]);
                        System.out.println("PUBLISHER: " + row[2]);
                        System.out.println("EDITION: " + row[3]);
                        System.out.println("TITLE: " + row[4]);
                        System.out.println("AUTHOR: " + row[5]);
                        System.out.println("acc: " + row[6]);
                        System.out.println("pass: " + row[7]);
                        System.out.println("bal: " + row[8]);
                        System.out.println("***************************");
                   session.close();
              catch(Exception e)
                   System.out.println(e.getMessage());
         public void saveData()
              session =sessionFactory.openSession();
              Transaction transaction = null;
              transaction = session.beginTransaction();
              Catalog catalog = setBean();
              //System.out.println("before save");
              session.save(catalog);
              //System.out.println("after save");
              transaction.commit();
              session.flush();
              session.close();
         public void updateData()
              session =sessionFactory.openSession();
              Catalog catalog = new Catalog();
              catalog.setId(2);
              catalog.setAuthor("manoj");
              catalog.setJournal("java");
              catalog.setEdition("1st");
              catalog.setPublisher("indiabulls");
              catalog.setTitle("java Servlet");
              session.update(catalog);
              session.flush();
              session.close();
         public void deleteData()
              session =sessionFactory.openSession();
              Catalog catalog = new Catalog();
              catalog.setId(3);
              session.delete(catalog);
              session.flush();
              session.close();
         public static Catalog setBean()
              Acctinfo accinfo = new Acctinfo();
              accinfo.setAccount("MANOJ1");
              accinfo.setPassword("orbis");
              accinfo.setBalance("1000");
              List list = new ArrayList();
              list.add(accinfo);
              Catalog catalog = new Catalog();
              catalog.setJournal("india");
              catalog.setPublisher("indiabulls");
              catalog.setEdition("ist");
              catalog.setTitle("orbis");
              catalog.setAuthor("manoj");
              catalog.setAccinfo(list);
              return catalog;
    //********************CFG FILE IS ******************
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
    <hibernate-configuration>
    <session-factory name="session">
    <property name="hibernate.dialect">org.hibernate.dialect.Oracle9Dialect</property>
    <property name="hibernate.connection.driver_class">oracle.jdbc.driver.OracleDriver</property>
    <property name="hibernate.connection.url">jdbc:oracle:thin:@172.16.31.25:1521:BOMBAY</property>
    <property name="hibernate.connection.username">mumbai</property>
    <property name="hibernate.connection.password">mumbai123</property>
    <!-- Set AutoCommit to true -->
    <property name="connection.autocommit">true</property>
    <property name="dialect">org.hibernate.dialect.OracleDialect</property>
    <!-- Mapping files -->
    <mapping resource="Catalog.hbm.xml"/>
    </session-factory>
    </hibernate-configuration>
    **********************error i m facing is :************************
    0 [main] WARN net.sf.ehcache.config.Configurator - No configuration found. Configuring ehcache from ehcache-failsafe.xml found in the classpath: jar:file:/C:/Documents%20and%20Settings/d.poonam/Desktop/hibernate/lib/ehcache-1.1.jar!/ehcache-failsafe.xml
    1188 [main] WARN org.hibernate.impl.SessionFactoryObjectFactory - Could not bind factory to JNDI
    javax.naming.NoInitialContextException: Need to specify class name in environment or system property, or as an applet parameter, or in an application resource file: java.naming.factory.initial
         at javax.naming.spi.NamingManager.getInitialContext(Unknown Source)
         at javax.naming.InitialContext.getDefaultInitCtx(Unknown Source)
         at javax.naming.InitialContext.getURLOrDefaultInitCtx(Unknown Source)
         at javax.naming.InitialContext.getNameParser(Unknown Source)
         at org.hibernate.util.NamingHelper.bind(NamingHelper.java:52)
         at org.hibernate.impl.SessionFactoryObjectFactory.addInstance(SessionFactoryObjectFactory.java:90)
         at org.hibernate.impl.SessionFactoryImpl.<init>(SessionFactoryImpl.java:247)
         at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1043)
         at hibernate.example.CatalogClient.<init>(CatalogClient.java:24)
         at hibernate.example.CatalogClient.main(CatalogClient.java:27)
    please help me out....
    thanks in advance..
    if u know how to connect two tables plz let me know..
    its urgent....

    I made this work with MySQL. Adapt to your situation as needed. - %
    package hibernate.model;
    import hibernate.util.HibernateUtils;
    import hibernate.model.Catalog;
    import hibernate.model.Account;
    import org.apache.commons.logging.Log;
    import org.apache.commons.logging.LogFactory;
    import org.hibernate.Session;
    import hibernate.util.HibernateUtils;
    import static junit.framework.Assert.assertEquals;
    import static junit.framework.Assert.assertNotNull;
    public class CatalogTest
       private static final Log LOGGER = LogFactory.getLog(CatalogTest.class);
       public static void main(String[] args)
          Session session = null;
          try
             session = HibernateUtils.getSessionFactory().getCurrentSession();
             session.beginTransaction();
             int rowsBefore = HibernateUtils.getRowCount(session, Catalog.class);
             assertEquals("should not have any Catalogs", rowsBefore, 0);
             Catalog catalog = new Catalog("test title");
             catalog.addAccount(new Account(100));
             catalog.addAccount(new Account(200));
             Long id = (Long) session.save(catalog);
             assertNotNull("generated id should not be null", id);
             LOGGER.info("returned id: " + id);
             session.getTransaction().commit();
             LOGGER.debug("transaction committed");
          catch (Exception e)
             LOGGER.error(e);
             session.getTransaction().rollback();
    package hibernate.model;
    import java.io.Serializable;
    import java.text.NumberFormat;
    public class Account implements Serializable
       private Long id;
       private int balance;
       public Account()
          this(null, 0);
       public Account(int balance)
          this(null, balance);
       public Account(Long id, int balance)
          this.id = id;
          this.balance = balance;
       public Long getId()
          return id;
       private void setId(Long id)
          this.id = id;
       public int getBalance()
          return balance;
       private void setBalance(int balance)
          this.balance = balance;
       public boolean equals(Object o)
          if (this == o)
             return true;
          if (!(o instanceof Account))
             return false;
          Account account = (Account) o;
          return !(id != null ? !id.equals(account.id) : account.id != null);
       public int hashCode()
          int result;
          result = (id != null ? id.hashCode() : 0);
          result = 31 * result + balance;
          return result;
       public String toString()
          return new StringBuilder().append("Account{").append("id=").append(id).append(", balance=").append(NumberFormat.getCurrencyInstance().format(balance)).append('}').toString();
    <?xml version="1.0"?>
    <!DOCTYPE hibernate-mapping PUBLIC
          "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
          "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
    <hibernate-mapping package="hibernate.model" default-access="field" default-lazy="true">
       <class name="Account" table="accounts">
          <id name="id" column="account_id">
             <generator class="native"/>
          </id>
          <property name="balance" column="balance"/>
       </class>
    </hibernate-mapping>
    package hibernate.model;
    import java.io.Serializable;
    import java.util.Set;
    import java.util.HashSet;
    import java.util.Collections;
    public class Catalog implements Serializable
       private Long id;
       private String title;
       private Set<Account> accounts;
       public Catalog()
          this(null, "", Collections.EMPTY_SET);
       public Catalog(String title)
          this(null, title, Collections.EMPTY_SET);
       public Catalog(Long id, String title, Set<Account> accounts)
          this.id = id;
          this.title = title;
          this.accounts = new HashSet<Account>(accounts);
       public Long getId()
          return id;
       private void setId(Long id)
          this.id = id;
       public String getTitle()
          return title;
       private void setTitle(String title)
          this.title = title;
       public Set<Account> getAccounts()
          return accounts;
       private void setAccounts(Set<Account> accounts)
          this.accounts = accounts;
       public void addAccount(Account account)
          this.getAccounts().add(account);
       public void removeAccount(Account account)
          this.getAccounts().remove(account);
       public boolean equals(Object o)
          if (this == o)
             return true;
          if (!(o instanceof Catalog))
             return false;
          Catalog catalog = (Catalog) o;
          return !(id != null ? !id.equals(catalog.id) : catalog.id != null);
       public int hashCode()
          return (id != null ? id.hashCode() : 0);
       public String toString()
          return new StringBuilder().append("Catalog{").append("id=").append(id).append(", title='").append(title).append('\'').append(", accounts=").append(accounts).append('}').toString();
    <?xml version="1.0"?>
    <!DOCTYPE hibernate-mapping PUBLIC
          "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
          "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
    <hibernate-mapping package="hibernate.model" default-access="field" default-lazy="true">
       <class name="Catalog" table="catalogs">
          <id name="id" column="catalog_id">
             <generator class="native"/>
          </id>
          <property name="title" column="title"/>
          <set name="accounts" cascade="all">
             <key column="catalog_id"/>
             <one-to-many class="hibernate.model.Account"/>
          </set>
       </class>
    </hibernate-mapping>
    <!DOCTYPE hibernate-configuration PUBLIC
         "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
         "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
    <hibernate-configuration>
         <session-factory>
          <property name="connection.driver_class">com.mysql.jdbc.Driver</property>
          <property name="connection.url">jdbc:mysql://localhost:3306/hibernate?autoReconnect=true</property>
          <property name="connection.username">hibernate</property>
          <property name="connection.password">hibernate</property>
          <property name="connection.pool_size">1</property>
          <property name="dialect">org.hibernate.dialect.MySQL5InnoDBDialect</property>
          <property name="show_sql">true</property>
          <property name="generate_statistics">true</property>
          <property name="query.factory_class">org.hibernate.hql.classic.ClassicQueryTranslatorFactory</property>
          <property name="cache.provider_class">org.hibernate.cache.NoCacheProvider</property>
          <property name="cache.use_minimal_puts">false</property>
          <property name="cache.use_query_cache">false</property>
          <property name="order_updates">false</property>
          <property name="hbm2ddl.auto">create-drop</property>
          <property name="current_session_context_class">thread</property>
          <mapping resource="hibernate/persistence/hibernate/Account.hbm.xml"/>
          <mapping resource="hibernate/persistence/hibernate/Catalog.hbm.xml"/>
         </session-factory>
    </hibernate-configuration>

  • How to connect an external hard drive and monitor a single port thuderbolt

    how to connect an external hard drive and monitor a single port thuderbolt

    Yu connect the HDD to your Mac and then the monitor to the HDD.
    The HDD  should have TWO T-Bird ports on the enclosure.
    Its called daisy chaining and up to five devices can be connected in this fashion.

  • How to connect a DELL screen (DVI-D) to MacAir via Thunderbolt

    Hello,
    can one connect a DELL screen (DVI-D) (eg Ultraslim S2230MX) to a MacAir via the Thunderbolt outlet using a
    Mini DisplayPort to-DVI-Adapter ? Does anyone have experience with such a combination?
    Many thanks, Werner

    The Thunderbolt to DVI adapter does not discrimate what monitor is connected to it via DVI.
    So yes, you can connect your Dell monitor to your MBA using the adapter.

  • Is it possible to connect two DVI / Display Port displays to a MacBookAir4,2 ?

    At Work I'm running Parallels: Windows 8.1 Pro
    Is it possible to run it the following way:
    onboard display: OS X
    Display 1: Windows 8.1 Pro - display 1
    Display 2: Windows 8.1 Pro - display 2
    At the moment I'm running onboard display: OS X
    and thunderbolt--> Display Port: Windows 8.1 Pro
    which Works fine.
    But I really need the extra display, but have been searching for a week, and I'm getting nowhere.
    Hope you Guys can help.
    Specs:
    MacBook Air - medio 2011
    CPU: 1.7GHz
    Mem: 4Gb
    GPU: Intel HD 3000 384Mb

    Hello tonnyfromholsted,
    Great question. Your MacBook Air includes one thunderbolt port. Each thunderbolt port can support up to one Mini Display Port display. Thus, your MacBook Air can only connect to one external display. Even when taking Thunderbolt Displays into consideration, this Mac still only supports one connected display. For more information, please refer to the following resource:
    Thunderbolt ports and displays: Frequently asked questions (FAQ) - Apple Support
    http://support.apple.com/en-us/HT204154
    2. How do I connect my Mini DisplayPort monitor or monitor using a Mini DisplayPort adapter to my Thunderbolt-equipped Mac when I have other Thunderbolt devices connected?
    When connecting a Mini DisplayPort display or a display using a Mini DisplayPort adapter to a Thunderbolt peripheral (except as described in question 24), make sure the display is connected at the end of the Thunderbolt chain. You can use only one Mini DisplayPort device in the Thunderbolt chain.
    Note: Systems with more than one Thunderbolt port, like an iMac, can have more than one Mini DisplayPort monitor or monitor connected with a Mini DisplayPort adapter connected as each Thunderbolt port can support one Mini DisplayPort display.
    Thanks,
    Matt M.

  • Firewire device looses connection when external screen is inserted into the thunderbolt port? HELP

    HI
    I am a recording studio engineer. Ive got a Firewire AD/DA Converter (Focusrite Saffire Pro 56) running from my Firewire port of my MacBook Pro, which is running OSX Mavericks. I've also got an external Screen I want to use as an extended display. I'm using a HDMI cable from the screen to a HDMI to Thunderbolt Converter which I then plug into my Thurderbolt Port.
    As soon as I plug the screen in, the Firewire Port looses connection completely and I cant use or even choose the Saffire Pro 56 as audio driver. Another thing happens where the Thunderbolt port replaces the Saffire Pro 56 Driver with the screen as the audio output source.
    Please help, there's nothing I can find to fix this.
    Thanks Maurice

    You don't mention which model you have, but this is from the M-Audio Firewire 410 Manual Troubleshooting section:
    The FireWire 410 has been designed to give you high performance and professional quality audio. It has been tested under a wide range
    of systems and operating conditions. In the real world, however, there is a nearly infinite number of possible operating scenarios, any of
    which could affect your system’s performance. Much like owning an automobile, “your mileage may vary.” This section can not begin to
    cover all possible issues you may encounter, however we want to give you some suggestions on common problems you may experience.
    One thing to avoid is connecting too many devices. The FireWire bus is a dependable, high-speed, high-bandwidth protocol which is ideally
    suited for digital audio. Nonetheless, it’s important to remember that audio and multimedia streaming places considerable demands on
    your processor and the FireWire bus. Although it is theoretically possible to chain many multiple FireWire devices in series, doing so may
    potentially degrade your audio performance.
    I guess this degradation could also affect the Firewire HD. Maybe there is a simple fix, but it sounds like the M-Audio people have been down this road before.

  • HT5918 how to connect 6 DVI Displays to MacPro

    Apple states can connect up to 6 DVI displays to a MacPro explanation is not clear. Mixes Mini-Display and USB terminology. What does it mean? 

    The article you linked to includes:
    Mac Pro supports a total of two single-link DVI displays. If you connect a third DVI display using a passive adapter or a display via HDMI, it will cause one of the three displays to become inactive.
    Can I connect more than 2 DVI or HDMI displays?
    Mac Pro supports a total of two DVI or HDMI displays when connected via the built-in HDMI port or using the Apple Mini DisplayPort to DVI adapter. To connect additional DVI displays, use an active DVI adapter such as the Apple Mini DisplayPort to Dual-Link DVI adapter. You can connect up to six active adapter DVI displays. This requires a powered USB hub since Mac Pro offers four USB ports and you will need six to connect them all.
    If your display are 1080p pr less they you can use 2 standard/passive mini displayport to DVI adapters and 4 active mini displayport to DVI adapters. If 1080p or less you do not need the dual-link adapter which are active. Yo can get less expensive active adopters.
    If any of your display are greater than 1080p you need the dual-link adapter. Those included a connection to USB for power. These cost about $100 each for the Apple branded ones

  • How do  connect two iPods at once.

    Hello, I have two iPods that I connect to one computer (1 a 5th gen ipod, and 1 a 4th gen ipod).
    I can only ever connect one of the two iPod's. When ever I try and connect a 2nd iPod, iTunes disconnects the 1st iPod, and only shows the 2nd iPod, and this then gives a windows error on the 1st iPod.
    Has anyone ever been able to connect two iPods at once in itunes for Windows?

    i have the same problem. With one ipod and another ipod nano, the itunes doesnt works, and need to restart it.

  • Best way to set up two thunderbolt displays and thunderbolt ethernet on a Late 2013 MBP with only 2 thunderbolt ports?

    I have a late 2013 MBP with only 2 thunderbolt ports. I want to set up two external displays (both have usb ports on the back but not thunderbolt so I can't daisy-chain) but one of my thunderbolt ports is being taken up by the ethernet adapter. Is it possible to convert one of my displays to plug into my open HDMI slot? Or is it better to use the two thunderbolt ports for the two displays and switch the ethernet to the slower usb adapter?

    You can use a HDMI to DVI adapter if the display resolution is not greater than 1920 x 1200.
    <http://startech.com/Cables/Audio-Video/HDMI/>
    or you could use wireless for your network connection.
    <http://www.apple.com/airport-express/>
    If you use 5GHz, it should be nearly as fast as Ethernet.

  • How to connect a new 27" LED Cinema Display to an older Mac Mini?

    I bought a 27" LED Cinema Display (no Thunderbolt) but don't know how to connect it to my wife's older Mac Mini. I presume the Atlona adaptor is the solution, but I haven't bougt one yet.
    robbert keegel

    The cord attached to the display splits into a Mini DisplayPort, USB, and a MagSafe connector (for powering a laptop).
    There is a separate connector on the back of the display for the AC power cord.
    <http://store.storeimages.cdn-apple.com/2316/as-images.apple.com/is/image/AppleIn c/MC007_AV1?wid=326&hei=326&fmt=jpeg&qlt=95&op_sharpen=0&resMode=bicub&op_usm=0. 5,0.5,0,0&iccEmbed=0&layer=comp>
    <http://store.apple.com/us/product/MC007LL/A>
    "What’s in the Box
    LED Cinema Display
    AC power cord
    Printed documentation"

  • How to connect two thunderbolt devices to Macbook Air?

    I have been using an Apple thunderbolt to VGA adapter to connect my digital projector to a Macbook Air.  Now I need to also connect a pro audio firewire mixer, which has a firewire 400 cable.  If I didn't have to connect the projector as well, I presume that the way to go would be to use an Apple thunderbolt to Firewire 800 adapter with an 800 to 400 adapter on the end, but as I have two devices I am rather stumped.
    I know that thunderbolt/mini display is for daisy chaining, so there isn't such a thing as a thunderbolt hub, except that I could maybe use the Belkin Thunderbolt Express Dock (expensive as it is, it may be a cheaper option than others).  I have read mixed reviews of this device, but it looks like it could essentially work - one thunderbolt cable to connect the Macbook to the dock, then use the Firewire 800 port on the dock with an 800-400 adapter for the mixer and the second thunderbolt port on the dock for the projector with the VGA adapter.  I am wondering if there are any other possible solutions though, other than buying a Macbook Pro!
    Thanks,
    Nick

    Sounds like a good suggestion but it is from 2009 and out of stock at Amazon.
    This URL lists a newer one and says it is Mac compatible.  I also do not have any experience with this product.
    http://www.amazon.com/Plugable-UGA-165-1920x1080-1600x1200-DisplayLink/dp/B004AI JE9G/ref=pd_sim_sbs_e_7
    General advice:  Keep all the packaging material in case you need to to return it in the 30 day Amazon return period (assuming it qualifies for a return).  Purchase it on a credit card with consumer protection that entitles you to a refund if the seller will not accept the return.

Maybe you are looking for