March 15, 201016 yr Hi.. I need to install those 2 packages libpcsclite-dev & libssl-dev. On my Ubuntu PC i have to do this: apt-get install libpcsclite-dev apt-get install libssl-dev cd /usr/lib ln -s libcrypto.so.0.9.8 libcrypto.so.6 ln -s libssl.so.0.9.8 libssl.so.6 How can i do this on my UnRaid server? Thanks
March 15, 201016 yr You don't. Those two "libraries" are already installed as part of unRAID (and already linked to *.so.0). root@Tower:~# ls -l /usr/lib/libcrypto* /usr/lib/libssl* lrwxrwxrwx 1 root root 18 Mar 2 19:56 /usr/lib/libcrypto.so.0 -> libcrypto.so.0.9.8* -r-xr-xr-x 1 root root 1297548 Oct 20 2007 /usr/lib/libcrypto.so.0.9.8* lrwxrwxrwx 1 root root 15 Mar 2 19:56 /usr/lib/libssl.so.0 -> libssl.so.0.9.8* -r-xr-xr-x 1 root root 258388 Oct 20 2007 /usr/lib/libssl.so.0.9.8* If you need to do anything at all, you can perform the last three commands, in case an executable is specifically looking for *.so.6 instead of *.so.0 cd /usr/lib ln -s libcrypto.so.0.9.8 libcrypto.so.6 ln -s libssl.so.0.9.8 libssl.so.6
Archived
This topic is now archived and is closed to further replies.