Mountain Lion seems to have broken my multiple-monitor setup.

I have a 6-monitor setup, which has been working fine for the last 5 OSX updates... but now, three primary problerms:
- one of the screens is half-dead. I can mouse to it and the curor appears and moves around, but the screen is otherwise black and nothing will appear on it. I can't even set a background on it.
- my primary desktop space which is 2560x1600 keeps reverting to 1024x768 when I reboot which of course re-messes up the desktop layout.
- in fact, all of the configuration changes with respect to displays get lost with reboot... resolution and screen locations with respect to each other... Agh.
I'm sincerely hoping many others are experiencing the same thing, so I'll know Apple is working on correcting the issue.
.. anyone else?

Well, I'll reply to my own message in case anyone winds up here and wonders what to do.  Here's what I did... I reverted back to Lion, restored perfectly from Time Machine to where my machine was a few days ago and I'm back in business.
This is the first time ever I've had to revert a Mac OS upgrade, but the simple fact seems to be this is a bug and perhaps an update or two from now I'll try again... once someone else has confirmed multiple video cards are properly supported.
Needless to say, my machine is completely factory parts... the cards came purchased with the computer and I haven't modified anything.  None of this wrong driver, IRQ conflict, DMA channel issues and whatever else I thought I left behind when I switched from PC to Mac.
First time for everything, but perhaps Apple missed a QA cycle or two before pulling the trigger on this one.

