Talk:InstallingOnLinux
I wanted to say that the Linux instructions work for installing on MacOS. I'm running Mojave (14.4) on a 2013 MacBook Pro. I downloaded the Wine Stable dmg file for Mac and installed it in my Applications folder. That's also where I put winetricks and made it executable. I did the winecfg step and used winetricks to install the two MS packages needed, Jet and MDAC. I joined ATCSMon group on Yahoo Groups and downloaded the files. I installed ATCSMon in a folder in my home folder. Everything ran but nothing happened. It took a while to find all the layout and .ini and other files in the downloads section of the ATCSMon group, but once they were all installed it worked fine.
Here are some notes from a successful May 2019 installation on linux mint. I do not consider myself knowledgeable enough about linux to add this to the main page, so I'm just adding it to the discussion page.
I needed to setup a 32bit wine configuration. The following command creates a .wine32 directory in your home directory.
env WINEPREFIX=$HOME/.wine32 WINEARCH=win32 winecfg
Next use winetricks to install mdac28 and jet40. However, note that the installation of jet40 will not complete properly because of the .wine32 directory name instead of the expected .wine directory name.
env WINEPREFIX=~/.wine32 winetricks mdac28 jet40
Need to find the jet40 installer with the following command:
cd ~/.cache/winetricks/jet40/
Run the installer from that directory
env WINEPREFIX=~/.wine32 wine jet40sp8_9xnt.exe
Return to your home directory
cd ~
rerun winetricks install of jet40 for good measure (I don't remember if this was actually necessary)
env WINEPREFIX=~/.wine32 winetricks jet40
Next run the 4.10 installer, but uncheck the launch check box on the last installation screen. (The installer was located in my Downloads directory)
env WINEPREFIX=~/.wine32 wine ~/Downloads/ATCSMon410.exe
Then run the 4.26 beta installer
env WINEPREFIX=~/.wine32 wine ~/Downloads/ATCSMon426beta.exe
Finally, use the following command from your home directory anytime you need to launch the app
env WINEPREFIX=~/.wine32 wine ".wine32/drive_c/Program Files/ATCS Monitor/atcsmon.exe"