Trying to use PowerMac G4 with HD Cinema Display

I am trying to use a PowerMac G4 Digital Audio with an Apple HD Cinema Display (23-inch). I bought the Belkin connector so I could connect ADC to DVI. When I start up the Mac, I get the startup screen, gray with Apple logo and spinning startup ball, but then it goes dark. Any idea what the problem might be? Could it be a video card issue?  Thanks!

If you get something like the linked HP, you will want an upgraded card, minimum of a Radeon 9800 Pro.
The DA can use numerous 4x AGP options, of which the best overall performer is a Geforce 6800 GT (flashed PC version).
The main issue with the HP is the newer 16:9 ratio, for which most old OEM cards have no firmware resolution support (only 16:10 was available in the day).
Use of some software like SwitchresX will be necessary with a newer monitor and older OEM cards.
OEM options are all listed on my page here:
8923D90A-7AD8-41F1-BD1A-FEA5E1780B95.html
All performance options are listed here:
4B4B7BA2-7ABB-47F1-87AC-B03D37942BEE.html
Like Jon said, if you upgrade your graphics card, your DA will love it (and you, in turn, will love the DA more).

Similar Messages

  • I'm trying to use kerberos V5 with ActiveDirectory but get an error

    I'm trying to use kerberos V5 with ActiveDirectory im using simple code from previuos posts but
    when i try with correct username/password i get :
    Authentication attempt failedjavax.security.auth.login.LoginException: Message stream modified (41)
    when i try incorrect username/pass i get :
    Pre-authentication information was invalid (24)
    Debug info is :
    Debug is  true storeKey false useTicketCache false useKeyTab false doNotPrompt false ticketCache is null isInitiator true KeyTab is null refreshKrb5Config is false principal is null tryFirstPass is false useFirstPass is false storePass is false clearPass is false
    Kerberos username [naiden]: naiden
    Kerberos password for naiden:      naiden
              [Krb5LoginModule] user entered username: naiden
    Acquire TGT using AS Exchange
              [Krb5LoginModule] authentication failed
    Pre-authentication information was invalid (24)
    Authentication attempt failedjavax.security.auth.login.LoginException: Java code is :
    import javax.naming.*;
    import javax.naming.directory.*;
    import javax.security.auth.login.*;
    import javax.security.auth.Subject;
    import com.sun.security.auth.callback.TextCallbackHandler;
    import java.util.Hashtable;
    * Demonstrates how to create an initial context to an LDAP server
    * using "GSSAPI" SASL authentication (Kerberos v5).
    * Requires J2SE 1.4, or JNDI 1.2 with ldapbp.jar, JAAS, JCE, an RFC 2853
    * compliant implementation of J-GSS and a Kerberos v5 implementation.
    * Jaas.conf
    * racfldap.GssExample {com.sun.security.auth.module.Krb5LoginModule required client=TRUE useTicketCache=true doNotPrompt=true; };
    * 'qop' is a comma separated list of tokens, each of which is one of
    * auth, auth-int, or auth-conf. If none is supplied, the default is 'auth'.
    class KerberosExample {
    public static void main(String[] args) {
    java.util.Properties p = new java.util.Properties(System.getProperties());
    p.setProperty("java.security.krb5.realm", "ISY");
    p.setProperty("java.security.krb5.kdc", "192.168.0.101");
    p.setProperty("java.security.auth.login.config", "C:\\jaas.conf");
    System.setProperties(p);
    // 1. Log in (to Kerberos)
    LoginContext lc = null;
    try {
    lc = new LoginContext("ISY",
    new TextCallbackHandler());
    // Attempt authentication
    lc.login();
    } catch (LoginException le) {
    System.err.println("Authentication attempt failed" + le);
    System.exit(-1);
    // 2. Perform JNDI work as logged in subject
    Subject.doAs(lc.getSubject(), new LDAPAction(args));
    // 3. Perform LDAP Action
    * The application must supply a PrivilegedAction that is to be run
    * inside a Subject.doAs() or Subject.doAsPrivileged().
    class LDAPAction implements java.security.PrivilegedAction {
    private String[] args;
    private static String[] sAttrIDs;
    private static String sUserAccount = new String("Administrator");
    public LDAPAction(String[] origArgs) {
    this.args = (String[])origArgs.clone();
    public Object run() {
    performLDAPOperation(args);
    return null;
    private static void performLDAPOperation(String[] args) {
    // Set up environment for creating initial context
    Hashtable env = new Hashtable(11);
    env.put(Context.INITIAL_CONTEXT_FACTORY,
    "com.sun.jndi.ldap.LdapCtxFactory");
    // Must use fully qualified hostname
    env.put(Context.PROVIDER_URL, "ldap://192.168.0.101:389/DC=isy,DC=local");
    // Request the use of the "GSSAPI" SASL mechanism
    // Authenticate by using already established Kerberos credentials
    env.put(Context.SECURITY_AUTHENTICATION, "GSSAPI");
    env.put("javax.security.sasl.server.authentication", "true");
    try {
    /* Create initial context */
    DirContext ctx = new InitialDirContext(env);
    /* Get the attributes requested */
    Attributes aAnswer =ctx.getAttributes( "CN="+ sUserAccount + ",CN=Users,DC=isy,DC=local");
    NamingEnumeration enumUserInfo = aAnswer.getAll();
    while(enumUserInfo.hasMoreElements()) {
    System.out.println(enumUserInfo.nextElement().toString());
    // Close the context when we're done
    ctx.close();
    } catch (NamingException e) {
    e.printStackTrace();
    }JAAS conf file is :
    ISY {
         com.sun.security.auth.module.Krb5LoginModule required
    debug=true;
    };krb5.ini file is :
    # Kerberos 5 Configuration File
    # All available options are specified in the Kerberos System Administrator's Guide.  Very
    # few are used here.
    # Determines which Kerberos realm a machine should be in, given its domain name.  This is
    # especially important when obtaining AFS tokens - in afsdcell.ini in the Windows directory
    # there should be an entry for your AFS cell name, followed by a list of IP addresses, and,
    # after a # symbol, the name of the server corresponding to each IP address.
    [libdefaults]
         default_realm = ISY
    [domain_realm]
         .isy.local = ISY
         isy.local = ISY
    # Specifies all the server information for each realm.
    #[realms]
         ISY=
              kdc = 192.168.0.101
              admin_server = 192.168.0.101
              default_domain = ISY
         }

    Now it works
    i will try to explain how i do this :
    step 1 )
    fallow this guide http://www.cit.cornell.edu/computer/system/win2000/kerberos/
    and configure AD to use kerberos and to heve Kerberos REALM
    step 2 ) try windows login to the new realm to be sure that it works ADD trusted realm if needed.
    step 3 ) create jaas.conf file for example in c:\
    it looks like this :
    ISY {
         com.sun.security.auth.module.Krb5LoginModule required
    debug=true;
    };step 4)
    ( dont forget to make mappings which are explained in step 1 ) go to Active Directory users make sure from View to check Advanced Features Right click on the user go to mappings in secound tab kerberos mapping add USERNAME@KERBEROSreaLm for example [email protected]
    step 5)
    copy+paste this code and HIT RUN :)
    import java.util.Hashtable;
    import javax.naming.Context;
    import javax.naming.NamingEnumeration;
    import javax.naming.NamingException;
    import javax.naming.directory.Attributes;
    import javax.naming.directory.DirContext;
    import javax.naming.directory.InitialDirContext;
    import javax.naming.directory.SearchControls;
    import javax.naming.directory.SearchResult;
    import javax.security.auth.Subject;
    import javax.security.auth.login.LoginContext;
    import javax.security.auth.login.LoginException;
    import com.sun.security.auth.callback.TextCallbackHandler;
    public class Main {
        public static void main(String[] args) {
        java.util.Properties p = new java.util.Properties(System.getProperties());
        p.setProperty("java.security.krb5.realm", "ISY.LOCAL");
        p.setProperty("java.security.krb5.kdc", "192.168.0.101");
        p.setProperty("java.security.auth.login.config", "C:\\jaas.conf");
        System.setProperties(p);
        // 1. Log in (to Kerberos)
        LoginContext lc = null;
        try {
                lc = new LoginContext("ISY", new TextCallbackHandler());
        // Attempt authentication
        lc.login();
        } catch (LoginException le) {
        System.err.println("Authentication attempt failed" + le);
        System.exit(-1);
        // 2. Perform JNDI work as logged in subject
        Subject.doAs(lc.getSubject(), new LDAPAction(args));
        // 3. Perform LDAP Action
        * The application must supply a PrivilegedAction that is to be run
        * inside a Subject.doAs() or Subject.doAsPrivileged().
        class LDAPAction implements java.security.PrivilegedAction {
        private String[] args;
        private static String[] sAttrIDs;
        private static String sUserAccount = new String("Administrator");
        public LDAPAction(String[] origArgs) {
        this.args = origArgs.clone();
        public Object run() {
        performLDAPOperation(args);
        return null;
        private static void performLDAPOperation(String[] args) {
        // Set up environment for creating initial context
        Hashtable env = new Hashtable(11);
        env.put(Context.INITIAL_CONTEXT_FACTORY,
        "com.sun.jndi.ldap.LdapCtxFactory");
        // Must use fully qualified hostname
        env.put(Context.PROVIDER_URL, "ldap://192.168.0.101:389");
        // Request the use of the "GSSAPI" SASL mechanism
        // Authenticate by using already established Kerberos credentials
        env.put(Context.SECURITY_AUTHENTICATION, "GSSAPI");
    //    env.put("javax.security.sasl.server.authentication", "true");
        try {
        /* Create initial context */
        DirContext ctx = new InitialDirContext(env);
        /* Get the attributes requested */
        //Create the search controls        
        SearchControls searchCtls = new SearchControls();
        //Specify the attributes to return
        String returnedAtts[]={"sn","givenName","mail"};
        searchCtls.setReturningAttributes(returnedAtts);
        //Specify the search scope
        searchCtls.setSearchScope(SearchControls.SUBTREE_SCOPE);
        //specify the LDAP search filter
        String searchFilter = "(&(objectClass=user)(mail=*))";
        //Specify the Base for the search
        String searchBase = "DC=isy,DC=local";
        //initialize counter to total the results
        int totalResults = 0;
        // Search for objects using the filter
        NamingEnumeration answer = ctx.search(searchBase, searchFilter, searchCtls);
        //Loop through the search results
        while (answer.hasMoreElements()) {
                SearchResult sr = (SearchResult)answer.next();
            totalResults++;
            System.out.println(">>>" + sr.getName());
            // Print out some of the attributes, catch the exception if the attributes have no values
            Attributes attrs = sr.getAttributes();
            if (attrs != null) {
                try {
                System.out.println("   surname: " + attrs.get("sn").get());
                System.out.println("   firstname: " + attrs.get("givenName").get());
                System.out.println("   mail: " + attrs.get("mail").get());
                catch (NullPointerException e)    {
                System.err.println("Error listing attributes: " + e);
        System.out.println("RABOTIII");
            System.out.println("Total results: " + totalResults);
        ctx.close();
        } catch (NamingException e) {
        e.printStackTrace();
    }It will ask for username and password
    type for example : [email protected] for username
    and password : TheSecretPassword
    where ISY.LOCAL is the name of kerberos realm.
    p.s. it is not good idea to use Administrator as login :)
    Edited by: JOKe on Sep 14, 2007 2:23 PM

  • I've just bought a Macbook Pro 15" and I'm trying to use Photoshop, but the resolution its displaying the images at for 100% are too small. I have to design for the web, so need to be intricate with detail, but I'm finding it adjusts the resolution of the

    I've just bought a Macbook Pro 15" and I'm trying to use Photoshop, but the resolution its displaying the images at for 100% are too small. I have to design for the web, so need to be intricate with detail, but I'm finding it adjusts the resolution of the image right down. (I mean you can see the image clearly, but it's too small to edit). When I look at Safari and see a web page at 100% it's clear, but the same page displayed in Photoshop CC appears 50% of the size (even though it says it's 100%)   If I move the application window to another screen it adjusts it correctly  – leaving all the pallettes, menus and tools correctly sized as they are on the retina display   Is there some way to adjust the way Photoshop CC displays images so it is more consistent with what you actually see?   There doesn't seem to be any answer on the Adobe forum, so hopefully someone here can shed some light.  MacBook Pro with Retina display, 15", OS X Yosemite (10.10.2), Photoshop CC 2014

    I tested both ways. With "open in low resolution" ckecked the size of the images is cool, but it is low-resolution including Photoshop appearance.
    If "open in low resolution" is unckecked the appearance is good but the very small size.
    See the image below. It has 650 x 732 px, 72 dpi. The font of the text "Neste aniversário ..." is with 18pt.

  • I am trying to use apple configurator with ipads. I have been successful with all our ipads but 1. It will not allow me to add apps. The error I get is that it is refreshed but with errors e

    I am trying to use apple configurator with ipads. I have been successful with preparing and supervising all ipads but one. When preparing it in configurator, I receive an error that it is refreshed but with an error. Under supervise, I am not able to add apps. I have erased all content to start over but this does not work either

    Are you trying to restore a backup, or just sync some apps? Do you have profiles installed on the device?
    Have you plugged the ipad into iTunes, and did a fresh install? I'm assuming the device went through the prepare setup properly. You many have to unsupervise it first, then plug it into iTunes to wipe it completely.
    I'd then do each step seperately. Prepare it, then install 1 app, if that works, try another app, then maybe a profile.

  • FireWire (and USB?) problems with 23" Cinema display

    Hello.
    Whenever my G5 wakes from sleep, I seem to have problems with FireWire devices attached to the Cinema Display (and, possibly, the USB ports also). Somehow, it seems that the "wake" signal is not transmitted to them.
    Specifically:
    a FireWire hard drive does not spin up (a USB drive connected to the back port does, as does a FW 800 drive also connected to my PowerMac). When I try to access it, then it finally spins up.
    An EyeTV 200 device fails to connect (i.e., display TV or record shows) unless the Fi cable is unplugged and reattached.
    This happens WHENEVER the Mac sleeps. However, if I attach those two devices directly to my PowerMac, they function just fine, using the same port the Cinema Display is attached to.
    I don't have other comparable devices attached to the USB port of the Cinema Display, except (previously) for a Plextor ConvertX DVR (a USB 2 device), which exhibted the same problems as the EyeTV 200, which is why I tried swapping it with the FireWire-based EyeTV (unsuccessfully). So I have some evidence that the USB port has similar problems, but nothing conclusive.

    Hey Scott
    You are not alone. I'm beginning to think there is an issue with the power supplies of the 23" displays.
    In my case, my computer is set to never sleep, while the display is set to sleep atfter 30 mins or so.
    It appears that the computer won't wake up in these cases, but in fact what is happening is that the display won't wake up.
    Multiple re-starts are sometimes necessary to get the display up and running again.
    While your problem seems slightly different, I think that the two are related in that there is not enough power being delivered from the power supply for the monitor to both your USB and Firewire devices connected to your display.
    I don't really have a solution as of yet.... aside from purchasing a new power supply from Apple... But, you are not exactly alone in your misery. Should I run across a fix for this aside from the power supply, I'll be glad to let you know.
    Generally after HD's spin down, they usually don't spin up unless they are accessed. If you have any open files on your FW800, that may explain why it does spin up when you wake up your system.
    One thing you can try, in the System Prefs, under Energy Saver, uncheck "Put HD's to sleep". This may cause all of them to spin up when you wake your system up.

  • IMac 27" not compatible with 30" Cinema Display - Super Buggy

    I have a new iMac 27" 10.7.3, the best of everything except not solid state.
    Using a 30 inch apple cinema display with it because a- I had it & b- I like the non-glare screen.
    There's been so many problems that I have been keeping a log. But basically the colored wheel from **** would start to turn when clicking on an external hardrive icon, or itunes woud freeze mid song, or Photoshop would freeze when trying to open a file on an external hardrive, or the computer would freeze upon logging out or shutting down. The list is endless. I thought that the problem was with the Lacie "Rugged" firewire ext drive. But it wasn't. As soon as I disconnected the Cinema Display the IMac stopped all the shenanigans.
    So my question is  -  is anyone sucessfully using a 30" Cinema display with an iMac 27"

    yes I do! this thing right: http://store.apple.com/us/product/MB571Z/A
    I bought the mini display port to DVI thinking that's what I needed. but I guess the two are different??

  • Hi I have a recent macbook pro 12" (bought in april 2012) model number A1278.  I'm trying to connect to a 23" apple cinema display (A1082) this currently is not working - i've bought an additional Apple MB570ZA Mini DisplayPort to DVI Adapter - no luck!

    Hi I have a recent macbook pro 12" (bought in april 2012) model number A1278.  I'm trying to connect to a 23" apple cinema display (A1082) this currently is not working - i've bought an additional Apple MB570ZA Mini DisplayPort to DVI Adapter - no luck!
    im not sure what to do next - can anyone help?
    im running OSX 10.7.4

    Hi There,
    I have had the exact same issue but with a projector.
    The issue lies with Mountian Lion 10.8.2.
    I tried many a combination with no luck to get HDMI working.
    Took my mac into the apple store and came to the conclusion it was the software, so I asked them to install 10.8 onto it (this is destructive so a backup is a must)
    Bought my macbook home and voila, now displaying through my projector.
    There is a small graphics update after 10.8.1 which seems to be the cause.
    Hope this helps.
    Thanks.

  • Will 2008 macbook pro work with 27" cinema display?

    November macbook pro 13"
    will this work seamlessly with new cinema diaplay?
    also - how come it's not HD but 30" is? thanks.

    I am using and enjoying my 27" Cinema Display with my October 2008 MacBook Pro 5,1. The display is breathtaking and its operation with my computer is flawless. I strongly recommend that you consider getting an Apple external keyboard and Magic Trackpad to use with your MBP and Cinema Display.
    If you have a MBP 5,1 as your post indicates, it has both a 9400M and a 9600M GT GPU, not a 9200M.

  • Can i use Apple 2005 20-inche cinema display on Mac pro ?

    can i use Apple 2005 20-inche cinema display on Mac pro ?

    If the display has a DVI connector it will plug into the Mac Pro directly.  If it uses ADC (Apple Display Connector)
    <http://upload.wikimedia.org/wikipedia/commons/0/09/AppleDisplayConnector.jpg>
    you will need a DVI to ADC adapter
    <http://www.amazon.com/Apple-M8661LL-Display-Adapter-4038234011420/dp/B00011KHT2>

  • Why does final cut x not recognize the sharp PN- K321 monitor ( European version ) as output video monitor and premiere it? Working with two cinema display and PN- K321 and I can not preview the output video at 4K for DisplayPort, whereas with premie

    Why does final cut x not recognize the sharp PN- K321 monitor ( European version ) as output video monitor, and premiere yes?
    Working with two cinema display and PN- K321 and I can not preview the output video at 4K by DisplayPort, whereas with premiere and after effects I have no problems

    Look, you can build an HD DVD with an SD movie, just as you can build an SD DVD with an HD movie. This is not a bug, it is most likely user error. Apple will not be addressing it.
    Just start over, and ensure you are building an SD DVD by bringing up the inspector for the disc (click on the background in the Graphical tab).
    Make sure SD DVD is selected:
    (If you do the same thing on your ill fated project, you'll see that HD DVD is selected)
    Build your DVD and you'll be fine.
    Patrick
    P.S. You will need to google HD DVD and Blu-Ray if you want to understand the difference between the formats. The reason that DVDSP included HD DVD was that its format was similar to SD DVD's. Blu-Ray is something else entirely.

  • I have recently update to the OS Maverik and I use a projector with a mini display port adaptor to my MacBook Air, ever since the only thing that projects is my desktop picture.  I cannot get it to project my school work that I need to teach my students.

    I have recently update to the OS Maverik and I use a projector with a mini display port adaptor to my MacBook Air, ever since the only thing that projects is my desktop picture.  I cannot get it to project my school work that I need to teach my students. Help!

    Hi Becki514,
    Welcome to the Support Communities!
    The following articles may help you with your projector issue:
    Apple computers: Troubleshooting issues with video on internal or external displays
    http://support.apple.com/kb/ht1573
    Apple Mini DisplayPort adapters: Frequently asked questions (FAQ)
    http://support.apple.com/kb/ht3382
    Mac notebooks: How to use your computer in closed clamshell (display closed) mode with an external display
    http://support.apple.com/kb/ht3131
    I hope this information helps ....
    Have a great day!
    - Judy

  • USB Over Current Notice on G5 with 22" Cinema Display

    USB Over Current Notice on G5 with 22” Cinema Display
    I have owned a Dual 2GHz 64 bit Power PC since 2004.  In that time, it has performed virtually flawlessly (as in having no major issues to speak of).  Now, all of a sudden, I'll be working away and a warning window with a large white exclamation mark in a red octagon pops-up stating: “USB Over Current Notice.  A USB device is currently drawing too much power.  The port to which it is attached will be deactivated.”  The window repeats itself cascading down 3, 4 or 5 times.  This will continue to happen even when I’ve disconnected the only 2 USB devices attached to the computer, i.e., an Apple keyboard and a Kensington Expert Mouse (#K64325). Can anyone shed some light on this problem.  It is very disconcerting (not to mention annoying).  Does anyone have a solution for me (other than “junk the old beast”)? The fact is it still works great with both Final Cut and Pro Tools.  Last but not least, I think I’ve narrowed the problem down to my 22” Cinema display.  With the computer is attached to another monitor, I’ve yet to have that warning pop up.  Is that possible?  Could the display be the culprit?

    Yes, in answer to your question (BDAqua) my Cinema Display has a ADC connector & USB ports on the back. 
    Your asking that question brings another to mind.  If there are those, who have figured out, wherein the actual problem lies, i.e., with the monitors that have USB connectors built in, why didn't Apple just issue a recall on those monitors rather than having so much spurious and speculative information floating around out there on the internet?  
    I've just for the first time tuned in to these user forums and blogs only to discover that this is a wide spread problem that has been going on for years. (???)  People saying, "Oh you just need to restart the computer" or "it's a bad mouse" or "bad keyboard" or worse yet, "it's your MOTHERBOARD!!!" when in fact it appears to be none of the above.  Surely this is something that Apple became aware of long ago.  Why didn't they correct the problem raher than letting it persist and making their buying public jump through hoops.   I've been an Apple user for many many years.  I've spent tens of thousands of dollars with that company from my first Quadra 950 to my MacPro -- I find this very disappointing. 
    In conclusion, all I can say is, I sincerely appreciate that you've taken the time to respond in an attempt to help.  Thank you.

  • Can I Use Dual Apple LED 24 Cinema Displays?

    I have a macpro(2008) and want to use two Apple LED 24 Cinema Displays.
    How can I connect my macpro and two cinema displays.
    GT120has one miniport. It's it better to buy two GT120?
    or Should I buy DVI to miniport converter?
    Message was edited by: mosquito7979

    Hi-
    Can I Use Dual Apple LED 24 Cinema Displays?
    Yes.
    Either another graphics card or an Atlona box;
    http://www.atlona.com/Atlona-DVI-to-Mini-DisplayPort-Converter-p-17859.html
    Either way will get your 24" LED displays connected.
    If you use FCP, the box would be better......

  • How to use a mac mini intel with 30" cinema display

    Arg, I just bought an Apple 30" cinema display to go with my new Mac mini intel, but oops the 30" apple cinema display has to use a dual link dvi card. Anyone know how to get out of this horrible situation without buying another new computer.
    Thanks!

    If you want to run the LCD at it's high 2560x1600 resolution, then you have absolutely no option whatsoever than to buy a PowerMac or MacBook Pro. Otherwise, you will be able to run the panel at 1280x800 with the Mac mini, which wouldn't make much sense though.

  • Mid-2012 MBP with 27" Cinema Display SCREEN GOES BLACK WHEN USING USB PERIPHERALS IN DOCK

    I haven't been able to find any straightforward answer as to why this is happening and it's becoming one of the most infuriating things in my life, impeding my workflow and costing me unmeasurable time in waiting, rebooting, screwing with cables, etc.
    I use my MBP as a DAW for multitracking live audio events to ProTools through a digital console where I work. Here's my gear list that I use every day:
    Mid-2012 MBP - Yosemite, 8GB, i7 quad 2.5, mechanical hd
    HengeDocks dock for my exact model machine - has set-screw jacks for CinemaDisplay power, Tbolt, FW800, USB, USB, SDcard, headphones, etc
    USB wired keyboard
    Anker 1x4 USB3.0 hub - I have a TimeMachine 1TB drive, 3TB project backup drive, audio interface and MIDI I/O or PT iLok, depending what I'm working on
    Magic Mouse (BlueTooth)
    Here's what's happening:
    SCENARIO 1 - I insert the CinemaDisplay (cD) power connector and TBolt plugs into the dock, tighten the set screws, close the lid of my MBP (already logged into Yosemite & linked with MagicMouse [mM]) and stick the MBP into the dock... everything comes up on the cD and I can go about my day. At this point, I can plug the USB hub into the back of the cD and the system sees the hub & all peripherals listed just fine.
    SCENARIO 2 - Install cD powercon, TBolt connector, USB3 hub, USB keyboard into the dock, close the lid on MBP (again, logged in), insert into dock... cD comes up, looks great for about 15 seconds then goes completely blank. No response from key presses, mouse clicks, threats with a hammer, etc. Then, of course, I have to yank the MBP out of the dock, which hard-disconnects the external drives (backup and TimeMachine... good for them, right?) and causes the MBP to flake, thinking it's still in the dock, then not, then logging me out & requiring a password (not a big deal- I deal with copyrighted stuff, so passwords aren't the issue).
    ***EVEN IF I DO NOT PLUG THE USB3 HUB INTO THE HENGE DOCK, THE cD STILL GOES BLANK AFTER 15 SEC... IT ONLY SEEMS TO LIKE THE TBOLT AND POWER... NO OTHER PERIPHERALS (fw800, USB, etc)***
    It seems like the MBP freaks out when the lid is closed and there are USB/FW peripherals plugged in while using a secondary TBolt display as the main output... seems stupid... if I need a closed-lid dock, the MBP shouldn't care what I have plugged in while the lid is closed. I had the same issues with Mountain Lion & Mavericks and now it's being repeated with Yosemite.
    My goal in this exercise is simply to free up the USB jacks on the back of the cD for two reasons - #1) from time to time, I have extra things to plug in and I don't want some massive USB 1x8 hub on my desk... looks stupid; #2) the bottleneck created by plugging in the hub to the back of the cD (another hub via TBolt) almost triples the time required to back up/copy files. I move files from system drive to backup drive & back VERY often due to the nature of my job... speeding up this process would greatly improve my efficiency in the matter. Why would Henge create a dock with all the jacks on it to allow someone to plug into a cD that won't frickin work with said cD? Every other dock I've found makes the user stick the MBP on a slanted, goofy-looking stand and have the lid open or something dumb like that... what I have is the setup I need... just need the USB stuff to work while lid is closed and everything from powercon & cD to USB3 hubs will work without making the cD freak out.
    Any ideas out there?

    Have now taken the 27" display into the repair shop and after 24 hrs got the phone call - "appears to be nothing wrong with it, will check again on Tuesday and let you know".
    I can't seem to find anything on the net describing a similar problem. Everything is working fine right now with the Mac Pro connected to the older 20 inch Cinema Display. In fact, everything seems to be working about a second faster.
    I was told by the local retailer that Apple no longer makes the 27 inch LED Cinema Display product and the new display, the "Thunderbolt" will not work with my 13 month old Mac Pro.
    ***??? In 20 years of owning Mac equipment, this is my first major "uh-oh".

Maybe you are looking for

  • How to delete a view in a viewset

    Hi, I had gone through the PDF given for Creating a Web Dynpro Application Accessing ABAP Functions. In that there is a viewset by name FlightListViewSet and 2 views And  the layout of viewset is T Layout .It should have Top,Left,Right. He named cell

  • 74ls153 -- trying to make a full adder

    I am trying to build a full adder using a 74ls153 chip. The chip was part of the specification. No luck so far. Any ideas? Randy [email protected] Attachments: Project3.ms13 ‏110 KB

  • XML report display in TestStand 4.0

    I've just migrated from TS 3.5 to 4.0.  4.0 is more user friendly than 3.5.  But I can't display my XML report after running sequences.  If I choose other report format, everything is fine; if XML is set, the report file would be generated but I can'

  • Make all open finder windows come to the front?

    Things that used to be so simple on the Mac are now so complicated. I have a bunch of finder windows open. Most of them are hidden behind other application windows, like my browser. I used to be able to click anywhere on the desktop to make all windo

  • Problem excepting within Vista

    I have migrated over to a new PC with Vista Ultimate 64bit installed, but it w'nt work with Flash player 9 or Acrobat reader Sorry for my bad English normaly I prefer Dutch Patrick van der Schrier (21 maart 2007)