[SOLVED]lm_sensors doesn't show fan speed (or much else)

I'm going to start with a bit of code to illustrate the context
$ sudo sensors-detect
Now follows a summary of the probes I have just done.
Just press ENTER to continue: yes
Driver `coretemp':
* Chip `Intel digital thermal sensor' (confidence: 9)
$ sudo sensors
coretemp-isa-0000
Adapter: ISA adapter
Physical id 0: +63.0°C (high = +84.0°C, crit = +100.0°C)
Core 0: +63.0°C (high = +84.0°C, crit = +100.0°C)
Core 1: +62.0°C (high = +84.0°C, crit = +100.0°C)
Core 2: +62.0°C (high = +84.0°C, crit = +100.0°C)
Core 3: +55.0°C (high = +84.0°C, crit = +100.0°C)
Now, I was under the impression that Fan speed should be being displayed, along with other things. Am I missing a kernel module of some kind? I feel like it is an incorrect setup of mine. I can't find anything on the wiki page https://wiki.archlinux.org/index.php/lm_sensors or in the forums, but I feel like I'm missing something.
I do not want to add a dangerous kernel parameter but can't figure out what my motherboard is (or how to add the asus_atk0110 driver to my kernel configuration) from the suggestion here http://www.lm-sensors.org/wiki/FAQ/Chap … rnel2.6.31
EDIT: turns out the motherboard is W35xSTQ_370ST by SEAGATE. I don't however know how to use this knowledge to figure out if I should be loading any other kernel modules or what sensors are available, e.t.c.
Thanks in advance.
Last edited by crashandburn4 (2015-01-02 20:26:23)

Most likely your hardware doesn't provide more information. I've seen this mostly in laptops. This is from my Acer:
[xxx@arch ~]$ sensors
coretemp-isa-0000
Adapter: ISA adapter
Core 0: +56.0°C (high = +80.0°C, crit = +90.0°C)
Core 2: +54.0°C (high = +80.0°C, crit = +90.0°C)

