azr Posted October 10, 2019 Posted October 10, 2019 bonjour je vous contacte car je ne parviens pas a crer mon serveur sur rage mp malgres les tutos present sur le net . (je suis sur linux , microserum) En effet une fois entré ./server j'ai ce message qui s'affiche: /usr/lib/x86_64-linux-gnu/libstdc++.so.6: version `GLIBCXX_3.4.22' not found (required by ./server)
runamaus Posted October 15, 2019 Posted October 15, 2019 Hello, you might want to write your article in english so that more people can help you. I don't think too many people here understand French. 😉 To your problem: You would have to upgrade or install libstd. This is also said in the tutorial, but apparently it hasn't been done yet: sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test sudo apt update && sudo apt install libstdc++6 I hope you can solve your problem with this. Best wishes Runa
azr Posted October 17, 2019 Author Posted October 17, 2019 voici la reponse de mon interface 😅 sudo: add-apt-repository: command not found root@13724:~# sudo apt update && sudo apt install libstdc++6 Get:1 http://cdn-fastly.deb.debian.org/debian testing InRelease [109 kB] Err:1 http://cdn-fastly.deb.debian.org/debian testing InRelease The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 04EE7237B7D453EC NO_PUBKEY 648ACFD622F3D138 Reading package lists... Done W: GPG error: http://cdn-fastly.deb.debian.org/debian testing InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 04EE7237B7D453EC NO_PUBKEY 648ACFD622F3D138 E: The repository 'http://httpredir.debian.org/debian testing InRelease' is not signed. N: Updating from such a repository can't be done securely, and is therefore disabled by default. 2 minutes ago, azr said: voici la reponse de mon interface 😅@runamaus sudo: add-apt-repository: command not found root@13724:~# sudo apt update && sudo apt install libstdc++6 Get:1 http://cdn-fastly.deb.debian.org/debian testing InRelease [109 kB] Err:1 http://cdn-fastly.deb.debian.org/debian testing InRelease The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 04EE7237B7D453EC NO_PUBKEY 648ACFD622F3D138 Reading package lists... Done W: GPG error: http://cdn-fastly.deb.debian.org/debian testing InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 04EE7237B7D453EC NO_PUBKEY 648ACFD622F3D138 E: The repository 'http://httpredir.debian.org/debian testing InRelease' is not signed. N: Updating from such a repository can't be done securely, and is therefore disabled by default.
runamaus Posted October 18, 2019 Posted October 18, 2019 Oh, I just realized you are not using Ubuntu, you are using Debian! Then it should be this one to install that libstdc++6 echo 'deb http://httpredir.debian.org/debian testing main contrib non-free' > /etc/apt/sources.list apt update && apt install -y -t testing libstdc++6 Best wishes Runa
azr Posted October 18, 2019 Author Posted October 18, 2019 merci , javais trouvez cette info sur un forum mais toujours un message derreur 😅 root@13724:~# apt update && apt install -y -t testing libstdc++6 Get:1 http://cdn-fastly.deb.debian.org/debian testing InRelease [109 kB] Err:1 http://cdn-fastly.deb.debian.org/debian testing InRelease The following signatures couldn't be verified because the public key is not availab le: NO_PUBKEY 04EE7237B7D453EC NO_PUBKEY 648ACFD622F3D138 Reading package lists... Done W: GPG error: http://cdn-fastly.deb.debian.org/debian testing InRelease: The followin g signatures couldn't be verified because the public key is not available: NO_PUBKEY 04EE7237B7D453EC NO_PUBKEY 648ACFD622F3D138 E: The repository 'http://httpredir.debian.org/debian testing InRelease' is not signe d. N: Updating from such a repository can't be done securely, and is therefore disabled by default. N: See apt-secure(8) manpage for repository creation and user configuration details.
runamaus Posted October 20, 2019 Posted October 20, 2019 Hello azr, translating your posts everytime is very stressful. Maybe you reconsider still posting in the english section in french? There is also a french forum where people should be able to understand what you say without translating it. Nevertheless, I have one last idea how to fix that issue, but after that I'm out of clues, I'm sorry. As root (or via sudo) you should run these commands: ls -l /etc/apt/trusted.gpg{,.d} file /etc/apt/trusted.gpg{,.d/*} I guess that one of these files is a keybox file, which apt can't deal with properly... and most likely the keybox file is empty as well. Very likely the /etc/apt/trusted.gpg file which tends to not exist nowadays, so after those two commands lets directly try moving the file out of the way: mv /etc/apt/trusted.gpg{,.bak} Kind regards Runa
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now