Lm_sensors accuracy and getting Vcore

I don't know what better place to put this, so I will put it here i guess.
I used to overclock computers in windows all the time, but now as a pure linux user for a few years, I want to play with this PC here and get back into it a little.  I am using lm_sensors to get my temps and mprime to do full load and stability testing, everything is going good so far.  Some questions I have, first, how accurate is lm_sensors?  I remember back in windows there were two programs, one was called coretemp and the other realtemp, and they gave values that differed by 10c on my chip (Intel Xeon x3350 quad core penryn)...through research i found this was due to how the temperature is measuring using TjMax, and how the different programs had different TjMax set...so I am wondering what is the situation like with lm_sensors?
Also, how would i view my Vcore of my processor through applications/tools in linux and not just the bios?  I have not figured that out yet.
Anyways, here is my output from the sensors command on my chip, this is during the running of mprime small FFT for full processor utilization for over 3 hours now...
acpitz-virtual-0
Adapter: Virtual device
temp1: +52.0°C (crit = +84.0°C)
coretemp-isa-0000
Adapter: ISA adapter
Core 0: +56.0°C (high = +76.0°C, crit = +100.0°C)
coretemp-isa-0001
Adapter: ISA adapter
Core 1: +57.0°C (high = +76.0°C, crit = +100.0°C)
coretemp-isa-0002
Adapter: ISA adapter
Core 2: +51.0°C (high = +76.0°C, crit = +100.0°C)
coretemp-isa-0003
Adapter: ISA adapter
Core 3: +57.0°C (high = +76.0°C, crit = +100.0°C)
My Core2 has a messed up sensor on it, thats why its so far off from teh others, but no bid deal there, im just wondering if these need to be normalized or if they are the actual correct temperatures?  Oh, and this is overclocked from the 2.66Ghz stock up to 3.2Ghz, simply by bumping up the FSB to 400mhz, and putting the ram in 1 : 1 ratio keeping it at 800mhz...
So, if anyone knows the true accuracy of these numbers and whether or not there is a way for me to get Vcore, that would be great....
Thanks all

BTW at least for me, lm_sensors provides Vcore too:
atk0110-acpi-0
Adapter: ACPI interface
Vcore Voltage: +1.46 V (min = +1.45 V, max = +1.75 V)
+3.3 Voltage: +3.17 V (min = +3.00 V, max = +3.60 V)
+5.0 Voltage: +4.87 V (min = +4.50 V, max = +5.50 V)
+12.0 Voltage: +11.39 V (min = +11.20 V, max = +13.20 V)
CPU FAN Speed: 1834 RPM (min = 0 RPM)
CHASSIS FAN Speed:1985 RPM (min = 0 RPM)
CHIPSET FAN Speed: 0 RPM (min = 0 RPM)
CPU Temperature: +64.0°C (high = +90.0°C, crit = +125.0°C)
MB Temperature: +34.0°C (high = +70.0°C, crit = +125.0°C)