Similar Messages

  • [Solved] Conky doesn't show network speed

    Hello Archers!
    I have my old conky config with net speed indication which worked in past but stopped working this installation. My user is in “network” group and I have
    ${font monospace:bold:size=10}NETWORK ${hr 2}
    ${font monospace:normal:size=10}Download: ${alignr}${downspeedf eth0} KB/s
    Upload: ${alignr}${upspeedf eth0} KB/s
    in my ~/.conkyrc file. It used to show speed in KB/s but now just zeros, all the time. What would be the reason for this malfunction?
    Last edited by Mr. Alex (2013-07-28 09:27:41)

    Mr. Alex wrote:
    jasonwryan wrote:it isn't the smartest thing to post here...
    Yeah, I know Arch maintainers don't accept criticism anymore. But mine wasn't even obvious and yet you pointed that out and called it “not the smartest thing to post here”. Totalitarian regime inside of a distro. Free speech is forbidden. Arch Linux, ladies and gentlemen!
    Read the Etiquette. Your histrionics are as unfounded as your original slur. If you had even the slightest clue of what a totalitarian regime actually involved, you would be ashamed of yourself for that association.
    Don't post here again unless you are prepared to accept responsibility for your own incompetence.
    Closing

  • IStat doesn't show fan section

    I wake up my lovely Imac MC813 today and noticed iStat doesn't show fan section at all (see screenshot):
    So what happened? How I can fix this? Didn't find anything about this problem.

    Click the "i" button on the top left.  The option will appear, Click the "sections" tab at the top.  At the bottom of the list set Fans "on".  Click Done at the bottom.
    Regards,
    Captfred

  • [Solved] Asus L1366 mobo, cpu fan speed control

    Hi, everyone,
    I finally have this new core i7 system, to replace my old AMD athlonx2.  I have one question about the CPU fan speed control.
    I remember that in my old system, the cpu fan speed control works out of box, no configuration is needed.
    But when I install arch 64 on this new i7 system, the cpu fan is running at its maximum speed constantly while the CPU temperature is modestly low. I know there is a wiki teaching how to do it.
    However, I am just curious why it doens't work out of box any more? Does CPU fan control work for you guys out of box normally? especially the new Core i7 cpu users?
    Please let me know, really appreciated it.
    Thanks a lot.
    Update: the issue is solved, see my last post, the solution is blacklisting: asus_atk0110, instead use w83667hg.
    Cheers.
    Last edited by mark.altern (2009-10-01 08:18:18)

    First off, it would be useful to know what the sensors-detect script actually reports.
    Okay. How fan control works on Linux: First, navigate to /sys/class/hwmon
    Each of these folders, i.e. hwmon0, stands for a sensors monitor / fan controller on your mainboard that may control one or several fans. Inside hwmonN, there should be a subfolder called device, which contains several interfaces if your BIOS allows software-side fan control. You can read them with cat and write to them with echo.
    Examples:
    pwm1_enable shows if OS-level fan control is enabled (1) or disabled and in BIOS control (0). Changing fan speed won't work if this is disabled. (i.e. cat /sys/class/hwmon0/device/pwm1_enable reports 0 -> disabled; you could enable it with echo 1 > /sys/class/hwmon0/device/pwm1_enable).
    pwm1 allows to change fan speed. The values range from 0 (fan off) to 255 (full speed, 12V).
    fan1_input shows the current RPM if a fan is connected. You can only read from this interface. Its useful to check all of these in the each of the hwmon folders to find out if there is actually a fan connected to the fan controller (they often have more ports than mainboard manufacturers use).
    There might be a fan1_div, this is somehow related to how the kernel reads the RPM, I don't know how it works.
    temp1_input interfaces can appeare too, if some of the chips have temperature sensors located somewhere. I *think* lm_sensors places the core temperatures it reads from CPU (the coretemp-isa-000X thingies) in one of the hwmon-folders too.
    There might be interfaces for different fans in the same hwmon folder, i.e. pwm2_enable, pwm2, fan2_input, etc., all interfaces with the same index belong to the same physical fan connector, and all in the same hwmonN are managed by the same IC on your mainboard.
    Warning: These interfaces, if they work, control the fans directly without any kind of security measure. If you shut some essential fan down, it will stay off until you reboot your CPU shuts down.
    (If you see something likein0_alarm, in0_input, in0_max, etc. it's a voltage monitoring chip.)
    If one of those interfaces can do something, OS-level fan control does work, if none of those folders contain a working pwm interface, fan control seems to be unavailable.
    Sometimes there is an option in the BIOS to enable it, and for some BIOSs software-side fan control only works if dynamic fan control is disabled in the BIOS and fan speed is set to a static value - or vice versa.
    I don't know what you are using to control fan speed, there are many applications that use these interfaces, i.e. GNOME or KDE power managers, so I'm not sure what is happening:
    IF: Windows 7 enables OS-level fan control and sets it the RPM to those you observed and you have nothing that provides fan control in Arch and so fan control stays at BIOS-level, which might also read out a different sensor / the same sensor differently or it might be more conservative in setting fan speeds altogether;
    OR: You have something that provides fan control installed in Arch and it reads out a the wrong value supplied by lm_sensors and thus sets a higher fan speed.
    Anyway, possible solutions I can think of:
    Find out if you have some kind of fan control software and what it does. For example, I use the fancontrol daemon, I can't help you if you use something else.
    The wiki mentions how to assign a fan speed to a certain temperature sensors. You might assign it to a different one. For example, there are no sensor chips on the mainboard of my EEE (no temp1 etc.) so I assigned the fan speed to the temperature reported by the BIOS via ACPI (those are in /sys/class/thermal, also no "device" subfolder on EEEs):
    FCTEMPS=/sys/class/hwmon/hwmon0/pwm1=/sys/class/thermal/thermal_zone0/temp
    You could also change the MINTEMP/MAXTEMP values to one higher than those you actually want to compensate for the effect of lm_sensors reporting temperatures that are too high.
    It is currently not possible for a mortal user to change the coretemps lm_sensors reads, see this post, last paragraph.
    There is a configuration file, /etc/sensors3.conf, you can change sensor names and adjust offsets here, but only for the monitoring chips and their sensors that are on the mainboard.
    Last edited by Malstrond (2009-08-19 19:34:22)

  • Downloads window is blank, shows file name but doesn't show up speed, percentage of download etc.

    When I start downloading something, the Downloads window opens normally & also shows what is being downloaded. But, it doesn't show downloading percentage, downloading speed. (all things which usually show up below the name of file). But when minimized, I can see percentage.

    Worked for me too. options->options->privacy->remember download history

  • [SOLVED] akregator doesn't show images in the preview pane

    I have three different PCs with Arch and kdemod-legacy (that is, kde 3.5.9) and on all of them I use akregator (a RSS/Atom feed reader).
    One of the feed I subscribed is from an image board: when new images are uploaded to the site, I'm notified and clicking on the link in the articles section of akregator I can see in the lower pane a thumbnail of the image.
    However this doesn't happen on my third pc: I *suppose* the installed applications and libraries are the same between all the machines, and the akregator options seems to be same as well.
    Does anybody have an idea about this?
    Thanks in advance for your time.
    Last edited by daneel971 (2008-09-03 06:11:17)

    Thanks for your reply.
    Daren wrote:do you have the option set to load the full article in the pane?
    Without this, it just displays an overview.
    That's right - I don't use that option because it's usually unnecessary: the overview usually does show a thumbnail of the image, and I can avoid loading the entire page.
    Anyway, I noticed that switching from RSS to Atom (for the same feed, I mean) solves the issue - so maybe it was related to the type of feed used.

  • [SOLVED] Thunar doesn't show external volumes anymore

    Hello,
    Thunar used to show external devices (USB sticks, iPod, ...) in the left panel (when displaying shortcuts instead of tree). For some reason I can't figure, it doesn't do it anymore.
    All I have in the left panel is the standard "home, Desktop, filesystem" and the static links to the different folders I placed there.
    I tried to uninstall completely thunar and remove the configuration files, then re-install it, but it changed nothing.
    Desktop : openbox.
    Running daemons (I'm not sure if all of theme are relevant) : dbus, hal, fam.
    .config/Thunar/thunarrc :
    [Configuration]
    DefaultView=void
    LastCompactViewZoomLevel=THUNAR_ZOOM_LEVEL_SMALLEST
    LastDetailsViewColumnOrder=THUNAR_COLUMN_NAME,THUNAR_COLUMN_SIZE,THUNAR_COLUMN_TYPE,THUNAR_COLUMN_DATE_MODIFIED
    LastDetailsViewColumnWidths=50,204,50,50,134,50,50,64,109
    LastDetailsViewFixedColumns=FALSE
    LastDetailsViewVisibleColumns=THUNAR_COLUMN_DATE_MODIFIED,THUNAR_COLUMN_NAME,THUNAR_COLUMN_SIZE,THUNAR_COLUMN_TYPE
    LastDetailsViewZoomLevel=THUNAR_ZOOM_LEVEL_SMALLER
    LastIconViewZoomLevel=THUNAR_ZOOM_LEVEL_NORMAL
    LastLocationBar=ThunarLocationButtons
    LastSeparatorPosition=184
    LastShowHidden=FALSE
    LastSidePane=ThunarShortcutsPane
    LastSortColumn=THUNAR_COLUMN_NAME
    LastSortOrder=GTK_SORT_ASCENDING
    LastStatusbarVisible=TRUE
    LastView=ThunarIconView
    LastWindowHeight=441
    LastWindowWidth=743
    LastWindowMaximized=FALSE
    MiscVolumeManagement=TRUE
    MiscCaseSensitive=FALSE
    MiscDateStyle=THUNAR_DATE_STYLE_SIMPLE
    MiscFoldersFirst=TRUE
    MiscHorizontalWheelNavigates=FALSE
    MiscRecursivePermissions=THUNAR_RECURSIVE_PERMISSIONS_ASK
    MiscRememberGeometry=TRUE
    MiscShowAboutTemplates=TRUE
    MiscShowThumbnails=TRUE
    MiscSingleClick=FALSE
    MiscSingleClickTimeout=500
    MiscTextBesideIcons=FALSE
    ShortcutsIconEmblems=TRUE
    ShortcutsIconSize=THUNAR_ICON_SIZE_SMALLER
    TreeIconEmblems=TRUE
    TreeIconSize=THUNAR_ICON_SIZE_SMALLEST
    What should I do to get it working again ?
    Thanks in advance !
    PS : please tell me if I forgot anything. Also, I searched for similar topics in the forum, but haven't found anything.
    Last edited by Alfred456654 (2011-02-11 07:13:58)

    Hello,
    Yes, I have gvfs installed :
    yaourt -Ss gvfs
    1 extra/gvfs 1.6.6-1 [installé]
    Userspace virtual filesystem implemented as a pluggable module for gio
    2 extra/gvfs-afc 1.6.6-1 [installé]
    AFC (mobile devices) backend for gvfs
    3 extra/gvfs-gphoto2 1.6.6-1
    gphoto2 (PTP camera/MTP media player) backend for gvfs
    4 extra/gvfs-obexftp 1.6.6-1
    ObexFTP (bluetooth) backend for gvfs
    5 extra/gvfs-smb 1.6.6-1 [installé]
    SMB/CIFS (Windows client) backend for gvfs

  • [SOLVED] Steam doesn't show text anymore even with -no-dwrite

    wine ~/.wine/drive_c/Program\ Files\ \(x86\)/Steam/Steam.exe -no-dwrite
    Wine cannot find the ncurses library (libncursesw.so.5).
    fixme:ver:GetCurrentPackageId (0x33e460 (nil)): stub
    ILocalize::AddFile() failed to load file "public/steambootstrapper_english.txt".
    Edit: Fixed by logging out and closing, then it worked again.
    Last edited by lolwtfidk (2015-02-28 03:30:58)

    In my post I referred to the problem of digiKam v.1.1.0 not autorotating images correctly anymore when it's downloading and processing them from the camera, whereas v. 1.0.0 did so correctly (without to my knowledge having any Kipi plugins installed).  I.e. v.1.1.0 is configured to autorotate but it doesn't really do it; it doesn't rewrite the EXIF orientation tag.  It does display portrait images correctly in its own viewer (and so does Gwenview) but the other programs don't when they access these images in the album directory.  They show the wrong orientation but none of them, Gwenview included, has any problem in allowing me to manually rotate the image to the correct orientation that can then be passed on e.g. to Thunderbird.
    Of course, I could process all the images taken in portrait orientation manually, e.g. in GIMP, but why do so when digiKam 1.0.0 and earlier used to do it automatically.  Besides, the image rotation in digiKam is supposed to be lossless which may not be true if I use other programs.
    Again, a short summary: portrait image from camera downloaded with digiKam -> displayed correctly in digiKam (and Gwenview) but not really rotated according to EXIM tags -> can be rotated further (another 90 deg) and saved in digiKam or Gwenview and can then be displayed correctly in GIMP, Firefox and Thunderbird but would not be correctly displayed anymore in digiKam and Gwenview.
    I haven't figured out how to rotate images in Gwenview from the CLI, hence can't produce any error messages.
    Sorry to be so verbose again.

  • [solved] Sonata doesn't show cd-covers

    Hi,
    since last Pacman -Syu Sonata does not show the CD-Covers.
    The .jpg cover-files are in the same directories where the .mp3 files of an album are saved.
    ~/music/Band/Album/*.mp3
    This is the console output
    $ sonata
    Taglib and tagpy not found, tag editing support disabled.
    SOAPpy not found, fetching lyrics support disabled.
    Traceback (most recent call last):
    File "/usr/lib/python2.5/site-packages/sonata.py", line 2781, in set_image_for_cover
    if self.filename_is_for_current_song(filename):
    File "/usr/lib/python2.5/site-packages/sonata.py", line 2824, in filename_is_for_current_song
    if filename == self.musicdir + songdir + "/" + self.single_img_in_dir:
    NameError: global name 'songdir' is not defined
    Last edited by SiD (2007-05-18 13:08:03)

    That's a known bug in Sonata, it has been fixed in svn so you can either checkout the svn version or wait for the next release (should come soon I think).
    Or, you could edit the file manually and add the following line above "if filename == self.musicdir + songdir + "/" + self.single_img_in_dir:":
    songdir = os.path.dirname(self.songinfo.file)
    so it ends up like this:
    if self.single_img_in_dir and self.songinfo:
    songdir = os.path.dirname(self.songinfo.file)
    if filename == self.musicdir + songdir + "/" + self.single_img_in_dir:
    return True
    Last edited by [vEX] (2007-05-18 13:02:36)

  • [SOLVED] Thunar doesn't show any USB storage devices.

    Hi,
    i'm using arch for a quite long time now and thankfully never had to use the support forums, because of the great wiki but this time i really got stuck...
    Installed a fresh arch a few days ago, because of an HDD Crash and now i can't see any USB devices (SD-Cards/USB-Sticks) in Thunar anymore and so i always have to mount them in terminal :-/
    Already installed thunar-volman and gamin, and  i am member of the storage group.
    Any help ? Thanks !
    Last edited by JHnet (2012-11-10 06:26:12)

    Well..Fuck. Just had to install gvfs - as mentioned in the wiki -..

  • Solved the comment not showing problem: info for anyone else

    I have finally solved my problem regarding my comments not showing up on blogs and websites. I changed my email address and that seems to have done the trick. Just in case anyone else runs into the same thing. Thanks Miriam for trying to help me.

    jcrash2000 wrote:
    My question is; Is there anyone else having this same problem?
    "yahoo is my email provider"
    Judging by the number of other threads on this, yes many people have been having Yahoo mail issues with push, and it appears to be on Yahoo's side, not Apple's.

  • T430s fan noise and fan speed monitor not working?

    Hi, I just bought this T430s from the outlet store. I noticed a rather loud fan noise and found out s lot of compalints about the T430 model. I guess the problem I have is not as severe as those T430 users (e.g. the noise may not be as loud), but I still want to monitor the fan speed. Here's my problem:
    1. none of the third party software can show fan speed, they can only show the cpu temperature, such as speedfan and aida64.
    2. I tried to download the fanspeedcontrol driver from lenovo, but after installing it, the task manager does not show that the fanspeedcontrol exe. is working. 
    I do not want to change the fan speed, but just want to monitor the speed so that I can have a better understanding of whats going on. Does anyone have the similar problem?
    Thanks. 

    Hi Alan, (I know this conversation was from several months back),
    I don't know the answer to your questions.  It seems that your fan is operational, as far as its most basic functional requirement.
    I don't have experience with any particular software programs or widgets that indicate fan speed, sorry.
    Do you have any view, through software, of the CPU (and GPU?) sensed temperature?  Those would be very good data to observe.
    If it were either disconnected or non-functional, I assume that your computer would report a POST error right after power-on (and self test).
    But I just wanted to suggest here that in an unfortunate possible scenario, consider if the thermal grease on the heat sink(s) was inadequate (or was missing), then the fan would be running higher than normal (probably always spinning at a high rate), and it won't be taking enough heat away from the processor(s), i.e. inadequate cooling.
    Which could be corrected by a technician (or DIY).  This is pure speculation, it is not a definite, at all.
    Larry

  • Dell Vostro 1400 fan speed

    I am not able to get lm_sensors to detect the fan speed, so I installed i8kmon and i8kutils and modprobe i8k force=1 to load the module.
    Now the sensor applet tells me that my fan speed for Fan1 is around 27000 RPM and for Fan2 it's around 10000 RPM, while both cores of the CPU are around 50 C.
    I've never thought of monitoring fan speed until today, but the figures just seem way too great...
    I guess I am not doing it the right way. Any suggestions?

    zendude;2862314 Wrote:
    > Try to load the driver tg3.ko and see if it works with this driver and
    > you boot from the cd (pxe will not work because you can't get out of
    > linuxrc, actually you might be able to do it, but I found the menu to
    > be really confusing. Go It looks like is a broadcom 59xx series.>
    Code:
    > > # modprobe tg3
    > >
    > If the driver tg3 works then you need to add the newid option in the
    > append section of the isolinux.cfg or linuxrc.config. Check the
    > forums for more info about newid option.
    I have loaded this driver and added the newid=0x14e4 0x1713 but still
    no luck. Still can not ping the Zenworks server or do anything. The
    Network lights stay lit when it tries to obtain an IP address for eth0.
    I read on another site that you need to update the initrd with the new
    tg3.ko driver. I will try this later tonight and see what happens.
    Cheers
    Chadinsky

  • Thinkpad T430u low fan speed

    Hello!
    When I am playing on thinkpad t430u CPU/GPU becomes very hot (95-100C), but fan speed is only 3000-3500 RPM. Using "tpfancontrol" I achieved almost 5000 RPM at manual mode and temperatures decreases to 70-75C.
    Why fan is so slow at auto mode?
    I updated BIOS, but it does not help. Moreover in BIOS there is no fan settings (quiet/performance) as on my old PC.
    OS: Windows 8, Nvidia GPU, latest drivers.
    Thanks!

    Hi!
    During normal working (word, firefox etc..) temp is around 60-75° with the fan always running at 3800rpm.
    While I was doing a map upgrade on my garmin navigation system the notebook crashed many times in a row and I couldn't figure out why.
    After some investigation I found out that it was the system overheating protection shutting it down.
    I checked this by putting stress on the cpu with prim95 and there the temp goes up as I described in the previous post - just faster than weith the map upgrade. Ambient was 23-24° C.
    What just made me wonder is why the hell doesn't the fan speed go up like it once used to do!?
    I would expect the fan speed rising at around 75° or so but instead it started at 95° C which way too late!
    This is my 3rd Thinkpad and I never experienced this behavior - however I am not sure when it started.

  • Is Rosetta triggering Fan Speed??

    When I run certain non-universal programs or widgets (Cubase SX for example) the fan speed picks up, AND THEN STAYS HIGH EVEN WHEN THE PROGRAM HAS BEEN QUIT! To remedy the situation, you have to re-start. I can only think that Rosetta is left running in the background, using up CPU and causing fan speed, even though there isn't the heat to justify the fan speed.
    Anyone else aware of this? Is there an answer(I have everything as up-to-date as possible)?

    Rosetta will certainly require additional resources when it is running, but when any process is idle (not being used) it does not use any CPU time. If the applications that are in use require a lot of CPU time then the processor will heat up. The fan speed will ramp up to increase air flow to cool the computer. Until the temperature drops below a certain point the fan will continue at slowly decreasing speed until the computer has cooled off and the fan reaches idle speed. There are thermal sensors in the computer that are better able to determine how hot it is than you can.

Maybe you are looking for