Fans and noise??plz reply asap!!

Hi i have a barely 1 month old Macbook , and recently i have noticed that the fans, when i put the book really close to my ears and i can hear a very smooth noise....is that normal or is it suposed to be 100% silent even when the room is totally quite!?!!?just wondering since iam a new mac user...
thanks
plz reply as soon as possible since iam worried, this is new macbook!!

Sorry, I should have mentioned that. On my MBP in normal working, the fans will tick over at about 2,200 rpm.. If I am pushing things, or if an application gets out of control (the Firefox beta did this last week), I can expect them to run about 5,500 rpm or a bit more, although they soon begin to reduce speed, particularly once that application has finished what it was doing (or in the case of FF when I forced it to quit).
Temps will vary depending on the unit being monitored. My CPU (A) is hitting 61 degrees Celsius, while the hard disk is on 37 and the bottom enclosure is at 35. These are well within the operating parameters. It may feel hot sometimes, particularly on the bottom of the case, but this is not unexpected.

Similar Messages

  • "URGENT PLZ REPLY ASAP"

    I am 2 days old in the industry.
    i want code for MS Sql connection and to insert current date into Log_book table data through form submition.

    HELLO
    I hrushi, New into the industry, I just got through ur example it very explanatory,
    PLZ help me with the errors there in "problem is code is not running"
    my architecture is
    IDE : myeclipse
    DATA BASE : MS SQL
    J2EE
    SERVER : TOMCAT 5.0
    OS : WINDOWS XP
    Iam now handling my first task, for "Work Flow Mgmt".
    in which i need the userid n staff no n dept should be taken directly on to the form through session.
    which i was able to do through mapping in Struts and database connection through hibernate
    I am posting my code here for buggs plz can u debug the errors leaving the developed classes
    JSP:
    <%@page contentType="text/html" import="java.io.*,java.sql.*,javax.sql.*,java.util.*"%>
    <%@ page import="java.util.*"%>
    <%@ page import=" java.math.*"%>
    <%@ page import="com.mymcsb.ewms.api.*"%>
    <%@ page import="com.mymcsb.wf.web.*"%>
    <%@ page import="org.apache.commons.lang.*"%>
    < %@page pageEncoding="UTF-8"%>
    <%
    String formType = "BOOK_BORROWER";
    String viewType = (String) session.getAttribute(WfKeys.VIEW_TYPE);
    System.out.println("viewType: " + viewType);
    String categoryId = (String) session
    .getAttribute(WfKeys.WORKITEM_CATEGORY_ID);
    RoutedData formData = (RoutedData) session
    .getAttribute(WfKeys.FORM_DATA);
    ApplicationContext applicationContext = (ApplicationContext) session
    .getAttribute(Keys.APPLICATION_CONTEXT);
    boolean isOriginator = true;
    if (viewType.equals(ViewTypes.REFERENCE_VIEW)
    || viewType.equals(ViewTypes.PROCESS_VIEW)) {
    isOriginator = false;
    System.out.println("documentTitle: "
    + formData.get("documentTitle"));
    %>
    <%
    String lStrBookTitle = request.getParameter("booktitle");
    System.out.println("BT "+lStrBookTitle);
    String available = "N";
    String bookavailable="N";
    if(lStrBookTitle != null && !lStrBookTitle.trim().equals(""))
    try
    Class.forName(" sun.jdbc.odbc.JdbcOdbcDriver");
    Connection con = DriverManager.getConnection("jdbc:odbc:book","scott","tiger");
    PreparedStatement pst = con.prepareStatement("select available from book_details where upper(document_title) like '%"+lStrBookTitle.toUpperCase()+"%'");
    ResultSet rs = pst.executeQuery();
    if(rs.next())
    available = rs.getString("AVAILABLE");
    bookavailable="Y";
    catch(Exception e)
    System.out.println("Error "+e);
    else
    lStrBookTitle="";
    %>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>Book Borrower</title>
    <script>
    function fnSearch()
    if(document.ChkAvailabilty.booktitle.value=="")
    alert("Enter book title...");
    return false;
    else
    document.ChkAvailabilty.action="index.jsp";
    document.ChkAvailabilty.method="post";
    document.ChkAvailabilty.submit();
    </script>
    <script>
    function ewms_action_validate(){
    return ewms_validate();
    function ewms_validate() {
    return true;
    function fnSearch(documentNo) {
    document.frmReturn.action =
    "/wms/retrieve_lib_log?documentNo=" + documentNo;
    document.frmReturn.target = "_top";
    document.frmReturn.submit();
    </script>
    </head>
    <body bgcolor=#ffffcc text=green>
    <h1><center> Library pages..</h1></center><hr>
    <form align="center" name="frmReturn"><input type="hidden"
    name="FormType" id="FormType" value="<%=formType%>" />
    <table width="400" border="1" height="82" align="center">
    <tbody>
    <tr>
    <td width="150"> DOCUMENT NO</td>
    <td> <input type="text" name="DocumentNo"
    onchange="fnSearch( this.value)"
    value="<%=formData.get("DocumentNo")%>"></td>
    </tr>
    <tr>
    <td>  DOCUMENT TITLE</td>
    <td>  <%= formData.get("documentTitle")%></td>
    </tr>
    <tr>
    <td>  NAME</td>
    <td>  <%=formData.get("name")%></td>
    </tr>
    <tr>
    <td>  STAFF NO</td>
    <td>  <%=formData.get("staffNo")%></td>
    </tr>
    <tr>
    <td>  SECTION</td>
    <td>  <%=formData.get("staffSection")%></td>
    </tr>
    <tr>
    <td>  BOOK BORROW DATE</td>
    <td>  <%=formData.get ("dateTaken")%></td>
    </tr>
    <tr>
    <td>  DUE RETURN DATE</td>
    <td>  <%=formData.get("dateTaken")%></td>
    </tr>
    <tr>
    <td>  BOOK RETURN DATE</td>
    <td> <%=formData.get("dateReturn")%></td>
    </tr>
    <tr>
    <td width="1000">  REMARK</td>
    <td> <TEXTAREA wrap="virtual" name="Comments" rows=3
    cols=20 MAXLENGTH=100></TEXTAREA><BR>
    </tr>
    </table>
    </form>
    <form align="center" name="ChkAvailabilty">
    <table width="350" border="0" height="82">
    <tbody>
    <tr>
    <td><input type="text" name="booktitle" value="<%=lStrBookTitle%>">
    <input type="button" name="booksearch" value="Search" onclick="fnSearch()">
    </td>
    </tr>
    <%
    if(!lStrBookTitle.trim().equals(""))
    if( bookavailable.trim().equalsIgnoreCase("Y"))
    {%>
    <tr>
    <td>
    Available = <%=available%>
    </td>
    </tr>
    <%}else{
    %>
    <tr>
    <td>
    Title not in library
    </td>
    </tr>
    <%}
    %>
    </tbody>
    </table>
    </form>
    </body>
    </html>
    librarylog is my classfile name it hibernate file
    CLASSFILE :-
    package com.mymcsb.tnb.logic;
    import java.util.HashMap;
    import java.util.Iterator;
    import java.util.List;
    import java.util.Map;
    import javax.servlet.http.HttpServlet;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import javax.servlet.http.HttpSession;
    import org.apache.struts.action.ActionForm;
    import org.apache.struts.action.ActionForward;
    import org.apache.struts.action.ActionMapping;
    import org.apache.struts.action.ActionRedirect;
    import org.apache.struts.actions.MappingDispatchAction ;
    import org.hibernate.Criteria;
    import org.hibernate.Session;
    import org.hibernate.criterion.Restrictions;
    import com.mymcsb.ewms.RoutedDataImpl;
    import com.mymcsb.tnb.entity.LibraryLog;
    import com.mymcsb.util.HibernateUtil;
    import com.mymcsb.wf.web.WfKeys;
    public class BookBorrower extends MappingDispatchAction {
    public ActionForward search(ActionMapping mapping, ActionForm form,
    HttpServletRequest req, HttpServletResponse res) {
    HttpSession session = req.getSession(false);
    RoutedDataImpl rd = null;
    String documentNo = req.getParameter("DocumentNo");
    rd = doCreateRoutedData(documentNo, rd);
    session.setAttribute(WfKeys.FORM_DATA , rd);
    ActionForward af = mapping.findForward("success");
    ActionRedirect ar = new ActionRedirect(af);
    ar.addParameter("view", "create");
    ar.addParameter("catid", ((String)session.getAttribute( WfKeys.WORKITEM_CATEGORY_ID)));
    return ar;
    private static RoutedDataImpl doCreateRoutedData(String documentNo, RoutedDataImpl rd) {
    Map<String, String> data = new HashMap<String, String>();
    //search for documentNo
    List result = doGetLibraryLogByDocNo(documentNo);
    System.out.println("result size: " + result.size());
    if(result.size() > 0) {
    LibraryLog lg = (LibraryLog)result.get(0);
    data.put("documentTitle", lg.getDocumentTitle());
    data.put("name", lg.getName());
    data.put("staffNo", lg.getStaffNo());
    data.put("staffSection", lg.getStaffSection ());
    if(rd == null) {
    rd = new RoutedDataImpl(data);
    } else {
    for(Iterator iter = data.keySet().iterator(); iter.hasNext();) {
    String key = (String)iter.next();
    rd.set(key, data.get(key));
    return rd;
    public static List<LibraryLog> doGetLibraryLogByDocNo(String documentNo) {
    Session session = HibernateUtil.currentSession ();
    Criteria cri = session.createCriteria(LibraryLog.class);
    cri.add(Restrictions.eq("documentNo", documentNo));
    List<LibraryLog> result = cri.list();
    return result;
    EJB/LOGIC
    package com.mymcsb.tnb.entity;
    import java.io.Serializable;
    import java.util.*;
    public class LibraryLog implements Serializable {
    private Integer docId;
    private String documentNo;
    private String documentTitle;
    private String name;
    private String staffNo;
    private String staffSection;
    private Date dateTaken;
    private Date dateReturn;
    private String remark;
    public Date getDateReturn() {
    return dateReturn;
    public void setDateReturn(Date dateReturn) {
    this.dateReturn = dateReturn;
    public Date getDateTaken() {
    return dateTaken;
    public void setDateTaken(Date dateTaken) {
    this.dateTaken = dateTaken;
    public Integer getDocId() {
    return docId;
    public void setDocId(Integer docId) {
    this.docId = docId;
    public String getDocumentNo() {
    return documentNo;
    public void setDocumentNo(String documentNo) {
    this.documentNo = documentNo;
    public String getDocumentTitle() {
    return documentTitle;
    public void setDocumentTitle(String documentTitle) {
    this.documentTitle = documentTitle;
    public String getName() {
    return name;
    public void setName(String name) {
    this.name = name;
    public String getRemark() {
    return remark;
    public void setRemark(String remark) {
    this.remark = remark;
    public String getStaffNo() {
    return staffNo;
    public void setStaffNo(String staffNo) {
    this.staffNo = staffNo;
    public String getStaffSection() {
    return staffSection;
    public void setStaffSection(String staffSection) {
    this.staffSection = staffSection;
    }

  • Heat, fans, and noise.

    These are still issues with my iMac G5 I bought a little over a year ago. It is particularly noticeable when playing games, such as WarCraft or Call of Duty online. It is loud enough that it troubles me that it may damage my machine over time. When I quit a game, the fans get much quieter and the heat seems to go down too. The fans are not a problem most of the time, but launch a game and the fans rev up.
    Note that I have a rev. 2 iMac G5, not the first revision that is supposed to be the one with the real problem.

    "It is loud enough that it troubles me that it may damage my machine over time."
    It won't, as it's designed to do just what it's doing. You might want to inspect inside the back and see if you have any dust or pet hair that needs reduction, which might lower the operating temperature and reduce the burden on the cooling system. Some find it building up in their iMacs, but many do not find anything when they look.
    Apple article - "Removing Dust Accumulation From Inside the Computer"
    also another article here "Information about cleaning computer components"

  • Hi how can i implement the scenario.......plz reply asap.........

    HI folks,
    i have a typical problem in bex .
    my scenario is:i am having 2 values say 'x','y'.
    i want to implement a formula like x-y.
    if the x value is negative then i have to get the result as negative after the 'y' value get subtracted.if 'x' is positive, i have to get positive value after subtracting 'y' value.
    please let me know how can i implement this scenario in bex.
    by using a formaula or condition or anything else. please let me know clearly including the expression asap.
    Best reagards,
    ashok.

    answered

  • I dont want in some sites auto fill the password but rather i want if i put atleast three correct entry then the password box be auto filled...plz reply asap...

    dont auto fill d password in some sites but auto fill after atleast three correct entry..as gmail other member r also used this...

    You can disable auto-fill (I'm using this as well), but you can't delay this by having to enter the same name more than once.
    You can set the Boolean pref <b>signon.autofillForms</b> to <i>false</i> on the <b>about:config</b> page.
    *You can open the <b>about:config</b> page via the location bar and accept the warning
    *http://kb.mozillazine.org/about:config

  • Reports of WBS Elements plz reply

    Hi
    we have one SAP standard reports for WBS elements ( plan/actual/variance) and one whichis customized project management report in Projects systems but both the reports are showing different balance.
    is there any particular reason for showing different balance for both actual and budget colum?
    plz reply asap
    thanks
    manish

    hi
    please try to use Co Object Name field with sub total

  • G580 Smart Fan Noise PLZ Help me Any One...PLZZZZZZZZZZZZZZzz

    PLZ help me. My lenovo g580 When power on ..Just hearing Noise . Its Smart fan Noise. Plz Help Me Bro...........

    hi Arif664
    Welcome to Lenovo Community Forums!
    You may want to try a software Called speed fan, This gives control to your Fan and also shows Temperature readings.
     Other Lenovo Motherboard have Restrictions for controlling the Fan. But give it a shot If it detected your fan then you're all set. adjust the Fan to your desired speed and fine tune it with the Temp that you're getting
    If the Fan really get too Loud, beyond normal, I would still suggest to call Lenovo Technical Support for Assistance.
    Best Regards
    Solid Cruver.
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • Lenovo B310 (core i3-550) - loud fan and disk noise

    I got my B310 delivered today and happy with overall look and feel. Just after few our of running, can hear loud noise.
    Just double checked and found its cooling fan and hard disk making noise. I am bit worried about this and looking for any possible solutions.

    hey rituvineet,
    welcome to the forums and since this unit was recently delivered, i suggest getting in contact with our support team via
    http://bit.ly/LNVsuppNum
    at the same time, head over to >> http://consumersupport.lenovo.com/us/en/DriversDownloads/drivers_list.aspx?CategoryID=505977
    update your drivers and see if it resolves your issue.
    WW Social Media
    Important Note: If you need help, post your question in the forum, and include your system type, model number and OS. Do not post your serial number.
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"!
    Follow @LenovoForums on Twitter!
    Have you checked out the Community Knowledgebase yet?!
    How to send a private message? --> Check out this article.

  • How to put continuos (desired format) of dates in numbers spreadsheet and how to do it? please reply asap i need it..

    how to put continuos (desired format) of dates in numbers spreadsheet and how to do it? please reply asap i need it..

    This is the definition for "continuo" from Apple's dictionary:
    continuo |kənˈtinyəˌwō | (also basso continuo) noun (pl. continuos) (in baroque music) an accompanying part that includes a bass line and harmonies, typically played on a keyboard instrument and with other instruments such as cello or bass viol.
    Presumably you mean something else. Your chances of getting replies that can help you will improve with a clearly stated question.
    SG

  • HT6533 Where can I find the third party app? I'm really in trouble that I can't record and check my blood  glucose. Of cause I exported the data from app, but It's not readable for me. Please reply ASAP and give me other solution.

    Where can I find the third party app?
    I'm really in trouble that I can't record and check my blood  glucose.
    Of cause I exported the data from app, but It's not readable for me.
    Please reply ASAP and give me other solution.

    You find third-party apps in the App Store. What app are you looking for? Due to problems, Apple removed the ability to record that information in Health. You can always go back to whatever you used before three weeks Health was released. Why can you not check and record your blood glucose? I would assume you check it using blood samples and a glucose meter which has nothing to do with your phone. You should be able to record it in any number of apps, from Notes to purpose made third-party apps.

  • ERGH my iphone 5 has been charging for over 4 hours and will not turn itself on, what do i do?! reply asap please

    ERGH my iphone 5 has been charging for over 4 hours and will not turn itself on, what do i do?! reply asap please

    Try resetting it while it is connected to power: Hold down the home and sleep button, wait for the Apple logo, let go of the buttons. It is connected to a wall charger?

  • I bought a ibook G4 2005 refur-ed it is making a fan running noise when I listen to sample music on line and it will not stop until I reboot.. What could that be also bottom of computer very hot?

    I bought a ibook G4 2005 refur-ed it is making a fan running noise when I listen to sample music on line and it will not stop until I reboot.. What could that be also bottom of computer very hot?

    When my iBook got hot like that, I would take a break and let it cool down.
    You can buy laptop desks that have USB powered fans on them, such as the Targus Chill Mat.

  • HT4543 Audible fan sounds (noise). Nothing is blocking the vents and the temperature in the room is normal. Fan goes on and off, sometimes on for a minute.

    Audible fan sounds (noise). Nothing is blocking the vents and the room temp. is normal. Fan sound goes on and off but this morning the sound came on for well over a minute.

    Since you don't say how old your iMac is, have you cleaned out the dust? Dust buildup can lead to over heating issues. Remove any and all things plugged into it including the power cord, Remove the RAM access grille. Vacuum all openings starting with the RAM access area (air intake). Vacuum all ports and plugs, DVD slot and the opening across the top of the rear of the body. Blow compressed air through all your openings and vacuum again to remove any dust you loosend. Reinstall the RAM grille. Plug in the keyboard and mouse if not blue tooth. Insert power cord...
    You are now in a perfect position to do a
    SMC RESET
    http://support.apple.com/kb/HT3964
    Shut down the computer.
    Unplug the computer's power cord and ALL peripherals.
    Wait 15 seconds.
    Attach the computers power cable.
    Wait another 5 seconds and press the power button to turn on the computer.
    It is the 5 second timing that initiates the reset.
    Here is a Widget to monitor your temps and other operations:
    http://islayer.com/apps/istatpro/

  • My iphone is acting crazy plz help asap my phone is giving reading me everything i lay my hand on and is not letting me scroll down or select anything i must have accidentally switched some voice thing on plz help me close it:(

    my iphone is acting crazy plz help asap my phone is giving reading me everything i lay my hand on and is not letting me scroll down or select anything i must have accidentally switched some voice thing on plz help me close it:(

    First off, try triple clicking the home button.
    To scroll use three fingers and I think you have to double tap to get into something.
    Go to Settings>General>Accessability>Voiceover and then turn that off.
    Hope that sorts it for you

  • Imac Bootup No Display, Only Fans and Drive Noise?

    So, my mac restarted one day after a update now everytime i power up i hear the fans and the drive and nothing happens. I reset the RAM and have tried everything and ideas?
    iMac 2010 - i7 Version

    Have a look at > My late 2011 iMac's backlight has...: Apple Support Communities
    and > iMac 27-inch Mid 2011 backlight problem: Apple Support Communities

Maybe you are looking for