个人工具

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

来自Ubuntu中文

跳转至: 导航, 搜索
第47行: 第47行:
 
</nowiki></pre>
 
</nowiki></pre>
 
----
 
----
[[category:CategoryDocumentation]]
 
  
 
[[category:UbuntuHelp]]
 
[[category:UbuntuHelp]]

2009年5月12日 (二) 17:46的版本

This page documents the procedure to install 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>

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