Similar Messages

  • Ability to rename folders in Launchpad in Mountain Lion Seems to be broken. Is there a fix?

    Ability to rename folders in Launchpad in Mountain Lion Seems to be broken. Is there a fix?

    YouWinSomeYouLoseSome wrote:
    you still cannot rename folders.
    I can... you cannot. I'm not sure why. It will not work on an app icon.
    Are you sure you're doing this on a Folder?
    Perhaps it is a function of Finder. You can try deleting Finder prefs to default.
    Go to your Finder "Go" menu hold the option key and choose Library. Then go to Preferences folder and trash these files:
    com.apple.finder.plist
    com.apple.sidebarlists.plist
    Then, restart, or log out and in again.
    (You will have to reset a few finder prefs the way you like them.) 

  • Lion seems to have broken aspects of AppleScript code. Any suggestions for the following?

    The following script works fine on a Snow Leopard machine, but hangs or throws an error during save out on a Lion machine:
    =====================
    global thumbDrive
    global thumbDrive2
    global hardDrive
    global thePath
    global filePath
    try
      -- The following PowerMate tell informs the powermate device "One button" to set it's light to a slow pulse rate.
              tell application "PowerMate"
      pop light state
                        set aDevice to first device
                        tell aDevice
      make light state with properties ¬
                                            {state type:pulsed, pulse rate:0.2, name:"Alert x3"}
                        end tell
              end tell
    on error
              display dialog "Powermate device not detected." buttons {"Ok"} default button 1
    end try
    tell application "Finder"
      delay 2 -- This delay allows the thumbdrive or volume to fully mount before trying to pull data from it.
              set hardDrive to (get name of startup disk) as alias -- Sets hardDrive to disk 0 for error checking
              set thumbDrive to (get name of disk 1) as alias -- This sets an alias of the name of disk 1 for error checking
              set thumbDrive2 to (get name of disk 1) -- This set the actual path of disk 1
              if thumbDrive is equal to hardDrive then -- Checks to see if disk 1 is equal to disk 0 if so we move on to setting thumbDrive to disk 2 in the following try
                        try
                                  set thumbDrive to (get name of disk 2) as alias -- check for global variables
                                  set thumbDrive2 to (get name of disk 2)
                        on error
                                  set thumbDrive to (get name of startup disk) as alias
                        end try
              end if
              set filePath to POSIX path of thumbDrive2 -- Sets the posix path of the thumbdrive
    end tell
      -- The following sets and formats the file name to the date and time.
    on recordMovie() -- This is a function for actually recording the video and saving it
              with timeout of 86400 seconds -- sets the timeout of the session to 24 hours
      repeat
                                  set buttonAnswer to "Ok"
                                  tell application "Finder"
                                            set theDate to current date
                                            set y to the year of theDate
                                            set m to month of theDate
                                            set d to day of theDate
                                            set h to hours of theDate
                                            set mi to minutes of theDate
                                            set s to seconds of theDate
                                            set thePath to filePath & "/" & y & "-" & m & "-" & d & "_" & h & "-" & mi & "-" & s & ".mov"
                                  end tell
                                  tell application "QuickTime Player"
      activate
      new movie recording
      present document 1 -- Sets the recording to full screen mode, hiding everything else on screen
                                            beep
                                            display dialog "Press button when you are ready to record" buttons {"RECORD"} default button 1
                                            try
                                                      tell application "PowerMate" -- Tells the powermate device to pulse quickly once we start recording
      pop light state
                                                                set aDevice to first device
                                                                tell aDevice
      make light state with properties ¬
                                                                                    {state type:pulsed, pulse rate:0.4, name:"Alert x3"}
                                                                end tell
                                                      end tell
                                            on error
                                                      display dialog "Powermate device not detected." buttons {"Ok"} default button 1
                                            end try
      start document 1 -- starts recording
                                            set answer to the button returned of (display dialog "Press button to stop recording." buttons {"STOP"} default button 1)
      stop document 1
                                            repeat
                                                           try
                save document 1 in thePath
                                                                          exit repeat
                                                           on error
                                                                          display dialog "There was an error saving your recording to your thumb Drive. Plug your thumbdrive back in and click ok" buttons {"Ok", "Cancel Do not save"}
                                                                          set buttonAnswer to the button returned of the result
                                                                          if buttonAnswer is equal to "Cancel Do not save" then exit repeat -- exit the save repeat
                                                                          delay 3
                                                           end try
                                            end repeat
      close document 1
                                            quit
                                  end tell
                                  if buttonAnswer is equal to "Cancel Do not save" then exit repeat -- exit the function repeat
                                  tell application "Finder"
      activate
                                            display dialog "Press Ok to record again, or eject to eject your thumb drive." buttons {"Ok", "Eject"}
                                            set buttonAnswer2 to the button returned of the result
                                            if buttonAnswer2 is equal to "Eject" then exit repeat
                                  end tell
                        end repeat
                             tell application "Finder"
                eject thumbDrive
                delay 5
           end tell
          end timeout
    end recordMovie
    if hardDrive is equal to thumbDrive then -- This script will run whether a volume is inserted or ejected this if statement kills the script if it was an ejection.
    else
              try
                             tell application "System Events" -- The following checks to see if there is more than 500MB of space on the drive, if less than it prompts the user.
               set freeSpace to round ((free space of disk thumbDrive2) / 1024 / 1024 / 1024)
               set spaceNeeded to "0.5"
           end tell
              end try
              if freeSpace is less than spaceNeeded then
                        tell application "Finder"
      activate
                                  display dialog "You may not have enough free space, you should have atleast 500 MB availble for an hour long recording." buttons {"Eject Disk", "Continue Anyway"}
                                  set buttonContinue to the button returned of the result
                        end tell
                        if buttonContinue is "Eject Disk" then
                                  tell application "Finder"
      eject thumbDrive
                                            delay 5
                                  end tell
                        else
      recordMovie() -- calls the record movie function if the user chooses continue instead of eject
                        end if
              else
      recordMovie() -- calls the record movie function if there is more than 500MB on the volume
              end if
    end if
    try
              tell application "PowerMate" -- This tells the powermate "One button" to turn off it's pulse and be dark.
      pop light state
                        set aDevice to first device
                        tell aDevice
      make light state with properties ¬
                                            {state type:steady, brightness:0.0, name:"Alert x3"}
                        end tell
              end tell
    on error
              display dialog "Powermate device not detected." buttons {"Ok"} default button 1
    end try
    ======================
    In Console messages I was finding the following along with error -1708:
    .sdef warning for argument 'FileType' of command 'save' in suite 'Standard Suite': 'saveable file format' is not a valid type name.
    So, I thought I'd change the save line as follows:
         save document 1 as "QuickTime movie" in thePath
    While this didn't solve the problem, it threw an error and allowed the script to continue with the error dialog rather than hang.
    Interestingly, though, the Snow Leopard machine seems to register the same error and yet still manages to save the file correctly.
    Any thoughts?
    Cheers,
    Anthony

    Uninstall Parallels using the uninstaller that came with Parallels. Remove all third-party peripherals. Then restart the computer.

  • Installing Dreamweaver CS6 on Lion seems to have broken video playback

    Last night I was able to play the videos on the Adobe website (for example, CS6 & Creative Cloud Feature Tour for Web) on both Safari and Chrome. After downloading and installing Dreamweaver CS6, I can't play those videos. The page loads but the display box remains blacked out. I verified that I was still able to play the videos on another computer on the same LAN. I also confirmed that I can still play videos at YouTube. It just seems to be Adobe's website that's broken.
    My computer is a Mac Pro running OS X Lion. I installed CS6 using an administrator account and rebooted after the install complete.
    Anyone else run into a similar issue?

    Thank you for trying the install. It may just be a coincidence that just before downloading Dreamweaver, I could view the videos and after installing, I couldn't. Those things happen, unfortunately.
    I found some similar issues in other Adobe Forums. I went into the Flash settings, enabled the option for third parties to save Flash components and added tv.adobe.com and images.tv.adobe.com as trusted sites. Now I'm able to view the videos again.

  • My MacBook Pro (Mountain Lion) seems to be making copies of files in my download folder.  Why is this happening and how do I stop it?

    My MacBookPro with Mountain Lion seems to be making copies of files in my download folder.  Why is this happening and how do I stop it?

    This issue has nothing to do with Time Machine or local snaphsots. No built-in feature of OS X does what you describe.
    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It won’t solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    Third-party system modifications are a common cause of usability problems. By a “system modification,” I mean software that affects the operation of other software — potentially for the worse. The following procedure will help identify which such modifications you've installed. Don’t be alarmed by the complexity of these instructions — they’re easy to carry out and won’t change anything on your Mac. 
    These steps are to be taken while booted in “normal” mode, not in safe mode. If you’re now running in safe mode, reboot as usual before continuing. 
    Below are instructions to enter some UNIX shell commands. The commands are harmless, but they must be entered exactly as given in order to work. If you have doubts about the safety of the procedure suggested here, search this site for other discussions in which it’s been followed without any report of ill effects. 
    Some of the commands will line-wrap or scroll in your browser, but each one is really just a single line, all of which must be selected. You can accomplish this easily by triple-clicking anywhere in the line. The whole line will highlight, and you can then either copy or drag it. The headings “Step 1” and so on are not part of the commands. 
    Note: If you have more than one user account, Step 2 must be taken as an administrator. Ordinarily that would be the user created automatically when you booted the system for the first time. The other steps should be taken as the user who has the problem, if different. Most personal Macs have only one user, and in that case this paragraph doesn’t apply. 
    Launch the Terminal application in any of the following ways: 
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.) 
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens. 
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid. 
    When you launch Terminal, a text window will open with a line already in it, ending either in a dollar sign (“$”) or a percent sign (“%”). If you get the percent sign, enter “sh” and press return. You should then get a new line ending in a dollar sign. 
    Step 1 
    Triple-click the line of text below to select it:
    kextstat -kl | awk '!/com\.apple/{printf "%s %s\n", $6, $7}' 
    Copy (command-C) the selected text to the Clipboard. Then click anywhere in the Terminal window and paste (command-V). Post the lines of output (if any) that appear below what you just entered. You can do that by copy-and-paste as well. Omit the final line ending in “$”. No typing is involved in this step.
    Step 2 
    Repeat with this line:
    sudo launchctl list | sed 1d | awk '!/0x|com\.(apple|openssh|vix)|edu\.mit|org\.(amavis|apache|cups|isc|ntp|postfix|x)/{print $3}' 
    This time, you'll be prompted for your login password, which you do have to type. It won't be displayed when you type it. You may get a one-time warning not to screw up. You don't need to post the warning. 
    Note: If you don’t have a login password, you’ll need to set one before taking this step. If that’s not possible, skip to the next step. 
    Step 3
    launchctl list | sed 1d | awk '!/0x|com\.apple|edu\.mit|org\.(x|openbsd)/{print $3}' 
    Step 4
    ls -1A /e*/mach* {,/}L*/{Ad,Compon,Ex,Fram,In,Keyb,La,Mail/Bu,P*P,Priv,Qu,Scripti,Servi,Spo,Sta}* L*/Fonts 2> /dev/null  
    Important: If you formerly synchronized with a MobileMe account, your me.com email address may appear in the output of the above command. If so, anonymize it before posting. 
    Step 5
    osascript -e 'tell application "System Events" to get name of every login item' 2> /dev/null 
    Remember, steps 1-5 are all copy-and-paste — no typing, except your password. Also remember to post the output. 
    You can then quit Terminal.

  • HT4848 I'm trying to restore my MacBook Air but it tells me I need to purchase OS X mountain lion which I have but it says I haven't and I obviously can't put a disc in because MacBook Airs don't take discs. What do I do?

    I'm trying to restore my MacBook Air but it tells me I need to purchase OS X mountain lion which I have but it says I haven't and I obviously can't put a disc in because MacBook Airs don't take discs. What do I do?

    Thank you Terence for your help.  I was able to restore my backup from my time machine ext drive to a new 1tb seagate ext drive.  so i felt sort of ok.  but yesterday that older ext drive i used for time machine wouldn't open! i called applecare and they trouble shooted with me and said it's probably a goner and data is probably corrupted.  it's only a few years old and i'm very careful with it.  my husband accidentally dropped my new drive last night -- i know, unbelievable, i was SO upset, poor guy -- but I'm so stressed with all of this.  i have 10 years of photos and videos.  so now i only have the one newer drive with a backup.  i have to buy another one today to backup again so i at least have two backups.  i tried to delete a ton of files last night to free up the 30 gb of space i need to get my full library back on my mac. i have 90gb free and deleted 7 years worth of photos i had on picasa that were in my "pictures" folder and also a ton or random photos and videos i had in that same pictures folder and thought that would give me the 30 gb but it hardly freed up any space at all!  do you know why that is?  all of this stuff is really a pain and really stressful.  thank god i did have a backup in the first place but now i am panicked the one i have left will somehow crash.  especially after my husband dropped the drive lastnight! it didn't fall far and fell onto a wood floor and seems fine, but after my older ext drive crashed yesterday -- and i lost my entire iphoto library a fewweeks ago off my mac -- i feel cursed.  any answers you have would be great. thank you.

  • Good Morning! As a feedback, I still prefer the physical purchase instead of downloads. It suppose to be easier and faster and always end up being slower, annoying and frustrating. I just want to download the software Mountain Lion that I have purchased

    Good Morning! As a feedback, I still prefer the physical purchase instead of downloads. It suppose to be easier and faster and always end up being slower, annoying and frustrating. I just want to download the software Mountain Lion that I have purchased. Redeem is a pain. How do I redeem my purchase without ERROR or COULD NOT RECOGNISE , the code that you have sent to me!!!

    It appears PowerMacs (your profile) aren't supported.
    Check that your computer is compatible with Mountain Lion/Mavericks.
    To check the model number hold down the option/alt key, go to the Apple menu and select System Information.
    iMac (Mid 2007 or newer) model number 7,1 or higher
    MacBook (Late 2008 Aluminum, or Early 2009 or newer) model number 5,1 or higher
    MacBook Pro (Mid/Late 2007 or newer) model number 3,1 or higher
    MacBook Air (Late 2008 or newer) model number 2,1 or higher
    Mac mini (Early 2009 or newer) model number 3,1 or higher
    Mac Pro (Early 2008 or newer) model number 3,1 or higher
    Xserve (Early 2009) model number 3,1 or higher
    Your Mac needs:
    OS X v10.6.8 or OS X Lion already installed
    2 GB or more of memory (More is better - 4 GB minimum seems to be the consensus)
    8 GB or more of available space

  • Numbers seems to have broken

    I was using Numbers this morning -- no major problem except that it didn't properly recover from page view (leaving junk on the right of the table).
    This afternoon it seems to have broken. ALL my files, including the one from this morning have mostly blank cells. The contents seem to be there - if I click a cell the contents show up in the formula bar (or whatever it's called). And if I double-click to edit the contents reappear. But then go away again as soon as I finish with the cell.
    Some (but not all) of the header cells in Gray Headers style show up, and some are simply a pair of faint white squares at the end of the text string. Check boxes show up OK.
    Oh, and if I double click on a date it shows up for editing with the year as 00002010.
    This is very distressing. I have a lot of data locked up in Numbers and as of now, all is unusable.
    What's going on?

    Thanks for the help. Actually I should have mentioned that I tried that (I've been using Macs since my Mac IIfx in 1990 so I picked up a few tricks) as well as restarting. The problem remains.
    In the meantime I've tried opening my files (remotely) with another machine. No problems. It's local.
    Next I'll try reinstalling Numbers, if I can find the disks
    Richard

  • Update seems to have broken openbox theming.

    I updated about 2 hours ago and it seems to have broken a lot of my window manager.
    I use openbox as a standalone window manager and have had no issues so far.
    I update every few days and today caused the resizing-freeze issue, so I downgraded the suggested packages which fixed that.
    However I have another issue with theming.
    Programs such as firefox, thunderbird, thunar etc... all have the correct theme. However I use some gnome programs such as rhythmbox and nautilus and neither of these are themeing correctly as well as terminator and all appear to have the default gnome theme.
    I use obconf and lxappearence for themeing normally, however these seem to have no effect.
    I've done a fair amount of searching and googling and am now very tired and am going to bed.
    If anyone has any advice it would be much appreciated. If I am being stupid in my sleep deprived state please feel free to point it out XD.

    Hi all. I'm also running Openbox and have done the following so far;
    1. Installed gnome-themes-standard. Created a new folder ~/.config/gtk-3.0/; Created the file in the folder "settings.ini" with the following code;
    [Settings]
    gtk-application-prefer-dark-theme = true
    gtk-theme-name = Adwaita
    gtk-fallback-icon-theme = gnome
    Thanks to the info on the thread here
    2.  Checked out the post here. Downloaded the tar of Adwaita from this.page and did the usual "makepkg -s" magic and rebooted.
    What I'm now getting is nm-applet in tint2 with the dark theme of Adwaita which is great but doesn't really match my dark theme axiomd but it's better than before.
    What I'm wondering is how to manage this in lxappearance, change font etc?? If I select the theme Adwaita it's a light theme? Having looked in the directory there is both gtk-2.0 (i think this is the light one?) and gtk-3.0.
    I've also noticed that it is affecting rhythmbox; slow to load and the status icon setting in the plugins is missing, so you close the GUI and find the app quits rather than the previous behaviour where it would close but the notification icon would still run in tint2 enabling one click control access to the GUI again.
    I appreciate this is obviously a new implementation and will take a bit of time to learn but any tips from those in the know would be great!? TIA.
    Last edited by phrac (2011-05-01 11:10:09)

  • HT3775 I am using OS X Mountain Lion and I have this .avi file but not able to read. What is missing in my setup and what other file do I need to download to enable me to read?  I can read mp4 files though.

    I am using OS X Mountain Lion and I have this .avi file but not able to read. What is missing in my setup and what other file do I need to download to enable me to read?  I can read mp4 files though.

    Here is a link: https://itunes.apple.com/en/app/mplayerx/id421131143?mt=12
    I agree that VLC is also a good choice but MPlayerX is more user friendly.

  • HT1338 Dear  MAC-Friends.  PLEASE HELP ME.  I am extremely afraid to do something wrong - what will be a failure so I loose all the photos I had in my iphoto library before installing the Mountain Lion.  I have just installed the MOUNTAIN-LION and now I c

    Dear  MAC-Friends.
    PLEASE HELP ME.
    I am extremely afraid to do something wrong - what will be a failure so I loose all the photos I had in my iphoto library before installing the Mountain Lion.
    I have just installed the MOUNTAIN-LION and now I can´t use my Iphoto-programme without answering the following question:
    Choose another Library ?  ( But I only want the choose the photos which one was in the old iPhoto-Library and not the other photos on the MAC-computer ? ).
    and the other possibility is:
    Create a new Libray ! Which iPhoto-library  ?
    And why create a new and to risq to loose the old photos.
    PLEASE HELP ME.
    Kind regards  FINN GRABOWSKI

    Ok. Let me first ask you, do you have any backups of your files - for example, do you use Time Machine or any other backup system?
    Next, quit iPhoto. In the Finder, go to your Pictures folder. Is there a file there called iPhoto.Library? How large is it? (If it doesn't show the size, click once on it, click cmd-I to see the information). If it's a healthy size (ie, several GB), then that should be your library, and you can double-click it to launch iPhoto. (The application will remember where your library is next time, you can just launch iPhoto normally).
    If that's not the right file, check your Trash. Is there anything in there?
    Matt

  • HT1338 Dear all, I have just bought a MacBook pro with osx lion on 25thast month. I wanted to know if I can use the methods described above to update to osx mountain lion or I have to buy osx mountain lion from the app store?

    Dear all, I have just bought a MacBook pro with osx lion on 25th last month. I wanted to know if I can use the methods described above to update to osx mountain lion or I have to buy osx mountain lion from the app store?

    Here are the rules to qualify for the free upgrade:
    http://www.apple.com/osx/uptodate/
    (has to be purchased from Apple or authorized reseller).

  • By mistake i ereased my mackbook pro's disk. and when is restared it recovery page opened. and i did not purchase the osx mountain lion. do i have any other way to recory it without purchasing the copy of osx. can i do it using a usb having image file of

    by mistake i ereased my mackbook pro's disk. and when is restared it recovery page opened. and i did not purchase the osx mountain lion. do i have any other way to recory it without purchasing the copy of osx. ?can i do it using a usb having image file of mountain lion?

    Did you buy your machine second-hand? That's really the only way you would have to purchase OS X 10.8.x from the App Store... but, yes, if you have a USB thumb drive with a bootable installer (such as made with Lion DiskMaker) you can boot from that and reinstall OS X.
    Clinton

  • I have a macbook pro 10.6.8 and am having trouble downloading Mountain Lion. I have purchased it but it won't download. Can anyone tell me why?

    I have a macbook pro 10.6.8 and am having trouble downloading Mountain Lion. I have purchased it but it won't download. Can anyone tell me why?

    No, I don't know about that kind of software. It isn't Pages anyway. You need somekind of database.

  • I upgraded to mountain lion and now have nothing in itunes, why

    i upgraded to mountain lion and now have nothing in itunes, why

    About TM "Backup Drive is Full"
    Alert TM only deletes older files if they have been deleted from the source and when TM needs space on the backup drive for a new incremental backup. Time Machine "thins" it's backups; hourly backups over 24 hours old, except the first of the day; those "daily" backups over 30 days old, except the first of the week. The weeklies are kept as long as there's room.
    So, how long a backup file remains depends on how long it was on your Mac before being deleted, assuming you do at least one backup per day. If it was there for at least 24 hours, it will be kept for at least a month. If it was there for at least a week, it will be kept as long as there's room.
    Note, that on a Time Capsule the sparsebundle grows in size as needed, but doesn't shrink. Thus, from the user's view of the TC it appears that no space has been freed, although there may be space in the sparsebundle.
    Once TM has found it cannot free up enough space for a new backup it reports the disk is full. You can either erase the backup drive and start your backups anew or replace the drive with a larger drive.

Maybe you are looking for