Tuesday, May 14, 2024
3
rated 0 times [  3] [ 0]  / answers: 1 / hits: 73031  / 3 Years ago, tue, may 25, 2021, 4:21:31

Software that I'm installing requires /lib/libc.so.6, but it's not in place:



$> ls -l /lib/libc*
lrwxrwxrwx 1 root root 14 2011-10-09 06:02 /lib/libcap.so.2 -> libcap.so.2.20
-rw-r--r-- 1 root root 18832 2011-02-16 03:42 /lib/libcap.so.2.20
-rw-r--r-- 1 root root 1620736 2012-05-23 07:19 /lib/libcrypto.so.0.9.8


libc and libc6-dev are installed. Running apt-get upgrade glibc does not solve this.



What should I do to resolve this dependency?


More From » installation

 Answers
0

A quick solution.



Open a terminal (Ctrl+Alt+T) and run the following commands:



For 64-bit Ubuntu:



sudo ln -s /lib64/x86_64-linux-gnu/libc.so.6 /lib64/libc.so.6


For 32-bit Ubuntu:



sudo ln -s /lib/i386-linux-gnu/libc.so.6 /lib/libc.so.6

[#35528] Wednesday, May 26, 2021, 3 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
rofity

Total Points: 182
Total Questions: 98
Total Answers: 115

Location: Albania
Member since Sat, Jan 7, 2023
1 Year ago
rofity questions
Mon, Apr 25, 22, 12:28, 2 Years ago
Tue, Jul 5, 22, 16:53, 2 Years ago
Sat, Apr 8, 23, 05:32, 1 Year ago
Mon, May 10, 21, 22:51, 3 Years ago
;