Penguin

Differences between version 12 and previous revision of NFSNotes.

Other diffs: Previous Major Revision, Previous Author, or view the Annotated Edit History

Newer page: version 12 Last edited on Monday, October 4, 2004 6:10:20 pm by PerryLorier Revert
Older page: version 11 Last edited on Monday, October 4, 2004 6:05:10 pm by StevePhillips Revert
@@ -6,8 +6,12 @@
  
 the 'hard' means 'never give up' (you can use 'soft' here, but it's not a good idea, the server tends to time it out too quickly. you might want to look at timeo= to set this timeout up, but hard is probably wiser) 
  
 the 'intr' means 'allow signals to interrupt this process'. ie: if the process has 'hung' waiting on the nfs server, you can still kill it (if for instance you wanted to umount(8) the now broken nfs mount) 
+  
+!!NFS Hangs when the servers still there  
+I was having issues with NFS locking up or producing IO errors when transfering large(ish) ammounts of data (10Meg or more) via NFS using pretty much defult options, changing the options to mount as follows cleared these problems up.  
+ __-o rw,hard,intr,rsize=2048,wsize=2048,nfsvers=3,bg__  
  
 !!I exported stuff and NFS isn't allowing it to mount! 
 You probably forgot to run exportfs(8) after updating exports(5). Silly you. 
  
@@ -32,8 +36,6 @@
 !!Useful sites 
 * NFS Mini Howto [http://www.vanemery.com/Linux/NFS-Van.html] 
 * Optimising NFS Preformance [http://www.linuxforum.com/linux-nfs/performance.html] 
  
-I was having issues with NFS locking up or producing IO errors when transfering large(ish) ammounts of data (10Meg or more) via NFS using pretty much defult options, changing the options to mount as follows cleared these problems up.  
-__-o rw,hard,intr,rsize=2048,wsize=2048,nfsvers=3,bg__  
 ---- 
 CategoryNotes