#stress.sh # #Purpose: Run stress test #By: D@CC #Date: 2024CMar11 #Stored In: /home/pi/Desktop/IX_assets #Source 01: https://ephotocaption.com/a/216/216.html #Source 02: S216:11 in Source 01 #Source 03: https://www.tomshardware.com/how-to/raspberry-pi-benchmark-vcgencmd #Output: stress: info: [6017] successful run completed in 900s #Install: sudo apt-get install stress #Duration: 900 sec #Report Interval: 5sec # #Sensing Throttle:vcgencmd get_throttled #Output: throttled=0xe0006 e0006 #Bit Meanings: 0x8 Soft temp. limit has occurred 8 # 0x4 throttling has occurred 4 # 0x2 arm freq. capping has occurred 0 # 0x1 under-voltage has occurred 1 # 0x00008 soft temp. limit active 0 # 0x00004 currently throttled 4 # 0x00002 arm freq. capped 2 # 0x00001 under-voltage detected 0 #Report example: temp=84.0'C # frequency(0)=1500019456 while true; do vcgencmd measure_clock arm; vcgencmd measure_temp; sleep 10; done& stress -c 4 -t 900s #/stress.sh.txt