From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1DsNVI-0000lP-1f for qemu-devel@nongnu.org; Tue, 12 Jul 2005 12:21:05 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1DsNV4-0000ea-Nf for qemu-devel@nongnu.org; Tue, 12 Jul 2005 12:20:52 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DsNV4-0000e2-A5 for qemu-devel@nongnu.org; Tue, 12 Jul 2005 12:20:50 -0400 Received: from [65.74.133.11] (helo=mail.codesourcery.com) by monty-python.gnu.org with esmtp (TLS-1.0:DHE_RSA_3DES_EDE_CBC_SHA:24) (Exim 4.34) id 1DsNb2-0004QC-K4 for qemu-devel@nongnu.org; Tue, 12 Jul 2005 12:27:00 -0400 From: Paul Brook Subject: Re: [Qemu-devel] problem with loop device Date: Tue, 12 Jul 2005 17:19:01 +0100 References: In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200507121719.01279.paul@codesourcery.com> Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org On Tuesday 12 July 2005 16:13, Matt Lawrence wrote: > I'm running on CentOS4 with a 2.6.11 kernel. After using losetup to > configure loop0 and mounting /dev/loop0, I am unable to unmount it. I keep > getting "device is busy" message, but lsof doesn't show anything. > Everything is being built automatically by a script, so I know I'm not > leaving a terminal session using it as a working directory. Any ideas? Use fuser -m to figure out what's still using the mount. Make sure you don't have any other filesystems mounted inside it. Paul