From owner-freebsd-questions@FreeBSD.ORG Thu Aug 3 13:53:04 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5853A16A4EA for ; Thu, 3 Aug 2006 13:53:04 +0000 (UTC) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: from mail4.sea5.speakeasy.net (mail4.sea5.speakeasy.net [69.17.117.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7ECAE43D58 for ; Thu, 3 Aug 2006 13:53:03 +0000 (GMT) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: (qmail 8780 invoked from network); 3 Aug 2006 13:53:02 -0000 Received: from dsl092-078-145.bos1.dsl.speakeasy.net (HELO be-well.ilk.org) ([66.92.78.145]) (envelope-sender ) by mail4.sea5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 3 Aug 2006 13:53:02 -0000 Received: by be-well.ilk.org (Postfix, from userid 1147) id 034E528449; Thu, 3 Aug 2006 09:53:01 -0400 (EDT) To: "Mihai Velicu" References: <20060803052115.77BDUNJX0L@priv-edtnaa06.telusplanet.net> From: Lowell Gilbert Date: Thu, 03 Aug 2006 09:53:01 -0400 In-Reply-To: <20060803052115.77BDUNJX0L@priv-edtnaa06.telusplanet.net> (Mihai Velicu's message of "Wed, 2 Aug 2006 23:21:02 -0600") Message-ID: <44k65qj58i.fsf@be-well.ilk.org> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: freebsd-questions@freebsd.org Subject: Re: user limits X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd-questions@freebsd.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Aug 2006 13:53:04 -0000 "Mihai Velicu" writes: > Can someone tell me where I can find some resources for limiting user > account. As example to not execute some programs to not see the content of > some folders and so on. The traditional Unix approach is with file permissions: see the FreeBSD Handbook section on "Permissions" and the chmod(1) manual page (which you can access by typing "man 1 chmod"). For more complicated permission schemes, you way want to use ACLs. See the Handbook section on "File System Access Control Lists".