<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>fuser &#8211; CAPDIO</title>
	<atom:link href="https://www.capdio.com/tag/fuser/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.capdio.com</link>
	<description>遊戲開發 Studio</description>
	<lastBuildDate>Thu, 03 Jul 2025 03:09:29 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://www.capdio.com/wp-content/uploads/2024/06/cropped-capdio-favicon-white-32x32.png</url>
	<title>fuser &#8211; CAPDIO</title>
	<link>https://www.capdio.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>umount 時出現 Device is busy 的解決辦法</title>
		<link>https://www.capdio.com/uncategorized/umount-%e6%99%82%e5%87%ba%e7%8f%be-device-is-busy-%e7%9a%84%e8%a7%a3%e6%b1%ba%e8%be%a6%e6%b3%95/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=umount-%25e6%2599%2582%25e5%2587%25ba%25e7%258f%25be-device-is-busy-%25e7%259a%2584%25e8%25a7%25a3%25e6%25b1%25ba%25e8%25be%25a6%25e6%25b3%2595</link>
					<comments>https://www.capdio.com/uncategorized/umount-%e6%99%82%e5%87%ba%e7%8f%be-device-is-busy-%e7%9a%84%e8%a7%a3%e6%b1%ba%e8%be%a6%e6%b3%95/#respond</comments>
		
		<dc:creator><![CDATA[George]]></dc:creator>
		<pubDate>Thu, 03 Jul 2025 03:08:30 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[fuser]]></category>
		<category><![CDATA[lsof]]></category>
		<guid isPermaLink="false">https://www.capdio.com/?p=1824</guid>

					<description><![CDATA[當我們的 Linux 系統有設定掛載一些遠端的磁碟的時候, 如果你已經不需要他時想要進行卸載, 這個時候你可能會遇到系統告訴你, 該裝置正在忙碌, 無法卸載的狀況( Device is busy ). 那我們該怎麼解決呢? 參考資料:https://coldnew.github.io/d4a5e389/]]></description>
										<content:encoded><![CDATA[
<p>當我們的 Linux 系統有設定掛載一些遠端的磁碟的時候, 如果你已經不需要他時想要進行卸載, 這個時候你可能會遇到系統告訴你, 該裝置正在忙碌, 無法卸載的狀況( Device is busy ). 那我們該怎麼解決呢?</p>



<div class="hcb_wrap"><pre class="prism line-numbers lang-plain"><code># 首先會卡住不讓你卸載一定是因為有人正在使用該掛載目錄, 所以找出來結束他就是處理方向
# 方法 1, 使用 fuser, 如果發現無此指令的話可透過 &quot;apt-get install psmisc&quot; 安裝
# 如果我們掛載的資料匣是 /mntHere/, 則指令為
fuser -mv /mntHere/

# 接下來你會看到是哪一個 process ID 在使用它

# 那麼確定沒有還需要等待結束的 process 後, 我們就來將為結束且不需要的 process 關閉
fuser -kv /mntHere/

# 接下來可以再次查看有無其他的 process 使用它
fuser -mv /mntHere/

# 最後就直接卸載它吧
umount /mnthere/</code></pre></div>



<div class="hcb_wrap"><pre class="prism line-numbers lang-plain"><code># 方法 2, 使用 lsof
lsof /mntHere/

# 找出 process ID, 再將它們刪除即可卸載, 將以下指令的 processID 改為你自己查出的 ID 喔!
kill processID

# 最後就直接卸載它吧
umount /mnthere/</code></pre></div>



<p>參考資料:<br>https://coldnew.github.io/d4a5e389/</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.capdio.com/uncategorized/umount-%e6%99%82%e5%87%ba%e7%8f%be-device-is-busy-%e7%9a%84%e8%a7%a3%e6%b1%ba%e8%be%a6%e6%b3%95/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
