NEO 2 Problem SATA 3+4 dont work :( help!!

as post title, some reason I cant run my HDD off of SATA 3 or 4 even with stock speeds on everything,
I want to over clock the board so not being able to use these will be a real pain, any ideas!??
Am using 1.5 bios with latest chipset drivers
HDD is a 120gig Maxtor DM9 8meg cache

The clue here i believe is that the sata1/2 on marvell PHY bridged to nv chipset works with driver version 0415
while the sata3/4 with nv-chipset integrated PHY needs 0446 or newer if nvraid.rom is 4.60 or newer .
So update through
control panel - system - hardware - device manager
Nvidia serial ATA controllers (2.5)  from 5.10.2600.0415 -> 5.10.2600.0446 (2.6) (nvatabus.sys , nvatabus.inf)
and
Scsi and Raid controller from 5.10.2600.0415 -> 5.10.2600.0446 (nvraid.sys , nvraid.inf)
Reason:
Xp installed on raid with diskette nvsa020 (driver versions 0415 )
Ran chipset install package from nvidia UDP 5.10 .
As nvatabus and nvraid is already installed it doesn't install or update from 5.10 UDP package ( i have verified this )
And afterwards the versions on nvatabus(sata controllers)  and nvraid is still 0415 .
So update theese controllers drivers manually through devicemanager , don't reboot before all of them is changed .
Then move the raid to sata 3/4 ( sata1 disk -> sata3 , sata2 disk -> sata4 ).

Similar Messages

  • The update dont work help

    The iOS 7 dont work HELP ME

    What exactly happened? It is not unusual to get  error messages of there was problem downloading the update because the severs are very busy.

  • 865pe Neo 2 FIS2R, SATA RAID on Intel works but Single SATA on Promise dont???

    Hi Guys,
    Im sure this has been asked before so please forgive me but here goes.
    I have a 865PE Neo2 FIS2RMB, 2 gig ram, P4 CPU running XP SP2.
    On the MB's Intel SATA controller I have a Pair of WD Raptors in RAID0 array which works great.
    but I also want to put a 500gig SATA HD on the promise controller as a storage drive.
    I have spent 2 days trying to get it to work but no luck. If I enable the promise in the BIOS then my comp goes into a run bios then reboot cycle. I have installed the latest promise drivers from MSI but these are old anyway.
    This is driving me mad and I an going grey way before my time. Has anyone managed to do this and can anyone suggest anything?
    Thank you in advance
    Kenny

    Halo!
    Try to put old disk on SATA3 and SATA4 and add the new disk on SATA1 or SATA2.
    Go in the Native mode, put S-ATA and do not configure S-ATA as RAID.
    Do not forget to install Promise Fastrack 378 first from CD or Liveupdate on the Windows before you put them on Promise controller!
    I usually install everything on HD on Intel SATA them move HD on Promise and create RAID 1.
    Best regards, PiKo

  • Push Notification Problems in new Update dont work

    Anyone else have this problem with hotmail?
    Really terrrible, needs to be fixed yesterday

    If some push notification apps do produce sounds and badges, and other apps don't, this is due to the particular app server, not the phone. Not all apps actually have sounds and badges, even though they have settings for them.
    If you know that a particular app does use these (i.e. they work on another iPhone), you can try deleting and reinstalling the apps, reseting your phone, reseting all settings, restoring from a backup and restoring as a new iphone.

  • HitTests Dont Work HELP????

    Ive got this script. when u press a button u can create a movie clip called man. when u press another button u can create one called enemy. thay both create at different sides of the seane and thay walk past each other.
    but when thay touch each other thay should go to frames inside them. ect Attack,Die. but thay dont help....
    var mans = 0;
    function addman() {
        if (Gold>=10) {
           var man= attachMovie("man", "man"+mans, _level0.getNextHighestDepth(), {_x:95.1, _y:479});
               man.onEnterFrame = moveman;
            mans += 1;
          Gold -= 10;
    btnMan.onRelease = addman; function moveman() {
         if (this.hitTest(enemy)) { 
           this.gotoAndStop(2);//mans fighting frame
    if(enemy.hitTest(MDS));
    enemy.gotoAndStop(2);// enemys died frame
         } else {
    this.gotoAndStop(1);  //mans walking frame     
    this._x += 1.3;
    var enemys = 0;
    function addenemy() {
        if (Gold>=10) {
          var enemy= attachMovie("enemy", "enemy"+enemys, _level0.getNextHighestDepth(), {_x:595.1, _y:479});
                enemy.onEnterFrame = moveenemy;
            enemys += 1;
          Gold -= 10;
    btnEnemy.onRelease = addenemy;
    function moveenemy() {
         if (this.hitTest(man)) { 
           this.gotoAndStop(3);//enemys fighting frame
    if(man.hitTest(EMDS));// a little square called EMDS inside fighting on the frame where he punches
    man.gotoAndStop(3);//mans died frame
         } else {
    this.gotoAndStop(1);  //enemys walking frame
           this._x -= 1.3; 
    help

    You are still missing things that I told you you needed to include yesterday, mainly the for loop.  The code below should take care of the hittests, I have added the loops.  The only issues I see are...
    1. You shouldn't need to do hit tests on both the enemy vs man and man vs enemy.
    2. It is not clear what your intentions are for the MDS and EMDS lines, so I didn't touch them... they are incomplete due to the ";"
    var men:Array = new Array();
    var enemies:Array = new Array();
    var mans = 0;
    var enemys = 0;
    function addman() {
        if (Gold>=10) {
           men.push(attachMovie("man", "man"+mans, _level0.getNextHighestDepth(), {_x:95.1, _y:479}));
           men[mans].onEnterFrame = moveman;
           mans += 1;
           Gold -= 10;
    btnMan.onRelease = addman;
    function moveman() {
    for(i=0; i<enemys; i++){
           if (this.hitTest(enemies[i])) { 
              this.gotoAndStop(2);//mans fighting frame
        if(enemies[i].hitTest(MDS));
        enemies[i].gotoAndStop(2);// enemys died frame
           } else {
         this.gotoAndStop(1);  //mans walking frame     
               this._x += 1.3;
    function addenemy() {
        if (Gold>=10) {
           enemies.push(attachMovie("enemy", "enemy"+enemys, _level0.getNextHighestDepth(), {_x:595.1, _y:479}));
           enemies[enemys].onEnterFrame = moveenemy;
           enemys += 1;
           Gold -= 10;
    btnEnemy.onRelease = addenemy;
    function moveenemy() {
        for(i=0; i<mans; i++){
      if (this.hitTest(men[i])) { 
                this.gotoAndStop(3);//enemys fighting frame
                if(man.hitTest(EMDS));// a little square called EMDS inside fighting on the frame where he punches
                man.gotoAndStop(3);//mans died frame
            } else {
                this.gotoAndStop(1);  //enemys walking frame
                this._x -= 1.3; 
    You should learn about using the trace command to help you troubleshoot your code.  If you had traced "man" in your moveenemy function you would have found that it is undefined, mainly due to it being declared within the scope of a function where nothing outside the function can see it.  The same applies for the "enemy" inside the moveman function.

  • Installed Vista 64 however boot camp drivers dont work - Help

    I have a Macbook Aluminum with 4 gb ram.
    I just installed vista 64 bit however - i can get Boot camp drivers to run.
    Please help someone.

    Mac OS X 10.5.4 DVD BootCamp included drivers
    http://support.apple.com/kb/HT1999
    Limited list of Macs that officially support 64-bit Vista
    http://support.apple.com/kb/HT1846
    What does happen when you insert your Leopard/OEM 10.5.x DVD?

  • T61 Notebook Hardware Control dont work help

    hello, I bought a license  Notebook Hardware Control Lenovo  t61 goes can someone help me and I look ACPI control system not yet Configured

    @GMAC-R60:
    Because the Hotkey driver is installed, bluetooth cannot be activated by pressing Fn-F5 until the BT-driver has been installed.
    Otherwise:
    Bluetooth can be enabled before the Hotkey-driver is installed.
    I've tested it on several T61/X61 and older.
    My home-forum: http://www.thinkpad-forum.de
    Wiki: Deutsches ThinkPad-Wiki English ThinkWiki
    My ThinkPad-Collection

  • I have a MacBook Pro that I bought almost a year ago, next day problems with the hard disc that could not be diagnosed by the service, after 3 months they realized it and changed it with a new one, after 3-4 months heated and shut down and dont work anymo

    I have a MacBook Pro that I bought almost a year ago, next day problems with the hard disc that could not be diagnosed by the service, after 3 months they realized it and changed it with a new one, after 3-4 months heated and shut down by itself and dont work anymore. From apple say even a year has not passed it is not under garancy and I should pay to fix it without ans issue.

    I have a MacBook Pro that I bought almost a year ago, next day problems with the hard disc that could not be diagnosed by the service, after 3 months they realized it and changed it with a new one, after 3-4 months heated and shut down by itself and dont work anymore. From apple say even a year has not passed it is not under garancy and I should pay to fix it without ans issue.

  • 915P Neo 2 - Problem with detecting SATA disc

    Hi, I wonder if any one can help me with my problem.
    I recently, due to a HD crash, bought a new SATA HD for windows and apps. The one that crashed was an IDE drive and my data discs were SATA. When OS was re-installed and up and running I connected my other drives as well. One of them was detected ok after some reboots and tampering with bios settings, mainly SATA configuration and Raid active or not (I have no desire to run RAID but at the time it seemed it was the only way to get both sata-drives and dvd running). I have since then uninstalled the RAID config tool etc and the SATA 2 drive is still functioning the way I want it to. However, my largest HD, 500GB, will not be detected ok and in Win Explorer I just get the error/information message telling me that the drive is not formated. It is recognized ok by bios and in the device manager in Win.
    In the disc manager (if that is the name in english, i have win in different lang) however, the drive is displayed as E: 128GB Working (Active) and the remainder of the space, 350GB as not allocated. Oddly enough, it's pretty much the same limit that was set up for the drive onto which I installed Win XP (which I imagine is connected to not having SP2 from the beginning and Win thereby not detecting the full size of the disc). SP2 was however installed at the time that I plugged in my WD disc (and it had content on it before the initial HD failure of my previous disc on which I had Win XP installed.
    Since it was a bit of a hazzle before I got the SATA 2 drive to work, by fiddeling about in the bios, maybe it can be something similair to get SATA 3 drive to be properly detected?
    Any tips on how to proceed in order to get my system back the way it was, would be greatly appreciated.
    /Per

    Hi, thanks for your reply.
    Well, it wasn't delivered with one attached and I haven't used one previously (when it was functioning), but I've seen on the forum at WD that there is possibility to set a jumper that limits the transfer rate to 150MB/s ("This will cause second generation Serial ATA hard drives to revert to a 150MB/s transfer rate limitation"). Would that be it you mean?
    /Per

  • I updated to Firefox 5 and now have problems with it not responding ALOT and also even though I have certian sites listed to allow popups they dont work on several sites I use daily. What can I do about this?

    I dont know what else to say about it. I updated and now all this is happening and it didnt before my update to Firefox5. I have several site I use daily and I have gone in and marked them to allow popups and they just dont work. The sites are My Yearbook...Kia Financeing...and a few more. And also I am finding that I get a no response a lot!

    I am sorry you are not in a position to replace the iPad. It is stating the obvious, but nothing lasts forever - especially something like an original iPad. IMHO, there is nothing you can do to address the issues you have posted about.
    Barry

  • I am just wondering does anyone else have a problem in lightroom 4 where some of the tools dont work

    does anyone else have the problem of some tools not working in lightroom 4? for eg. skin smoothing and iris enhance??

    The background music I chose was a standard Apple Loop, but on playback it sounds like someone has cut the music, each time the Loop connects to the extended loops I made when I dragged the end of the initial loop out over a short distance? Did I do it wrong?
    When you extend the loop by dragging the the end of the loop (you'll see a bracket as cursor), you will extend the loop by silence and hear a sharp cut. To make the loop longer, loop it. Grab it in a way, that you'll see a curved arrow as pointer and not the bracket.

  • I've downloaded songs from itunes and they dont work. i can hear only half of the songs . how can i solve the problem ??

    the songs i've downloaded from ituens store dont work !!! what can i do ??

    There was probably a network error while downloading, try to delete the song and redownload it.
    Delete the version in your library.
    iTunes Store > Home Page
    Far right has Quick Links, click on purchased and sign in
    Locate your song and redownload

  • 865p neo serie problem

    Hi !
    I change my motherboard for MSI 865P Neo with Intel 2.4 Mhz 800 Mhz Hyper threading function and 256 MB DDR Ramm 333 Mhz.
    My problem is every time i try to install windows XP I get problem with some file that say is corrupt butni change the Xp cds and Cd-rom and still can install it. I change the hard drive and use the same hard drive to other computer and work well Just on the board i got that problem.
    Some one tell me that motherboard dont work well is dont have Kisnton memmory.
    Plz help is any one now about this problem

    Try raising your memory voltage to 2.7 then install Windows again.

  • KT4 Ultra-SR (MS-6590) dont work with AMD Barton 2500+

     ;( Please help me any1.
    I have MBO KT4 Ultra-SR (MS-6590) with CPU AMD Barton 2500+ and i have a big problem. System corectly boot only if a select CPU FSB Clock = 100 MHz (CPU Ration/CPU Vcore/DDR Voltage=all AUTO). When a select CPU FSB Clock 133 or 166 MHz, system begin run corectly and after few second turned OFF. I selecting SDRAM Frequency on=AUTO/266/333/400 MHz but not working. My old CPU is AMD XP Palomino 2100 MHz and work fine with KT4 Ultra MBO. I upgrade BIOS with 1.4 version. I change memory module with PQI (PC 2700/256 MB) and JETRAM (PC 2700/256 MB) but is same ":censored: ". System dont work. Bad CPU Barton 2500+? I dont no. Please help me any1.
    My System:
    MBO KT4 Ultra-SR (MS-6590)
    CPU AMD Barton 2500+ (FSB 333)
    Memory DDR Samsung 2x256 MB (PC 3200) K4H56083D-TCC4
    Cooler SPIRE WhisperRock IV+Artic Silver 3
    HDD Seagate Baracuda 120 GB SATA
    PSU Enermax 300W EG301P-VE(FMA)
    VGA Saphire ATI Radeon 9100 (64 MB+TV/DVI-out)
    DVD-ROM Pioneer 120S (16x speed)
    CD-RW MSI CR52-A2 (52/24/52, Atapi)
    FDD Teac 1.44 MB
    Creative SoundBlaster Live! 5.1

    Most of the time, this sort of problems arise because of power suppliy issues.. U have a enamax 300W PSU which is a VERY GOOD PSU but might just be on the line...
    If u can, try swapping the PSu for a good 400 or a 420W PSU.. this might solve your enigma.. I really dont think this is your processor...
    Read this two articles on PSu wrtten by one moderater which will aid in solve in fixing your problem (PSU1 , PSU2 , Troubleshooting Guide )
    Best of luck
    RAsika

  • Dont work dimms 2- on K8N Diamond

    Hi, i have problem with DIMM 2-4, if i put any memrory ram in the DIMMs 2 or 4, the BIOS give this error (using the led):
    Quote
    Testing onboard memory size. The D-LED will hang if the memory module is damaged or not insalled properly
    But if i put ram in the DIMMs 1-3, work without any problem, also work if i put memory in the dimms 1-2-3-4, but only recognize the ram who is in the dimms 1-3.
    I try to reset de bios and upgrade it to the last version, but dont work. Please anyone help me
    pd:sry for my english :(

    Quote from: finord on 13-February-07, 02:14:15
    I try to install 2x256mb(at the moment i have 2x512 kingston value ram, in the dimm 1 and 3), i use a signle mode, but the problem is the dimms 2-4, if i put only 1 memory ran (kinsgton value ram) in the dimm 2 o 4, dont work
    that is normal, when using 2 memory sticks always put them into 1st DIMM slots(close to CPU socket.) about 4 sticks usage and 2 of them are not detected, can be due your mixing memory (ranks & banks, and CPU mem.controller cannot handle it) what CPU core you got btw? im still not conviced its DIMM slots failure. also before installing all 4 memory sticks setup from BIOS command rate to 2T, and apply memory index 166. also you have insterting all 4 stick in wrong direction. put in DIMM1 & DIMM2 Kingston sticks(instead DIMM1 & DIMM3) and 2 other once 2x256 into DIMM3 & DIMM4 (instead DIMM2 & DIMM4)
    re-test.

Maybe you are looking for

  • Error in ALE Service While Creation of Vendor Master

    hi, I am using a scenario where a third party system is sending vendor master data to a R/3 system The file is picked up by the file adapter(sender) and mapped to IDOC format, using Idoc adapter (receiver). A Vendor is then created by posting the CRE

  • DVD burnt in BEST QUALITY but looks like a VCD when played on DVD player

    Made a 115 mins movie in Final Cut Pro, exported it to Quicktime and made a project in iDVD 6. If I check the quality of the movie before I burn it, it is all right, I select BEST QUALITY on iDVD setiings before I burn it but, then when it's ready, I

  • How to send TRFC calls sequentially in BPM

    Hello Everyone, I had a File to  IDOC scenario(BW) where, 90 MB of file was failing. However, i have designed the split first and then i used BPM and its working fine for 50 MB. But then, again when i test with 90 MB data then BW EDIDC tale is gettin

  • IPhoto Book Order Won't Work

    I created a book in iPhoto, but every time I hit "Buy Book", I get a message telling me a connection couldn't be established and to check my internet connection. I'm having no problem getting on the internet or getting e-mail, so that isn't the probl

  • Can DTrace do this (hardware level data)

    I need a way to see the data that is exchanged between a hardware driver and the hardware. Specifically, I'm working on a USB driver and I need to see the raw data that goes out over the USB bus. Is this something that I can accomplish with DTrace?