IT
WD My Cloud 온도 체크 (smartctl)
TheFanStory
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.
- SSH into the drive (you have to enable it in Settings first).
- type “fdisk -l” (that’s a lower case “L”) to get your drive ID. It will probably be “/dev/sda1”.
- type “smartctl --all /dev/sda” (use the drive ID from step 2, but leave off the number at the end.)
- 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:~#