Really strange hang

Hi,
this is the 3rd time i get this strange hang (with about 2-3 months between). It happens without any change in hardware and looks like this.
I can work with my computer for about 20 minutes. Then the monitor turns black and the whole thing hanges (the LEDs on the motherboard are all green)
Neither the power off button (soft-off) nor the reset button work anymore, the vent turns, the hd spins, the cddrives don't open anymore. Power is still there. After pulling the power-plug and restart the whole thing works between 1/2min and 20 min and then the same. I've removed all PCI cards, checked the RAM and so on. But that doesn't help. 2 two times before i got it running by turning off/on, shutting down via software (in windows) and lots of other combinations, but that all combinations i tried so far didn't help.
Some times (after the first few hangs) just the HD LED turns on (on the front of my box) but the Mainboard LED stays black, and the whole computer don't boot (not even the BIOS (All LEDs on the MSI board are black then).
I've updated my GFX card from GF2MX to GF4TI but those crashes also happened before that (the 2 times  before) so i doesn't have to do anything with that.
Hardware:
MSI-6330 (K7T-ProA2)
Athlon 1GHZ
384MB Ram
Any ideas? I am pretty lost now, since it the problem is reproduceable but not solveable (and the timesteps of the hangs are variing ...)
Thanks alot.
-Stephan

right, this whole does it support 333Mhz FSB is really pi**ing me off now. I got a MSI KT3 Ultra ARU and I wanta get the athlon 2700+. The manual and whitepaper does say that its not supported but... http://www.via.com.tw/en/apollo/KT333.jsp... the chipset apparently does so why does the mobo manufacturer decide to engineer the mobo to hold back the chipset! Either way, after i've posted this i'm gunna check the northbridge to see what seral i got and i'm probablly going to buy the 2700+ anyway. I don't like spending money like this but i want the 333 FSB! If it don't work i'll get a mobo that does support it. Why have a piece of hardware that doesn't do what it should do eh?
The 333MHz DDR perfomance increase is a waste of money if you can't utilize it with a 333MHz CPU.

