john doe wrote: > On 1/27/2020 7:24 AM, William Torrez Corea wrote: >> I get the following error, when i send this command >> sudo apt get update >> >> sudo: unable to resolve host debian: Temporary failure in name resolution >> apt: relocation error: /lib/x86_64-linux-gnu/libgcrypt.so.20: symbol >> gpgrt_get_syscall_clamp version GPG_ERROR_1.0 not defined in file >> libgpg-error.so.0 with link time reference >> >> I'm trying found a solution, but i don't get results. >> >> Follow the following steps >> https://gutl.jovenclub.cu/chroot-la-salvacion-elegante-ante-un-kernel-panic/ >> > > You can only use 'apt-get' or 'apt' but not both at the same time. > > $ sudo apt-get update > $sudo apt update > > However, it looks like your GPG installation is broken. > > -- > John Doe
GPG_ERROR_1.0 is fundamental. It is in buster in /lib/x86_64-linux-gnu/libgpg-error.so.0.26.1, if I am not wrong. nm -DC /lib/x86_64-linux-gnu/libgpg-error.so.0.26.1| grep gpgrt_get_syscall_clamp 000000000000ef50 T gpgrt_get_syscall_clamp And gcrypt is libcrypt-2.28.so not .so.20 perhaps something is wrong with the library paths setup on the system perhaps you have some custom installed software loading libraries before the system libraries. Could be also libraries are missing and some left over has appeared or similar.