Mailinglist Archive: opensuse (2634 mails)
| < Previous | Next > |
Re: [opensuse] undeleting files
- From: Russell Jones <russell.jones@xxxxxxxxxxxx>
- Date: Thu, 01 Mar 2007 10:50:16 +0000
- Message-id: <45E6AFE8.6020300@xxxxxxxxxxxx>
Bruce Marshall wrote:
dd if=/dev/hda3 of=/mnt/hda3_partition_image.img bs=5M
I think the optimal block size is about half the rate the data is copied per second. I've not tested this thoroughly, though.
then (much later)
strings /mnt/hda3_partition_image.img > /mnt/hda3_partition_image_strings.txt
grep -i "stuff I want" /mnt/hda3_partition_image_strings.txt | less
I had to do this a week or so ago due to HDD failure :-( It took 16 hours to read the 8Gb disk because there were so many read errors. I did get back the two files I needed, though. Fortunately all the copies of the file had the same beginning and ending so I could write a quick script to pull all the copies out then diff them to find the newest. I learnt my lesson, and have set up RAID 1 and a backup cron job that copies the files to an unprivileged user account on another machine that in turn will be backed up to tape.
--
To unsubscribe, e-mail: opensuse+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: opensuse+help@xxxxxxxxxxxx
On Wednesday 28 February 2007 13:42, Brian Jackson wrote:Or if they are text, and you have a big enough partition:
On Wednesday 28 February 2007 10:36, Mike Noble wrote:
On Wednesday 28 February 2007 01:05, Vince Oliver wrote:Unless they are JPEG images, then you can use the recoverjpeg package to
I have deleted some important files withHope you have backups, otherwise they are gone.
rm -f *
Is there a war to recover them in SuSE 10?
try a recovery. Works pretty good.
Google is your friend.
A google for 'linux file recover' found at least this and many other links.....
http://recover.sourceforge.net/linux/
dd if=/dev/hda3 of=/mnt/hda3_partition_image.img bs=5M
I think the optimal block size is about half the rate the data is copied per second. I've not tested this thoroughly, though.
then (much later)
strings /mnt/hda3_partition_image.img > /mnt/hda3_partition_image_strings.txt
grep -i "stuff I want" /mnt/hda3_partition_image_strings.txt | less
I had to do this a week or so ago due to HDD failure :-( It took 16 hours to read the 8Gb disk because there were so many read errors. I did get back the two files I needed, though. Fortunately all the copies of the file had the same beginning and ending so I could write a quick script to pull all the copies out then diff them to find the newest. I learnt my lesson, and have set up RAID 1 and a backup cron job that copies the files to an unprivileged user account on another machine that in turn will be backed up to tape.
--
To unsubscribe, e-mail: opensuse+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: opensuse+help@xxxxxxxxxxxx
| < Previous | Next > |