MOVED: Overclocking on Z77 GD65, please help

This topic has been moved to Overclocking, Undervolting.
https://forum-en.msi.com/index.php?topic=161889.0

Quote from: CalinTM on 20-September-12, 07:23:14
But i want to still have low frequency in idle, for that, what setting causing this EIST or C1E ? Or both ? I mean if i want to have 4.5Hhz on load, and 1.6Ghz on idle, for having 1.6Ghz on idle i need to enable both EIST and C1E, or just one of them, and the other disabled.
The setting is vcore=auto, c-states=enabled and EIST=enabled not C1E as it was in 775 processors. Ivy Bridge has less VID voltage than Sandy Bridge and that means that most of IB will overclock less at auto voltage so most of them will only get 4.2 to 4.4 Ghz.
Quote from: CalinTM on 20-September-12, 05:29:06
OK, so in short answer, i will let the internal pll overvoltage to enabled ?
Disable it, internel PLL overvoltage is for extreme overclocking and might help above 4.8Ghz and that's it. According Intel can cause some CPU degradation overtime.
Quote from: CalinTM on 20-September-12, 05:29:06
1. After a CPU overclock in my case, the Intel C State (or something like that) sets to disabled. I am able to enable it again ?
And i don't understand that feature, what it actually does ? I have the options C2, C4, i think, and some auto and no limit. I should let it disabled for a OC, or enable it ?
You can and should leave it enabled it, it makes huge difference in the processor power consumption and it causes no instabilities with casual overclocking.
Quote from: CalinTM on 20-September-12, 05:29:06
2.On my PCI-E settings, i have some PCI Latency, and it's set to 32, by default. I Can achieve better overall performance if i set it to 64, or it's useless ?
32 is the best performance.

