Hi @all,
es geht auch ohne VMware, wieso nutzt niemand WINE ? Es ist Open Source und kost nix ;-)
Wie es geht:
1.
ftp://ftp.lotus.com/pub/lotusweb/product/domino/linux/wineinstall.PDF2.
http://www.winecentric.com/notes5.shtml3.
http://www.dominopower.com/issues/issue200201/server001.html4.
###################################################################################
# 1. Wine installieren (Ich nehme das Verzeichnis /opt/emulators/wine)
# 1.a Wine-Sourcen holen von
www.winehq.com (normalerweise ist die
# neuste Version auch die beste) - ich benutze hier Wine-20020411.tar.gz
# 1.b Auspacken
mkdir ~/Temp
cd ~/Temp
tar -xzf ../Wine-20020411.tar.gz
cd wine-20020411/
# 1.c Konfigurieren (für den produktiven Einsatz ohne Debugging)
# je nach Distribution meckert das Skript über Freetype + OpenGL support -
# kann man für Lotus allerdings ignorieren
./configure --prefix=/opt/emulators/wine --disable-debug --disable-trace --enable-opengl
# 1.d Compilieren
make depend && make
################################
# 1.e als root installieren
su
mkdir -p /opt/emulators/wine
make install
mkdir /opt/emulators/wine/drives
chmod 777 /opt/emulators/wine/drives
# als root ausloggen
####################################
# 1.f Die prsönliche Konfiguration erstellen
./tools/wineinstall
# Es folgt nun Auszugsweise der konfigurationsdialog
##########################################################################
#We need to install wine as root user, do you want us to build wine,
#'su root' and install Wine? Enter 'no' to continue without installing
#(yes/no) no
#Create local config file ~/.wine/config?
#(yes/no) yes
#
#...
#Windows was not found on your system, so I assume you want
#a Wine-only installation. Am I correct?
#(yes/no) yes
#
#Configuring Wine without Windows.
#Some fake Windows directories must be created, to hold any .ini files, DLLs,
#start menu entries, and other things your applications may need to install.
#Where would you like your fake C drive to be placed?
#(default is /home/USERNAME/c) /opt/emulators/wine/drives/DriveC
#
##########################################################################
# 1.g Verzeichnis für persönlichen Pfad erstellen
mkdir ~/Windows/DriveH
# 1.h Einen zusätzlichen Eintrag in ~/.wine/config eintragen (hinter Drive F)
[Drive H]
"Path" = "${HOME}/Windows/DriveH"
"Type" = "hd"
"Label" = "Private Data"
"Filesystem" = "win95"
# und die Definition von Path ändern (h:\Lotus\Notes hinzufügen)
"Path" = "c:\\windows;c:\\windows\\system;e:\\;e:\\test;f:\\;h:\\Lotus\\Notes"
###########################################################################
####### Wine ist jetzt vollständig installiert ###########################
###########################################################################
##########################################################################
# 2 Lotus-Notes installieren
# 2.a Installieren
export LD_LIBRARY_PATH="/opt/emulators/wine/lib"
cd /opt/emulators/wine/drives/c/R509a/
/opt/emulators/wine/bin/wine --managed Setup.exe
# (Gemeinsame Installation auswählen, ansonsten sollte die Installation
# selbsterklärend sein)
# 2.c Die Mitgelieferten Dateien kopieren:
# - notes.ini nach ~/Windows/DriveH/Lotus/Notes/notes.ini
# USERNAME.id nach ~/Windows/DriveH/Lotus/Notes/Data/.
cp -r /opt/emulators/wine/drives/c/Lotus/Notes/Data
cp notes.ini ~/Windows/DriveH/Lotus/Notes/.
cp USERNAME.id ~/Windows/DriveH/Lotus/Notes/Data/.
# 2.d Als root einloggen
su
# 2.e in die Datei /etc/hosts folgende 2 Zeilen einfügen
192.168.0.1 dominoserver.domain.org dominoserver
# 2.f Das Script /usr/local/bin/notes, mit folgendem Inhalt erstellen:
##### --- Skript-start ----
#!/bin/sh
export LD_LIBRARY_PATH="/opt/emulators/wine/lib"
/opt/emulators/wine/bin/wine --managed "C:/Lotus/Notes/nlnotes.exe"
##### --- Skript-ende ----
# 2.g Skript ausführbar machen
chmod 755 /usr/local/bin/notes
# 2.h /usr/local/bin/notes aufrufen und wie unter Windows konfigurieren -
# (Mobil -> Aktuelle Arbeitsumgebung bearbeiten)
# dabei sollte man darauf achten,
# dass man bei Anschlüsse TCPIP eingestellt hat, und bei
# Internet-Browser die Internet-Explorer-Unterstützung abschaltet.
#######################################################################
oder hier mal schauen:
http://www.winehq.comoder
http://www.codeweavers.com/home/ <<<--- kostet aber was :-(
Gruss jofa