When I type ls -la
to list all the files, I see this:
11 Jul 9 12:04 libcrypto.so -> libcrypto.so.0
I tried to change the name of libcrypto:
mv libcryto.so libpmcrypto.so
And now it shows:
11 Jul 9 12:04 libpmcrypto.so -> libcrypto.so.0
Does that affect anything? And what does the arrow mean?
libcrypto.so
is (was) a symbolic link. Renaming it will break any binary (or other shared library, or build program, or ...) that looks for that shared library by the namelibcrypto.so
. – Averroism