Ssd NCQ support for new iMac

Will there ever be firmware with NCQ support for 256 ssd shipped with new iMacs? My ssd ("TS" marked, most likely Toshiba) does not have one, and that's a bit outdated don't you think.

Kappy wrote:
Although with a separate SSD and HDD you have to perform the work yourself you do gain some flexibility in your set up. However, should the urge arise there are numerous tutorial around that explain how to turn the SSD and HDD into a Fusion Drive using the same mechanism that Apple uses.
And the converse is also possible and easy: you can turn the fusion drive back into two separate drives.
If possible, I think you should put up the extra $250 for the Fusion Drive - especially considering this is not an option later on. With such a new machine, the internal hard drive will be the slowest part. 
Still, even with a Fusion Drive, an external is strongly recommended. You should install FCP X in your regular system drive (fusion or not), and have your projects and events in an external. 
Your proposed solution is adequate, depending only on available space. You only need your working projects and events to fit in the ssd. As long as you move them elsewhere when finished, to make room for the new ones, you'll be more than fine even with a smallish usb3 ssd.

Similar Messages

  • BIOS SUPPORT FOR NEW CPUS!!!!

      hello
    new post , i just got this board (6547 v1.0) board with a celeron 1.7 (clocked at 125mhz ) 2.14ghz and is total stable.
    v1.8 bios support up to a 1.8 cel, are they going to make a update to support a 2hz cel, OR  have they droped support for it.
    and where can you get beta bios for this and other board (msi-development site).... ?(  ;(
    MAKE A VOTE (HOW OLD IS YOU BOARD AND HAVE THEY DROPED SUPPORT FOR NEW CPU,S FOR YOU BOARD-POST?

    assuming its a 645 ultra by the bios numberlink

  • How much RAM should I install for new iMAC ?

    Hi,
    How much RAM should I install for new iMAC* running Logic Studio? It comes with 4 GB - is that enough? (can you run in 64 bit mode..)
    *(The 21.5" 3.06GHz Intel Core 2 Duo)
    Also, I was planning to get the stock 1 TB Hard Drive & save projects to an external drive.
    Does that sound reasonable?
    Any other recommendations?
    Thanks,
    Wm Heart

    Unless you plan on running huge projects with enormous sampled instruments, 4 GB will do (very) fine. And your disk plan is sound. Choose an external Firewire drive, rather than USB. FW is easier on the CPU and can handle more tracks than USB.
    What you should get, instead of more memory, is a (24 bit) external audio interface, if you want to do serious recording and playback.
    What type of audio interface you'ld need, depends on what you want to do with it and of course your budget. From decent to brilliant costs from roughly 100 to several 1,000's of europounddollars. Avoid the 16 bit ones, they're worse than the inbuilt audio chip of your iMac. You can recognize 16 bit Audio Interfaces (in webshops) by their prize (often under 100€£$) and the lack of mention of their bitrate.
    HTH
    Regards, Erik.

  • Support for new Nvidia Quadro gpu?

    When support for new Nvidia Quadro gpu? For example Nvida Quadro K2200 and K4200
    Thk

    What do you mean when you say "support"? All of After Effects OpenGL features already work on those cards.
    The only thing that isn't supported on those cards is GPU acceleration of the ray-traced 3D renderer, which is an obsolete and almost entirely irrelevant feature. No more GPUs will ever be added to the list of cards supported for that feature.
    Details:
    GPU (CUDA, OpenGL) features in After Effects

  • How to add support for new file type.

    Using the ESDK, I would like to add support for new file type ( a new extension). this new extension will function like any other non visual code editor but will have specific syntax highlighting, code folding and explorer.
    I am trying ot figure out if I need to create a new editor or use existing JDeveloper code editor and add support for new file type. Does anyone have a high level outline on how to do this using the ESDK that is specifically targeted at adding new file type support for a text based code editor?
    I have looked at the Samples and keep going in multipe directions. It would be cool if there was an example that was how add syntax higlighting for new file type.
    Thank you

    Brian, thank you. I looked at this extension and it answered a lot of questions for me. I was going in the right direction but needed a little help and bost of confidence, this is just what I needed. I created the LanguageSupport, LanguageModel, Addin, Node and TextDocument that are specific to the new file type. I was getting hung up on how to hook this into the JDevelpoer editor. I keep thinking I have to create a custom editor but it looks like I don't have to and it looks like I can associate this file support with the editor framwork, for version 10.1.3.2, with the following in the Addin Initilize() method.
    Recognizer.mapExtensionToClass(MY_EXTENSION, MyNode.class);
    CodeEditor.registerNodeType(MyNode.class, MY_EXTENSION);
    LanguageModule.registerModuleForFileType(new MyLanguageModule(), MY_EXTENSION);
    I have done this but still not able to recognize the new file type.
    At this point, I just want to be able to recognize the new file and display it's associated icon or display a messare to the message log. I put a System.out.println("test") in the Initilize() method of my addin. then I registered MyAddin in the extension.xml. JDeveloper sees this new extension and it is loaded but I have not been able to show the test message or display the new icon when I open the new file type.
    extension.xml
    <?xml version="1.0" encoding="windows-1252" ?>
    <extension xmlns="http://jcp.org/jsr/198/extension-manifest"
               id="teisaacs.jdev.myext.MyAddin" version="1.0.0" esdk-version="1.0"
               rsbundle-class="teisaacs.jdev.myext.resources.MyResBundle">
        <name rskey="EXTENSION_NAME">My Code Editor</name>
        <owner rskey="EXTENSION_OWNER">Me</owner>
        <dependencies>
            <import version="10.1.3">oracle.jdeveloper</import>
        </dependencies>
        <hooks>
            <jdeveloper-hook>
                <addins>
                    <addin>teisaacs.jdev.myext.MyEditorAddin</addin>
                </addins>
            </jdeveloper-hook>
            <feature-hook>
                <description>My Code Editor</description>
                <optional>true</optional>
            </feature-hook>
            <document-hook>
                <documents>
                    <by-suffix document-class="teisaacs.jdev.myext.model.MySourceDocument">
                        <suffix>my</suffix>
                        <suffix>MY</suffix>
                    </by-suffix>
                </documents>
            </document-hook>
            <editor-hook>
                <editors>
                    <editor editor-class="teisaacs.jdev.myext.editor.MyEditor">
                        <name rskey="EXTENSION_NAME">My Editor</name>
                    </editor>
                    <mappings>
                        <mapping document-class='teisaacs.jdev.myext.model.MySourceDocument">         
                            <open-with editor-class="teisaacs.jdev.myrext.editor.MyEditor"
                                       preferred="true"/>
                            <open-with editor-class="javax.ide.editor.CodeEditor"/>
                        </mapping>
                    </mappings>
                </editors>
            </editor-hook>
        </hooks>
    </extension>
    public class MyAddin implements Addin {
        public static final String MY_EXTENSION = "my";
        public void initialize() {
            System.out.println("MyEditor Constructor");
            new MyLanguageModule();
            Recognizer.mapExtensionToClass(MY_EXTENSION, MyNode.class);
            CodeEditor.registerNodeType(MyNode.class, MY_EXTENSION);
            LanguageModule.registerModuleForFileType(new MyLanguageModule(), MY_EXTENSION);
    }I have added and removed the editor hook along with many other modificaitons to the extension.xml but still not recognizing the new file extension.
    Todd

  • Displayport video input support for new 27" iMac

    Does anyone know if the new 27" iMac just released today has support for displayport video input like the previous generation 27" iMac does? Please tell me you haven't taken this awesome feature away in the midst of the change to Thunderbolt ports etc! I'm asking because in the previous gen iMac specs it clearly states that displayport video input is supported but it doesn't mention it in the tech specs section of the new iMac.
    Could someone from Apple please let me know? Thanks.
    Mike

    I am tempted to go out and buy a new HDMI to mini-displayport adapter and connect it to a new iMac at the Apple store to see for myself........
    I'd hold up on that.  I don't see a mini displayport on the new iMac.  Looks like it goes through the Thunderbolt interface.  Scroll down to connectors.
    http://www.apple.com/imac/specs.html
    Captfred

  • Best Practices for new iMac

    I posted a few days ago re failing HDD on mid-2007 iMac. Long story short, took it into Apple store, Genius worked on it for 45 mins before decreeing it in need of new HDD. After considering the expenses of adding memory, new drive, hardware and installation costs, I got a brand new iMac entry level (21.5" screen,
    2.7 GHz Intel Core i5, 8 GB 1600 MHz DDR3 memory, 1TB HDD running Mavericks). Also got a Superdrive. I am not needing to migrate anything from the old iMac.
    I was surprised that a physical disc for the OS was not included. So I am looking for any Best Practices for setting up this iMac, specifically in the area of backup and recovery. Do I need to make a boot DVD? Would that be in addition to making a Time Machine full backup (using external G-drive)? I have searched this community and the Help topics on Apple Support and have not found any "checklist" of recommended actions. I realize the value of everyone's time, so any feedback is very appreciated.

    OS X has not been officially issued on physical media since OS X 10.6 (arguably 10.7 was issued on some USB drives, but this was a non-standard approach for purchasing and installing it).
    To reinstall the OS, your system comes with a recovery partition that can be booted to by holding the Command-R keys immediately after hearing the boot chimes sound. This partition boots to the OS X tools window, where you can select options to restore from backup or reinstall the OS. If you choose the option to reinstall, then the OS installation files will be downloaded from Apple's servers.
    If for some reason your entire hard drive is damaged and even the recovery partition is not accessible, then your system supports the ability to use Internet Recovery, which is the same thing except instead of accessing the recovery boot drive from your hard drive, the system will download it as a disk image (again from Apple's servers) and then boot from that image.
    Both of these options will require you have broadband internet access, as you will ultimately need to download several gigabytes of installation data to proceed with the reinstallation.
    There are some options available for creating your own boot and installation DVD or external hard drive, but for most intents and purposes this is not necessary.
    The only "checklist" option I would recommend for anyone with a new Mac system, is to get a 1TB external drive (or a drive that is at least as big as your internal boot drive) and set it up as a Time Machine backup. This will ensure you have a fully restorable backup of your entire system, which you can access via the recovery partition for restoring if needed, or for migrating data to a fresh OS installation.

  • Use older 2008 iMac as second monitor for new iMac

    Hi all,
    I have one of these older machines that has no real purpose
      http://support.apple.com/kb/sp485
    but would serve me very well as a second monitor for my brand spanking new iMac.
    The specs seem to note that there is a video output - but I'm not seeing anything about video IN.
    Is it possible to use this older iMac as a monitor?

    that looks cool, and there is a free trial.
    I am not keen on using the WiFi to do this - my old iMac has firewire but the new one doesn't.
    Besides using the ludicrously expensive Thunderbolt <-> Firewire 800 convertor
    http://store.apple.com/uk/product/MD464ZM/A/thunderbolt-to-firewire-adapter
    is there any other way to create a wired connection between these devices? I'm not sure if there is such a thing as a USB <-> USB network connection.

  • Cable to connect old iMac as second screen for new iMac

    Just bought the new iMac 27" with thunderbolt port.  I understand I can hook up my old iMac (24" Mid 2007) and use it as second monitor.  My challenge is confirming that, and then figuring out which cable to use. 
    The manual says the old iMac has a "Mini-DVI video out port", making it sound like it won't accept input.  True?
    If it will indeed accept input, what cable do I use to connect the two Macs?
    If indeed I can't use the second iMac, I'll purchase a separate monitor.  What should I look for in monitors that will easily attach to the thunderbolt-only new iMac?  I won't be buying the Apple monitor.
    Thanks for any help in advance.
    Bob

    Most new monitors will support standard DVI and VGA connections. Some may support Mini-DVI ports. That's about all I can tell you.
    As for other factors I would look at monitor reviews - as many as you can - for the size and resolutions in which you are interested. There are a lot of products out there. You might try first doing a Google search to learn more about the meanings of the various specs the manufacturers provide so you might wade through the smoke and mirrors in search of meaningful information.

  • Help with router for new imac???!!!!!

    I just bumped my cable internet speed up to the max I can get. I did a speed test with and without my router hooked up and my old Linksys router is really slowing it down. I have a Linksys Wireless-G router with speed booster.
    My question is, Are there routers that are a lot faster??? And what one should I get to be compatible with my Imac. My Linksys one was a pain in the butt to hook up b/c Linksys does not have support for a Mac. Also, don't the setup discs they all come with only work on PCs????
    Help please !!!
    Thank you.

    The current 802.1N specification is significantly faster than your G and has better robustness and range besides. Except for Apple's Airport basestations, all routers are configured via web-browser. In fact, just last week I set up a base for a colleague (don't remember offhand what brand) and all the so-called installation disk had on it was Adobe Acrobat and PDF files of the printed Quick Start Guide and manual that came in box.
    It really isn't that big a deal setting up a new basestation but if you really want ease of operation, you can't beat Apple's Airport = and I'm looking forward to getting my hands on a TimeCapsule.

  • ¿I need antivirus for new iMac (2012)?

    It's my first Mac. I want to say if antivirus is necessary in the 2012 new iMac (21'5 ").
    If I need one, tell me about the best antivirus and where I download it, please.
    Thanx!

    This comment applies to malicious software ("malware") that's installed unwittingly by the victim of a network attack. It does not apply to software, such as keystroke loggers, that may be installed deliberately by an attacker who has hands-on access to the victim's computer. That threat is in a different category, and there's no easy way to defend against it. If you have reason to suspect that you're the target of such an attack, you need expert help.
    All versions of OS X since 10.6.7 have been able to detect known Mac malware in downloaded files. The recognition database is automatically updated once a day; however, you shouldn't rely on it, because the attackers are always at least a day ahead of the defenders. In most cases, there’s no benefit from any other automated protection against malware. Starting with OS X 10.7.5, there has been another layer of built-in malware protection, designated "Gatekeeper" by Apple. By default, applications and Installer packages downloaded from the network will only run if they're digitally signed by a developer with a certificate issued by Apple. Software certified in this way hasn't actually been tested by Apple (unless it comes from the Mac App Store), but you can be sure that it hasn't been modified by anyone other than the developer. His identity is known, so he could be held legally responsible if he distributed malware. For most practical purposes, applications recognized by Gatekeeper as signed can be considered safe.
    Note, however, that there are some caveats concerning Gatekeeper:
    It can be disabled or overridden by the user.
    It can be bypassed by some third-party networking software, such as BitTorrent clients and Java applets (see below.)
    It only applies to software downloaded from the network. Software installed from a CD or other media is not checked.
    For more information about Gatekeeper, see this Apple Support article. That being said, the best defense against malware is your own intelligence. All known malware on the Internet that affects a fully-updated installation of OS X 10.6 or later takes the form of so-called "trojan horses," which can only have an effect if the victim is duped into running them. If you're smarter than the malware attacker thinks you are, you won't be duped. That means, primarily, that you never install software from an untrustworthy source. How do you know a source is untrustworthy?
    Any website that prompts you to install a “codec,” “plug-in,” or “certificate” that comes from that same site, or an unknown one, is untrustworthy.
    A web operator who tells you that you have a “virus,” or that anything else is wrong with your computer, or that you have won a prize in a contest you never entered, is trying to commit a crime with you as the victim. (Some reputable websites did legitimately warn users who were infected with the "DNSChanger" malware. That exception to this rule no longer applies.)
    “Cracked” copies of commercial software downloaded from a bittorrent are likely to be infected.
    Software with a corporate brand, such as Adobe Flash Player, must be downloaded directly from the developer’s website. No intermediary is acceptable.
    Java on the network (not to be confused with JavaScript, to which it's not related) is a weak point in the security of any operating system. If a Java web plugin is not installed, don't install it unless you really need it. If it is installed, you should disable it (not JavaScript) in your web browsers. Few websites have Java content nowadays, so you won’t be missing much. This setting is mandatory in OS X 10.5.8 or earlier, because Java in those obsolete versions has known security flaws that make it unsafe to use on the Internet. The flaws will never be fixed. Regardless of version, experience has shown that Java can never be fully trusted, even if no vulnerabilities are publicly known at the moment.
    Follow these guidelines, and you’ll be as safe from malware as you can reasonably be.
    Never install any commercial "anti-virus" or "Internet security" products for the Mac, as they all do more harm than good. If you need to be able to detect Windows malware in your files, use the free software ClamXav — nothing else.
    Why shouldn't you use commercial "anti-virus" products?
    Their design is predicated on the nonexistent threat that malware may be injected at any time, anywhere in the file system. Malware is downloaded from the network; it doesn't materialize from nowhere.
    In order to meet that nonexistent threat, the software duplicates low-level functions of the operating system, which is a waste of resources and a common cause of instability and poor performance.
    By modifying the system, the software itself may create weaknesses that could be exploited by malware attackers.
    ClamXav doesn't have these drawbacks. That doesn't mean it's entirely safe. Using it to delete or move email messages can corrupt the Mail database. Such messages must be deleted from within the Mail application. ClamXav is not needed for protection against OS X malware. It's useful only for detecting Windows malware. If you don't need to do that, avoid it. Windows malware can't harm you directly. Just don't pass it on to anyone else.
    It seems to be a common belief that the built-in Application Firewall acts as a barrier to infection, or prevents malware from functioning. It does neither. It blocks inbound connections to certain network services you're running, such as file sharing. It's disabled by default and you should leave it that way if you're behind a router on a private home or office network. Activate it only when you're on an untrusted network, like a public Wi-Fi hotspot, where you don't want to provide services. Disable any services you don't use.

  • X201 upgrade to ssd = pay $50 for new windows key!!! Shame

    A bit of a rant but hope some of you can learn from my mistake.
    x201 oem hd was going out so i replaced a new ssd, sounds simple right?
    Downloaded windows 7 home premium and entered the key on the bottom of my notebook and windows says the key is invalid.
    Chat with microsoft and they said it is an oem version of windows and therefor I needed to speak to lenovo
    Spoke to Lenovo, had a nice person on the phone, and they said:
    -"well the windows key you have is to a version that is like half of windows" 
    - I'm thinking to myself well there was no option to pay for only half of it when i brought it
    - lenovo rep "you need the recovery disks etc"
    - I explained x201 has no cd drive, and never did receive any disc
    - lenovo rep says "well you will need to buy a cdrom drive to usb, and also buy a recovery disc from us. If you had asked for a disc while you were in waranty we would have sent it free. But unfortunately now its $50. Sorry I'm sure we knew we didn't send the discs on purpose but thats what they have been doing"
    Really bad tactics from Lenevo here. 
    1. I now need to pay $50 for what I already paid for!
    2. Customer didn't really know they only got half of windows
    3. Customer paid for full windows?
    And to think I just brought the company some more thinkpad notebooks.. maybe its time to take my business elsewhere. Shame for such pettiness as they do build solid machines, even though I have had a bit of trouble with mine.

    I am going to stick an oar in here because this is misunderstood by many, including myself until recently.
    I know the tech support person told you that what you get is a half version of windows, that is not entirely true. And just so that you know, this is a Microsoft thing so it affects all OEM's not just Lenovo.
    When you purchase a new computer with Windows installed on to it, you are buying a full copy of the software. What you are not buying is tech support from Microsoft. The OEM has to provide Windows Tech Support for you. Most people never really find out what this means because the computer runs fine, or when it stops running fine, they run out and purchase a new computer.
    You have a copy of Windows licensed by Lenovo. So any media used to repair your computer has to come from Lenovo. The download program that Microsoft has now is only for versions of Windows purchased in a retail box, or from their online retailer DigitalRiver. Because your copy of Windows is Licensed by Lenovo to be installed on Lenovo computers, any tech support or repair downloads have to come thru Lenovo.  You can download every version if Windows and it will not accept the key on the computer. For your key to work you need to get a copy of Windows from Lenovo.
    I know this sucks but it is a licensing issue. As I said, it is the same way at Dell, IBM, Gateway, and any other company that builds systems for resale. Many small shops that buy builders licenses are also affected.
    But there is a possible way out for you, bananaman mentioned it. Clone the drive. Or if you created recovery media, you can use it as well, but the drive you install it on will have to be the exact same size as the one that came with the computer.
    Hoov
    Microsoft MVP - Consumer Security
    SpywareHammer.com

  • Shipping time for new iMac i7 -- SEVEN WEEKS??!!

    Yesterday (June 8) I ordered my new iMac at the online Apple store.  I ordered th i7 with everything maxed out except I stayed with 8GB RAM.
    I thought the shipping time would be 4-6 weeks.  The order confirmation came back as delivery on July 27! That is SEVEN WEEKS!
    Does anybody know why it takes seven weeks to get this?  Granted I'm not the most patient person anyway- but this hurts!

    Let me guess: you included an SSD, too?  When I checked the store a week ago, it was that addition, and that alone, that bumped the shipping delay up to 4-6 weeks (and then 5 days, at least to hear on the East Coast) for delivery.

  • How to make a boot disk for new iMac?

    I just purchased a new iMac equipped with a bare bones 1TB SATA hard drive.  I want to replace that disk with a 1TB SSD from Crucial (less than 1/2 of the cost of purchasing the iMac with the SSD).  I have a Time machine backup of the iMac on a Time Machine/Airport device; how do I make a boot disk that can get the OS up and running, and able to restore the backup from the Time Machine?
    Thanks,
    Tony Darst
    Baton Rouge, LA

    tdarst wrote:
    I had not given the warranty issue any prior thought; thanks for pointing that out.  Is there a way around the warranty issue; such as a "factory authorized" way to install it, that is feasible?
    Thanks for the quick response...
    TD
    You can take it an AASP to have the install done however you probably would be better off returning the machine (assuming it was bought directly from Apple and is less than 14 days old) and buy the configuration you want. Even if an AASP does install the SSD there is no guarantee Apple will honor the warranty, it's 100% at their discretion.

  • Why no firewire support for new iPods?

    If firewire is so much better and faster why did the geniuses at Apple decide to discontinue support for it? It took me over 30 minutes to upload music & videos to my new iPod w/ USB, which would have taken 5-10 minutes with Firewire. I don't get it!

    They did it because they obviously didn't see the need for it.
    Either you have a usb 1.1 port, or have about 500mb of music. The speeds aren't that different between USB2.0 and FW. In fact, i think USB is faster. Stop complaining here, this is only a user-user support forum.

Maybe you are looking for