I downloaded MySQL's installation package and ran the following command after installing a fresh Ubuntu server.
dpkg -i mysql-5.5.28-debian6.0-x86_64.deb
It installed fine and then I tried starting up the server manually
/opt/mysql/server-5.5/bin/mysqld
And the following error came up
/opt/mysql/server-5.5/bin/mysqld: error while loading shared libraries: libaio.so.1: cannot open shared object file: No such file or directory
How can I install that library in an offline way ? I have no means whatsoever to an internet connection from that server and I can't even relocate it to have internet connection temporarily !
Thank you.
sudo apt-get installwithout parameters? dpkg just install the package but sometimes it allows you even on missing dependencies. This should give you an error and it will tell you the missing dependencies – Davisein Nov 25 '12 at 18:19