libva error when starting - no fan control (neither CPU nor GPU)
benne3333 opened this issue · 2 comments
benne3333 commented
Compiling is working with 23.10 mantic, when NODE_OPTIONS=--openssl-legacy-provider npm run build is added.
However, after starting, I get:
`npm run start
tuxedo-control-center@2.0.9 start
electron ./dist/tuxedo-control-center
libva error: vaGetDriverNameByIndex() failed with unknown libva error, driver_name = (null)
`
Afterwards tcc starts, but fan control is completely disabled.
benne3333 commented
After an update, TCC works for my mantic installation. However, the above error message persists.
tuxedoder commented
I managed to remove this libva error by compiling libva.
git clone https://github.com/intel/libva.git
git clone https://github.com/intel/libva-utils.git
sudo apt-get install libdrm-dev
# for both
./autogen.sh --prefix=/usr --libdir=/usr/lib/x86_64-linux-gnu
make -j4
sudo make install