On Wed, Apr 27, 2005 at 02:55:34PM +0200, André Schulze wrote:
Am Wed den 27 Apr 2005 um 01:52:33PM +0200 schrieb Uwe Koloska:
Ein Rechner, der nicht kontinuierlich an ist (Arbeitsplatz), stellt ein Verzeichnis über nfs zur Verfügung. Der Server (immer an) hat das Verzeichnis gemounted und verteilt das Oberverzeichnis dazu mit Samba
Doofe idee.
Server: /global -> samba share /global/verzeichnis -> client:/mnt/verzeichnis mit nfs options: defaults,hard,intr
^^^^
Schnellschuß: Probiers mal mit option soft, dann sollte der Funktionsaufruf von Samba nicht blockieren.
Ich zitiere mal "man mount":
Especially useful options include
rsize=8192,wsize=8192 This will make your nfs connection faster than with the default buffer size of 4096. (NFSv2 does not work with larger values of rsize and wsize.)
hard The program accessing a file on a NFS mounted file system will hang when the server crashes. The process cannot be interrupted or killed unless you also specify intr. When the NFS server is back online the program will continue undisturbed from where it was. This is probably what you want.
soft This option allows the kernel to time out if the nfs server is not responding for some time. The time can be specified with timeo=time. This option might be useful if your nfs server sometimes doesn't respond or will be rebooted while some process tries to get a file from the server. Usually it just causes lots of trouble.
insbesondere den letzten Satz zu "soft" sollte man beachten.