Add some useful tools for monitoring hardware

This commit is contained in:
Josh.5
2023-08-26 14:46:10 +12:00
parent 2f118e4a51
commit 890b9d22d2

View File

@@ -450,6 +450,26 @@ RUN \
intel-media-va-driver-non-free \
i965-va-driver-shaders \
libva2 \
&& \
echo "**** Section cleanup ****" \
&& apt-get clean autoclean -y \
&& apt-get autoremove -y \
&& rm -rf \
/var/lib/apt/lists/* \
/var/tmp/* \
/tmp/* \
&& \
echo
# Install tools for monitoring hardware
RUN \
echo "**** Update apt database ****" \
&& apt-get update \
&& \
echo "**** Install useful HW monitoring tools ****" \
&& apt-get install -y --no-install-recommends \
cpu-x \
htop \
vainfo \
vdpauinfo \
&& \