[VIA] So where's this error message from? KT4V or Windows 98se

Hi,
Reference KT4V Series and using windows 98 se.
My system has been running fine for a couple of years then one day the following happened.
Slow boot up and when I tried to open/close windows applications it was very slow.
e.g. click on 'My Computer' took 5 minutes to open then no drives displayed for a further
5 minutes. 
Virus scans etc found nothing.
Then the dreaded tasks had to be done.
I fully formatted the drive and checked for surface errors (took 10 hours).
Drive has no errors - I re-loaded windows 98 se - still the same problem. 
Infact when trying to delete a file it actually went into freeze mode. 
I have a 60gb drive, 256mb but in the past I would get the following error:
'the system is dangeroulsy low in resources and will be shut down' even though very little was
 running.
I would re-start okay.
now i get the error:
' the system is either busy or has become unstable' 
any ideas on these errors? 
thanks for reading this.
Thanks to those that replied - I have now solved the problem.
The Bios settings have some how got set to the default settings as a result my FSB was set to 107mhz
I have now set this to 266mhz and wow behold the windows applications are opening and closing
as quick as before. 
As a default the boot sector virus protection is set to off - when I know I set this to on.
Maybe the 'system is unstable messages and low on resources messages' somehow reset the bios to safe default values - especially as the system was closing itself down after these messages.
The KT4V will support a processor speed of 1.3 ghz only the Processor I was sold with the board is 1800+
As a result of resetting the FSB in the bios the processor speed is now running at 1.55 ghz
The system now boots up and closes down at speed and as said above the applications open and close ok as well.
The reset to default settings also meant that scan disk when checking the reformatted disk for surface errors ended up taking 11.5 hours to run on a 60gb hdd when the program itself estimated
only 3-4 hours.
Lot of time wasted - so check your FSB bios settings along with your boards capability - to ensure you are getting the Processor speed you paid for.

have you cleaned your PC recently if at all?
open up your case, if it is very dusty your system may be overheating. remove the heatsink and fan, and clean all old thermal paste from cpu die and heatsink. clean dust from heatsink fins and from fan blades. reapply fresh thermal paste to cpu die surface. only a very thin layer is needed. arctic silver is good stuff.
use a can of compressed air ("air duster") to blow any surface dust of motherboard and other cards. remove memory sticks and blow into slots.
remove your PSU and remove the top cover. again use air duster to blow any dust buildup from PCB and components
Quote
I fear a hardware issue
possible. but if you don't tell us your hardware it is difficult to guess