Similar Messages

  • I just jazzed up my 2 Ghz iMac with 10.6.8, and 4 gigs of memory. I'm VERY happy with the results (fast!), but now I have a thin yellow line way over on the right side of the screen, which goes from top to bottom. This is really strange! Any input?

    I'm VERY happy with the results (fast!). However, the really strange thing is this - there is now a thin yellow line, way over on the right side of the screen, which goes from top to bottom, and stays there no matter where I go or what I do. I've never seen anything like this! It was not there before I did the upgrades. Anyone out there ever heard of such a preposterous thing ~ or have any ideas on how to get rid of it?

    Hello Mark,
    It's going to mean a lot of reading but you should study the 'More like this' legend to your post's immediate right.  >>>>>>>>   plus some of the links within each.
    The problem is well explored with much guidance on what to do and where to go.

  • LaserJet 1320 not being recognized, really strange

    Hello all,
    I'm having a really strange problem that I think is mostly my fault. I just recieved a LaserJet 1320, and when I first hooked it up everything worked fine.
    However, I couldn't figure out how to do duplex printing, so I installed HP's Toolbox software. A big mistake, and I ended up having to manually delete all of the file it put in /Library.
    Anyhow, now my Mac won't recognize the printer at all. Print Setup Utilities shows nothing. I've reinstalled the HP PPDs from my Tiger CD, still nothing.
    The Printer works (Tested on an old Linux Box) and the USB ports on my Mac work, but still I can't get the printer to be recognized.
    *pulls out hair*
    Any help would be welcomed.
    Thanks,
    Clark
    Powerbook G4 1.5 GHz   Mac OS X (10.4.4)  

    I had the same problem with a friends computer.
    She had put the CD in also.
    I nearly lost the will to live trying to fix it so I plugged it into my powerbook to see if the printer was OK. I could print perfectly.
    I then copied the printer from username/Library/Printers/ folder and then dropped in into her printers folder. It worked brilliantly. All you need is another mac that has never been near an HP install CD.

  • Oracle 9.2: Really strange problem so Please Help!

    Hi All,
    I am having a really strange problem and I don't know why it is so. I have a simple sproc (for testing) that updates one column in a table and the where clause uses two in params and the set clause uses a local variable. I stepped through it in JDeveloper and saw the execute of the update and commit statements and in params' values and the local variable's value, but the row will not be updated! If I changed the where clause to use literal values (303 and '1045225') and the set clause to use 3, then it works. If params and a variable are used for these three values, the row does not get updated! And when I added the dbms_output.put_line to print out the param's value and the variable value, they are all there! Here is the code:
    create or replace procedure sprocTestUpdate (
         Action          in varchar2 := 'FETCH',     
         p_QueueID          in number,
         StatusDesc     in varchar2 ,
         p_PK          in varchar2
    as
         --- local varirables
         StatusID     pls_integer;
         MessageTypeID     pls_integer;
         EditActionID     pls_integer;
         v_QueueID     pls_integer := 0;
         --- error constants
         Source constant     varchar2(20) := 'RCSO';
         Sproc constant varchar2(50) := 'spCriMNetQueuePublish';
         --- status constants
         StatusUnprocessed constant varchar2(20) := 'UNPROCESSED';
         StatusProcessing constant varchar2(20) := 'PROCESSING';
         StatusProcessed constant varchar2(20) := 'PROCESSED';
         StatusError constant varchar2(20) := 'ERROR';
         v_errorMessage     varchar2(4000);
    begin
         begin
              StatusID := fnc_getQueueStatusID (StatusDesc);
         exception
              when others then
                   null;
         end;     
         ---set transaction isolation level serializable;
         if Action = 'STATUSUPDATE' then          
              update QueuePublish
              set StatusID = StatusID,
                   attemptcount = attemptcount + 1
         where queueid = p_QueueID and PK = p_PK;          
              commit;
              dbms_output.put_line(to_char(StatusID) || ' For ' || to_char(QueueID));
         end if;
    exception
         when others then
              rollback;
    end sprocTestUpdate;
    and here is the test script in SQL*Plus:
    declare
         action     varchar2(30);
         QueueID number;
         StatusDesc varchar2(30);
         PK varchar2(30);
    begin
         action := 'STATUSUPDATE';
         QueueID := 303;
         StatusDesc := 'PROCESSED';
         PK := '1045225';
         sprocTestUpdate(action, QueueID, StatusDesc, PK);
    end;
    thanks.
    ben

    Ghulam, this is what I was talking about:
    <<
    StatusID := 3;
    if Action = 'STATUSUPDATE' then
    update QueuePublish
    set StatusID = StatusID,
    attemptcount = attemptcount + 1
    where queueid = 303 and PK = '1045225';
    commit;
    dbms_output.put_line(to_char(StatusID) || ' For ' || to_char(QueueID));
    end if;
    and it won't update! but if I say set StatudID = 3 it will work!
    >>
    might be better to do :
    L_STATUSID := 3 ;
    ste STATUS_ID = :L_STATUSID
    ...otherwise you are just replacing STATUSID by itself,
    poor RDBMS-engine doesn't know what StatusId you are talking about

  • Really strange cluster isolation problem....

    We are still using Coherence 3.6.0 and is experiencing a really strange problem with two test clusters:
    Cluster 1 uses wka a.b.c.d:9000 and cluster name "cluster1"
    Cluster 2 uses wka e.f.g.h:9000 and cluster name "cluster2"
    I can using JMX and log files see that both clusters have started successfully with node 1 (the single wka) using port 9000.
    A client program first connects successfully to cluster 1 (using cluster 1 wka and cluster name as above). After the program terminate the same client program is run again this time versus cluster 2 (using cluster 2 wka and cluster name as above) but this time the connection is refused and to our total surprise the error message indicates that the Cluster 1 wka node a.b.c.d:9000 has refused connection and that the cluster name should be "Cluster 1"!!!!!!! We have checked and re-checked that the right combination of wka and cluster name (for cluster 2) is specified on the command line the second time....
    Short of a DNS configuration problem (we are in fact using server names rather than physical IPs in the command line overrides) that would resolve the two wka node names to the same physical IP I cant see any solution (not involving woodo, alien intervention and/or the Bermuda triangle) to this behaviour. I actually tried pinging the two host names and could see that they indeed resolved to different IPs to eliminate this, unlikely but possible, problem...
    It is my understanding that when specifying a unique wka for two clusters there is no need to set up unique multicast addresses / ports (since multicast is not at all used in this case) - can somebody confirm that this is indeed true or if this could have anything to do with our problem?!
    Any suggestions or ideas (in addition to hiring a shaman to exorcise our servers :-)) are warmly appreciated...
    /Magnus

    After studying the problem more in detail I have come to the conclusion that this indeed seem to be a bug in Coherence 3.6.0. It does however not occur with 3.6.1 or 3.7.0 but if the problem is unknown I would have checked it out...
    The problem is really easy to reproduce. Create two clusters (can be single storage node, local or remote does not matter) each with a unique WKA port (of course).
    Execute a simple client program (non storage enabled) first against the one cluster then against the other. The program I used just looked up a cache ("near-test") and printed its size (in this case zero since I never loaded anything into the cluster).
    You don't need to enable pof or anything specia. The cache-config iin the coherence.jar works fine. I have tested this both on distributed clusters on Linux and locally on a single Windows box.
    You will notice that the program works against the first cluster but fails when run against the second.
    /Magnus

  • Ethernet Port is acting really strange?

    So I am having the hardest time coming up with a solution to a really strange problem I'm having.
    Day One: My ethernet port just stopped noticing when it was connected to a internet connection. I did a restart, PRAM reset, anything that I could think of. Nothing worked. I made an appointment to the Genius Bar and the same problem was happening there.
    So they booted up a new image of OSX on a thumb drive and ethernet port was working! So the Genius bar guy removed all my preferences/network .plist files from MY OSX and everything was back to normal.
    So we know this isn't a hardware issue.
    Next day: No more ethernet, Again...
    I did the same proceedure that the Genius bar did. No result. WHAT THE DUCE? I still didn't have an ethernet port.
    I then reinstalled OSX, to get a clean state. Ethernet is back and working normally. All good.
    Next day: Ethernet port "works" but is selective on which one it wants to use.
    I work in two different offices.
    At the first office. The port next to my desk doesn't work when I connect. Another person can plug in (with same cord or different chord and get internet access) no issues. I can go two feet over and plug in there and the ethernet port recognizes it is plugged in and I revieve internet.
    At the second office, the cubicle I reside in has 4 ethernet ports. All four work for other people. Only 2 work for me.
    WHAT THE DUCE is going on? Can anyone help me with this?

    Along the same vein, after resetting the PRAM and SMC, try turning all security off: no firewall, enable all apps and turn FileVault off if in use. Not advocating a "go stroll naked in the rough side of town", but rather to try and confirn that those components have no bearing on the issue. Do enable all you use immediately after.

  • A really strange issue in Stratus

    Hi,
    I'm facing a very strange issue in Stratus. Let me explain:
    I have two mac machines (i.e. One is Mac and other is MacPro). Both are in the same network. When Mac connects with MacPro, audio, video, text conversation goes really well but when MacPro connects with Mac, I see audio, video but MacPro can't send text messages to Mac but Mac can send text messages to MaPro. It's really strange I know but I'm stuck in that issue. Please help me out.
    Thanks

    > Hi Roberto,
    > I tried by removing D:.
    > Nothing is happening.No Luck.
    > I have created two more directories in tempforXI as
    > sender and receiver and made necessary modifications
    > in comm channels like \tempforXI\sender...and placed
    > the file.
    >
    > regards
    > Raju
    Remember that the format you should use is:
    <share name>\<folder>
    and not
    \tempforXI\sender
    Where share name is in your case tempforXI.

  • Really strange network issue that is specific to OS X 10.6.8

    Really strange network issue that is specific to OS X 10.6.8 on both 2 iMacs and an older intel Mac Pro.
    Any system running 10.6.8 is achieving on average 15 –20 mb a sec transfer rates regardless of drive speeds, cables, network activity etc.. I've spent some time removing any cable , drive speed, router issues to the point where one machine dual boots into both 10.6.8 and 10.6.5
    The 10.6.5 system has network speeds of 60mb – 80mb p/sec transfer rates.
    Our older 10.5.8 PPC mac gets 80mb and my 2011 Macbook Pro 10.7.2 hits 60mb – 80mb consistently as well.
    Any idea what the cause is?
    Cheers

    Since your other Mac running 10.5.8 is not affected, you know that your AirPort router is functioning correctly.
    What changed on your Mac? This seems like a post for either the Mac OS X v10.6 Snow Leopard support area, or the support area for your model of Mac.
    We normally handle questions about the AirPort Express, AirPort Extreme or Time Capsule in this area, but you can certainly wait to see if you receive a response here.

  • Really strange musical fonts have appeared

    Just today I was using pages when i noticed these really strange musical fonts had appeared:
    There are alot more of these wierd fonts: these are just a few examples.
    i have this musical creation program on my computer called Sibelius First 6: I was wondering if that was the cause.I don't use it much and am on the trial version, so I could uninstall the program if it would fix this strange issue.
    Thanks

    cereskit,
    If you are really using 10.6.4, updating your OS may solve the problem.
    It would be best to download and install the 10.6.7 combo update and then run Software Update.
    Jerry

  • This is really strange...

    Hi, has anybody here ever encountered such problem?
    My code is like:
    String date = Util.Bytes2String(m_sDate);     
    if (date!="")
    try{
    String yy = date.substring(0, 4);      
    String mm = date.substring(4, 6);
    } catch (Exception e){}
    I have tested that the string date is empty(="") but the "try" statement is still executed, why? This is really strange to me.
    Thank you.

    Use
    if (!("".equals(date)))You only use == and != to
    1) compare primitives
    2) see if a reference is null
    3) see if two references refer to the same object
    Even if date contains the empty String, it doesn't necessarily (and in your code won't) refer to the same object as the one in the constant pool that holds your "" String object.

  • MacBook Pro suddenly really slow, hangs often

    My MacBook Pro is about 2 years old. It had been slowing down and occasionally running out of memory, which I figured was due to the fact that my hard disk was kind of full (had about 100 Gig of space available, which I thought should be enough, but whatever). But in the past 2 days this has gotten really, really worse. It's almost unusable. It's running Snow Leopard.
    It takes a full 5 mibutes to start.
    When I open an application it takes really long to open, then evey few things I do it hangs for a couple of minutes with the rainbow wheel spinning. Occasionally an application completely stops responding, and has to be force quit.
    This even happens if I have only one app open at a time.
    What has changed recenttly:
    • 2 weeks ago I switched from DSL to cable. I have a new cable modem and wireless router. There is some random software that Comcast sent me but I don't think it's even installed.Things were still running slow and frustrating but pasable after that.
    • 5 days ago I bought a new Droid 3 cell phone, and installed The Missing Sync on my computer to sync music, photos and calendar. It still ran slow after that, but not crazy messed up like now. I don't remember if the speed seemed any worse -- I just know that it didn't hang often the way it does now. 
    • 2 days ago I bought a new MacBook Pro with a faster processor, runnign Lion. I started migration assistant, then realized it was going to take 14 hours and I had work to do, so I stopped the assistant. and decided to run it again later. I think it's since then things became a complete mess, and every day that passes seems worse.
    • In the meantime, I may or may not have installed some software updates. I get update notices all the time, and generally install them right away without giving them much thought. In fact, now that I think of it, Firefox startded acting pretty slow after the last update (spinning wheel when opening new tabs, loading information, switching from one tab to the other), which I attributed to a buggy new release but it might be related. I don't know how long ago that was; I think about a week or two. There may have beensome OS udates too, I can't remember.
    I did run migration assistant again late last night, after cleaning out my old hard disk (backing things up to DVDs and external drives) so it would have less data to transfer. But it transfered over everything, including old apps thatI don't need and don't know how to uninstall, and I am worried that I might have transeferred over whatever the problem was with the old computer. I can't easily test because the apps that I use every day (Microsoft Office 2008 and the Adobe Creative Suite CS4) don't run on Lion so I will have to buy upgrades for everythign before I can do any work on this computer, which is quite frustrating in itself but a different story. So I haven't been able to test whether my new laptop has the same problem; it does generally seem faster but not as much of a speed increase as I had hoped.
    I ran disk utility on the old laptop, and it did find some directory issues, but I can't repair it because I don't have any discs to start up from. Why is it that Apple doesn't ship disks with its software? Granted, my new laptop runs a different operating system from the old one, but I didn't receive any system disks with it so I really don't have anything to start externally from if there ever are any problems.
    I want to keep the old mac. I occasionally travel to countries where I don't feel comfortable bringing a new expensive computer, so I intend to use my old computer as a travel laptop and the new one as my primary work laptop in my home office. But that means that I don't want to have to throw out the old one, I need to get it working again.
    (also, until I install the Microsoft and Adobe upgrades, I can't do any work on my new laptop and I have deadlines to meet that I will need to continue working on with the old laptop) (which, in fact, makes thisissue rather urgent -- I ned to keep working while it's being resolved)

    OK, so someine suggested I run AppleJack -- it did make some repairs and now Disk Utility doesn't see anything wrong with my directory, but still finds some permissions problems. Almost all of them seem to be in System/Library/CoreServices/Front Row.app. Says:
    should be -rw-r--r--, they are lrw-r--r--
    Do I need to fix these or can I leave as is? What is Front Row? Does it make any difference who has permissions on these if they are for a program I don't use?
    Also:
    stalling problems seem to have been resolved for now (I opened 3 different apps and they seemto work OK). But I still have a problem with the Microsoft Office applications -- I can't easily switch to/from Excel or Word from/to any other apps, I can't CTRL-TAB and select the app, I have to go to that app's window (means moving other windows around until I can see it) and click on it to switch to that app. It's doable but a nuisance. Can it be fixed?
    Also - important:
    Would the directory problems I had on my old hard disk have affected the information I ported over to the new laptop yesterday? Will I have the same problems on my new laptop? I can't check because I haven't downloaded the upgrades to Microsoft Office and to the Adobe CS Suite, so I pretty much can't open hardly any programs on my new machine right now.  I thought maybe I should run Applejack on that too, just to check, but apparently it doesn't work with OSX 7 Lion.

  • A strange hang

    I am using Visual C++ .NET 2003. The code takes up approximately 600K
    of disk space (so you have any idea of the size). First, I compiled,
    builded, and executed this program using exclusively floats for all
    precision computing. However, I realized for my application that more
    precision was necessary; therefore, all the float instances were changed
    to double. The program has no trouble compiling and linking, however
    when executing it hangs with the error: System.NullReferenceException
    (debug mode).
    It ran perfectly before changing from float to double. This was the only
    change made; the only other changes were casts from double to float
    used when absolutely necessary. Also, there is something strange: When
    adding and removing more global identifiers (which do absolutely
    nothing), the program seems to freeze at different execution points, so
    it seems unlikely that there is a failed reference; but I could be wrong.
    Does anyone see what the problem is right away? Sounds like some sort of
    memory corruption, perhaps? A loading problem? The heap?
    Does anyone have any idea what this could be? I'll try anything at this
    point!
    Thanks in advance!!

    Hi Terrence,
    Are you using any components of Measurement Studio?  Can you isolate this error to a particular line of code?  This is on the development computer, right?
    If you are not using any Measurement Studio components, you may want to also post on a .NET forum.  Here is some additional information about this error:
    http://msdn2.microsoft.com/en-us/library/system.nu​llreferenceexception(VS.71).aspx
    http://codebetter.com/blogs/raymond.lewallen/archi​ve/2005/06/23/65033.aspx
    Cheers,
    David Goldberg
    National Instruments
    Software R&D

  • Computer Acting really Strange After 10.4.11 Update

    Two days ago i updated to 10.4.11, at first i had some general problems with safari and some apps not working, but after reading and reinstalling apps, i thought all my problems was solved.
    But !
    Now i have a strange problem. Everything works fine on start up, but after a few hours it starts to work REALLY slow. For example, moving the cursor to the dock, it takes a few seconds before it pops up, and moving the cursor over the apps it "stutters", it does the same in all my programs.
    i can restart and i wont have the problem for an hour or two, but many tasks i use my computer for takes longer than that, so i really hope someone can help me with my problem.
    As english is not my main language, i also hope that i have described my problem well enough.
    Thanks
    Martin
    Message was edited by: worldwalker

    I've been having similar problems with my G4 iBook after updating to 10.4.11.
    After using the machine for awhile, my machine sort of 'freezes'. I say sort of because I can move the cursor around, but I'm not able to switch applications. The dock cannot be accessed. The menus at the top of the screen cannot be accessed. Force Quit cannot be accessed through keyboard command. The only thing that works is the cursor. I can't even switch applications by clicking on the window of a different application if I can see it underneath whatever is at the front of my screen.
    I repaired disk permissions from my Tiger Install DVD. I ran DiskWarrior 4. Nothing has helped. I'm still getting the same problem. At first I thought it was Safari 3, but this problem is happening no matter what application happens to be open.
    The only way to get out of this is to restart using the control-command-power combination. Until this problem is resolved, I'm going to hold off updating my other iBook.
    An ideas?

  • I have a really strange problem....

    I have all my songs organized by genre, and on my ipod it repeats the genres, like it says rock and rock below it again, it does this wiht many of the genres, and sometimes they have the same artists in them, and sometimes it has one artist in one, and all the rest of that genre in the other...this is really wierd. I made sure that the genres on itunes were all the same, like spelling and capitalization, but it is still doing this.
    also, i noticed this is only happening with those genres that appear twice in the genre window that pulls down when i organize my songs, i don't kno but i think if somehow i could delete the genres i don't need it would fix the problem so that way i would only have one genre of rock, pop, or whatever repeats on my ipod...pleassssssse help if you kno how to fix this, it's driving me INSANE!!!

    Yes, im having the exact same problem.

  • Has anyone found their cutaway photo in iMovie 11 to be corrupted by an erroneous 2nd cutaway photo that appears in the middle of the chosen photo? It's really strange!

    I'm working on an iMovie video with cutaway photos. Everything was great until I was nearing completion. I decided to take another full view of the project as I have trough out the project. Now I have a serious problem in that my first cutaway has an erroneous 2nd cutaway that appears 1 second after the selected cutaway starts. I can change photos and it doesn't change the outcome. The same photo appears.  If I remove the photo from the clip, the clip plays flawlessly. I was working near the end of the movie at the time and the problem is at the very beginning. I hope someone understands what I'm saying.  It's a pretty strange thing to happen...even by mistake. Apple says you can't do a cutaway inside a cutaway. So I don't know how I can do it with a missed keystroke on a slip of the finger. I hope someone has a direction for me! Thanks

    Hello,  We are having a similar problem running iMovie '09.  We get the exact same error as you reported. 
    "Unable to prepare project for publishing" The project could not be prepared for publishing because an error occurred (-50)
    We have a very similar situation were we have multiple repeated clips.  However, our clips are 2.4 's.  Like you, we took the finished project and started eliminating edits that we thought might be preventing it from exporting. The following actions still would not allow the project to export:
    removing title pages
    removing transitions
    removing imported music from iTunes
    removed another clip from another event
    closed all other programs
    closed iMovie, powered off computer, opened iMovie, tried to export
    reconfirmed the last project exported would still export - it did without issueThe only difference between the project that will export and the one that does not are these short (2.4's) repeating clips
    When we create the new project from the recorded event without making any edits (just as recorded), it exports without issue.  We have started the arduous task of adding back in each edit and testing it for export until we determine which edit is causing it to "not export".  This is a very inefficient way of troubleshooting.
    This is a science project for my son and we need to be able to save it as a QT or mpeg4 movie so that he can submit it to his teacher for viewing and a grade!
    Any ideas from any other users would be greatly appreciated.

Maybe you are looking for

  • Calling search helps dynamically in module pool program

    Hi Experts, I have created two search helps. I need to call these search helps in my module pool program dynamically for a single field (i.e ZMATNR). you might be known... if it is a single search help, we can assign that in field attributes. But her

  • Mouse cursor problem with CS4 64 bit under Windows 8.1

    When using tools such as the various lasso tools, I get three cursors in a horizontal line, the leftmost one being the active one. Then when I click in a panel, it turns into a hieroglyph resembling three small vehicles or boats in a line. I don't kn

  • How to start airport extreme on windows 7 professional

    how to start airport extreme on windows

  • Addition across rows & columns

    Hi all, I am new to Business Objects so please bear with me. I am using a cross tab in Web intelligence. I want to compute sum across rows & columns & divide the cells with this sum. foreg.        interval1           interval2        Count           

  • Photoshop CS, Reparatur der Aktivierung

    Nach Plattenwechsel vor ca. 14 Tagen kann die auf dem Computer vorhandene ältere Version Photoshop CS nicht mehr gestartet werden. Meldung Aktivierungstyp Reparieren 5: 12029 Online Aktivierung bricht ab. Telefonische Aktivierung nicht möglich da Ban