个人工具

“UbuntuHelp:LotusNotes”的版本间的差异

来自Ubuntu中文

跳转至: 导航, 搜索
第1行: 第1行:
 
{{From|https://help.ubuntu.com/community/LotusNotes}}
 
{{From|https://help.ubuntu.com/community/LotusNotes}}
 
{{Languages|UbuntuHelp:LotusNotes}}
 
{{Languages|UbuntuHelp:LotusNotes}}
This page documents the procedure to install [http://lotus.com Lotus Notes Client] (version 6.5.2) on Breezy Badger (this may work on earlier releases but has not been tested).
+
This page documents the procedure to install [[http://lotus.com|Lotus Notes Client]] (version 6.5.2) on Breezy Badger (this may work on earlier releases but has not been tested).
 
If you find any errors/changes to this document please feel free to write to <KetanPadegaonkar [at] gmail [dot] com>
 
If you find any errors/changes to this document please feel free to write to <KetanPadegaonkar [at] gmail [dot] com>
 
== Requirements ==
 
== Requirements ==

2008年10月19日 (日) 12:43的版本

This page documents the procedure to install [Notes Client] (version 6.5.2) on Breezy Badger (this may work on earlier releases but has not been tested). If you find any errors/changes to this document please feel free to write to <KetanPadegaonkar [at] gmail [dot] com>

Requirements

You will need to add the following lines to /etc/apt/sources.list

deb http://wine.sourceforge.net/apt/ binary/

Installation

Installing wine

To install wine you'll need to perform the following:

$ sudo apt-get update
$ sudo apt-get install wine

Installing Lotus Notes Client in ubuntu

  • Install Lotus Notes Client 6.5.2 under Windows. Unfortunately wine still does not have support for windows installers. Make sure that you install this on a partition that is writable under ubuntu (a vfat partition is preferable)
  • Execute wine once, without any command line arguments as
$ wine

This would setup wine and place the correct configuration files.

  • Create symlinks to windows partitions for use with wine.
$ mkdir /.wine/dosdevices
$ cd /.wine/dosdevices
$ ln -s /path/to/windows/d d:
$ ln -s /path/to/windows/e e:
$ ln -s /path/to/windows/f f:
$ ln -s ~ h:                           # home directory is availble in h:
...
...
...
$ ln -s / z:                           # root partition is availble in z:
  • Almost done! Now use the following command to run Lotus Notes Client 6.5.2. Note the use of double slashes.
wine f:\\Program\ Files\\notes\\nlnotes.exe =f:\\Program\ Files\\Notes\\Data\\notes.ini

I've created a shell script ~/bin/lotus-client that executes this long command for me. Use an editor like gedit to create a file lotus-notes as:

$ mkdir ~/bin
$ gedit ~/bin/lotus-client       # add the above command to this file
$ chmod 755 ~/bin/lotus-client