From owner-freebsd-current@FreeBSD.ORG Thu Jul 29 17:04:16 2010 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 312B5106566B for ; Thu, 29 Jul 2010 17:04:16 +0000 (UTC) (envelope-from pawel.worach@gmail.com) Received: from mail-ew0-f54.google.com (mail-ew0-f54.google.com [209.85.215.54]) by mx1.freebsd.org (Postfix) with ESMTP id B3FC88FC1F for ; Thu, 29 Jul 2010 17:04:15 +0000 (UTC) Received: by ewy26 with SMTP id 26so358071ewy.13 for ; Thu, 29 Jul 2010 10:04:14 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:subject:mime-version :content-type:from:in-reply-to:date:cc:content-transfer-encoding :message-id:references:to:x-mailer; bh=9LVCKqTN1ls5jbHb7Ty9BMhA9qRcEQNw1OpohdRD28Q=; b=eaodOp0mCjzbdfdg11dJHh8Of9LDIhBxhD8p1CJFKNgBzjvjlMz1d4J0NMPXR9UM6A W2vL+6uv46HETz9wqSeoKrcI75BurxsDLwfrIjgJbKJwSLVNPohxW8l3jiCnIEODigCx eDWiN7Ul6jIPOQmuPLUYkw1WHOLyw8UDfNIy8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=subject:mime-version:content-type:from:in-reply-to:date:cc :content-transfer-encoding:message-id:references:to:x-mailer; b=lQfJ4eyux3c91Zsoy1SdkbOYTt+8Hya5hcS1RJRLObvwAidUgiJ9HnqZoSg1GcBjhi 74qno9XNGJYEwoCKL4X6UnHM3/1H1zu3I1deZgMlrtQh0fmftuul35F7fEZeg8EzFbmv p1lrBVDGKzRf/B4kHxUYtNWPwPlrdMTPWmu0E= Received: by 10.213.44.129 with SMTP id a1mr313669ebf.57.1280421470737; Thu, 29 Jul 2010 09:37:50 -0700 (PDT) Received: from [172.16.0.199] (c80-216-186-179.bredband.comhem.se [80.216.186.179]) by mx.google.com with ESMTPS id a48sm1513501eei.0.2010.07.29.09.37.48 (version=TLSv1/SSLv3 cipher=RC4-MD5); Thu, 29 Jul 2010 09:37:49 -0700 (PDT) Mime-Version: 1.0 (Apple Message framework v1081) Content-Type: text/plain; charset=us-ascii From: Pawel Worach In-Reply-To: <701277.97445.qm@web52303.mail.re2.yahoo.com> Date: Thu, 29 Jul 2010 18:37:47 +0200 Content-Transfer-Encoding: quoted-printable Message-Id: <00C30860-35DD-4B0C-8FFF-F0824BDD0639@gmail.com> References: <701277.97445.qm@web52303.mail.re2.yahoo.com> To: gahn X-Mailer: Apple Mail (2.1081) Cc: free bsd Subject: Re: /tmp and swap space X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jul 2010 17:04:16 -0000 On Jul 29, 2010, at 17:35, gahn wrote: > hi all: >=20 > is it possible to create /tmp directory under swap space? under = solaris, it is automatically created under swap unless one specifically = instructs the system not to do so.. Why not use tmpfs ? echo "tmpfs /tmp tmpfs rw = 0 0" >> /etc/fstab mount /tmp --=20 Pawel=