From owner-freebsd-questions@FreeBSD.ORG Tue Jan 22 05:02:54 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 276C5CE4 for ; Tue, 22 Jan 2013 05:02:54 +0000 (UTC) (envelope-from amvandemore@gmail.com) Received: from mail-qc0-f181.google.com (mail-qc0-f181.google.com [209.85.216.181]) by mx1.freebsd.org (Postfix) with ESMTP id BD3F02E5 for ; Tue, 22 Jan 2013 05:02:53 +0000 (UTC) Received: by mail-qc0-f181.google.com with SMTP id x40so4144547qcp.26 for ; Mon, 21 Jan 2013 21:02:47 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:in-reply-to:references:date:message-id :subject:from:to:cc:content-type; bh=+QSXA1s/MGPwugQEN67bW0CX+VsGasKWfqzAFq+xuwA=; b=qstgWS9m2Ci6RID+duwPx1NItVeQheoWYqA8gXu1A9z5wYLSGqXaRm4o/1ZU6imw3G suOKyXGZC5zPZie78M1vrwPdc0GuCZ565vO6hOnSNL25ALYIp15t2aQJQ2dfVf8Q6Jel GH3saw4Oc2z2zlyPl7mAmd9JJJOOKo0t91GHCdV9PqVPpeS2xdNXiFrZVpGgcj5MiEef NxM1Bb+E3EkeGoZ2TqQiBevhPTfqTGSrk+MPSW9e4S2vmTQTDtvK6MjYd9c9WxqiIRvo cRCCD1CBu4cRUXhW10uvfQjARlZpk+a8iKvyGSaLihcHmd8nu3EHhauMpz54eS/vqWrc gvqQ== MIME-Version: 1.0 X-Received: by 10.224.111.83 with SMTP id r19mr21874265qap.39.1358830967383; Mon, 21 Jan 2013 21:02:47 -0800 (PST) Received: by 10.49.128.168 with HTTP; Mon, 21 Jan 2013 21:02:47 -0800 (PST) In-Reply-To: <20130122043331.GA39426@neutralgood.org> References: <20130122043331.GA39426@neutralgood.org> Date: Mon, 21 Jan 2013 23:02:47 -0600 Message-ID: Subject: Re: zfs configuration From: Adam Vande More To: kpneal@pobox.com Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 Cc: Don Dugger , freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Jan 2013 05:02:54 -0000 On Mon, Jan 21, 2013 at 10:33 PM, wrote: > On Mon, Jan 21, 2013 at 07:50:58AM -0800, Don Dugger wrote: > > Hi All, > > > > So I use zfs for the root file system. Works well. However now I want to > > move /tmp to ram-disk (memory disk or what ever). When I try to unmount > > /tmp with the zfs command of course it won't because its busy. With ufs I > > would just edit fstab and reboot what do I don with zfs?? > > You can install and run 'lsof' to see which running programs are currently > using anything in "/tmp". Stop them, mount a new /tmp, and then restart > them. > Or use fstat and avoid the lsof overhead -- Adam Vande More