]> ###2023.02.22 - Bumped radeontop version - based on master branch from 2023.02.22 ###2023.02.05 - Switched to GitHub Release for packages - Bumped radeontop version - based on master branch from 2022.11.06 ###2022.06.28 - Bumped radeontop version - based on master branch from 2022.06.28 ###2021.11.24 - Bumped radeontop version - based on radeontop 1.4 ###2021.09.13 - Bumped radeontop version - based on master branch from 2021.09.13 ###2021.03.15 - Initial release - based on radeontop 1.3 rm -f $(ls /boot/config/plugins/&name;/&name;*.txz 2>/dev/null|grep -v '&version;') &gitURL;/&version;/&name;-&version;.txz &md5; **Radeon TOP** This plugin adds the tool 'radeontop' to your unRAID server and also enables your AMD GPU from the installation of this plugin on, so no editis to the 'go' file or creation of other files are necessary (please not that this plugin only enables the 'amdgpu' Kernel module and not the 'radeon' Kernel module). To see the usage of your GPU open up the unRAID Terminal and type in 'radeontop' (without quotes). This plugin satisfies installation prerequisites of the GPU Statistics plugin from Community Apps. With both plugins installed you can display AMD GPU utilization on the unRAID Dashboard. enableamd() { #Enable AMDGPU Kernel module if modprobe amdgpu ; then echo echo "---AMDGPU Kernel Module successfully enabled!---" else echo echo "------Something went wrong! Can't enable-------" echo "----AMDGPU Kernel Module, removing package!----" removepkg &name;-&version; rm -rf /usr/local/emhttp/plugins/&name; rm -rf &plugin; exit 1 fi sleep 1 chmod -R 777 /dev/dri } #Check if Kernel Module is already enabled if [ -z "$(lsmod | grep "amdgpu")" ]; then echo echo "---------Enabling AMDGPU Kernel Module---------" enableamd else echo echo "-----AMDGPU Kernel Module already enabled!-----" fi echo echo "----Installation of radeontop complete-----" echo "-------------------------------------------" echo "----------Uninstalling radeontop-----------" echo "-------------------------------------------" # Remove plugin related files removepkg &name;-&version; rm -rf /usr/local/emhttp/plugins/&name; rm -rf &plugin; echo echo "-------------------------------------------" echo "---Uninstallation of radeontop complete!---" echo "-------------------------------------------" echo