On Mon, Jan 06, 2025 at 01:03:15PM -0500, Brad Spencer wrote: > If the filesystem can be recreated without too much trouble, a newfs may > be in order.
Or you boot to single user, find the inode of the directory you want to remove (e.g. with "ls -i") and then use clri(8) to clear that indode. Then fsck -f the filesystem, this should move everything (if any) from the nuked directory into lost+found, where you can now clean it. Martin