Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

genymotion throws libssl_conf.so: cannot open shared object file: No such file or directory

When I execute following code on Kali Linux

#/opt/genymobile/genymotion# ./genymotion

I get

> Logging activities to file: /root/.Genymobile/genymotion.log
Auto configuration failed
139950541100688:error:25066067:DSO support routines:DLFCN_LOAD:could not load the shared library:dso_dlfcn.c:185:filename(libssl_conf.so): libssl_conf.so: cannot open shared object file: No such file or directory
139950541100688:error:25070067:DSO support routines:DSO_load:could not load the shared library:dso_lib.c:244:
139950541100688:error:0E07506E:configuration file routines:MODULE_LOAD_DSO:error loading dso:conf_mod.c:285:module=ssl_conf, path=ssl_conf
139950541100688:error:0E076071:configuration file routines:MODULE_RUN:unknown module name:conf_mod.c:222:module=ssl_conf

But running the command

export OPENSSL_CONF=/etc/ssl/

solves this problem for that session.

like image 777
Bubai Avatar asked Nov 17 '18 20:11

Bubai


1 Answers

I think you have the answer just write

export OPENSSL_CONF=/etc/ssl/

to your .bashrc file and restart your computer The problem should be permanently solved.

I had a similar issue installing GenomeBrowser on Fedora and this solved it.

you could achieve the above by:

echo "export OPENSSL_CONF=/etc/ssl/" >> ~/.bashrc && source ~/.bashrc 

or if you have zsh for your shell you could do this instead:

echo "export OPENSSL_CONF=/etc/ssl/" >> ~/.zshrc && source ~/.zshrc
like image 198
Sunday Ikpe Avatar answered Nov 18 '22 20:11

Sunday Ikpe