分页: 1 / 1

如何在Ubuntu Feisty Fawn(7.04)上安装Lotus notes 7.0.1 linux client

发表于 : 2007-05-26 21:02
Jakeyfu
前几天收到荷兰mail的Ubuntu Feisty Fawn, 趁几天周末有空,把Lotus notes安装了一下。安装方法其实很简单。
至于从那里下载lotus notes,大家可以自己搜索一下,深圳的朋友可以向我直接索取lotus notes:
How to install lotus notes 7.0.1 on Ubuntu 7.04 (Feisty Fawn)
I. Preparation for Installation:
1.First, download the mozilla browser from the internet.
You can select a fast website through the url: http://www.mozilla.org/mirrors.html.

we download the newest mozilla browser by the website:
http://mirror.ttn.net/mozilla.org/mozil ... .13.tar.gz
2.Extract and move
$ tar zxvf mozilla-i686-pc-linux-gnu-1.7.13.tar.gz
$ sudo mv mozilla-1.7.13 /opt
3.Edit /etc/gre.d/gre.conf to match your mozilla version (you can also add symlink /etc/gre.conf)
command as:
sudo gedit /etc/gre.d/gre.conf
then ,you add the content as below to gre.conf:
[1.7.13]
GRE_PATH=/opt/mozilla-1.7.13
Then, save and close.
4. Create file iwcttmp.out
Just command as:
$ ldd "/usr/lib/firefox/libgtkembedmoz.so" | grep gtk > /tmp/iwcttmp.out
5.Get Gnome libraries(if you use a KDE, this step is non-essential),
just command as:
sudo apt-get install libmotif3
II. Install Lotus Notes
1.Unpack C93D1NA.zip
command as:
unzip -d lotus C93D1NA.zip
2.Unpack Personality.zip
chmod +x on lotus/setup_wct_platform.bin and setuplinux.bin
3.copy setuplinux.bin to updateSite/features/com.ibm.workplace.notesinstall.linux.feature_7.0.1 .0000-0900/bin/linux/
4.Set privilege on install directory:
command as:
sudo chmod -R 777 /opt
5.run installer ./setup_wct_platform.bin as non-root user
IV.Setup Lotus Notes
1.Create script to launch notes(My username is jakeyfu)
attention: if there is no folder “bin”, you should create it at first.
command as:
gedit /home/jakeyfu/bin/notesstart
Then, add the below content to notesstart
#!/bin/sh

NOTESBIN=/home/jakeyfu/notes
NOTESDATA=/home/jakeyfu/notes/data
NOTESDIR=/home/jakeyfu/notes/data
LD_LIBRARY_PATH=$NOTESBIN:$NOTESBIN/jvm/bin/classic:$NOTESBIN/jvm/bin:$LD_LIBRARY_PATH
PATH=$NOTESBIN/jvm/bin:$NOTESBIN:$PATH
CLASSPATH=./:$NOTESBIN/:$CLASSPATH
export NOTESBIN NOTESDATA NOTESDIR LD_LIBRARY_PATH PATH CLASSPATH

/opt/IBM/Workplace\ Managed\ Client/rcp/richclient -personality com.ibm.workplace.noteswc.standalone.linux.personality
2. Create file notes.ini for lotus notes.
Create the file notes.ini by hand, put it in the path: /home/jakeyfu/bin
add the following content to the file notes.ini
[Notes]
Directory=/home/jakeyfu/notes/data
3.Change Permissions:
just command as:
chmod 755 notesstart
4.Edit “IBM Lotus Notes” launcher, the launcher just is the desktop icon “IBM Lotus Notes”.
Let “IBM Lotus Notes”” icon point to “/home/jakeyfu/bin/notesstart”.
参考文章:
文章1
http://www.linuxsolutions.org/index.php ... &Itemid=26
文章2
http://www.linuxdby.com/html/enterprise ... /2214.html