Search the web
Sign In
New User? Sign Up
linux_forensics
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 1612 - 1641 of 3157   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1612
hi, just wondering if there is a way to recover the deleted files & folders on the ext3 filesystem which has Linux Redhat(OS).Accidentally i deleted a...
manjukingdom
Offline Send Email
Jul 11, 2005
6:37 pm
1613
If you know the inodes, you can use icat from the sleuthkit: icat -f linux-ext3 /dev/hdaX yourinodehere > file where X is your partition number... If you...
Jeff Bryner
jbryner1
Offline Send Email
Jul 11, 2005
9:47 pm
1614
hi Jeff, i tried to get the inodes using the debugfs ,but this just works for ext2 not ext3.is there a way i can get the inodes?? waiting to hear from you. ...
manjukingdom
Offline Send Email
Jul 12, 2005
12:38 am
1615
You may be able to recover the files using the Ext3 journal (if you can find an older copy of the inode). Debugfs lets you search for them. Otherwise you will...
Brian Carrier
bdcarrier
Offline Send Email
Jul 13, 2005
4:37 am
1616
hi Brian, how to look for an older copy of the inode???can u send me the syntax... thanks for ur response. ... using the...
manjukingdom
Offline Send Email
Jul 13, 2005
3:59 pm
1617
Since ext2 is simply ext3 with a journal, would things work better if you reverted the file system to ext2? ...
Gary Funck
garyfunck
Offline Send Email
Jul 14, 2005
1:29 am
1618
I'm trying to recover data from a failing laptop drive. I've run badblocks on it, and looked at its SMART data and it seems to have a bunch of unrecoverable...
Gary Funck
garyfunck
Offline Send Email
Jul 14, 2005
1:40 am
1619
... Yes. -- Jesse...
Jesse Kornblum
jessekornblum
Online Now Send Email
Jul 14, 2005
1:42 am
1620
So this is a transfer orf data from one drive to another? Tom ... From: Gary Funck To: Linux_Forensics@Yahoogroups. Com Sent: Wednesday, July 13, 2005 6:38 PM ...
digital.ware@...
paranoid2pen...
Offline Send Email
Jul 14, 2005
1:43 am
1621
... Yes. In my example, I used partitions. But in fact I'm copying from an old error prone drive to a new drive of same make/model. My hope is to run chkdisk...
Gary Funck
garyfunck
Offline Send Email
Jul 14, 2005
2:29 am
1622
Have you looked at this products: http://www.paraben-forensics.com/ by Paraben? Tom ... From: digital.ware@... To: linux_forensics@yahoogroups.com ...
digital.ware@...
paranoid2pen...
Offline Send Email
Jul 14, 2005
3:36 am
1623
... You need to know the inode and you can use debugfs. For example, if the inode were 415,926 then you could use: debugfs: logdump -i <415926> This won't...
Brian Carrier
bdcarrier
Offline Send Email
Jul 14, 2005
4:42 am
1624
Did you try ddrescue? The benefit is to be able to increase the read trials on error and to define a fallback blocksize. On a read error the program will retry...
Thomas Müting
onetom4u
Offline Send Email
Jul 14, 2005
6:12 am
1625
... Tom, thanks. I'd forgotten about ddrescue. You're right - it would be a better tool than regular 'dd'....
Gary Funck
garyfunck
Offline Send Email
Jul 14, 2005
6:36 am
1626
conv=noerror the output block is filled with the bytes read before the error + zeros from the error position until the end of the block conv=noerror,sync the...
Atila Romero
atilaromero
Offline Send Email
Jul 14, 2005
1:57 pm
1627
It's not uncommon that one too many read-retrys of bad blocks can increase the number of bad blocks in that physical area of the drive media. What then is the...
Steve Fowler
sfowler@...
Send Email
Jul 14, 2005
5:37 pm
1628
That's a problem for the lawyers, but I would try to educate them as to what a "block" was, and see if they can be comfortable auththenticating individual...
Stevens R. Miller
bobhey2000
Offline Send Email
Jul 14, 2005
5:49 pm
1629
... You just have to be flexible in how you use integrity checking. Rather than use a hash of the complete partition (which will rarely be the same if one or...
Dave Dittrich
dadittrich
Offline Send Email
Jul 14, 2005
5:54 pm
1630
got a question. I've got two images of one disk one taken in reverse and one taken normally. what is the easiest way to cut together the two image files to...
Joe Corrigan
WestsideCleve
Offline Send Email
Jul 14, 2005
6:03 pm
1631
of course five min after i hit send, i figure out the answer to my own question... d'oh! ... From: Joe Corrigan [mailto:joec@...] Sent: Thursday, July 14,...
Joe Corrigan
WestsideCleve
Offline Send Email
Jul 14, 2005
6:18 pm
1632
I believe the command your looking for is the following: cat (filename)(AAAAA) (filename)(000000BBBBB) > (newfilename)(AAAAABBBBB) This will effectivly merge...
Luis Salazar
Luis.Salazar@...
Send Email
Jul 14, 2005
6:23 pm
1633
... C'mon Joe...share what you did. -- /*************************************** Special Agent Barry J. Grundy NASA Office of Inspector General Computer Crimes...
Barry J. Grundy
grundy_b
Offline Send Email
Jul 14, 2005
6:25 pm
1634
Hint: skip= bs= count= (btw, cat won't work to overlay files, only conCATenate them. ;) ... -- Dave Dittrich Information Assurance...
Dave Dittrich
dadittrich
Offline Send Email
Jul 14, 2005
6:27 pm
1635
... I would have done: dd if=image_b bs=512 skip=XXX | cat Image_A - >> New_Image I just wanted to see what Joe did as well...No need for a count if all the...
Barry J. Grundy
grundy_b
Offline Send Email
Jul 14, 2005
6:31 pm
1636
i used dd to get the tail off of image b (the 000000BBBBBB file) like so dd if=imageb of=image_tail bs=512 skip=<# of sectors imageA caught> cat image_tail >>...
Joe Corrigan
WestsideCleve
Offline Send Email
Jul 14, 2005
6:32 pm
1637
... dd the end of the second image such that it contains the data you want appended to the first image, then cat them together. This might be fun to try: dd...
Barry J. Grundy
grundy_b
Offline Send Email
Jul 14, 2005
6:42 pm
1638
... Since A comes first, that likely needs to read: dd if=image_B bs=512 skip=XXX | cat image_A - > image_A_B...
Gary Funck
garyfunck
Offline Send Email
Jul 14, 2005
7:53 pm
1639
When I have encountered these types of issues, I characterize my image as "a true and accurate copy of the data that could be reliably read from the original"....
ASR Data
asrdata
Offline Send Email
Jul 15, 2005
11:39 pm
1640
you can use a variety of methods, including dd with skip and seek and cat the segments back together. [Disclaimer: I have a vested interest in SMART] SMART...
ASR Data
asrdata
Offline Send Email
Jul 15, 2005
11:46 pm
1641
Within encase there a report script that can extract user details on an XP system. I think it's the version 2 initialize case script. This shows the user names...
IanC
devorg
Offline Send Email
Jul 16, 2005
1:08 am
Messages 1612 - 1641 of 3157   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help