So I am trying to install truDesk on my local system. I am getting this error while running the command npm install -g yarn
:
node: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.28′ not found
(required by node)
My Ubuntu version is Ubuntu 18.04.6 LTS and when I am checking for the latest version, it’s showing that the software is up to date. As I go through the glibcc error, it requires an Ubuntu version greater than 18. How can I update the version?
This is the application I am trying to download.
2
Answers
You can try to download glibc from the official source and install it:
Pay attention to avoid breaking your OS environment: you need to specify the prefix and configure the separate path when you are using it.
See this answer on how to use the alternate GLIBC.
Answer from @Dolphin isn’t complete as it produces error from make:
Makeconfig:42: *** missing separator. Stop.
In my case, to I had to do following:
P.S. If you are trying to run
ord
just try building from sources, it’s much simpler than upgrading ubuntu or recompiling GLIBC