<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: How to unmount NFS share mounted with hard option</title>
	<atom:link href="http://kovyrin.net/2007/08/29/how-to-unmount-nfs-share-mounted-with-hard-option/feed/" rel="self" type="application/rss+xml" />
	<link>http://kovyrin.net/2007/08/29/how-to-unmount-nfs-share-mounted-with-hard-option/</link>
	<description>Yet Another Admin&#039;s blog</description>
	<lastBuildDate>Thu, 04 Feb 2010 07:58:50 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: ray</title>
		<link>http://kovyrin.net/2007/08/29/how-to-unmount-nfs-share-mounted-with-hard-option/comment-page-1/#comment-230891</link>
		<dc:creator>ray</dc:creator>
		<pubDate>Mon, 15 Mar 2010 02:33:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.kovyrin.net/2007/08/29/how-to-unmount-nfs-share-mounted-with-hard-option/#comment-230891</guid>
		<description>umount -f does not work when NFS mount is stuffed due to the NFS server rebooting or something like that. The only thing which worked for me was what was posted here by Scoundrel. Thanks a million it helped me finally sorting this out without rebooting all involved servers. Triple kudos.</description>
		<content:encoded><![CDATA[<p>umount -f does not work when NFS mount is stuffed due to the NFS server rebooting or something like that. The only thing which worked for me was what was posted here by Scoundrel. Thanks a million it helped me finally sorting this out without rebooting all involved servers. Triple kudos.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Yordan</title>
		<link>http://kovyrin.net/2007/08/29/how-to-unmount-nfs-share-mounted-with-hard-option/comment-page-1/#comment-209505</link>
		<dc:creator>Yordan</dc:creator>
		<pubDate>Mon, 15 Mar 2010 10:12:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.kovyrin.net/2007/08/29/how-to-unmount-nfs-share-mounted-with-hard-option/#comment-209505</guid>
		<description>man: umount
---------------
       -f     Force unmount (in case of an unreachable NFS system).  (Requires kernel 2.1.116 or later.)

       -l     Lazy  unmount.  Detach  the  filesystem from the filesystem hierarchy now, and cleanup all references to the filesystem as
              soon as it is not busy anymore.  (Requires kernel 2.4.11 or later.)
------------------</description>
		<content:encoded><![CDATA[<p>man: umount<br />
&#8212;&#8212;&#8212;&#8212;&#8212;<br />
       -f     Force unmount (in case of an unreachable NFS system).  (Requires kernel 2.1.116 or later.)</p>
<p>       -l     Lazy  unmount.  Detach  the  filesystem from the filesystem hierarchy now, and cleanup all references to the filesystem as<br />
              soon as it is not busy anymore.  (Requires kernel 2.4.11 or later.)<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: LAMEtHIng</title>
		<link>http://kovyrin.net/2007/08/29/how-to-unmount-nfs-share-mounted-with-hard-option/comment-page-1/#comment-153979</link>
		<dc:creator>LAMEtHIng</dc:creator>
		<pubDate>Mon, 15 Mar 2010 15:45:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.kovyrin.net/2007/08/29/how-to-unmount-nfs-share-mounted-with-hard-option/#comment-153979</guid>
		<description>Finally the answer! Thanks a lot man I was looking everywhere for this! The key for me was the &#039;D&#039; state. I had an vsftpd process AND lsof process holding up the NFS umount. What happened was that I lost connection to my NFS server and then my IP changed. I couldn&#039;t even run fuser OR lsof as it would just freeze and never timeout. I tried restarting all the rpc.nfs stuff and the ftp server to no avail. Finally this works, thanks a ton man!</description>
		<content:encoded><![CDATA[<p>Finally the answer! Thanks a lot man I was looking everywhere for this! The key for me was the &#8216;D&#8217; state. I had an vsftpd process AND lsof process holding up the NFS umount. What happened was that I lost connection to my NFS server and then my IP changed. I couldn&#8217;t even run fuser OR lsof as it would just freeze and never timeout. I tried restarting all the rpc.nfs stuff and the ftp server to no avail. Finally this works, thanks a ton man!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andre-Sebastian</title>
		<link>http://kovyrin.net/2007/08/29/how-to-unmount-nfs-share-mounted-with-hard-option/comment-page-1/#comment-144387</link>
		<dc:creator>Andre-Sebastian</dc:creator>
		<pubDate>Mon, 15 Mar 2010 15:49:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.kovyrin.net/2007/08/29/how-to-unmount-nfs-share-mounted-with-hard-option/#comment-144387</guid>
		<description>I recommend using &#039;lsof&#039; to check which processes is using the nfs share before killing  one.

i.e. if one has a nfs share mounted on /netfs the syntax would be:
lsof +f -- /netfs
(for more examples consult the lsof man pages)</description>
		<content:encoded><![CDATA[<p>I recommend using &#8216;lsof&#8217; to check which processes is using the nfs share before killing  one.</p>
<p>i.e. if one has a nfs share mounted on /netfs the syntax would be:<br />
lsof +f &#8212; /netfs<br />
(for more examples consult the lsof man pages)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mikael</title>
		<link>http://kovyrin.net/2007/08/29/how-to-unmount-nfs-share-mounted-with-hard-option/comment-page-1/#comment-139030</link>
		<dc:creator>Mikael</dc:creator>
		<pubDate>Mon, 15 Mar 2010 13:23:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.kovyrin.net/2007/08/29/how-to-unmount-nfs-share-mounted-with-hard-option/#comment-139030</guid>
		<description>cool doc</description>
		<content:encoded><![CDATA[<p>cool doc</p>
]]></content:encoded>
	</item>
</channel>
</rss>
