UBUNTU 10.10装LOTUS8.01

安装:

用emule下的,下载地址
引用页:
http://www.verycd.com/topics/200085/

ed2k://|file| [IBM.电子商务].TLF-SOFT-IBM.Lotus.Notes.Client.v8.0.1.Linux-NF.tar|478361600|26ebc75b58eb6d469b54a22cbb554961|h=ZLA7UGPMFJVMF2GJWWCOZMNUPKGOYFCP|/

ed2k://|file| [IBM.电子商务].TLF-SOFT-IBM.Lotus.Notes.Client.v8.0.1.Linux-NF.nfo|1745|cd35835ff27f3ee290b28514e94e76ff|h=YLWPL22RMNW4ZA7CJ47WP5IUEC7UU4EG|/

安装过程很简单,直接sudo ./setup.sh就可以了
需要切换到英文环境,否则会有乱码。
需关闭桌面特效,否则会出现弹出的安装向导画面是空的(这个找了好久才发现,浪费了很多时间)

装完后还要把安装目录权限改一下,否则无法运行:
sudo chown -R username:usergroup /opt/ibm/lotus/notes
sudo chown -R username:usergroup /etc/lotus/notes
sudo chown -R username:usergroup /home/username/lotus/no

 

安装遇到问题:

安装的时候提示-console或者-silent的情况,安装了libstdc++5之后,再安装就ok了。

1. 下载安装包: wget -c http://lug.mtu.edu/ubuntu/pool/main/g/gcc-3.3/libstdc++5_3.3.6-10_i386.deb

2. 解包为libstdc++5: dpkg -x libstdc++5_3.3.6-10_i386.deb libstdc++5

3. 复制到系统lib目录:sudo cp libstdc++5/usr/lib/libstdc++.so.5.0.7 /usr/lib

4. 进入系统lib目录建libstdc++5链接:cd /usr/lib; sudo ln -s libstdc++.so.5.0.7 libstdc++.so.5

搞定

 

 

参考:

So you installed Lotus Notes 8.0.1 on Ubuntu Linux and nothing seems to works? One test you can do is to start Lotus Notes via the command line using root privileges. If the splash screen then starts and then tell you that Notes can not be run as root then the issue may be permission's on the file system.

Here is an example of how to start Notes from the command line:

ubuntu: cd /usr/bin
ubuntu: sudo -i
ubuntu: ibm-notes8 (this is a symlink to > /opt/ibm/lotus/notes/framework/rcp/richclient.sh)



You will also notice ibm-notes8-zap. Guess what that does!

The first thing you should do is check permission's on the file system.

ls -l /opt/ibm/lotus/notes


If the permission's is anything else other than -rwxr-xr-x then you may have an issue. What I have seen is that the installer sets the Group permission's to --- and that will not work.

To set the permission's correctly issue the following:

chmod -R 755 /opt/ibm/lotus/notes
chmod -R 755 /etc/lotus/notes
chmod -R 755 /home/username/lotus/notes



FYI - This is how permission's work:

An example of ls -l:
drwxr-xr-x 4 root root 4096 2007-12-07 13:37 My Directory (d = directory l = link)
-rwxr-xr-x 1 root root 342 2008-02-22 11:27 notesrc

- r w x r - x r - x
0 1 2 3 4 5 6 7 8 9
The permission's are divided into 3 groups example above, 123 are Owner permission's, 456 are Group permission's and 789 are other user permission's.

Permission's are set using the following values
| 0 | --- |
| 1 | --x |
| 2 | -w- |
| 3 | -wx |
| 4 | r-- |
| 5 | r-x |
| 6 | rw- |
| 7 | rwx |
So using the table above chmod 761 notesrc would set the file permission's to:
-rwxrw---x owner group notesrc
While chmod 755 would set it to:
-rwxr-xr-x owner group notesrc



To set or reset the file owner and group you would need to use chown.

chown -R -h owner:group
chown -R -h notes:notes /opt/ibm/lotus
chown -R -h notes:notes /local/notesdata


If this does not work you can start the Notes startup script in verbose mode. Do the following:

cd /opt/ibm/lotus/notes/framework/rcp
sh -x richclient.sh (This provides output)
sh -x -v richclient.sh (This provides output and dumps the script file)



Not every distribution will work with Lotus Notes 8.x but its worth a try. My experience has been that Gnome distro's work and KDE distro's does not work out the box. I will publish more soon.

Top Tip! Notes 8 for Linux does not include Designer or Administrator. However, all is not lost. Simply install the Windows Notes 8 basic with Designer and Administrator client in WINE. It works really well but of course does not give you the eclipse framework

你可能感兴趣的:(UBUNTU 10.10装LOTUS8.01)