For everyone having memory problems with this board

I have been working on my memory problems with this board. Memtest failed every pass yet memory was fine and board was fine. Was using Kingstone Value Ram
Set bios version back to 1.7
set preformance to fast
set memory to
2.5
4
4
8
Set voltage to 2.7 if that does not work go to 2.75
now working great no more blue screens or os getting corupt it seems to run like a charm
Thanks to the people who have posted sefull iformation even know you have to dig deep to find it.

i was having mem problems with this board. But i set up bios v2.2 - ram voltage 2.75 - performance mode: slow and ram timing by SPD.
Seems to work great for me but my video card is messed up so my comp dies every ones in a while.  

Similar Messages

  • My iphone 4s crashes too much when i download and app from store and open it its freeze or crash and restart the phone i think i am having big problem with this device i restored it to factory settings and no waay!

    My iphone 4s crashes too much when i download and app from store and open it its freeze or crash and restart the phone i think i am having big problem with this device i restored it to factory settings and no waay!

    I think many of us need a Defense Against the Podcasts App professor.
    Have you looked at this Apple support page?
    http://support.apple.com/kb/HT6190?viewlocale=en_US&locale=en_US

  • P6N SLI. Will G.Skill memory work with this board?

    I have been an exclusive Asus MoBo user over the few years that I've been building my own rigs. Tom's Hardware has a good write-up on MSI boards and it caught my attention and interest, especially after comparing features versus cost as well as positive user reviews.
    I'm wanting to build the next system around a Core 2 Duo and eventually include all that would be necessary for an efficient HD-DVD/BlueRay system.
    After much comparing I've decided enthusiastically that I want a P6N SLI board. My current system is based on an Asus P5ND2-SLI board sporting a P4 630 CPU and 2 Raptors in RAID 0 configuration. It provides imagery via an EVGA 7800GT CO card. My last minute concern comes from narrow memory compatibility according to the MSI memory guide. This concerns me because my current system uses DDR2 memory and I just recently invested in two 1GB DDR2 667 G.Skill modules for it which I have yet to receive.
    My enthusiasm for an MSI board...the one I want...was bolstered by the idea that I thought I could use these new memory modules in it. Not seeing G.Skill in the MSI memory list has dampened my enthusiasm.
    If anyone knows if G.Skill will work in this MSI board I'd appreciate the renewal of excitement. Otherwill I'll just spent $20 more for an Asus board.
    Thank you

    F2-5300CL5S-1GBNJ
    This is the particular model number of the modules I bought. Thanks for your help.
    Quote from: Jack the Newbie on 04-March-07, 02:17:39
    Just a few days ago there was a Test-Report on the P6N SLI on the German MSI Forum. 
    http://www.msi-forum.de/thread.php?threadid=29899
    These were the Modules that were used throughout the test:
    G.Skill DIMM Kit 2048MB PC2-6400U CL4-4-4-12 (DDR2-800) (F2-6400PHU2-2GBHZ)
    I am not sure of the specific kind of G.Skill modules you ordered.  Here is an overview if all modules with exact model-IDs:
    http://www.gskill.com/gallerymain.html
    If you know the exact kind of the RAM-sticks you already purchased you can also have a look here:
    http://www.gskill.com/gstechforum/
    The thing is that it is not only a question of if G.Skill modules are supported or not but also a question of which specific model you are planning to install.

  • Bioshd2..i have been having a problem with this bioshd2 error..no drivers detected..

     The comp is an hp 6530f.the first time the prob occured was when my dad unpluged the computer from the surge protecter..upon restart,it just says boot failure insert system disc and press enter.when the comp..was orriginally purchased there was no recovery disc and i never made one.when i do a diagnistic it says bioshd2 error no drivers are detected..i  tried changing bios settings and a few other things and nothing.so i turned the comp off and the next day turned it on and it booted up normally.the comp worked fine for about a week then one day my dad moved the comp a few inches to check somthinig behind it when the comp suddenly started to shut down by itself..and when i tried to turn it back on, i got the same thing. bioshd2..idont think my hd is bad because it came back on but what could be causing this problem..i tried alot of different things, even taking the battery out for 12 hours to reset bios and nothing..i left it alone for about a week and when it was turned on again it booted normally.now it is working but im afraid of it happening again..ive looked at all of the wires in the comp and dont see any faulty wires..i checked the power supply because when my dad moved it it shut off so i figured it was that but power seems to be working fine.ive been trying to perminetly fix the problem for weeks now and i dont know what else to check..any help would be awsome thanks.

    If the motherboard is touching the case it could cause problems. A short in a wire could cause problems as well.
    I don't want to say toss the computer around to see if it happens again, but unfortunately it's one of those things that you might not discover it happens again for another month. At that point you can start with changing out the cabling, it's a rather cheap inexpensive fix, then inspect the motherboard, look to see if there is any point where the board could be making contact with the case.
    If I have helped you in any way click the Kudos button to say Thanks.
    The community works together, click Accept as Solution on the post that solves your issue for other members of the community to benefit from the solution.
    - Friendship is magical.

  • Having a problem with this code

    a buddy of mine is teaching me some java, and im doing ap roject in which i have to set up a loop that will take an inputed script a b c or d, and convert it to a price, then add up the prices together, using up to 10 variables, this is what i got so far and im having trouble finishing it, also getting errors on the lines with total, any help would be appreciated
    package projectloop;
    import java.util.Scanner;
    public class Main {
    public static void main(String[] args) {
    String input = new String();
    Scanner in = new Scanner(System.in);
    for(int i=0;i<10;i++){
    System.out.println("item");
    String s = in.next();
    if(s.equals("a"))total=9.95;
    if(s.equals("b"))total[i]=19.95;
    if(s.equals("c"))total[i]=29.95;
    if(s.equals("d"))total[i]=39.95;

    Comments embedded
    themanofstainlesssteel wrote:
    package projectloop;
    import java.util.Scanner;
    public class Main {
    public static void main(String[] args) {
    String input = new String(); // You never use the "input" String reference variable
    Scanner in = new Scanner(System.in);
    for(int i=0;i<10;i++){
    System.out.println("item");
    String s = in.next();
    if(s.equals("a"))total=9.95; // you never declared the "total" array
    if(s.equals("b"))total[i]=19.95;
    if(s.equals("c"))total[i]=29.95;
    if(s.equals("d"))total[i]=39.95;
    You never do any addition.
    I also recommend using prices in cents.

  • So is everyone having temp problems with the K8N Neo2??

    like 50'C-60'C idle CPU temp that includes a good quality heatsink w/AS5???

    Well the XP-120 technically doesn't fit....  and the fan pushes about 80CFM
    When you install the XP-120 one way, it obstructs the AGP slot by about 3mm.  If you rotate it, it's obstructed by some resistor caps and covers up DIMM's 1+2.
    So unlike the thermalright.com compatibility list, you have to run RAM in DIMM's 3+4 and tilt the cap for an EXTREMELY TIGHT fit, or do what I did and dremel off 4 fins and 6mm of heat pipe.
    I capped the pipes with some silicone, since pipes need constant internal pressure to function, but... that leads me to another question as to why the heatpipes are filled with air and not a fluid when air is probably the worst thermal conductor evar.
    Theoretically if that XP-120 mod job some how compromised the thermal integrity of the entire heatsink ( i have no idea how ), then the Zalman should fix that.  Then the problem is as to why my BIOS system temperature @ startup is 30'C and when I load up MSI Core Monitor, it lists it at about 10'C.
    Something is definately screwed up.  It's either a BIOS error, my XP-120 heatsink (doubt it), or defective temp sensors and I need to RMA it.
    I also have a suspicion that by default, the BIOS reports the temperature coming off the Winbond 2 Diode instead of the Winbond 2N3904 sensor.  Temperatures are about 8-10 degrees 'C hotter than the system temperature when reading the 2N3094, but then again I don't know which is the correct sensor to be using or any way to verify.

  • I have three programs I would like to uninstall from my apple pro ,   also I am trying to install skype but having great problems with this to  Marie

    Hello, I have three programs I would like to delete and uninstall from my apple pro , plus I cant seem to install skype for some reason,as we are going to be traveling around Australia soon I would like to keep in touch with family and friends. I would be most thankfull for your help
                                             Regards  Marie

    Hi Marie
    Can you please describe what happens when you try to install Skype? I've found one common issue people have is that they don't actually fully install it - a lot of people download it, open the downloaded image, and run it from there - and dont actually ever copy it to their Applications folder, so next time they look for it, it can't be opened. Try again from scratch - go to the Skype website, download the file, if it doesn't automatically display the Skype disk image on your Desktop, go to your Downloads folder, locate the Skype download and double-click it to open, then, open a new Finder window and drag the Skype application from inside the disk image to your Applications folder. Once that's done you can trash the disk image. Go to your Applications folder, find Skype and launch it. Let me know if you get stuck.
    As John says, it would be very helpful to know exactly which Mac you have. If its a laptop, you probably have a MacBook Pro, not a Mac Pro, which is a very large, heavy silver box and not amenable to being dragged around Australia!
    Matt

  • Tried to update and app and the upgrade froze. It will not finish upgrade. The app maker says it's on Apple's end and everyone having a problem with it. What to do?

    Tried to update an excellent app from Launchpad Toys, Toontastic, and the update froze. It continuously says 'Installing'. Repeated tries. The app maker says it's on Apple's end and they have other customers with the same problem and no one knows what to do about it! Deleting the app would lose all my daughter's work on it! It is on IPad 2. And it a not been updated to ios6 since it will not update that anyway.

    You can't merge accounts. But you can check your purchase history:
    iTunes Store & Mac App Store: Seeing your purchase history and order numbers
              http://support.apple.com/kb/HT2727
    Also, what may seem stupid to you... may be a protection of privacy to others.

  • Bios and memory problem with a P67A-GD80‏

    Hi, I'm experiencing 2 problems with this board and I have not yet install an OS in it
    first problem : in the bios if I go in the section Green Power, the system froze, I have to press reset to reboot
    second problem : if I install 2 stick of memory in the blue slot, it work fine
    if I remove them and place them in the black slot, it work fine
    if I place 4 sticks at the same time, the system crash and reboot and make a loop
    here the stick I try : Patriot PVV34G1600LLR 4 of them
    G Skill F3-12800cl9q-16GBRL  4 of them
    I see that new version of BIOS is supose to fix some problem with compatibility of memory, the problem is the way the board shut down when I put 4 stick, it's like the board is overload the led don't act like when you press the resset, they kind dim before the board crash
    thanks and sorry for my english , I must add that it's more than 25 years I build computer I build around 3 a week, I have never RMA one motheboard until now. 

    Quote
    the problem is the way the board shut down when I put 4 stick, it's like the board is overload
    Quote
    do you mean I have to enable XMS ?
    Actually, it's not likely a mainboard overload at all, it's probably the CPU IMC having the problem. Enable of X.M.P. is the last thing you want to do. If the RAM has to be set in this manner, it is not programmed to properly default at the platform's designed specifications. BIOS revisions dealing with compatibility are being worked on to make up for this RAM manipulation.
    My apology to the OP in advance for the next comments. Some here at the forum have been advised before, that having to set X.M.P. to get the RAM to work properly (having to OC it) is a wrong way to go about it. The platform must first be able to run at stock/auto/default with no issues 'first', then venturing off to more exotic settings later if desired. This 'forcing' of non spec 'rated' RAM & programming is purely product marketing tactics. As mentioned, with four sticks of RAM, the CPU IMC may require an increase of DRAM V. Here is the official specifications from the current Intel data. This data is not really open to debate. For those that have issue with it, take it up with Intel!

  • Memory problem with jdk/jre 1.1.8

    My name is BERGMANN Yannick.
    I'm working for IRM in Li?ge and we developped an application (user interface for an industrial measurement system) in Java (JDK/JRE version : 1.1.8).
    We have a big memory problem with this application :
    - This user interface is running on a WINDOWS NT PC with 128MB.
    - This is the command to lanch our application :
    C:\Program Files\JavaSoft\JRE\1.1\bin\jrew.exe" -ms32m -mx32m -cp "\Program Files\HMI\HMI.zip;\Velocis\Add_On\Jdbc\raima.jar;\Program Files\Swing-1.1.1\swingall.jar" be.irm.hmi.kernel.HMI -t15 -d"Velocis rdstcp" -newdb -mf1m -mr20
    - When our application is running, everything seems to be OK in memory for it. The garbage collector seems to work properly and our application has always at least 5MB free memory (We use the java instruction "Runtime.getRuntime().freeMemory()" to know this).
    - But when we look in the "Windows NT task manager" for the "jrew" application, the memory increases ALWAYS.
    - After 5 days our application is completely frozen and blocked ...???
    - here is a memory map of our Windows NT PC :
         "jre.exe"     "commit total"     "commit limit"     "commit peak"     "physical total"     "physical available"     "physical file cache"     
    Monday     92264     109256     194944     109424     130484     19492     6216     
    Thuesday     106196     123072     194944     123348     130484     6072     5840     
    Wednesday     110836     132288     194944     132416     130484     4408     5140     
    Thursday     108200     144980     194944     145140     130484     4888     5148     
    Friday     109440     158319     194944     161334     130484     4911     4992     
    Monday     111600     209060     228548     209148     130484     5184     3484     
    Have you any idea of what is happening with "jrew" in memory ?
    We have had this problem for six month and we are totaly out of idea.
    If you can give us any idea, we'll appreciate a lot.
    Thanks in advance,
    BERGMANN Yannick
    IRM SA - Software Engineer
    Tel. (32)4/239.90.10
    Tel. (32)4/239.90.74 (direct)
    Fax (32)4/263.40.97
    E-mail [email protected]

    We had a memory problem with a swing applet in our company. The major reason for this was that we added new components in a JTree and removed them later again, and the components we removed were never garbage collected. This was because with these components we added different listeners, and we didn't remove the listeners after we didn't need the components anymore. After we corrected this, the components where garbage collected.
    Perhaps it's a similar problem you have, or I have no idea. Check that you remove actionlisteners, mouselisteners etc from components you want to be garbage collected.
    You could also test your application with OptimizeIt to see what objects you create and how many you get of them over time: http://www.vmgear.com

  • Memory problem with ITS

    Hello friends,
    we are having memory problem with integrated ITS.. on one application server all memory of ITS is getting exhausted. We think few users take lots of memory and it never gets released.
    I checked Note 742048 - Integrated ITS, memory requirement in application server but parameters looks ok. Sometime, when i kill a user session in SM04, some part of memory was released. However i am not able to find which sessions are taking max memory as i do not see any workproess active in SM50.
    in SITSPMON :
    Memory Consumption: Overview
    Sessions:     27      24,710,431 Bytes       915,201 Bytes/Session       2,433,8
    Templates:            14,793,306 Bytes
        Sess. & Templ.    39,503,737 Bytes     Currently available to ITS: 81.92MB o
    ITS Session     memory type     Peak          Memory     Total     Current
    USER 001 2463     Session Memory     1,955,757     938,597     7,574     723
    USER 001 2503     Session Memory     2,008,621     965,245     9,181     930
    USER 001 2523     Session Memory     2,412,477     856,925     11,327     82
    thanks
    ashish

    and what is 2463 is line : USER(user ID) 001(Client) 2463(??) Session Memory 1,955,757 938,597 7,574 723 as this is not a work process ID.]
    Basically i am trying to correlate ITS session with SM04 Session of user.

  • I haveing problem installing itunes on Windows 7. Erorr masage is "There is a problem with this Windows installer package. A program reguired for this install to comlet coudnt be run. Contact your support personnel or package vendor."

    Hello,
    I haveing problem installing itunes on Windows 7. Erorr masage is "There is a problem with this Windows installer package. A program reguired for this install to comlet coudnt be run. Contact your support personnel or package vendor."
    Please heLp.
    Thank you.

    Repair your Apple Sofyware update.
    Go to START/ALL PROGRAMS/Apple Software Update. If it offers you a newer version of Apple Software Update, do it but Deselect any other software offered at the same time. Once done, try another iTunes install

  • Having trouble trying to install itunes 10.5. Receive message saying 'There is a problem with this installer package. A program required for this install to complete could not be found. Please contact product vendor'

    Having trouble trying to install itunes 10.5. Receive message saying 'There is a problem with this installer package. A program required for this install to complete could not be found. Please contact product vendor'

    Managed to get the installation sorted. Go to Control Panel, and where you have a list of all installed programs, repair all the Apple/Itunes related programs. Installation worked fine after that. Hopefully it helps you out too!

  • Im having a problem updating my itunes. Im able to download the setup but it keeps on giving this message: there is a problem with this windows installer package. a program required for this  install this to complete could not be run. can anyone help?

    Im having a problem updating my itunes. Im able to download the setup but it keeps on giving this message: there is a problem with this windows installer package. a program required for this  install this to complete could not be run. can anyone help?

    Im able to download the setup but it keeps on giving this message: there is a problem with this windows installer package. a program required for this  install this to complete could not be run
    Perhaps let's first try updating your Apple Software Update.
    Launch Apple Software Update ("Start > All Programs > Apple Software Update"). Does it launch and offer you a newer version of Apple Software Update? If so, choose to install just that update to Apple Software Update. (Deselect any other software offered at the same time.)
    If the ASU update goes through okay, try another iTunes install. Does it go through without the errors this time?

  • I am having a problem with pop pups and small windows with ads constantly opening up on my safari?? Thought that macs didn't get virus? this looks like one- any experts around? please help me fix it with your instructions? really don't know what to do...

    Hi everyone,
    I am having a problem with my Mac OS X 10.7.5 mac book air , there are constant pop pups and small windows with ads blinking constantly opening up on my safari in front of everything?? it is constantly interupting me and makes me mistakingly click on it then another new windows open behind the one im using..
    I am not too sure if thats a virus or trojan.. I always thought that macs didn't get virus? this looks like one to me… any experts around? please help me fix it with your instructions? really don't know what to do... thanks

    Those are not viruses. You have probably installed some malware:
    The Safe Mac » Adware Removal Guide
    Helpful Links Regarding Malware Protection
    An excellent link to read is Tom Reed's Mac Malware Guide.
    Also, visit The XLab FAQs and read Detecting and avoiding malware and spyware.
    See these Apple articles:
              Mac OS X Snow Leopard and malware detection
              OS X Lion- Protect your Mac from malware
              OS X Mountain Lion- Protect your Mac from malware
              About file quarantine in OS X
    If you require anti-virus protection Thomas Reed recommends using Dr.Web Light from the App Store. It's free, and since it's from the App Store, it won't destabilize the system. If you prefer one of the better known commercial products, then Thomas recommends using Sophos.(Thank you to Thomas Reed for these recommendations.) If you already use Sophos, then be aware of this if you are using Mavericks: OS X Mavericks- Sophos Anti-Virus on-access scanner versions 8.0 - 9.1 may cause unexpected restarts
    From user Joe Bailey comes this equally useful advice:
    The facts are:
    1. There is no anti-malware software that can detect 100% of the malware out there.
    2. There is no anti-malware that can detect anything targeting the Mac because there
         is no Mac malware in the wild, and therefore, no "signatures" to detect.
    3. The very best way to prevent the most attacks is for you as the user to be aware that
         the most successful malware attacks rely on very sophisticated social engineering
         techniques preying on human avarice, ****, and fear.
    4. Internet popups saying the FBI, NSA, Microsoft, your ISP has detected malware on
        your computer is intended to entice you to install their malware thinking it is a
        protection against malware.
    5. Some of the anti-malware products on the market are worse than the malware
        from which they purport to protect you.
    6. Be cautious where you go on the internet.
    7. Only download anything from sites you know are safe.
    8. Avoid links you receive in email, always be suspicious even if you get something
        you think is from a friend, but you were not expecting.
    9. If there is any question in your mind, then assume it is malware.

Maybe you are looking for