Similar Messages

  • FTP put and get

    When using FTP put and get to transfer files, the program does not go into passive mode. My website requires the following sequence of commands: TYPE A, PORT, PASV, RETR or STOR filename.
    Please update Windows FTP for XP & Windows 7 and later or provide me with the means of using raw FTP commands in my programs.

    Hello ray.crwfrd,
    Please explain a bit about the requirement in case of misunderstanding.
    What do you mean about the sentence ‘update Windows FTP for XP & Windows 7’?
    The following article is about the means of raw FTP command.
    http://www.nsftools.com/tips/RawFTP.htm
    Please note: Since the website is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy of this information.
    Best regards,
    Fangzhou CHEN
    Fangzhou CHEN
    TechNet Community Support

  • Memory Problem with SEt and GET parameter

    hi,
    I m doing exits. I have one exit for importing and another one for changing parameter.
    SET PARAMETER exit code is ....
    *data:v_nba like eban-bsart,
           v_nbc like eban-bsart,
           v_nbo like eban-bsart.
           v_nbc = 'CAPX'.
           v_nbo = 'OPEX'.
           v_nba = 'OVH'.
    if im_data_new-werks is initial.
      if im_data_new-knttp is initial.
        if im_data_new-bsart = 'NBC' or im_data_new-bsart = 'SERC' or im_data_new-bsart = 'SERI'
           or im_data_new-bsart = 'SER' or im_data_new-bsart = 'SERM' or im_data_new-bsart = 'NBI'.
          set parameter id 'ZC1' field v_nbc.
        elseif im_data_new-bsart = 'NBO' or im_data_new-bsart = 'NBM' or im_data_new-bsart = 'SERO'.
          set parameter id 'ZC2' field v_nbo.
        elseif im_data_new-bsart = 'NBA' or im_data_new-bsart = 'SERA'.
          set parameter id 'ZC3' field  v_nba.
        endif.
      endif.
    endif. *
    and GET PARAMETER CODE IS....
      get parameter id 'ZC1' field c_fmderive-fund.
      get parameter id 'ZC2' field c_fmderive-fund.
      get parameter id 'ZC3' field c_fmderive-fund.
    FREE MEMORY ID 'ZC1'.
      FREE MEMORY ID 'ZC2'.
       FREE MEMORY ID 'ZC3'.
    In this code i m facing memory problem.
    It is not refreshing the memory every time.
    So plz give me proper solution.
    Its urgent.
    Thanks
    Ranveer

    Hi,
       I suppose you are trying to store some particular value in memory in one program and then retieve it in another.
    If so try using EXPORT data TO MEMORY ID 'ZC1'. and IMPORT data FROM MEMORY ID 'ZC1'.
    To use SET PARAMETER/GET PARAMETER the specified parameter name should be in table TPARA. Which I don't think is there in your case.
    Sample Code :
    Data declarations for the function codes to be transferred
    DATA : v_first  TYPE syucomm,
           v_second TYPE syucomm.
    CONSTANTS : c_memid TYPE char10 VALUE 'ZCCBPR1'.
    Move the function codes to the program varaibles
      v_first  = gv_bdt_fcode.
      v_second = sy-ucomm.
    Export the function codes to Memory ID
    EXPORT v_first
           v_second TO MEMORY ID c_memid.        "ZCCBPR1  --- Here you are sending the values to memory
    Then retrieve it.
    Retrieve the function codes from the Memory ID
      IMPORT v_first  TO v_fcode_1
             v_second TO v_fcode_2
      FROM MEMORY ID c_memid.                                   "ZCCBPR1
      FREE MEMORY ID c_memid.                                   "ZCCBPR1
    After reading the values from memory ID free them your problem should be solved.
    Thanks
    Barada
    Edited by: Baradakanta Swain on May 27, 2008 10:20 AM

  • I am trying to open my iTunes on a Windows XP laptop and get the error message 42404 "iTunes application could not be opened.  Please repair or reinstall QuickTime".  I did that and it did not help.  Any ideas?

    I am trying to open my iTunes on a Windows XP laptop and get the error message 42404 "iTunes application could not be opened.  Please repair or reinstall QuickTime".  I did that and it did not help.  Any ideas?

    Let's see if a more rigorous uninstall/reinstall procedure gets us past that, nancy. See the following troubleshooting document:
    Removing and Reinstalling iTunes, QuickTime, and other software components for Windows XP

  • Running 10.6.8. Trying to open and view contents of a CD (of an MRI) and getting message 'This program cannot be run in DOS mode' Is there a way? Thanks for the help.

    Running 10.6.8. Trying to open and view contents of a CD (of an MRI) and getting message 'This program cannot be run in DOS mode' Is there a way? Thanks for the help.

    Go to the support site for the provider of the MRI software.
    Sounds like it windows/PC. I have ran across that for the CDs that veterinarians provide for digital x-rays.
    I would try on a PC or on yuur Mac with Windows via BootCamp or a virtual machine like VirtualBox

  • Assigning a hex value to a variable and getting binary value of a variable.

    I try to develop java programs and I need to do a conversion unicode to EBCDIC and vice versa.
    How can I assign hex values to variables to build UTF-EBCDIC and EBCDIC-UTF table and get hex or binary value of data to compare it to value of in the table?
    I did a conversion like this with PL/1 before. I do not know how can I do it with Java. Because I am new to Java.
    Thank you in advance.

    I will run java code in mainframe and java uses
    unicode for data in default and mainframe environment
    is EBCDIC. So I have to translate the data from
    unicode to ebcdic.I said I think String supports EBCDIC encoding...
    String ebcdic = new String(ebcdicBytes, "Cp500");
    http://java.sun.com/j2se/1.4.2/docs/guide/intl/encoding.doc.html

  • I've only had my iphone 5s for a week. I keep getting an error message of "Server has stopped responding."  I need the server to work. Does anyone know if there is a "fix" for the problem? Other wise, I probably best return for a refund and get a Samsung.

    I've only had my iphone 5s for a week. I keep getting an error message of "Server has stopped responding."  I need the server to work. Does anyone know if there is a "fix" for the problem? Other wise, I probably best return for a refund and get a Samsung.  Thanks

    sandyzotz wrote:
    Other wise, I probably best return for a refund and get a Samsung.
    Unlikely.  Based on the complete lack of detail of the issue provided it is entirely possible the same issue would occur.
    Unless and until the user provides some actual details of the problem, there is nothing the indicate that the issue is with the iPhone.

  • I have just sought  to update my lightroom and am now unable to access the develop function and get a note stating that I have reduced functionality what it this about and how do I get my product back

    I have just sought  to update my lightroom and am now unable to access the develop function and get a note stating that I have reduced functionality what it this about and how do I get my product back

    Hi there
    I have version 5.7 and every time I opened it I was told that updates are available and to click on the icon to access these.  Instead it just took me to the
    adobe page with nowhere visible to update.  I then  sought to download lightroom cc and this is when I could not access the 'develop' section due to reduced
    functionality  It was apparent that my photos had been put in cc but no way to access them unless I wanted to subscribe. 
    I have since remedied the problem as  my original lightroom 5.7 icon is still available on the desktop and have gone back to that.  I do feel that this is a bit
    of a rip off and an unnecessary waste of my time though.
    Thank you for your prompt reply by the way.
    Carlo
    Message Received: May 04 2015, 04:52 PM
    From: "dj_paige" <[email protected]>
    To: "Carlo Bragagnolo" <[email protected]>
    Cc:
    Subject:  I have just sought  to update my lightroom and am now unable to access the develop function and get a note stating that I have
    reduced functionality what it this about and how do I get my product back
    dj_paige  created the discussion
    "I have just sought  to update my lightroom and am now unable to access the develop function and get a note stating that I have reduced functionality what it
    this about and how do I get my product back"
    To view the discussion, visit: https://forums.adobe.com/message/7510559#7510559
    >

  • How do i upgrade my hard drive and get it to boot in Mountain Lion?

    I have a Late 2009 Macbook 6,1 and want to install a new, larger capacity hard drive. Currently I am running Mountain Lion and don't have any install disks, so the question is, what is the process to change out the drive and get the Mac to boot after the new drive is installed. Since it is a new drive it won't have a recovery partition or any operating system files. My plan is to migrate my data using my Time Machine backup, but I worry that when I try to boot after the new drive is installed, all I will be greeted with will be a flashing question mark. I'm really having a hard time finding a step-by-step set of instructions for someone attempting what I'm trying to do. I do have an external enclosure I could put the new drive into before I put it into the Mac. Would I try using something like Migration Assistant to transfer all of the files to the new drive and then just swap out drives afterward? Would the OS migrate as well, or would I still not have a bootable drive? Or is there some kind of minimal boot disk I could burn onto a CD or flash drive and then once the machine boots go with a restore from Time Machine Backup? I'm open to any ideas anyone may have on the least painful way to go about this process. Maybe use some (hopefully free) software of some sort to clone the current drive onto the new drive while it's still in the external enclosure? Any help or ideas would be greatly appreciated!

    How to replace or upgrade a drive in a laptop
    Step One: Repair the Hard Drive and Permissions
    Boot to the Recovery HD:
    Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    Repair
    When the recovery menu appears select Disk Utility. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported then click on the Repair Permissions button. When the process is completed, then quit DU and return to the main menu. Select Restart from the Apple menu.
    Step Two: Remove the old drive and install the new drive.  Place the old drive in an external USB enclosure.  You can buy one at OWC who is also a good vendor for drives.
    Step Three: Boot from the external drive.  Restart the computer and after the chime press and hold down the OPTION key until the boot manager appears.  Select the icon for the external drive then click on the downward pointing arrow button.
    Step Four: New Hard Drive Preparation
      1. Open Disk Utility in your Utilities folder.
      2. After DU loads select your new hard drive (this is the entry with the
          mfgr.'s ID and size) from the left side list. Note the SMART status of
          the drive in DU's status area.  If it does not say "Verified" then the drive
          is failing or has failed and will need replacing.  Otherwise, click on the
          Partition tab in the DU main window.
      3. Under the Volume Scheme heading set the number of partitions from
          the drop down menu to one. Set the format type to Mac OS Extended
          (Journaled.) Click on the Options button, set the partition scheme to
          GUID  then click on the OK button. Click on the Partition button and
          wait until the process has completed.
      4. Select the volume you just created (this is the sub-entry under the
          drive entry) from the left side list. Click on the Erase tab in the DU main
          window.
      5. Set the format type to Mac OS Extended (Journaled.) Click on the
          Options button, check the button for Zero Data and click on OK to
          return to the Erase window.
      6. Click on the Erase button. The format process can take up to several
          hours depending upon the drive size.
    Step Five: Clone the old drive to the new drive
    Boot to the Recovery HD:
    Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
         1. Select Disk Utility from the main menu then press the Continue
             button.
         2. Select the destination volume from the left side list.
         3. Click on the Restore tab in the DU main window.
         4. Select the destination volume from the left side list and drag it
             to the Destination entry field.
         5. Select the source volume from the left side list and drag it to
             the Source entry field.
         6. Double-check you got it right, then click on the Restore button.
    Destination means the external backup drive. Source means the internal startup drive.
    Step Six: Open the Startup Disk preferences and select the new internal volume.  Click on the Restart button.  You should boot from the new drive.  Eject the external drive and disconnect it from the computer.

  • Something was hidden in a download and now these double green underlined hyperlinks show up everywhere, and pop ups too whenever I click on ANYTHING. I can't figure out how to find it and get rid of it.

    Something was hidden in a download and now these double green underlined hyperlinks show up everywhere, and pop ups too whenever I click on ANYTHING. I can't figure out how to find it and get rid of it.

    You installed the "DownLite" trojan, perhaps under a different name. Remove it as follows.
    Malware is constantly changing to get around the defenses against it. The instructions in this comment are valid as of now, as far as I know. They won't necessarily be valid in the future. Anyone finding this comment a few days or more after it was posted should look for more recent discussions or start a new one.
    Back up all data.
    Triple-click anywhere in the line below on this page to select it:
    /Library/LaunchAgents/com.vsearch.agent.plist
    Right-click or control-click the line and select
    Services ▹ Reveal in Finder (or just Reveal)
    from the contextual menu.* A folder should open with an item named "VSearch" selected. Drag the selected item to the Trash. You may be prompted for your administrator login password.
    Repeat with each of these lines:
    /Library/LaunchDaemons/com.vsearch.daemon.plist
    /Library/LaunchDaemons/com.vsearch.helper.plist
    /Library/LaunchDaemons/Jack.plist
    Restart the computer and empty the Trash. Then delete the following items in the same way:
    /Library/Application Support/VSearch
    /Library/PrivilegedHelperTools/Jack
    /System/Library/Frameworks/VSearch.framework
    Some of these items may be absent, in which case you'll get a message that the file can't be found. Skip that item and go on to the next one.
    From the Safari menu bar, select
    Safari ▹ Preferences... ▹ Extensions
    Uninstall any extensions you don't know you need, including any that have the word "Spigot" in the description. If in doubt, uninstall all extensions. Do the equivalent for the Firefox and Chrome browsers, if you use either of those.
    This trojan is distributed on illegal websites that traffic in pirated movies. If you, or anyone else who uses the computer, visit such sites and follow prompts to install software, you can expect much worse to happen in the future.
    You may be wondering why you didn't get a warning from Gatekeeper about installing software from an unknown developer, as you should have. The reason is that the DownLite developer has a codesigning certificate issued by Apple, which causes Gatekeeper to give the installer a pass. Apple could revoke the certificate, but as of this writing, has not done so, even though it's aware of the problem. This failure of oversight is inexcusable and has compromised the value of Gatekeeper and the Developer ID program. You can't rely on Gatekeeper alone to protect you from harmful software.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination  command-C. In the Finder, select
    Go ▹ Go to Folder...
    from the menu bar and paste into the box that opens by pressing command-V. You won't see what you pasted because a line break is included. Press return.

  • HT4623 When I plug my ipad to itunes i get the error message that it is not supported and I have to go to itunes and get itunes re-installed?  i never had this problem before.  if i do this will i loose all my files, music, etc?

    When I plug me ipad to itunes i get the error message that it is not supported and that i have to go to itunes and get "itunes installer" and re-install.  if i do this will i loose my files and music?

    No, you should not lose anything.

  • IPhone 5S lost voicemail and when I tap vm icon the phone diales voicemail and gets busy signal.  No other options show.

    iPhone 5S lost voice mail and when I tap vm icon the phone dials voice mail and gets busy signal.  No other options show.
    started yesterday.  No voice mail at all.  When I tap the voice mail icon the phone immediately dials some number and that number rings busy.  I can't select anything else.   Using Virgin mobile/  I am stumped.
    I have already tried a soft boot... power and home button....
    Help!

    Other than changing the SIM card, you don't mention any troubleshooting you did with your phone.
    If you haven't already, try the following steps as needed:
    Settings > General > Reset > Reset Network Setting.
    Reset phone - press both home and sleep/wake buttons until the Apple logo appears.
    Restore phone in iTunes using a backup
    Restore in iTunes as a new iPhone
    IF the last step doesn't fix it, there is a hardware problem and you should make an appt. with an Apple Store Genius Bar. The fact that you haven't dropped the phone by no means rules out hardware issues.

  • Can I return my Macbook Pro and get a refund?

    I bought my Macbook Pro 2 weeks ago (July 16th). I bought it with the student discount, and they also gave me a 100 dollar gift card to the Apple Store. I would like to return my macbook and get a refund however, because I see that a new macbook pro came out. It has better specs and costs the same price. What the heck! Anyways, can I return this laptop and then buy the new one?

    The return period is 14 days.
    You are very close to that now.
    If you really want to do that get down to theApple Store fast and you might still be able to do it.
    Personally with the difference between the two models, I don't see it as that big of a deal to get the newer model.

  • Should i return my macbook pro 13 inch and get the baseline 13 inch air?

    i recently bought the 13 inch baseline mbp non retina. I am majoring in mechanical engineering and thsi will be my junior year so my main programs i will be using will be matlab, c++, and maple. I was wondering if i should return this and get the new macbook air 13inch with the 128 gb ssd.  my main concerns are that the processor is not powerful enough and the ram is too low and the hard drive is too small. let me know what you think. some things that i really like are the battery life and the new wifi? Please give me any information that could help my decision. I do plan on upgrading my ram from 4gb to 8gb in a few weeks.

    If you buy an AIR, you will be locked into whatever it has. For life. The regular model can be upgraded in both the RAM and the drive, be it an HDD or an SSD.
    If you determine you need better graphics performance, get a 15" regular instead. Has twin GPUs and vastly better graphics results.

  • Can I return my iphone and get a brand new one right after?

    Within the 14 day full return policy, can i return my iphone on the last day and get a brand new one?

    We aren't going to give you a pat on the back and say "good job". It's your time. I couldn't care less to be honest.

Maybe you are looking for

  • How to add the activity report or program in CIC0 win client

    Dear Sir, Please kindly advise if I would like to add the new program or monitor activity report  to display in t-code : CIC0 . Is it possible for the screen of agent. Thank you and best regards, Vimol

  • IPod Video Woes? - Nero Recode 2 Works Great!

    Well, like many of you, I've tried to convert video unsuccessfully to my iPod. I've tried Videora, PSP Video 9 and a few other programs. Not ONE of these programs has created a successful video that can be ported to the iPod (even though, for some, t

  • Can you add thickness to an object thats seen when spinning?

    I understand how to make objects and images rotate in a 3D way.  I want to add thickness to it so it doesnt look like a piece of paper spinning around.  Not having much luck finding a tutorial or instructions on this or what exactly it would be calle

  • How can I TEMPORARILY disable built-in microphone?

    I like to record music from the web on my Touchsmart 310-1145UK (BTW this is 3 months old but HP don't recognise this model number so I can't contact customer support on-line!!!  It is a 20 inch screen all-in-one PC). I use Audacity to record, this w

  • Keys are not very responsive

    I just bought it and hve only Windows on it and have added facebook. I have found it very slow on the internet and that the keyboard needs a lot of pressure to type.