The software isn't available in a Linux version, however it does run seamlessly under WINE. As a pre-requisite to installing MicroOlap under WINE you need to install jet40 and mdac28 via winetricks, as documented here: https://www.microolap.com/products/database/mssql-designer/help/Introduction/WineConfiguration.htm
$sh winetricks jet40 mdac28
For a 32 bit OS that is all that is required, however on a 64 bit OS you will get the following error reported:
jet40 install completed, but installed file /home/USER/.wine/dosdevices/c:/Program Files (x86)/Common Files/Microsoft Shared/dao/dao360.dll not found
The "missing" dao360.dll is however available under the /home/USER/.wine/dosdevices/c:/Program Files/Common Files/Microsoft Shared/dao/ directory.
The trick is simply to create a shortcut in the Program Files(x86) path to the dll in the Program Files path, as follows and then to try the winetricks command again (you may also have to create the dao folder under the Program Files(x86) path first):
$sudo ln -sf /home/USER/.wine/dosdevices/c:/Program\ Files/Common\ Files/Microsoft\ Shared/dao/dao360.dll /home/USER/.wine/dosdevices/c:/Program\ Files\ (x86)/Common\ Files/Microsoft\ Shared/dao/dao360.dll
Lastly, if you are by any chance behind an authenticated proxy, you will need to first set the http_proxy environment variable, before running winetricks, as follows:
$http_proxy=http://user:password@proxy_ip_address:proxy_port
$export http_proxy
No comments:
Post a Comment