Our software currently does not support the termination of lines in the licenses file with a carriage return AND a line feed. Typically, this can happen when license keys are added to the licenses file using a Windows based text editor.
First of all, check you have a valid license string in installation_dir/easysoft/license/licenses. (By default, installation_dir is /usr/local.)
If you have a valid license, do the following:
cd /usr/local/easysoft/license od -c licenses
This will show a dump of the licenses file. All lines should be terminated by a "\n" character. If you notice any "\r", characters, carriage returns are present. These can be removed from the licenses file as follows:
cd /usr/local/easysoft/license tr -d '\r' < licenses > licenses.new mv licenses.new licenses