Similar Messages

  • MSI 5870 Crossfire Option not available on MSI GD65 - PLEASE HELP

    Hi All,
    I just installed two MSI 5870 on MSI GD65, install the latest driver from ATI, however, I can't find the crossfire option under the CCC Graphics drop down list....
    All setting is set to standard, no overclock for the CPU.
    I have tried several ati driver up to current and beta ones....but still no luck.
    According to Graphics Hardware under CCC, the 2nd graphics adapter is disabled......
    However, under the control panel the 2nd graphics card is installed and enabled.
    Please help.
    many thanks.

    Here is my specs:
    ■CPU i7 860 2.8 Ghz
    ■Motherboard MSI GD65 BIOS version 1.4
    ■Memory Team Xtreem  9 9 9 24 ddr3 LV 2000 8 GB
    ■Video card MSI 5870 1GB CROSSFIRE
    ■Hard drive SEAGATE
    ■Any other peripheral cards and devices : Creative XFi Ultimate
    ■Operating system and version: windows 7 32 bit
    ■Power Supply Unit CORSAIR HX 850 W
    I am using catalyst control converter:
    Driver Packaging Version   8.661-090923a1-083742C-ATI   
    Catalyst™ Version   09.10   
    Provider   ATI Technologies Inc.   
    2D Driver Version   8.01.01.961   
    2D Driver File Path   /REGISTRY/MACHINE/SYSTEM/ControlSet001/Control/Class/{4D36E968-E325-11CE-BFC1-08002BE10318}/0001   
    Direct3D Version   8.14.10.0700   
    OpenGL Version   6.14.10.9026   
    Catalyst™ Control Center Version   2009.0925.1707.28889   
    I don't even can see the CrossFire option there...below the ATI Overdrive..................
    Any more ideas or solution?

  • Application Moved?!!! PLEASE HELP

    Hi I downloaded CS5.5 onto my harddrive to use on my macbook a while or go now, it's been working fine on my macbook but when I tried it today it comes up with this message -
    The application has been moved, and its path has changed. To update the product configuration, click Update.
    What the jammy is going on?!
    Even when it has opened and I try and open a project it comes up with the message DATA MISSING/PROJECT NOT FOUND.
    I recently downloaded my After effects onto an imac and opened an already existing file on the imac so how has that after effects?
    I didn't open AE from my hard drive on the imac because it only works from the hard drive on my macbook.  I opened my already existing file on the new installed AE on the Imac but has that shifted all my files somehow and confused my computer.
    How can I fix it?
    I need AE for work and deadlines and such so am having prolonged heart attack at the mo, this is urgent. Please help

    As Andrew suggested, simply run a clean reinstall. Fixing it the hard way will take much longer then just letting the installer do its thing.
    Mylenium

  • Moving Folders Version 2.  Please Help!

    Hello again,
    Once again I need your help with the same script but I just need a little more help.  I'm an (very) amateur scripter and I'm still trying to grasp the fundementals.  This time I need your help, so that I can also move files as well as folders.  Here is my script so far, but it doesn't seem to be working.  Pretty much I want to make it so that if I click on Files it will do the same exact thing it does for folders, but with files.
    repeat
              set theChoice to the button returned of (display dialog "Welcome to Cargo.  We make it easier to move multiple folders to a specific destination.  Would you like to move files or folders?" buttons {"Files", "Folders", "Cancel"})
              repeat
                        repeat
                                  if theChoice is {"Folders"} then set srclist to choose folder with prompt "Choose the folder(s) you want to move" with multiple selections allowed
                                  if theChoice is {"Folders"} then set dst to choose folder with prompt "Choose the destination folder"
                                  if theChoice is {"Folders"} then if {dst} is in srclist then
                                            display dialog "The destination cannot be in the source list."
                                  else
                                            exit repeat
                                  end if
                        end repeat
      --return {srclist, dst} -- for test
                        tell application "Finder"
      move srclist to dst
                        end tell
                        display dialog "Made by Connor Devlin.  If you find any bugs please contact me at [email protected].  If you liked this app share it with your friends.  ©McKeever Software."
              end repeat
    end repeat
    Problem 1: Nothing seems to happen when I click run.
    Problem 2: I'm not sure how to make it so that ONLY if you click Folders will it do the process to move folders.
    Problem 3: I'm not sure how to make it so that ONLY if you click Files will it do the process to move files.
    Problem 4: It does not seem to recognize the variable dst or srclist.
    I apprecaite all help

    You seem to be stuck on using individual if..then statements instead of arranging your statements into logical groups (and the 'repeat forever' loops can get you into trouble as well).  In this case, if the choice is for files you aren't geting new source and destination choices (if you have already made the source and destination choices those will be used again, most likely resulting in a error).
    The solution is to use the result of the first dialog to set whether the source items are files or folders, instead of that extra 'repeat forever' loop.
    repeat -- forever (at least until canceled)
         set theChoice to the button returned of (display dialog "Welcome to Cargo.  We make it easier to move multiple folders to a specific destination.  Would you like to move files or folders?" buttons {"Files", "Folders", "Cancel"})
         if theChoice is "Folders" then
              set srclist to choose folder with prompt "Choose the folders you want to move" with multiple selections allowed
         else -- files
              set srclist to choose file with prompt "Choose the files you want to move" with multiple selections allowed
         end if
         repeat -- until valid destination
              set dst to choose folder with prompt "Choose the destination folder"
              if dst is in srclist then
                   display dialog "The destination cannot be in the source list."
              else
                   exit repeat
              end if
         end repeat
         log "moving:"
         log srclist
         log "to:  " & dst
         tell application "Finder"
              move srclist to dst
         end tell
         display dialog "Made by Connor Devlin.  If you find any bugs please contact me at [email protected].  If you liked this app share it with your friends.  ©McKeever Software." buttons {"Again", "OK"} cancel button "OK" default button 2
    end repeat

  • Moving images in book 'boxes' - please help!

    OK, here is what I've done.
    I've created a special occasion book. Created a number of pages and layouts and dragged and dropped the images I want into each box.
    I've allowed Aperture to 'scale to fit' each photograph, as I want them to fill the full size of the box. However, some photographs have scaled and I've lost the top of peoples heads, etc. The scale across is fine as the image fills the box nicely, however what I want to ideally do, is to be able to move the image within the box down slightly so that I regain the top of lost heads!
    Please can you let me know if this is possible and if so, how I do it?
    If not possible, is there another way to simply drag and drop images so that they fill the full box size?
    Many thanks if you are able to help.

    Click on the image.
    Double click to bring up the Image Scale slider. Change the scale if you like.
    Put the cursor on the image (changes to a hand) and clic-drag to move.
    Click outside the image to remove the Inage Scale slider.
    It's not very obvious at all. Double-click to resize????
    iMac G5 rev B   Mac OS X (10.4.7)   Twenty Aperture articles at http://homepage.mac.com/bagelturf/

  • "Warning!!! The previous performance of overclocking is failed..PLEASE HELP!

    So I woke up this morning and my computer was cycling on and off. I unplugged it, waited a minute, plugged it back in. I booted up and got the "Warning!!! The previous performance of overclocking is failed and the system restored to the default settings...." and it gave me 2 options. So I chose the revert to default and enter settings. The main problem was it kept not recognizing my SSD drive as primary boot. So I changed it to primary, rebooted and got the quick on/off cycling.
    So I get on my laptop and google it, I find it's a common issue. Seems like there is a memory issue, sure enough I log into settings and switch it to 1600 speed, enable XMS, reorder the boot priority again, enable ACHI, I also turned off the OC genie. I reboot again and it takes a while but it finally boots up. It takes a few minutes to get into the desktop and load the various start up items.
    I can tell it's very sluggish though. Normally if I open any windows it's instant. I open up Chrome, and it's slow, it won't scroll up/down smoothly, it sorta stutters. I tried to open a video and it won't play it, like there's not enough CPU to handle anything. When I reboot it takes a little longer to get into Windows as well. Any suggestions? Did I maybe miss a setting in BIOS? Any help would be greatly appreciated!
    Silverstone FT-02 case
    MSI GD-65 mobo
    2500k Intel cpu OC’d to 4.3GHz
    16GB Corsair Dominator memory
    128GB Crucial M4 SSD
    2TB WD Black Edition HD
    2TB Seagate HD
    EVGA 780GTX OC edition
    Acer GD235HZ 23.6″ 120hz monitor
    Lite-On DVD Lightscribe burner
    Corsair AX1200 PSU
    Corsair H60 HSF unit
    Windows 7 Home Premium

    When you tighten the screws of the cooler pump do each of them a little at a time in a crisscross pattern. Do not tighten each screw all they way down one at a time. Do not tighten screws in either clockwise or counter clockwise pattern.
               1 - O       O - 3
               4 - O       O - 2

  • MOVED: overclocking the z77a-gd65 board

    This topic has been moved to Overclocking, Undervolting.
    https://forum-en.msi.com/index.php?topic=166750.0

    I recommend searching the threads that specialize in the 'Turbo' OC method. Ivy CPU's are not super OC'ers on conventional cooling solutions, but excellent performance can be pulled out of them in the 44X-45X range and still keep all the power saving features intact as well. CPU V. left alone to work on Auto is recommended. Initially for testing, set VDRoop to 100%. Disable EuP 2013, Overspeed Protection, and Spread Spectrum.

  • MOVED: Overclock with 990FXA-GD65 & Phenom II 1100T BE

    This topic has been moved to Overclocking, Undervolting.
    https://forum-en.msi.com/index.php?topic=184361.0

    Quote from: Bernhard on 28-October-14, 16:38:17
    This guide should assist you in understanding your CPU overclock. Wish you luck
    http://www.overclockers.com/step-guide-overclock-amd-phenom/
    Thanks, I'll have a good look through that

  • I have lost documents by moving them to icloud.. please help!

    I was using Office HD to do all essays, lectures notes and finances. While completeing my last essay the programme starting experiencing bugs after the latest update. I then purchased quickoffice and started using that and later purchased Pages to finish the document in.
    I now have all these documents in Office HD and to save myself grief of having to go into every document and open in quick office and then close and move from the inbox to the folder... and having to repeat this every time for each document, i decided to look at moving all the documents together.
    When selecting all the documents (I selected 9 of my lecture notes) it gave me the otion of moving all the files to my ifolder... inside my ifolder I have 3 folders set up one of them is called Uni.. i chosse that and accepted and boom all 9 documents were moved... i thought great. But now they are gone out of Office HD and nowhere to be found... How do I access my icloud folder?
    I have gone onto Icloud.com from my mothers pc to see if I can see them there and the only thing I can see are the document I have saved in pages!!!
    Can someone please advise me how to get my documents out from icloud folder???
    Thanks
    Carine

    Did you follow this article?
    iOS: Back up and restore your iOS device with iCloud or iTunes

  • MOVED: Problem with p7n diamond please help

    This topic has been moved to Intel Core 2 Duo/Quad boards.
    https://forum-en.msi.com/index.php?topic=122454.0

    Dadilo, you have gone to some length but sadly no positive result, but at least you have cleared some of the ifs and buts. i have looked at your mobo bios even so it says it supports your cpu q6600 it seems there has been a few updates (see links, particularly please pay attention to the pointer in pictures). you have these options left to you.
    1- put the pc on it's side and take the 240 volt plug out (no power what so ever) and clear the way from any cables etc.. and remove the mobo battery with a Small screw driver (push the clip to one side the battery pups out)  and   hold it in your Palm for ten second or so then put it back and put everything back make sure the single memory is firmly in place so is the graphic card. then connect the power and all cables etc the power the pc. 
    2-your last option before you give up is try another cpu on the  mobo preferably core 2 duo rather than quad and if you get it working your next move is to update the bios and i do not know how good you are in updating bios???.  if none of these works then sadly the mobo is faulty in my opinion but i may be wrong :
    http://s240.photobucket.com/albums/ff177/kourosh22/?action=view&current=ScreenShot037.jpg
    http://s240.photobucket.com/albums/ff177/kourosh22/?action=view&current=ScreenShot038.jpg
    http://s240.photobucket.com/albums/ff177/kourosh22/?action=view&current=ScreenShot039.jpg

  • MOVED: MS-7194 RD480-Neo2, please help

    This topic has been moved to Overclockers & Modding Corner.
    https://forum-en.msi.com/index.php?topic=103317.0

    Quote from: Nick Spolec on 18-December-06, 12:18:46
    Should be the field called HT LINK SPEED.
    That is the only reference in the bios I can find to the Hyper Transport.
    nope that mobo doesn't have usual HT Link regulator. there are 2 options only "Auto" or "OCed"

  • MOVED: Overclock i5 2500k & GD65

    This topic has been moved to Overclockers & Modding Corner.
    https://forum-en.msi.com/index.php?topic=147224.0

    This topic has been moved to Overclockers & Modding Corner.
    https://forum-en.msi.com/index.php?topic=147224.0

  • MOVED: Overclocking noob needs advice and help

    This topic has been moved to Overclockers & Modding Corner.
    https://forum-en.msi.com/index.php?topic=124359.0

    Quote from: HU16E on 16-February-09, 13:52:53
    Only work with FSB or RAM first. Don't do both at the same time. It is best to start with FSB first. CPU V. increase is done at point of no post. My P6N's E6600 still uses the stock cooler @ 3.0. Make sure Spread Spectrum is 'Disabled', & System Clock is set to 'Manual". Since your at 2.7 now, guessing FSB is 1200. Raise in small increments until no post, add + one step CPU V. & retest for post.
    To reach 1333 (333X9=3.0) with mine, it took + two CPU V. steps, an increase of NB to 1.275, SB 1.55, & FSB VTT V. 2%. Once stable, I kept my RAM at 800. Not having a copy of your manual, I'm not exactly sure of your bios Cell Menu layout.
    Once you have reached your goal, 3.0-3.2 stable, & want to increase mem. from 667 to 800, set DRAM Clock to 800, use the JEDEC Std. timings of 5 5 5 18, DRAM V's. of 1.95 (Max. 2.1). If stable at JEDEC, you could try tightening the timings to the EPP rating 4 4 4 12 DRAM V's. 2.1. If that works, great. If not, just revert back to the JEDEC Std.
    Great info & advice man. Thanks. I will have questions though because I don't fully understand what all of this means. For instance, what are those values : "an increase of NB to 1.275, SB 1.55, & FSB VTT V. 2%"...?
    As soon as I've installed my Noctua, I'll start working on that OC. I'd love to reach 4.0GHz like Jack...think that's possible? Thanks!

  • MOVED: Tried to update BIOS Please help!!

    This topic has been moved to Intel Core-iX boards.
    https://forum-en.msi.com/index.php?topic=162415.0

    Quote from: Froggy Gremlin on 12-October-12, 04:46:49
    *MSI recommend you to update BIOS with ME8 only if you are using Ivy Bridge 22nm CPU.
    Sorry to say but it seams illogical. AFAIK it is impossible to flash form SB to IB bios using Ivy Bridge. Am I wrong?
    Going further... I can not find any positive reports that users can get working system by  changing cpu to Ivy after all those bad flashes. I see many suggestions to try it but I can not see any "success!" info. IMHO MSI flash procedure is just "somehow" unreliable. It is nice that MSI decided to support IB on older motherboards but we see too many bricks on our forum.
    My idea (wild guess) to avoid bricking is to flash with only one stick of memory.
    PS: IMHO Click Bios II attracts too much too many P67 users (like me)

  • When reopen Premier Pro CC, get message "missing media for these clips".  I haven't moved files or anything.  Please help.

    When reopen a project in Premier Pro, I get the error message "missing media for these clips" and a listing of every file in the project.
    When try to view, just get thumbnails with question marks.
    What am I doing wrong?
    Thanks

    Is the media on an external drive?

