IBM Lotus Notes 9.0.1 Social Edition can't be installed on my imac OSX 10.10

After upgrading to Yosemite, I lost my IBM Lotus Notes. I cannot re-instal it as I keep getting an error 'This can only be installed on Mac OS x 10.6 or above. Current Version is too low.' Does it mean that It is assuming the OSX is 10.1 or what?

iMac, OS X Yosemite (10.10), 2.9 GHz Intel Core i5, 8 GB 1600 M

Posted on Oct 22, 2014 2:24 AM

Reply
13 replies

Oct 23, 2014 11:15 AM in response to phillamu

you need to find the the file called : InstallationCheck, open it and find the string close to this :

osv=`/usr/sbin/system_profiler SPSoftwareDataType | grep "System Version" | sed -e 's/\(.*\)Mac OS X \(.*\) \(.*\)/\2/g'`

and modify like that :

osv=`/usr/sbin/system_profiler SPSoftwareDataType | grep "System Version" | sed -e 's/\(.*\)OS X \(.*\) \(.*\)/\2/g'`


If you can't find the file or the string I can help you better having the package to analyse, write me @ ********* if you want.

<E-mail Edited by Host>

Nov 5, 2014 8:45 AM in response to Larry lafter

Larry lafter wrote:


you need to find the the file called : InstallationCheck, open it and find the string close to this :

osv=`/usr/sbin/system_profiler SPSoftwareDataType | grep "System Version" | sed -e 's/\(.*\)Mac OS X \(.*\) \(.*\)/\2/g'`

and modify like that :

osv=`/usr/sbin/system_profiler SPSoftwareDataType | grep "System Version" | sed -e 's/\(.*\)OS X \(.*\) \(.*\)/\2/g'`



Larry & Phillamu,


I was having the same problem, but was able to get 9.0.1 to install under OS X 10.10 (Yosemite) after modifying InstallationCheck. I started with Larry's suggestion, but had to change a few more things to get it to install.


As it turns out, version 10.10 is evaluated as being "older" than 10.8 & 10.5 when the bash script is ran. Think about it, when it comes to a mathematical comparison, 10.10 is a smaller number than 10.5.

To get around this, and preserve the spirit of the script, the change I made was to limit the comparison to the incremental version number.

I also had to change the syntax of the comparison.


In the file InstallationCheck, replace this:

osvLion=`/usr/sbin/system_profiler SPSoftwareDataType | grep "System Version" | sed -e 's/\(.*\)OS X \(.*\) \(.*\)/\2/g'`

if [ "$osvLion" \< "10.8" ]

then

osv=`/usr/sbin/system_profiler SPSoftwareDataType | grep "System Version" | sed -e 's/\(.*\)Mac OS X \(.*\) \(.*\)/\2/g'`

if [ "$osv" = "" -o "$osv" \< "10.5" ]


with this(the changes are highlighted in bold to help identify them):

osvLion=`/usr/sbin/system_profiler SPSoftwareDataType | grep "System Version" | sed -e 's/\(.*\)OS X 10.\(.*\) \(.*\)/\2/g'`

if [ "$osvLion" -lt "8" ]

then

osv=`/usr/sbin/system_profiler SPSoftwareDataType | grep "System Version" | sed -e 's/\(.*\)OS X 10.\(.*\) \(.*\)/\2/g'`

if [ "$osv" = "" -o "$osv" -lt "5" ]


A few more notes.

InstallationCheck is located in the Resources folder inside "IBM Notes Installer.pkg", which is located in the Packages folder inside "IBM Notes Installer.mpkg".

Use Finder's "Show Package Contents" feature to look inside the .mpkg & .pkg files.

Use Finder's "Duplicate" feature to save a copy of InstallationCheck before editing the script. (Don't back yourself into a corner. You might need to start over.)


Now I just need to get Notes to actually run!


Good luck!!!

This thread has been closed by the system or the community team. You may vote for any posts you find helpful, or search the Community for additional answers.

IBM Lotus Notes 9.0.1 Social Edition can't be installed on my imac OSX 10.10

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple Account.