个人工具

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

来自Ubuntu中文

跳转至: 导航, 搜索
(新页面: {{From|https://help.ubuntu.com/community/LotusNotes}} {{Languages|UbuntuHelp:LotusNotes}} This page documents the procedure to install [http://lotus.com Lotus Notes Client] (version 6....)
 
第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 ==
 
You will need to add the following lines to /etc/apt/sources.list
 
You will need to add the following lines to /etc/apt/sources.list
第13行: 第8行:
 
deb http://wine.sourceforge.net/apt/ binary/
 
deb http://wine.sourceforge.net/apt/ binary/
 
</nowiki></pre>
 
</nowiki></pre>
 
 
== Installation ==
 
== Installation ==
 
=== Installing wine ===
 
=== Installing wine ===
第21行: 第15行:
 
$ sudo apt-get install wine
 
$ sudo apt-get install wine
 
</nowiki></pre>
 
</nowiki></pre>
 
 
 
=== Installing Lotus Notes Client in ubuntu ===
 
=== 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)
 
* 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)
第48行: 第40行:
 
</nowiki></pre>
 
</nowiki></pre>
 
I've created a shell script '''~/bin/lotus-client''' that executes this long command for me.
 
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:
 
Use an editor like gedit to create a file lotus-notes as:
 
<pre><nowiki>
 
<pre><nowiki>
第55行: 第46行:
 
$ chmod 755 ~/bin/lotus-client
 
$ chmod 755 ~/bin/lotus-client
 
</nowiki></pre>
 
</nowiki></pre>
 
 
----
 
----
 
[[category:CategoryDocumentation]]
 
[[category:CategoryDocumentation]]
  
 
[[category:UbuntuHelp]]
 
[[category:UbuntuHelp]]

2007年11月30日 (五) 20:09的版本

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