You are missing some libraries. In Ubuntu and Debian simply use the following command:
sudo apt-get install libssl1.0.0:amd64
and the next one for the other library:
sudo apt-get install zlib1g
If you encounter issues with dependency, try this:
sudo apt-get install zlib1g:i386
Sometimes you might get an error with sudo missing. Simply type apt-get install sudo
then login as root and type nano /etc/sudoers
. Navigate to where the users are listed and add your username in this form (under root): USERNAME ALL=(ALL:ALL) ALL
then issue the commands above. It should work this way.