Discussion Forum

VariCAD_2018-2 does crash after system upgrade

To add questions or replies, please log in.



Filter:

Post author:
Text in post
Post date from: to: (dd.mm.yyyy)
 
VariCAD_2018-2 does crash after system upgrade
I have made over long time system upgrade and the varicad started to crash. Eagle 7 was not starting either- eagle was atleast telling that it was looking for the files: libssl.so.1.0.0 and libcrypto.so.1.0.0. After I created symbollinks to those files, varicad does not crash anymore.

# cd /usr/lib64/
# ln -s libssl.so.1.0.2o libssl.so.1.0.0
# ln -s libcrypto.so.1.0.2o libcrypto.so.1.0.0

No big question here, only question is why the varicad is still linked against for long time ago unused versions of these files?
VariCAD 2018 2.08 crashes
VariCAD 2018 2.08 runs 100% on my Dell laptop with Ubuntu 18.04 but crashes on the HP with the exact same operating system. versio 2019 runs fine on the HP however. How can I fault find this ?
Thanks Peeter ! libssl upgrade was the problem.
errors.txt confirmed that libssl could not be found. On Ubuntu 18.04 the following solved it:
cd /usr/lib/x86_64-linux-gnu/

ls -l ./libssl*
./libssl.so -> libssl.so.1.1

sudo ln -sf ./libssl.so.1.0.0 ./libssl.so

ls -l ./libssl*
./libssl.so -> ./libssl.so.1.0.0

1