To test your Unity application on a Linux machine, build and deploy your app to the machine. When executing Build or Build and Run in Unity Editor, Unity generates a folder containing the compiled game. Copy this folder to the Linux machine and double-click on the .x86 (for 32-bit builds) or .x86_64 (for 64-bit builds) file in the build folder to launch the game.
| Note: | The Wwise Unity Integration for Linux needs libSDL2 installed on the machine to work. Without this, a "DLLNotFoundException" message is displayed when launching the game. |
To install libSDL2 for Ubuntu 12.04, do the following:
sudo apt-get install build-essential libasound2-devwget http://www.libsdl.org/release/SDL2-2.0.3.tar.gztar -zxvf SDL2-2.0.3.tar.gzcd SDL2-2.0.3./configuremakesudo make installsudo ldconfig
| Note: | The requirements may vary depending on the machine's configuration. Refer to libsdl.org for installation instructions on other setups. |
1.6.3