From owner-freebsd-questions@FreeBSD.ORG Mon May 28 19:05:32 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E8AA3106564A for ; Mon, 28 May 2012 19:05:32 +0000 (UTC) (envelope-from freebsd@dreamchaser.org) Received: from nightmare.dreamchaser.org (nightmare.dreamchaser.org [12.32.44.142]) by mx1.freebsd.org (Postfix) with ESMTP id 8E19B8FC0A for ; Mon, 28 May 2012 19:05:32 +0000 (UTC) Received: from [12.32.36.74] (freshstart.dreamchaser.org. [12.32.36.74]) by nightmare.dreamchaser.org (8.13.6/8.13.6) with ESMTP id q4SJ5OFM034828; Mon, 28 May 2012 13:05:25 -0600 (MDT) (envelope-from freebsd@dreamchaser.org) Message-ID: <4FC3CC89.1000504@dreamchaser.org> Date: Mon, 28 May 2012 13:05:45 -0600 From: Gary Aitken User-Agent: Mozilla/5.0 (Windows NT 5.1; rv:12.0) Gecko/20120428 Thunderbird/12.0.1 MIME-Version: 1.0 To: Polytropon References: <4FBBF32D.9070505@dreamchaser.org> <20120522234510.a406941d.goksin.akdeniz@gmail.com> <4FBD7BA0.7070502@dreamchaser.org> <4FBEE05A.6000909@dreamchaser.org> <20120525035108.a3af81c1.freebsd@edvax.de> <4FBFAB5B.6010405@dreamchaser.org> <4FBFCC61.2010504@dreamchaser.org> <4FBFE5E2.6070305@dreamchaser.org> <20120525222123.474401eb.freebsd@edvax.de> <4FBFF3F2.60501@dreamchaser.org> <20120526000123.cf1a67f8.freebsd@edvax.de> In-Reply-To: <20120526000123.cf1a67f8.freebsd@edvax.de> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.2 (nightmare.dreamchaser.org [12.32.36.65]); Mon, 28 May 2012 13:05:25 -0600 (MDT) Cc: freebsd-questions@freebsd.org Subject: Re: removing /var/empty on a non-system disk X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd@dreamchaser.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 May 2012 19:05:33 -0000 On 5/25/2012 4:01 PM, Polytropon wrote: > On Fri, 25 May 2012 15:04:50 -0600, Gary Aitken wrote: >> On 05/25/12 14:21, Polytropon wrote: >>> On Fri, 25 May 2012 14:04:50 -0600, Gary Aitken wrote: >>>> something I'm not seeing >>>> >>>> I've got a disk previously used as a sys disk I'm trying to clean up. >>>> What's the key to removing /var/empty? >>>> >>>> 280 /hd1/var#sysctl kern.securelevel >>>> kern.securelevel: -1 >>>> 281 /hd1/var#ls -l >>>> total 4 >>>> dr-xr-xr-x 2 root wheel 512 Jan 3 00:55 empty >>>> 282 /hd1/var#chflags noschg empty >>>> 283 /hd1/var#chmod 777 empty >>>> chmod: empty: Operation not permitted >>>> 284 /hd1/var#rmdir empty >>>> rmdir: empty: Operation not permitted >>> >>> Interesting, I just tried this on my home system (FreeBSD 8.2-STABLE) >>> and it worked as intended. I did use the exact commands, >>> same securelevel. >>> >>> Use the -o option for ls (ls -lo) to check on the effect >>> of chflags and chmod. >> >> Just found it, something I forgot about a long time ago... >> I was running under su logged in as my normal user. >> Had to back all the way out and log in as root. > > I should have mentioned that I did the (successful) test > logging in as root (real console login). If you use "su -" > or "su root", the effect should be the same. You can always > check the success of your operation with the "ls -lo" command. Nope. That was the problem. I had logged in on the vty as normal user and done su root. Had to back all the way out and log in on the vty as root to make it work.