有没有谁把lotus notes 7.01 for linux 安装成功的啊

OOo,TeX,KO,ABI,GIMP,Picasa,ProE,QCAD,Inkscape,Kicad,Eagle
yangkwch
帖子: 56
注册时间: 2006-03-25 6:18
联系:

有没有谁把lotus notes 7.01 for linux 安装成功的啊

#1

帖子 yangkwch » 2006-07-30 22:14

偶装上了,但是起不来,连界面都看不到
yangkwch
帖子: 56
注册时间: 2006-03-25 6:18
联系:

#2

帖子 yangkwch » 2006-07-31 18:44

都没有xdjm在linux下用lotus notes??
头像
choukuangjay
帖子: 274
注册时间: 2006-01-17 14:39
来自: Nanking
联系:

#3

帖子 choukuangjay » 2006-07-31 21:47

我也是天天要用notes的。。。。。。。。搞不定啊
ID:死乘把口, Matrix Chou
寨本网 山寨笔记本大本营
头像
eexpress
帖子: 58428
注册时间: 2005-08-14 21:55
来自: 长沙

#4

帖子 eexpress » 2006-07-31 21:53

我幸好不需要指定这个软件。用过gnumeric而已。
● 鸣学
头像
choukuangjay
帖子: 274
注册时间: 2006-01-17 14:39
来自: Nanking
联系:

#5

帖子 choukuangjay » 2006-07-31 22:01

nnd在公司必须要notes。
ID:死乘把口, Matrix Chou
寨本网 山寨笔记本大本营
yangkwch
帖子: 56
注册时间: 2006-03-25 6:18
联系:

#6

帖子 yangkwch » 2006-08-01 22:23

都没有能启动的?可惜邮件都是通过notes走的,没有他真的什么都干不了
littertiger
帖子: 99
注册时间: 2006-08-08 20:25
联系:

#7

帖子 littertiger » 2006-08-10 11:32

你的notes for linux是在哪里下的?
我也是天天需要notes,没办法呀,必须装。
littertiger
帖子: 99
注册时间: 2006-08-08 20:25
联系:

#8

帖子 littertiger » 2006-08-10 18:28

I can only find Lotus Domino server on IBM web site.
does it have notes?
头像
内存不足
论坛版主
帖子: 3277
注册时间: 2005-08-18 18:43
联系:

#9

帖子 内存不足 » 2006-08-10 19:48

用骡子把全套的都下来了,不会用 :shock:
໌→ iCookie Gtk Theme
໌→DropPlusBluetheme
กรัก กรัก`菠萝
littertiger
帖子: 99
注册时间: 2006-08-08 20:25
联系:

#10

帖子 littertiger » 2006-08-11 14:41

俺这地方法规太多,骡子用不了。
谁知道哪儿有不用骡子得note7.0 for linux?
yangkwch
帖子: 56
注册时间: 2006-03-25 6:18
联系:

我们公司内网有,也不知道是从什么地方down的,在网上找了个安装说明,目前还未完成测

#11

帖子 yangkwch » 2006-08-12 18:38

Get package
The best way is to get it from Partnerworld program.
Name of package is: C93D1NA.zip

Prerequisites
1, install mozilla package - should be >= 1.7.12 (apt-get install mozilla-browser)
2, create symlink to mozilla binary (ln -sf /usr/bin/mozilla-suite /usr/bin/mozilla)
3, edit /etc/gre.d/gre.conf to match your mozilla version (you can also add symlink /etc/gre.conf)
insert:
Code:

[1.7.13] GRE_PATH=/usr/lib/mozilla

4, Get Gnome libraries (I'm not sure which ones - i got Gnome as alternative Desktop)

Install
1, unpack C93D1NA.zip (unzip -d lotus C93D1NA.zip)
2, unpack Personality.zip
3, chmod +x on lotus/setup_wct_platform.bin and setuplinux.bin
4, copy setuplinux.bin to updateSite/features/com.ibm.workplace.notesinstall.linux.feature_7.0.1 .0000-0900/bin/linux/
5, run installer ./lotus/setup_wct_platform.bin as non-root user (it'll be a little bit complicated installing it as root, but it's possible)
6, as first, there will be Workplace Manged Client installed (agree to
licenses, set install path etc. to install it - don't forget to set privileges on install dirs ) and then you will be asked to install Lotus Notes Client plug-in, so be patient. At the end launch icon will be installed to your desktop.
7, after installation, empty client will be started so don't panic
8, close client

Setup
To start client correctly, you have to make some environment settings:
$CLASSPATH pointing to the top-level installation directory.
Add the top-level installation directory, and jvm/bin to your path
Set $NOTESDIR to the data subdirectory of the top-level installation directory
Set $NOTESBIN to the top-level installation directory
Add the subdirectories jvm/bin/classic, jvm/bin and the top-level installation directory to $LD_LIBRARY_PATH
Code:

example: NOTESBIN=/home/malmo/notes NOTESDATA=/home/malmo/notes/data NOTESDIR=/home/malmo/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

The way you do it is up to you
KDE:
I've put those variables into file (.notesrc) & sourcing it before launch of main app.
Code:

(command section in desktop file: . /home/malmo/.notesrc;/opt/ibm/Workplace\ Managed\ Client/rcp/richclient -personality com.ibm.workplace.noteswc.standalone.linux.personality)

Gnome:
Create script to launch notes
e.g. /home/malmo/bin/notesstart
Code:

#!/bin/sh NOTESBIN=/home/malmo/notes NOTESDATA=/home/malmo/notes/data NOTESDIR=/home/malmo/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


chmod 755 notesstart

now you can edit launcher icon to point to script

Final:
Then, after launching application you should be able to setup Lotus Notes common way - LotusNotes wizard will pop-up.
头像
内存不足
论坛版主
帖子: 3277
注册时间: 2005-08-18 18:43
联系:

#12

帖子 内存不足 » 2006-08-12 20:39

谁给翻译成中文?
໌→ iCookie Gtk Theme
໌→DropPlusBluetheme
กรัก กรัก`菠萝
yangkwch
帖子: 56
注册时间: 2006-03-25 6:18
联系:

#13

帖子 yangkwch » 2006-08-14 13:00

偶试了以下,界面起来了,但是什么都做不了,都没地方选择id文件,搞不懂了哦
flute
帖子: 3
注册时间: 2006-08-23 13:08

#14

帖子 flute » 2006-08-23 13:12

楼主,你的LOTUS NOTES 7.01是从哪下载的?能告知一下吗?
yangkwch
帖子: 56
注册时间: 2006-03-25 6:18
联系:

#15

帖子 yangkwch » 2006-08-23 16:18

找个地方,我上传吧,我是在公司内网下的。
回复