From owner-freebsd-fs@FreeBSD.ORG Fri Nov 23 12:45:14 2007 Return-Path: Delivered-To: freebsd-fs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C9D7416A41A for ; Fri, 23 Nov 2007 12:45:14 +0000 (UTC) (envelope-from fernando@schapachnik.com.ar) Received: from relay2.mecon.ar (relay2.mecon.gov.ar [168.101.16.11]) by mx1.freebsd.org (Postfix) with ESMTP id 25E8D13C469 for ; Fri, 23 Nov 2007 12:45:13 +0000 (UTC) (envelope-from fernando@schapachnik.com.ar) Received: from relay2.mecon.ar (localhost [127.0.0.1]) by relay2.mecon.ar (8.13.1/8.13.1) with ESMTP id lANC6g44007172 for ; Fri, 23 Nov 2007 09:06:42 -0300 Received: from racing2.mecon.ar (racing2.mecon.ar [10.8.2.11]) by relay2.mecon.ar (8.13.1/8.13.1) with ESMTP id lANC6fSv007163; Fri, 23 Nov 2007 09:06:41 -0300 Received: from racing2.mecon.ar (localhost.localdomain [127.0.0.1]) by racing2.mecon.ar (8.13.1/8.13.7) with ESMTP id lANC6fQT002198; Fri, 23 Nov 2007 09:06:41 -0300 Received: from bal740r0.mecon.gov.ar (bal740r0.mecon.ar [10.11.1.11]) by racing2.mecon.ar (8.13.1/8.13.7) with ESMTP id lANC6fEL002195; Fri, 23 Nov 2007 09:06:41 -0300 Received: from bal740r0.mecon.gov.ar (localhost [127.0.0.1]) by bal740r0.mecon.gov.ar (8.14.1/8.14.1) with ESMTP id lANC6jWK001292; Fri, 23 Nov 2007 09:06:45 -0300 (ART) (envelope-from fernando@schapachnik.com.ar) Received: (from fpscha@localhost) by bal740r0.mecon.gov.ar (8.14.1/8.14.1/Submit) id lANC6imQ001291; Fri, 23 Nov 2007 09:06:44 -0300 (ART) (envelope-from fernando@schapachnik.com.ar) X-Authentication-Warning: bal740r0.mecon.gov.ar: fpscha set sender to fernando@schapachnik.com.ar using -f Date: Fri, 23 Nov 2007 09:06:44 -0300 From: Fernando Schapachnik To: Dag-Erling =?iso-8859-1?Q?Sm=F8rgrav?= Message-ID: <20071123120644.GB1104@bal740r0.mecon.gov.ar> References: <20071113174347.GA4288@servidor1.cursosvirtuales.com.ar> <86sl392lk3.fsf@ds4.des.no> <20071114115653.GA83195@servidor1.cursosvirtuales.com.ar> <86hcjp2ecw.fsf@ds4.des.no> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="tThc/1wpZn/ma/RB" Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <86hcjp2ecw.fsf@ds4.des.no> User-Agent: Mutt/1.4.2.1i X-OS: FreeBSD 6.2 - http://www.freebsd.org X-TM-AS-Product-Ver: IMSS-7.0.0.1640-5.0.0.1023-15562.003 X-TM-AS-Result: No--18.255-7.0-31-1 X-imss-scan-details: No--18.255-7.0-31-1;No--18.255-5.0-31-1 X-TM-AS-User-Approved-Sender: No Cc: freebsd-fs@freebsd.org Subject: Re: Undeleting (possible?) X-BeenThere: freebsd-fs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Filesystems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Nov 2007 12:45:14 -0000 --tThc/1wpZn/ma/RB Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit En un mensaje anterior, Dag-Erling Smørgrav escribió: > Fernando Schapachnik writes: > > En un mensaje anterior, Dag-Erling Smørgrav escribió: > > > Try Lazarus instead. > > Have any URL or package name? Found lots of references but no way to actually get it. > > It's part of The Coroner's Toolkit: > > http://www.porcupine.org/forensics/tct.html Just for the record, it compiled with no problem on FreeBSD 6.2 with the attached patch. Also, Lazarus did a great job recovering the files. Thanks for all the help! Fernando. --tThc/1wpZn/ma/RB Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="tct-1.18-FreeBSD6.diff" diff -ur tct-1.18-orig/extras/entropy/makedefs tct-1.18/extras/entropy/makedefs --- tct-1.18-orig/extras/entropy/makedefs Sat Aug 30 20:16:41 2003 +++ tct-1.18/extras/entropy/makedefs Wed Nov 14 09:55:12 2007 @@ -10,6 +10,8 @@ ;; FreeBSD.5*) DEFS="-DFREEBSD5" ;; + FreeBSD.6*) DEFS="-DFREEBSD5" + ;; OpenBSD.2*) DEFS="-DOPENBSD2" ;; OpenBSD.3*) DEFS="-DOPENBSD3" diff -ur tct-1.18-orig/extras/findkey/makedefs tct-1.18/extras/findkey/makedefs --- tct-1.18-orig/extras/findkey/makedefs Sat Aug 30 20:16:51 2003 +++ tct-1.18/extras/findkey/makedefs Wed Nov 14 09:55:23 2007 @@ -10,6 +10,8 @@ ;; FreeBSD.5*) DEFS="-DFREEBSD5" ;; + FreeBSD.6*) DEFS="-DFREEBSD5" + ;; OpenBSD.2*) DEFS="-DOPENBSD2" ;; OpenBSD.3*) DEFS="-DOPENBSD3" diff -ur tct-1.18-orig/src/aux/makedefs tct-1.18/src/aux/makedefs --- tct-1.18-orig/src/aux/makedefs Sat Aug 30 20:17:20 2003 +++ tct-1.18/src/aux/makedefs Wed Nov 14 09:53:46 2007 @@ -10,6 +10,8 @@ ;; FreeBSD.5*) DEFS="-DFREEBSD5" ;; + FreeBSD.6*) DEFS="-DFREEBSD5" + ;; OpenBSD.2*) DEFS="-DOPENBSD2" ;; OpenBSD.3*) DEFS="-DOPENBSD3" diff -ur tct-1.18-orig/src/file/makedefs tct-1.18/src/file/makedefs --- tct-1.18-orig/src/file/makedefs Sat Aug 30 21:02:52 2003 +++ tct-1.18/src/file/makedefs Wed Nov 14 09:54:26 2007 @@ -10,6 +10,8 @@ ;; FreeBSD.5*) DEFS="-DFREEBSD5" ;; + FreeBSD.6*) DEFS="-DFREEBSD5" + ;; OpenBSD.2*) DEFS="-DOPENBSD2" ;; OpenBSD.3*) DEFS="-DOPENBSD3" diff -ur tct-1.18-orig/src/fstools/makedefs tct-1.18/src/fstools/makedefs --- tct-1.18-orig/src/fstools/makedefs Mon Apr 9 10:32:52 2007 +++ tct-1.18/src/fstools/makedefs Wed Nov 14 09:54:31 2007 @@ -10,6 +10,8 @@ ;; FreeBSD.5*) DEFS="-DFREEBSD5" ;; + FreeBSD.6*) DEFS="-DFREEBSD5" + ;; OpenBSD.2*) DEFS="-DOPENBSD2" ;; OpenBSD.3*) DEFS="-DOPENBSD3" diff -ur tct-1.18-orig/src/lastcomm/makedefs tct-1.18/src/lastcomm/makedefs --- tct-1.18-orig/src/lastcomm/makedefs Sat Aug 30 20:49:13 2003 +++ tct-1.18/src/lastcomm/makedefs Wed Nov 14 09:54:34 2007 @@ -10,6 +10,8 @@ ;; FreeBSD.5*) DEFS="-DFREEBSD5" ;; + FreeBSD.6*) DEFS="-DFREEBSD5" + ;; OpenBSD.3*) DEFS="-DOPENBSD3" ;; OpenBSD.2*) DEFS="-DOPENBSD2" diff -ur tct-1.18-orig/src/major_minor/makedefs tct-1.18/src/major_minor/makedefs --- tct-1.18-orig/src/major_minor/makedefs Sat Aug 30 20:59:37 2003 +++ tct-1.18/src/major_minor/makedefs Wed Nov 14 09:54:38 2007 @@ -10,6 +10,8 @@ ;; FreeBSD.5*) DEFS="-DFREEBSD5" ;; + FreeBSD.6*) DEFS="-DFREEBSD5" + ;; OpenBSD.2*) DEFS="-DOPENBSD2" ;; OpenBSD.3*) DEFS="-DOPENBSD3" diff -ur tct-1.18-orig/src/misc/makedefs tct-1.18/src/misc/makedefs --- tct-1.18-orig/src/misc/makedefs Sat Aug 30 20:18:41 2003 +++ tct-1.18/src/misc/makedefs Wed Nov 14 09:54:04 2007 @@ -10,6 +10,8 @@ ;; FreeBSD.5*) DEFS="-DFREEBSD5" ;; + FreeBSD.6*) DEFS="-DFREEBSD5" + ;; OpenBSD.2*) DEFS="-DOPENBSD2" ;; OpenBSD.3*) DEFS="-DOPENBSD3" diff -ur tct-1.18-orig/src/pcat/makedefs tct-1.18/src/pcat/makedefs --- tct-1.18-orig/src/pcat/makedefs Tue Oct 14 18:07:44 2003 +++ tct-1.18/src/pcat/makedefs Wed Nov 14 09:54:51 2007 @@ -14,6 +14,9 @@ FreeBSD.5*) DEFS="-DFREEBSD5" SYSLIBS="-lkvm" ;; + FreeBSD.6*) DEFS="-DFREEBSD5" + SYSLIBS="-lkvm" + ;; OpenBSD.2*) DEFS="-DOPENBSD2" SYSLIBS="-lkvm" ;; --tThc/1wpZn/ma/RB--