It's UWAweek 17 (1st semester, week 8)

help3002

This forum is provided to promote discussion amongst students enrolled in CITS3002 Computer Networks.

Please consider offering answers and suggestions to help other students! And if you fix a problem by following a suggestion here, it would be great if other interested students could see a short "Great, fixed it!"  followup message. How do I ask a good question?

Displaying selected article
Showing 1 of 276 articles.
Currently 4 other people reading this forum.


 UWA week 11 (1st semester, week 3) ↓
SVG not supported

Login to reply

👍?
helpful

ANONYMOUS wrote:
> I'm using Ubuntu (I think 22.04)
You should be able to see your version with cat /etc/os-release Here's my thinking: while your system has shared libraries for libm, libc, and libstdc++ (reported by ldd)
> /usr/local/bin/cnet: /lib/x86_64-linux-gnu/libm.so.6: version `GLIBC_2.38' not found (required by /usr/local/bin/cnet) > .... > libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x00007f7a201cd000)
the error message suggests that your system has an earlier version of things. My Ubuntu 23.04 system has GLIBC_2.38 (I update my system/libraries about every week with sudo apt upgrade). If I run ldd -v /usr/local/bin/cnet | grep libm.so, it reports (long):
    libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x00007f4c60331000)
	    libm.so.6 (GLIBC_2.38) => /lib/x86_64-linux-gnu/libm.so.6
	    libm.so.6 (GLIBC_2.23) => /lib/x86_64-linux-gnu/libm.so.6
	    libm.so.6 (GLIBC_2.29) => /lib/x86_64-linux-gnu/libm.so.6
	    libm.so.6 (GLIBC_2.2.5) => /lib/x86_64-linux-gnu/libm.so.6
	    libm.so.6 (GLIBC_2.38) => /lib/x86_64-linux-gnu/libm.so.6
	    libm.so.6 (GLIBC_2.29) => /lib/x86_64-linux-gnu/libm.so.6
	    libm.so.6 (GLIBC_2.2.5) => /lib/x86_64-linux-gnu/libm.so.6
	    libm.so.6 (GLIBC_2.38) => /lib/x86_64-linux-gnu/libm.so.6
	    libm.so.6 (GLIBC_2.2.5) => /lib/x86_64-linux-gnu/libm.so.6
	    libm.so.6 (GLIBC_2.2.5) => /lib/x86_64-linux-gnu/libm.so.6
	    libm.so.6 (GLIBC_2.29) => /lib/x86_64-linux-gnu/libm.so.6
	    libm.so.6 (GLIBC_2.38) => /lib/x86_64-linux-gnu/libm.so.6
	    libm.so.6 (GLIBC_2.35) => /lib/x86_64-linux-gnu/libm.so.6
	    libm.so.6 (GLIBC_2.2.5) => /lib/x86_64-linux-gnu/libm.so.6
	    libm.so.6 (GLIBC_2.2.5) => /lib/x86_64-linux-gnu/libm.so.6
	    libm.so.6 (GLIBC_2.2.5) => /lib/x86_64-linux-gnu/libm.so.6
	    libm.so.6 (GLIBC_2.2.5) => /lib/x86_64-linux-gnu/libm.so.6
	    libm.so.6 (GLIBC_2.29) => /lib/x86_64-linux-gnu/libm.so.6
	    libm.so.6 (GLIBC_2.2.5) => /lib/x86_64-linux-gnu/libm.so.6
    /lib/x86_64-linux-gnu/libm.so.6:
	    libm.so.6 (GLIBC_2.35) => /lib/x86_64-linux-gnu/libm.so.6
	    libm.so.6 (GLIBC_2.2.5) => /lib/x86_64-linux-gnu/libm.so.6
	    libm.so.6 (GLIBC_2.29) => /lib/x86_64-linux-gnu/libm.so.6
	    libm.so.6 (GLIBC_2.2.5) => /lib/x86_64-linux-gnu/libm.so.6
which (I think) is reporting the versions of GLIBC with which the installed /lib/x86_64-linux-gnu/libm.so.6 library provides backwards-compatability (2.38 being the highest). Does your system show 2.38 (or higher), or a lower maximum? Could you try updating your libraries with apt if you haven't in a while?

The University of Western Australia

Computer Science and Software Engineering

CRICOS Code: 00126G
Written by [email protected]
Powered by history
Feedback always welcome - it makes our software better!
Last modified  5:07AM Sep 06 2023
Privacy policy