Similar Messages

  • Who knows where does this error message come from

    I have a program wrote with visual age java of ibm.it runs ok in develope page. I exported it in a jar file, it run some minutes and abrrupted with a message like this:
    *** panic: 16-bit string hash table overflow
    abnormal program termination
    who knows where does this error message come from and under which circumstance?

    One thing that comes to mind is that the literal string pool is limited - do you have lots of string literals or itern() lots of strings in your code?

  • After syncing my iPhone to outlook (via cord) I get an error message from Mobile Me.  I don't even use Mobile Me. How do I get rid of it?

    After syncing my iPhone to outlook (via cord) I get an error message from Mobile Me.  I don't even use Mobile Me. How do I get rid of it?

    In your Uninstall a program control panel, uninstall the MobileMe control panel for Windows.

  • I keep getting this error message from my iCal

    "The server did not recognize your user name or password for account... Make sure you enter them correctly".  Yet when I check my mobile me account it says my login and password are correct. How do I get my iCal in sync with everything else (so the icon will stop jumping up and down!) ?
    thx

    I'm also getting this error message for a gmail account that I have a calendar for.  The only option is to click on on the error message box and this closes iCal .
    I'm happy to delete all the calendars in my iCal and start again.  Is there a way to do this via a back door? 
    I have tried deleting the following:
    USERNAME/Library/Preferences/com.apple.iCal.plist
    USERNAME/Library/Caches/Metadata/iCal/
    and the caldav calendars in the following folder:
    USERNAME/Library/Calendars/
    should I try and remove the "Calendar Cache" in this folder and all the other .calendar files?
    Or is there a tool I can download that will interface with iCal to actually remove calendars?
    Any suggestions would help...
    Thanks!

  • Where does this error come from

    Here's my Javabean
    ===============================================
    package BeanTest;
    import java.sql.*;
    import java.util.*;
    import java.io.*;
    public class Bean2 extends DBConnect{
    private static String name = null;
    private int age = 0;
    public Bean2() { }
    /* Getter and Setter Methods */
    public String getName() { return name; }
    public void DbDescription() { name = "Start of get Name"; }
    public void setName(String s) { name = "tree"; }
    public int getAge() { return age; }
    public void setAge(int i) { age = i; }
    ===============================================
    Here's my JSP
    ===============================================
    <html>
    <head>
    <title>SimpleBean Test Page</title>
    <%@ page language="Java" %>
    <%@ page info="database handler"%>
    <%@ page import="java.io.*"%>
    <%@ page import="java.util.*"%>
    <%@ page import="java.sql.*"%>
    <%@ page import="javax.servlet.*"%>
    <%@ page import="javax.servlet.http.*"%>
    <%! ResultSet rset = null; %>
    </head>
    <body>
    <jsp:useBean id="simple" scope="application" class="BeanTest.Bean2"/>
    <% simple.DbDescription(); %>
    Description = <%= simple.getName() %>
    </div>
    </body>
    </html>
    ===============================================
    Here's my error
    ===============================================
    Request URI:/JSPSample5.jsp
    Exception:
    java.lang.NoSuchMethodError: BeanTest.Bean2: method DbDescription()V not found
    ===============================================
    However if I change the call to the DbDesrcription Method from
    <% simple.DbDescription(); %>
    to
    <% simple.DbDescription() %>
    I get this error.
    ===============================================
    Request URI:/JSPSample5.jsp
    Exception:
    oracle.jsp.provider.JspCompileException:
    Errors compiling:d:\website\htdocs\_pages\\_JSPSample5.java
    d:\website\htdocs\_pages\_JSPSample5.java:75: Invalid type expression.
    simple.DbDescription()
    ^
    d:\website\htdocs\_pages\_JSPSample5.java:76: Invalid declaration.
    out.print(__jsp_StaticText.text[10]);
    ^
    2 errors
    ===============================================
    I don't actually want any errors. Where am I going wrong and how do I fix it. I just need to execute a method in a Javabean that is not a getter or setter method?
    TIA
    Owen THomas

    It seems to me that you have more than one copy of class Bean2 on your server. And one of them doesn't have DbDescription method in it. Clean the old copies of exisiting class files from your disk. Java doesn't do version control, so these kind of errors are very hard to locate.

  • I changed my password and it updated on all of my devices except my ipad... Now I get this error message from icloud saying icloud backup cannot access my account... There are two options: ignore or settings

    Error message: icloud unable to access my account... I changed my password, this is the message on my ipad. gives me two options: ignore/settings... ipad not responding to either... ?

    Try a soft-reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider if it appears), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • ERR-1016 --- Where does this error come from?

    I can't reproduce this at will. It's something unpredictable. Sometimes when I log into my app I get this error.
    ERR-1016 Application "113" Page "1" not found (requested language="en-us")
    My app doesn't have a page 1, but that shouldn't matter, because on log in the user should be taken to page 100. The frustrating thing is, most of the time it does.
    I have no idea how to troubleshoot this.
    Steve "the n00b" in Raleigh NC

    scott.wesley wrote:
    Perhaps check the security tab in your application definition.
    Often the home link is defined as
    f?p=&APP_ID.:1:&SESSION.
    It's best to use an alias on your desired home page, and define the home link as
    f?p=&APP_ID.:HOME:&SESSION.
    SWI tried that. First I had to take off ":SESSION" because of the Web Page not found error. Then I ran it with APP_ID.:HOME and it brought me to my login page. When I logged in, it got to page 100 (HOME page) with no problems.
    Then I logged out. When I logged out, if found that ":1" had replaced HOME in the http. When I logged in again, I ran into the same old problem. I need to get this resolved because I want to demo this app for the user in the next 72 hours.
    Thanks for all the help. I've learned a lot from this board.
    Steve the n00b in Raleigh NC

  • Suddenly getting this error message: From address must match authentication [R0107004]. Please verify that your email address is c

    OS Windows XP. Thunderbird version 31.1.1. Only one of my two email accounts has this problem, suddenly.

    sounds to me like your trying to use say a comcast outgoing server to send Gmail mails hence also probably why one have an error and the other does not. Both are using the same outgoing server.
    Right click the account in the list on the left and select settings
    Select the account name in the dialog that opens and check that each account uses it's own SMTP sever from the drop down list.
    If the list has only a single entry, go to the outgoing server (SMTP) entry in the list and add the server you need.

  • Hi Has anyone had this error message from iCal?  The request for account "Work" failed.  The server responded with "502" to operation CalDAVAccountRefreshQueueableOperation.

    I keep getting this message whenever i am connected to iCal which is a tad annoying.
    The request for account “Work” failed.
    The server responded with
    “502”
    to operation CalDAVAccountRefreshQueueableOperation.
    Please help!
    pippilaing (NZ)

    What I found works best is to do the following:
    Quit iCal on you
    Go to iCloud.com and sign-in
    Create an event on the calendar
    Sign-out of iCloud.com
    Relaunch iCal
    It will take a few seconds for the calender to resync, but you should see the new event pop up on the calender. After that, hopefully all is well.

  • I suddenly have this error message on FireFoxthis message pops up: "Could not initialize the application's security component. The most likely cause is problems with files in your application's profile directory. Please check that this directory has no re

    I suddenly encounter this error message from Fire Fox.
    Could not initialize the application's security component. The most likely cause is problems with files in your application's profile directory. Please check that this directory has no read/write restrictions and your hard disk is not full or close to full. It is recommended that you exit the application and fix the problem. If you continue to use this session, you might see incorrect application behaviour when accessing security features.
    I uninstalled the browser and download a new version but it does not resolve the issue.
    I know my hard disc has ample space. I do NOT know where to find the Profile directory to fix the read restriction box.
    == This happened ==
    Every time Firefox opened
    == After something about security add-on of Norton pop up by itself. ==
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; MSN Optimized;US)

    This link shows things to check - https://support.mozilla.com/kb/Could+not+initialize+the+browser+security+component

  • Error message from Antivirus

    I keep getting this error message from my Antivirus. Please see attachment. Can anyone tell me what is means where to find it and how to stop it please?.

    "Avast" is perhaps the worst of the whole wretched lot of commercial "security" products for the Mac. It's worse than the imaginary "viruses" you were worried about when you installed it. Not only does it fail to protect you, it throws false warnings, destabilizes and slows down your computer, and sometimes or always corrupts the network settings and the permissions of files in your home folder. Removing it may not repair all the damage, and neither will Disk Utility or even reinstalling OS X.
    Back up all data, then remove "Avast" according to the developer's instructions. Reboot.
    If you tried to remove Avast by dragging an application to the Trash, you'll have to reinstall it and follow the instructions linked above.
    If you still have problems after following those instructions, post again.

  • I am getting this error message when trying to get to a college webpage Firefox doesn't know how to open this address, because the protocol (html) isn't associated with any program.

    I am trying to get to a college webpage for information and get this error message from firefox Firefox doesn't know how to open this address, because the protocol (html) isn't associated with any program.
    == This happened ==
    Every time Firefox opened
    == whe trying to access webpage

    Is this coming from a link, or from something you are trying to type in the address bar?
    Try replacing the "html" at the start with "http",
    so if you have html://somesite.edu,
    change it to http://somesite.edu.

  • On starting up firefox i am getting an error message from javascript application telling me that my username is an invalid username/password combination.If i continue to get this error message,try entering my email address as my username.

    Hi,on starting firefox which i have used solely as my browser for years i am now getting an error message from java script application that shows my username followed by a message saying; 'username'-Invalid username/password combination.If you keep getting this error,try entering your email address as your username'. I then press the OK button within that error message box and it dissapears and everything seems ok although hover my cursor over the mail(envelope) icon and it says not connected.
    I only started having this problem since downloading firefox 4.It also does not tell me where this problem is occuring so i do not know where to log on with this information.I would be most grateful for any help with this matter.Many thanks.

    Take a look in the Error Console for details about that.
    Tools > Error Console <br />
    Right-click the message and use '''Copy''' to get that complete message.

  • TS5376 I did as this article described.  The download was going smoothly until I got this error message "Click OK or enter alternate path to folder in installation package containing the file itunes.msi"   Where can I get "itunes.msi"  ??

    I did as this article described.  The download was going smoothly until I got this error message "Click OK or enter alternate path to folder in installation package containing the file itunes.msi"   Where can I get "itunes.msi"  ??

    (1) Download the Windows Installer CleanUp utility installer file (msicuu2.exe) from the following Major Geeks page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    (2) Doubleclick the msicuu2.exe file and follow the prompts to install the Windows Installer CleanUp utility. (If you're on a Windows Vista or Windows 7 system and you get a Code 800A0046 error message when doubleclicking the msicuu2.exe file, try instead right-clicking on the msicuu2.exe file and selecting "Run as administrator".)
    (3) In your Start menu click All Programs and then click Windows Install Clean Up. The Windows Installer CleanUp utility window appears, listing software that is currently installed on your computer.
    (4) In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove", as per the following screenshot:
    (5) Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?

Maybe you are looking for