'WDMyCloud'에 해당되는 글 1건

  1. 2019.10.12 WD My Cloud 온도 체크 (smartctl)

WD My Cloud 온도 체크 (smartctl)

Posted by TheFanStory IT : 2019. 10. 12. 23:10

There may be other ways to get the temperature, but one way is to SSH into the drive and use the smartctl command.

  1. SSH into the drive (you have to enable it in Settings first).
  2. type “fdisk -l” (that’s a lower case “L”) to get your drive ID. It will probably be “/dev/sda1”.
  3. type “smartctl --all /dev/sda” (use the drive ID from step 2, but leave off the number at the end.)
  4. Scroll up and look for item 194: Temperature_Celsius. The number in the RAW_VALUE column is your drive’s temperature. Mine right now is 46ºc, which is 115º F.

 

smartctl --all /dev/sda | grep "ID\|Temperature"

 

이렇게 치면 항목과 온도값을 볼 수 있다. ( grep "검색어1\|검색어2" )

 

WDMyCloud:~# smartctl --all /dev/sda | grep "ID\|Temperature"
ID# ATTRIBUTE_NAME          FLAG     VALUE WORST THRESH TYPE      UPDATED  WHEN_FAILED RAW_VALUE
194 Temperature_Celsius     0x0022   081   073   000    Old_age   Always       -       66
WDMyCloud:~#

 

  
 «이전 1  다음»