[[howto:desktop:install-lotus-notes-8-in-ubuntu-linux]]

Posted 17 September 2007 by Brendan Kidwell

Install Lotus Notes 8 in Ubuntu Linux

I was able to get Lotus Notes 8 for Linux working on my Ubuntu desktop at work today. I am using Ubuntu 7.04 Feisty Fawn with a GNOME desktop. YMMV.

I started with the file C13NCEN.tar. You need to get this from your system administrator or from the IBM web site, if you have an appropriate login there.

Using your favorite archiver, extract C13NCEN.tar to a new folder. (There are three files and a folder in the root of the tar file.)

For some reason, the installer assumes /bin/sh is bash and doesn't work if that's not true.

sudo mv /bin/sh /bin/sh.old
sudo ln --symbolic /bin/bash /bin/sh

When I first started Notes, a lot of text was displayed in Courier font, which takes up a lot of visual space. A blog post (second URL linked in “References” below) points out a fix:

sudo apt-get install ttf-xfree86-nonfree

31 Aug 2009 Reader Shawn M suggests also non-free PostScript Type 1 fonts if non-free TrueType fonts are insufficient to fix the font problem:

sudo apt-get install t1-xfree86-nonfree

Run setup.sh.

cd ~/downloads/notes8   # cd into the directory where you extracted the installer
sudo ./setup.sh

The installer will run a Java-based GUI setup wizard. When asked, elect to install all of the available features.

Note: Did it fail? If you get the message “sudo: ./setup.sh: command not found” try copying the installer directory to a local, non-networked volume. I just discovered this now while trying to install from an SSH connection via FUSE, mounted rw; copying it to the local disk fixed the problem.

Note 2: Did it still fail? Try making sure the path to the installer does not contain any spaces. I don't know if this is really a problem or not, but it's a guess I just had. If my friend gets it working for himself after trying this, then yes.

The page at the first URL in “References” below says that the installer creates a faulty ~/lotus data directory and that you should rename or remove it. Since I had trouble removing it while logged in as myself, I suspect there may be files in it owned by root.

sudo chown --recursive brendan.brendan ~/lotus   # substitute YOUR username
rm --recursive ~/lotus

When you start Lotus Notes, it will create a fresh ~/lotus directory.

Use this command to start Lotus Notes the first time:

/opt/ibm/lotus/notes/notes

After the application does some basic initialization, it will give you another wizard to setup your connection to your Domino server (or whatever other server you wish to access). Go through this wizard in the normal way.

Now Lotus Notes should be ready to use. Note that if you previously used an older version of Notes, bookmarks you used to have in a narrow sidebar on the left of the window are now in the [btn]Open[/btn] button at the top of the window.

You can create a Launcher on your desktop or in your Applications menu for Lotus Notes. See documentation for your Linux distribution for the exact procedure.

Type Application
Name Lotus Notes
Command/opt/ibm/lotus/notes/notes
Icon /opt/ibm/lotus/notes/notes.ico

Note: a reader pointed out to me that this step isn't necessary. The installer creates Launchers in Applications / Office. I just didn't notice them there.

Fix the /bin/sh kludge you created:

sudo rm /bin/sh
sudo mv /bin/sh.old /bin/sh

References

I used these pages for help:

To comment on this page, please copy and paste the following into an email and send it to me. Useful and informative comments will be published within a day or two.

To: brendan@glump.net
Subject: Glump.net comment - Install Lotus Notes 8 in Ubuntu Linux

Regarding: https://www.glump.net/howto/desktop/install-lotus-notes-8-in-ubuntu-linux
My name: [your name here]
My social media or web site: [optional URL here]
Publish this comment: yes

[your comment here]