diff --git a/Setup-Computer-Debian-11.md b/Setup-Computer-Debian-11.md index cbbb965..41071dd 100644 --- a/Setup-Computer-Debian-11.md +++ b/Setup-Computer-Debian-11.md @@ -216,6 +216,22 @@ sudo ln -s ../init.d/ComediLoadModules S98ComediLoadModules sudo cp ~/work/stxm/SystemInstall/comedi.conf /etc/modprobe.d ``` +- Install latest hdf5 Version + +``` +cd ~/BaseSystem/ +#download hdf5-1.14.0.tar.gz +tar xf hdf5-1.14.0.tar.gz +cd hdf5-1.14.0 +mkdir build +cd build +cmake -DHDF5_BUILD_CPP_LIB=1 -DPREFIX=/usr/local .. +make +sudo make install +``` + + + - Install STXM Software ```