Chromebook

hello,
when i try to run ts3 in my linux terminal, this error “./ts3client_linux_amd64: error while loading shared libraries: libpci.so.3: cannot open shared object file: No such file or directory” appears on my screen.
How i can fix this error?
Thank you for reply,

The commands ./ts3client_linux_amd64 and ./ts3client_linux_x86 do start the binary directly without moving the needed libs.
These are not the runscript.

./ts3client_runscript.sh starts the client with needed libarys.

So Please start the client via runscript and not per binary.

1 Like

yes that’s what I did and that’s when the error occurs.

That means you are missing the library.
As I don’t know what linux you are running, here a link to the library for nearly all distributions:
https://pkgs.org/download/libpci.so.3

1 Like

my version of linux is debian 10, on the link I can’t find for this version

Then this should work:

sudo apt-get update
sudo apt-get install libpci3
2 Likes

thank you, you are best :smiling_face_with_three_hearts:

1 Like