Maybe you are looking for

  • How do I install os X on a wiped computer

    I am trying to install the original os x 10.4 on a macbook pro that has been wiped clean. I have put in the factory system disk but it will not allow me to install. After the language setting screen, the next screen pops up saying, ALERT this softwar

  • Help required on netview and pipe()

    http://forum.java.sun.com/thread.jspa?threadID=202103&tstart=60 last post tells prob is being solved by Netview and pipe but I cud nt find much abt these either on sun /google. So can ny1 give out details abt these. references if possible

  • Wide Gamut Nightmare

    I have a Dell U3011 Monitor and I am about ready to toss it across the room. My problem is that my colors are WAY oversaturated so when I design in Photoshop and take it to web the colors are exceedingly oversaturated. I've tried various profiles, ca

  • Cannot "Revert to Original" in iPhoto

    iPhoto 11 (9.2.1) After editing photos in Elements 4.0, I no longer can "Revert to Original" in iPhoto.  It is blanked out.  If I edit with iPhoto, there is no problem.  Elements 4.0 is listed in iPhoto preferences as the default editor.  As per a re

  • Please what  concepts - Fi-SD- accounting document

    Hi Gurus Please clear my doubts. when I create an Invoice from SD in the document flow accouting document genarated, posted to all G/L accounts. But not cleared -? 1) What doest it mean -? Accouting document represents for all the G/L accounts , then