Installation guide (paid version)
Instructions for downloading and installing the paid version of L'Math, and automating the mentioned.
Downloading the paid version
The latest download link(s) are provided to the customer in the order confirmation email. The updated link is also found below. Via this link, you will find all downloadable versions on the server, and their corresponding file checksums.
The organizational version is separate from the free consumer installation package. The free version must not be chosen for installation if you have an L'Math license code, as you will miss all the paid features and the license statistics will be missing.
Want to automate it?
The installation bundle path will always be the same:
- https://static.lehtodigital.fi/lmath/latest/windows/setup.exe
- https://static.lehtodigital.fi/lmath/latest/macos/LMath.dmg
- https://static.lehtodigital.fi/lmath/latest/linux/LMath.AppImage
Notes on different operating systems
Windows
- Windows installer based on Inno Setup as an exe file
- Automated installation can be done i.e. with Intune, and manual installation is also possible using the installer GUI
- Microsoft: Prepare a Win32 for intune upload
- Docs for the CLI params can be found in the
Inno Setup docs - Starting from version 1.10.11, the installer packages are digitally signed with an Azure Trusted Signing certificate
Example: Silent installation
Esimerkki hiljaisesta kaikille käyttäjille tehtävistä asennuksesta (järjestelmänvalvojan oikeuksilla), joka ei sammuta L'Math-sovellusta, ja kirjoittaa lokin tiedostoon lmath_install.log :
setup.exe /SILENT /VERYSILENT /ALLUSERS /NOCLOSEAPPLICATIONS /LOG="lmath_install.log"
MacOS
- For Mac, a DMG image is published, with the L'Math app bundle and a folder link to Applications
- There are varying installation methods, the DMG image is mainly meant for manual installation – Mac experts will know more about automated installation.
GNU/Linux
- For Linux, both AppImage and deb files are published
- Installing is as easy as copying the AppImage to a known location and adding shortcuts and/or .desktop entries to the user
- The .deb installation package will manage icons and file associations automatically
Installation script
With the provided script the newest L'Math paid version can be downloaded and installed automatically to a GNU/Linux device. The script will download the most recent AppImage file, place it under ~/.lmaths and install the required .desktop entries for the user. Feel free to open the link and modify the script to your needs, or see the script's help with the flag
--help
.
↳ https://lehtodigital.fi/f/Q1Nqt
Below are some example usage cases for downloading and running the script in a typical GNU/Linux system. Please note that the script can also be used for automatically updating the AppImage. The -y flag will silence the script's confirmations, and just install.
Suosittelemme lataamaan kyseisen skriptin ja tutkailemaan tai muokkaamaan sitä tarpeisiinne sopivaksi.
Installation to all users to
/opt/lmaths
(Requires root-level access for writing to /opt and /usr
)
wget -qO lmath.sh https://lehtodigital.fi/f/Q1Nqt && bash ./lmath.sh && rm ./lmath.sh
Installation to current user to
~/.lmaths
(It's the same as the one below, but with the flag
--local
)
wget -qO lmath.sh https://lehtodigital.fi/f/Q1Nqt && bash ./lmath.sh --local && rm ./lmath.sh
Uninstalling the global installation
rm -rf /opt/lmaths
rm -f /usr/share/applications/lmaths.desktop
xdg-desktop-menu forceupdate