From owner-freebsd-stable@FreeBSD.ORG Sat Jun 11 00:07:02 2005 Return-Path: X-Original-To: stable@freebsd.org Delivered-To: freebsd-stable@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4D69D16A41C for ; Sat, 11 Jun 2005 00:07:02 +0000 (GMT) (envelope-from bfoz@bfoz.net) Received: from sccrmhc14.comcast.net (sccrmhc14.comcast.net [204.127.202.59]) by mx1.FreeBSD.org (Postfix) with ESMTP id 043E843D49 for ; Sat, 11 Jun 2005 00:06:59 +0000 (GMT) (envelope-from bfoz@bfoz.net) Received: from [192.168.0.5] (c-24-6-134-233.hsd1.ca.comcast.net[24.6.134.233]) by comcast.net (sccrmhc14) with ESMTP id <2005061100065901400cq7ere>; Sat, 11 Jun 2005 00:06:59 +0000 Message-ID: <42AA2B21.8040708@bfoz.net> Date: Fri, 10 Jun 2005 17:06:57 -0700 From: Brandon Fosdick User-Agent: Mozilla Thunderbird 1.0.2 (X11/20050326) X-Accept-Language: en-us, en MIME-Version: 1.0 To: stable@freebsd.org X-Enigmail-Version: 0.91.0.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: Subject: ACL not supported on 5.4? X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Jun 2005 00:07:02 -0000 I have a 5.4 install that I'm trying to use to experiment with ACL (and extended attributes). Handbook section 14.12.1 (http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/fs-acl.html) has a few sample commands that I tried running. But I get operation not supported, like so: 17:02 bfoz@poseidon~>touch test 17:03 bfoz@poseidon~>ll test -rw-r--r-- 1 bfoz user 0 Jun 10 17:03 test 17:03 bfoz@poseidon~>getfacl test #file:test #owner:1001 #group:1001 user::rw- group::r-- other::r-- 17:03 bfoz@poseidon~>setfacl -k test setfacl: acl_get_file() failed: Operation not supported 17:03 bfoz@poseidon~>setfacl -b test setfacl: acl_get_file() failed: Operation not supported I tried doing the above as root, but the result was the same. I'm pretty sure this was a fresh install of 5.4 (its been awhile since I made this box) so it should have UFS2 by default and the kernel does in fact have UFS_ACL compiled in. What else do I need to do? How do I check to see if I really do have UFS2? Thanks