Geeking in technology since 1985, with IBM Development, focused upon Docker and Kubernetes on the IBM Z LinuxONE platform In the words of Dr Cathy Ryan, "If you don't write it down, it never happened". To paraphrase one of my clients, "Every day is a school day". I do, I learn, I share. The postings on this site are my own and don’t necessarily represent IBM’s positions, strategies or opinions. Remember, YMMV https://infosec.exchange/@davehay
Sunday, 8 May 2011
Ubuntu Linux 11.04 Natty Narwhal and IBM Lotus Notes 8.5.X
Morning All I upgraded from 10.10 to 11.04 on Tuesday 3rd May, but didn't get much opportunity to do anything significant with the machine ( 4061-BL5 Lenovo Thinkpad W500 ) until this weekend. The first observation is that Lotus Notes 8.5.2 started to play up post-upgrade. The client would start up normally, but I wasn't able to preview or open any emails, or access the Replication page. In all cases, the page/tab title would appear in the tab view along the top of the client, but the contents wouldn't appear. When I first hit this problem, I applied the 8.5.2 fixpack ( lotus_notes852FP2_linuxUb.tar ) but to no avail. The problem persisted through reboots, both cold and warm.
I then removed 8.5.2 and installed 8.5.3 CD4 ( notes853standard_linux_cd4_prod_deb.tar ), but saw exactly the same problem. Thankfully, a quick bit of Googling later, and I'd found this: -
http://usablesoftware.wordpress.com/2011/04/05/lotus-notes-8-5-2-fp2-in-ubuntu-11-04-natty-narwhal-64bit-beta-1/ and followed one of the forum responses off to this bug on Launchpad: -
libgtk2 2.24.0 break Lotus Notes user interface
which directs one to download, compile and use patched "shared object wrapper" I did need to install the libgtk2 header files: - $ sudo apt-get install libgtk2.0-dev and also ensure that the downloaded Makefile was correctly formatted - I'd copied/pasted it from the site, and used vi to create it, meaning that I'd forgotten to add in the leading tabs: - all:
[TAB]gcc -Wall -Wextra `pkg-config --cflags gtk+-2.0`-shared libnotesgtkfix.c -o libnotesgtkfix.so -ldl
clean:
[TAB]rm -f libnotesgtkfix.so
Having done this, I copied the newly created module ( libnotesgtkfix.so ) and the wrapper script ( notes-wrapper.sh ) to the /opt/ibm/lotus/notes directory, and then use the wrapper script to start Notes. Job done.
The power of the community ...
Kudos to Soren Holm for writing this patch so quickly ...
Subscribe to:
Post Comments (Atom)
Note to self - use kubectl to query images in a pod or deployment
In both cases, we use JSON ... For a deployment, we can do this: - kubectl get deployment foobar --namespace snafu --output jsonpath="{...
-
Why oh why do I forget this ? Running this command : - ldapsearch -h ad2012.uk.ibm.com -p 389 -D CN=bpmbind,CN=Users,DC=uk,DC=ibm,DC=com -w...
-
Error "ldap_sasl_interactive_bind_s: Unknown authentication method (-6)" on a LDAPSearch command ...Whilst building my mega Connections / Domino / Portal / Quickr / Sametime / WCM environment recently, I was using the LDAPSearch command tha...
-
Whilst building a new "vanilla" Kubernetes 1.25.4 cluster, I'd started the kubelet service via: - systemctl start kubelet.se...
8 comments:
Thanks for that post!
I just installed Natty on a new machine (switching from 32-bit to 64-bit Ubuntu) and one of my next steps will be the Notes install.
This will save a lot of frustration and time for research!
Thank you, it worked with 11.04 32-bit! Notes crashed when started from the command line. When I searched for it in the Unity menu it finally worked.
I modified /usr/share/applications/LotusNotes8.5.desktop to be:
[Desktop Entry]
Encoding=UTF-8
Name=Lotus Notes 8.5
Type=Application
Exec=/opt/ibm/lotus/notes/framework/../notes-wrapper %F
Icon=/opt/ibm/lotus/notes/framework/shared/eclipse/features/com.ibm.notes.links.feature_8.5.2.20100811-1131/icons/notes.ico
Terminal=false
Categories=Application;Office;
I worked with Soren to get this working with Fedora as well. Fedora 15 working now.. Yay!
Thank you very much!!
It saves a lot of time and works just perfect.
Thanks! The wrapper lib worked for me on OpenSuse 12.3. Before finding this post I spent hours trying to fix this. I even tried to run Notes under a different Java version
@Max - glad to be of assistance :-)
Just installed Notes 9 on Ubuntu 64 without problems.
Installing it completely with no errors in the operating system
http://wp.me/p1CuQM-hQ
For reading on how to
@Matts - thanks for the update, and the link to the blog post IBM Notes 9.0 and Ubuntu 64
Post a Comment