<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Recover Data from a Damaged hard disk using dd_rhelp</title>
	<atom:link href="http://www.debianadmin.com/recover-data-from-a-damaged-hard-disk-using-dd_rhelp.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.debianadmin.com/recover-data-from-a-damaged-hard-disk-using-dd_rhelp.html</link>
	<description>Debian/Ubuntu Linux System Administration Tutorials,Howtos,Tips</description>
	<lastBuildDate>Mon, 06 Feb 2012 02:01:37 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Brasileiro</title>
		<link>http://www.debianadmin.com/recover-data-from-a-damaged-hard-disk-using-dd_rhelp.html/comment-page-1#comment-9056</link>
		<dc:creator>Brasileiro</dc:creator>
		<pubDate>Sat, 19 Nov 2011 21:28:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/recover-data-from-a-damaged-hard-disk-using-dd_rhelp.html#comment-9056</guid>
		<description>Antes de conseguir &quot;instalar&quot; o dd_rhelp, tive que procurar muito no Google como se fazia isto.

No final das contas, tudo ficou muito simples após ler as duas páginas a seguir:

------------------------------------------------------------------------------------ 
a) &quot;http://www.debianadmin.com/recover-data-from-a-damaged-hard-disk-using-dd_rhelp.html&quot;:

dd_rhelp is a bash script that handles a very usefull program written in C which is called dd_rescue, it roughly act as the dd linux command with the caracteristic to 
NOT stop when it falls on read/write errors. 

=====&gt; OBS.: Nesta página, eu descobri que o dd_rhelp era um &quot;BASH SCRIPT&quot;.

------------------------------------------------------------------------------------ 
b) &quot;http://ubuntuforums.org/showthread.php?t=996717&quot;:
([ubuntu] How to compile bash from an editor? - Ubuntu Forums.html)

Re: How to compile bash from an editor?
Last time on this one:

bash shell scripts are interpreted not compiled -- hence there is no reason to compile them.

If you want a personal .bash or .sh file, compose the file, save it, do the following:

chmod +x 

Copy the file to your personal bin directory since this is in your path (you have to make the directory since its not included by default):
mkdir -p ~/bin

cp  ~/bin/

Ok now you can run the shell script from the command line by simply typing



NO NEED TO COMPILE!!!

=====&gt; OBS.: Nesta página, eu descobri que não é necessário (nem possível) compilar um bash script

-------------------------------------------------------------------------------------

Descompactei o arquivo dd_rhelp-0.1.2.tar.gz dentro da pasta dd_rhelp (que eu criei especificamente para guardar o .gz e vários .mht de páginas de dica).

Dentro da pasta dd_rhelp sugiu uma pasta chamada dd_rhelp-0.1.2.
Dentro da nova pasta havia um arquivo dd_rhelp (o Nautilus dizia que o tipo era &quot;shell script&quot;).
Copiei o arquivo dd_rhelp para a pasta /bin
Na pasta /bin, o Nautilus dizia que o tipo do arquivo era &quot;unknow&quot;.
Troquei o atributo &quot;executable&quot; do arquivo para true e o Nautilus passou a dizer que o tipo era &quot;program&quot;.
Obs.: o tipo do arquivo dd_rescue (que já estava em /bin é &quot;executable&quot;
A partir daí já era possível &quot;executar&quot; o dd_rhelp.

Veja o que eu fiz no Terminal:

$ cd /media/2N500XP/Down500XP/SoftDownload/UBUNTU/dd_rhelp/dd_rhelp-0.1.2    (change directory)
$ sudo cp dd_rhelp /bin              (SuperUser usando o cp (copy))
$ sudo chmod +x dd_rhelp             (SuperUser usando o chmod, que troca o atributo executable.  Poderia ser também &quot;sudo chmod 777 dd_rhelp&quot;)
$ sudo dd_rhelp                      (Chamei o comando dd_rhelp) 

Pronto !  Neste instante, o dd_rhelp respondeu:
Need 2 arguments...
usage: dd_rhelp {filename&#124;device} {output-file} [{info}]
    or dd_rhelp --help
    or dd_rhelp --version

&quot;INSTALADO !!!!!&quot;</description>
		<content:encoded><![CDATA[<p>Antes de conseguir &#8220;instalar&#8221; o dd_rhelp, tive que procurar muito no Google como se fazia isto.</p>
<p>No final das contas, tudo ficou muito simples após ler as duas páginas a seguir:</p>
<p>------------------------------------------------------------------------------------<br />
a) &#8220;http://www.debianadmin.com/recover-data-from-a-damaged-hard-disk-using-dd_rhelp.html&#8221;:</p>
<p>dd_rhelp is a bash script that handles a very usefull program written in C which is called dd_rescue, it roughly act as the dd linux command with the caracteristic to<br />
NOT stop when it falls on read/write errors. </p>
<p>=====&gt; OBS.: Nesta página, eu descobri que o dd_rhelp era um &#8220;BASH SCRIPT&#8221;.</p>
<p>------------------------------------------------------------------------------------<br />
b) &#8220;http://ubuntuforums.org/showthread.php?t=996717&#8243;:<br />
([ubuntu] How to compile bash from an editor? - Ubuntu Forums.html)</p>
<p>Re: How to compile bash from an editor?<br />
Last time on this one:</p>
<p>bash shell scripts are interpreted not compiled -- hence there is no reason to compile them.</p>
<p>If you want a personal .bash or .sh file, compose the file, save it, do the following:</p>
<p>chmod +x </p>
<p>Copy the file to your personal bin directory since this is in your path (you have to make the directory since its not included by default):<br />
mkdir -p ~/bin</p>
<p>cp  ~/bin/</p>
<p>Ok now you can run the shell script from the command line by simply typing</p>
<p>NO NEED TO COMPILE!!!</p>
<p>=====&gt; OBS.: Nesta página, eu descobri que não é necessário (nem possível) compilar um bash script</p>
<p>-------------------------------------------------------------------------------------</p>
<p>Descompactei o arquivo dd_rhelp-0.1.2.tar.gz dentro da pasta dd_rhelp (que eu criei especificamente para guardar o .gz e vários .mht de páginas de dica).</p>
<p>Dentro da pasta dd_rhelp sugiu uma pasta chamada dd_rhelp-0.1.2.<br />
Dentro da nova pasta havia um arquivo dd_rhelp (o Nautilus dizia que o tipo era &#8220;shell script&#8221;).<br />
Copiei o arquivo dd_rhelp para a pasta /bin<br />
Na pasta /bin, o Nautilus dizia que o tipo do arquivo era &#8220;unknow&#8221;.<br />
Troquei o atributo &#8220;executable&#8221; do arquivo para true e o Nautilus passou a dizer que o tipo era &#8220;program&#8221;.<br />
Obs.: o tipo do arquivo dd_rescue (que já estava em /bin é &#8220;executable&#8221;<br />
A partir daí já era possível &#8220;executar&#8221; o dd_rhelp.</p>
<p>Veja o que eu fiz no Terminal:</p>
<p>$ cd /media/2N500XP/Down500XP/SoftDownload/UBUNTU/dd_rhelp/dd_rhelp-0.1.2    (change directory)<br />
$ sudo cp dd_rhelp /bin              (SuperUser usando o cp (copy))<br />
$ sudo chmod +x dd_rhelp             (SuperUser usando o chmod, que troca o atributo executable.  Poderia ser também &#8220;sudo chmod 777 dd_rhelp&#8221;)<br />
$ sudo dd_rhelp                      (Chamei o comando dd_rhelp) </p>
<p>Pronto !  Neste instante, o dd_rhelp respondeu:<br />
Need 2 arguments&#8230;<br />
usage: dd_rhelp {filename|device} {output-file} [{info}]<br />
    or dd_rhelp --help<br />
    or dd_rhelp --version</p>
<p>&#8220;INSTALADO !!!!!&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: shirls</title>
		<link>http://www.debianadmin.com/recover-data-from-a-damaged-hard-disk-using-dd_rhelp.html/comment-page-1#comment-8896</link>
		<dc:creator>shirls</dc:creator>
		<pubDate>Thu, 22 Sep 2011 08:20:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/recover-data-from-a-damaged-hard-disk-using-dd_rhelp.html#comment-8896</guid>
		<description>I have a damaged Internal HDD (WD SATA 250GB Samsung R509 laptop) When I check in windows 7 I see Device I/O Error and it shows there is 0MB data stoted on it, and also I cannot see the partions I created before. It also show by disk management that the hard drive is unallocated and not initialized it shows in bios
I want to know if I can retrieve any data on the hard drive? witch software i can use?</description>
		<content:encoded><![CDATA[<p>I have a damaged Internal HDD (WD SATA 250GB Samsung R509 laptop) When I check in windows 7 I see Device I/O Error and it shows there is 0MB data stoted on it, and also I cannot see the partions I created before. It also show by disk management that the hard drive is unallocated and not initialized it shows in bios<br />
I want to know if I can retrieve any data on the hard drive? witch software i can use?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mike</title>
		<link>http://www.debianadmin.com/recover-data-from-a-damaged-hard-disk-using-dd_rhelp.html/comment-page-1#comment-8873</link>
		<dc:creator>mike</dc:creator>
		<pubDate>Wed, 14 Sep 2011 19:40:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/recover-data-from-a-damaged-hard-disk-using-dd_rhelp.html#comment-8873</guid>
		<description>i cant seem to figure out how to get Gddrescue to auto restart after the source drive disapears ... is dd_rhelp the answer and will it work with gddrescue? Does the target drive need to be formated?</description>
		<content:encoded><![CDATA[<p>i cant seem to figure out how to get Gddrescue to auto restart after the source drive disapears &#8230; is dd_rhelp the answer and will it work with gddrescue? Does the target drive need to be formated?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ritesh</title>
		<link>http://www.debianadmin.com/recover-data-from-a-damaged-hard-disk-using-dd_rhelp.html/comment-page-1#comment-8772</link>
		<dc:creator>Ritesh</dc:creator>
		<pubDate>Fri, 05 Aug 2011 05:26:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/recover-data-from-a-damaged-hard-disk-using-dd_rhelp.html#comment-8772</guid>
		<description>Hello,,
My Hard disk Fails then where i have to write this commands???</description>
		<content:encoded><![CDATA[<p>Hello,,<br />
My Hard disk Fails then where i have to write this commands???</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MANSOOR</title>
		<link>http://www.debianadmin.com/recover-data-from-a-damaged-hard-disk-using-dd_rhelp.html/comment-page-1#comment-8139</link>
		<dc:creator>MANSOOR</dc:creator>
		<pubDate>Sun, 06 Feb 2011 15:33:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/recover-data-from-a-damaged-hard-disk-using-dd_rhelp.html#comment-8139</guid>
		<description>sir i neeed help please help me my harddisk has an error it will open too slow it has much viruse when i conect it into my computer it will shown in dos but when i install a window on it an error will shown that you can not install windows in this partition it will happin every partition and its run too slow and it has a sound always beep beeep beeep sir please help me my importante data on it how can i get it please tell me my cellphone number is 923033767460 im from pakistan send me a messege from internet to mobile please help meeeeee....</description>
		<content:encoded><![CDATA[<p>sir i neeed help please help me my harddisk has an error it will open too slow it has much viruse when i conect it into my computer it will shown in dos but when i install a window on it an error will shown that you can not install windows in this partition it will happin every partition and its run too slow and it has a sound always beep beeep beeep sir please help me my importante data on it how can i get it please tell me my cellphone number is 923033767460 im from pakistan send me a messege from internet to mobile please help meeeeee&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Verdae</title>
		<link>http://www.debianadmin.com/recover-data-from-a-damaged-hard-disk-using-dd_rhelp.html/comment-page-1#comment-6301</link>
		<dc:creator>Verdae</dc:creator>
		<pubDate>Sat, 04 Dec 2010 12:25:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/recover-data-from-a-damaged-hard-disk-using-dd_rhelp.html#comment-6301</guid>
		<description>GNU&#039;s ddrescue may be a better choice. This from wikipedia:

&quot;dd_rhelp or GNU ddrescue will yield a complete disk image, faster but possibly with some errors. GNU ddrescue is generally much faster, as it is written entirely in C++, whereas dd_rhelp is a shell script acting as a frontend to dd_rescue. Both dd_rhelp and GNU ddrescue aim to copy data fast where there are no errors, then copy in smaller blocks and with retries where there are errors. GNU ddrescue is easy to use with default options, and can easily be downloaded and compiled on Linux-based Live CDs such as Knoppix, and can be used with SystemRescueCD.&quot;
source: &lt;a href=&quot;http://en.wikipedia.org/wiki/Dd_%28Unix%29#Recovery-oriented_variants_of_dd&quot; title=&quot;Wikipedia: Recovery Oriented Variants of dd&quot; rel=&quot;nofollow&quot;&gt;</description>
		<content:encoded><![CDATA[<p>GNU&#8217;s ddrescue may be a better choice. This from wikipedia:</p>
<p>&#8220;dd_rhelp or GNU ddrescue will yield a complete disk image, faster but possibly with some errors. GNU ddrescue is generally much faster, as it is written entirely in C++, whereas dd_rhelp is a shell script acting as a frontend to dd_rescue. Both dd_rhelp and GNU ddrescue aim to copy data fast where there are no errors, then copy in smaller blocks and with retries where there are errors. GNU ddrescue is easy to use with default options, and can easily be downloaded and compiled on Linux-based Live CDs such as Knoppix, and can be used with SystemRescueCD.&#8221;<br />
source: <a href="http://en.wikipedia.org/wiki/Dd_%28Unix%29#Recovery-oriented_variants_of_dd" title="Wikipedia: Recovery Oriented Variants of dd" rel="nofollow"></a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Misguidedconformist</title>
		<link>http://www.debianadmin.com/recover-data-from-a-damaged-hard-disk-using-dd_rhelp.html/comment-page-1#comment-5225</link>
		<dc:creator>Misguidedconformist</dc:creator>
		<pubDate>Fri, 02 Jul 2010 11:27:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/recover-data-from-a-damaged-hard-disk-using-dd_rhelp.html#comment-5225</guid>
		<description>Hi all,
I&#039;ve a question, I have a HDD which has failed a HDD test (seagate), I can still see the data when booting into windows but it is in a profile that I don&#039;t have privilages to in another os. When booting into windows xp it bluescreens from the broken hdd. I&#039;ve tried a number of password changers and erasers using hirens so i&#039;ll be able to access the data. Where do I go now in terms of getting the remaining data that isn&#039;t damaged off the HDD??
HELP!!!!</description>
		<content:encoded><![CDATA[<p>Hi all,<br />
I&#8217;ve a question, I have a HDD which has failed a HDD test (seagate), I can still see the data when booting into windows but it is in a profile that I don&#8217;t have privilages to in another os. When booting into windows xp it bluescreens from the broken hdd. I&#8217;ve tried a number of password changers and erasers using hirens so i&#8217;ll be able to access the data. Where do I go now in terms of getting the remaining data that isn&#8217;t damaged off the HDD??<br />
HELP!!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dario soto</title>
		<link>http://www.debianadmin.com/recover-data-from-a-damaged-hard-disk-using-dd_rhelp.html/comment-page-1#comment-4101</link>
		<dc:creator>dario soto</dc:creator>
		<pubDate>Fri, 04 Dec 2009 13:12:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/recover-data-from-a-damaged-hard-disk-using-dd_rhelp.html#comment-4101</guid>
		<description>hello, great article but, how different is this if the drive has a damaged ntfs partition?</description>
		<content:encoded><![CDATA[<p>hello, great article but, how different is this if the drive has a damaged ntfs partition?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: san</title>
		<link>http://www.debianadmin.com/recover-data-from-a-damaged-hard-disk-using-dd_rhelp.html/comment-page-1#comment-3392</link>
		<dc:creator>san</dc:creator>
		<pubDate>Tue, 21 Jul 2009 14:05:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/recover-data-from-a-damaged-hard-disk-using-dd_rhelp.html#comment-3392</guid>
		<description>i got a maxtor 80GB hard disk as my secondary data storage.its worked properly past 4 years. but now its not detected by computer.can any one say me how can i recover all data without any lost.please its urgent</description>
		<content:encoded><![CDATA[<p>i got a maxtor 80GB hard disk as my secondary data storage.its worked properly past 4 years. but now its not detected by computer.can any one say me how can i recover all data without any lost.please its urgent</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rick</title>
		<link>http://www.debianadmin.com/recover-data-from-a-damaged-hard-disk-using-dd_rhelp.html/comment-page-1#comment-3282</link>
		<dc:creator>Rick</dc:creator>
		<pubDate>Fri, 26 Jun 2009 20:39:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/recover-data-from-a-damaged-hard-disk-using-dd_rhelp.html#comment-3282</guid>
		<description>Joe, Dave

Go to   my harddrive died dot com putting all this together of course. Watch the videos, Scott Moulton is leading the industry in hardware data recovery. He explains how to do most data recoveries for under a 100$. I have personally followed his explanations and did platter swap, head swaps, pcb board swaps. In your case your plobably going to need to do a head swap. What ever you do don&#039;t turn that HD on again, everytime you turn it on it is scratching more of your platters.</description>
		<content:encoded><![CDATA[<p>Joe, Dave</p>
<p>Go to   my harddrive died dot com putting all this together of course. Watch the videos, Scott Moulton is leading the industry in hardware data recovery. He explains how to do most data recoveries for under a 100$. I have personally followed his explanations and did platter swap, head swaps, pcb board swaps. In your case your plobably going to need to do a head swap. What ever you do don&#8217;t turn that HD on again, everytime you turn it on it is scratching more of your platters.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave</title>
		<link>http://www.debianadmin.com/recover-data-from-a-damaged-hard-disk-using-dd_rhelp.html/comment-page-1#comment-2871</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Sun, 03 May 2009 13:31:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/recover-data-from-a-damaged-hard-disk-using-dd_rhelp.html#comment-2871</guid>
		<description>I have a damaged Internal HDD (Maxtor SATA 500GB) When I check in vista I see Device I/O Error and it shows there is 0MB data stoted on it, and also I cannot see the partions I created before.
SO Can I use this way to back data?</description>
		<content:encoded><![CDATA[<p>I have a damaged Internal HDD (Maxtor SATA 500GB) When I check in vista I see Device I/O Error and it shows there is 0MB data stoted on it, and also I cannot see the partions I created before.<br />
SO Can I use this way to back data?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: joe b</title>
		<link>http://www.debianadmin.com/recover-data-from-a-damaged-hard-disk-using-dd_rhelp.html/comment-page-1#comment-2836</link>
		<dc:creator>joe b</dc:creator>
		<pubDate>Tue, 28 Apr 2009 13:20:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/recover-data-from-a-damaged-hard-disk-using-dd_rhelp.html#comment-2836</guid>
		<description>my hard drive fell off my bed and when i connect it i hear this whirling or grinding noise on and off.....my mate says it will be the read/write heads is there anyway of retrieving the files as it no longer registers with my computer:( please help</description>
		<content:encoded><![CDATA[<p>my hard drive fell off my bed and when i connect it i hear this whirling or grinding noise on and off&#8230;..my mate says it will be the read/write heads is there anyway of retrieving the files as it no longer registers with my computer:( please help</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: VovkaS</title>
		<link>http://www.debianadmin.com/recover-data-from-a-damaged-hard-disk-using-dd_rhelp.html/comment-page-1#comment-1602</link>
		<dc:creator>VovkaS</dc:creator>
		<pubDate>Thu, 14 Aug 2008 09:01:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/recover-data-from-a-damaged-hard-disk-using-dd_rhelp.html#comment-1602</guid>
		<description>sudo dd_rhelp /dev/sda1 - &#124; ssh username@machineip ‘cat /datarecovery/backup.img’

sudo dd_rhelp /dev/sda1 - &#124; ssh username@machineip cat &gt; &quot;/datarecovery/backup.img&quot;</description>
		<content:encoded><![CDATA[<p>sudo dd_rhelp /dev/sda1 - | ssh username@machineip ‘cat /datarecovery/backup.img’</p>
<p>sudo dd_rhelp /dev/sda1 - | ssh username@machineip cat &gt; &#8220;/datarecovery/backup.img&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kieran</title>
		<link>http://www.debianadmin.com/recover-data-from-a-damaged-hard-disk-using-dd_rhelp.html/comment-page-1#comment-1601</link>
		<dc:creator>Kieran</dc:creator>
		<pubDate>Wed, 16 Apr 2008 10:27:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/recover-data-from-a-damaged-hard-disk-using-dd_rhelp.html#comment-1601</guid>
		<description>Hi i keep getting the error message
Warning: “+number” syntax is deprecated, please use “-n +number”
and the output file is only 11.9mb big, when it&#039;s copying from a 160gb drive!

I&#039;m trying to copy from the hard drive dev/hdb (160gb ntfs) to media/Elements (500gb vfat external usb).  I heard that vfat format could cause this to happen, any ideas how to get around it?

Cheers,

Kieran</description>
		<content:encoded><![CDATA[<p>Hi i keep getting the error message<br />
Warning: “+number” syntax is deprecated, please use “-n +number”<br />
and the output file is only 11.9mb big, when it&#8217;s copying from a 160gb drive!</p>
<p>I&#8217;m trying to copy from the hard drive dev/hdb (160gb ntfs) to media/Elements (500gb vfat external usb).  I heard that vfat format could cause this to happen, any ideas how to get around it?</p>
<p>Cheers,</p>
<p>Kieran</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Limbers</title>
		<link>http://www.debianadmin.com/recover-data-from-a-damaged-hard-disk-using-dd_rhelp.html/comment-page-1#comment-1600</link>
		<dc:creator>Limbers</dc:creator>
		<pubDate>Thu, 26 Apr 2007 21:57:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/recover-data-from-a-damaged-hard-disk-using-dd_rhelp.html#comment-1600</guid>
		<description>Looks very good: however, can somebody point me in the right direction on the makefile?  My (ubuntu) command is sudo make install and I&#039;m having trouble:

robert@Humphrey:~/dd_rhelp-0.0.6$ sudo make install
make[1]: Entering directory `/home/robert/dd_rhelp-0.0.6&#039;
test -z &quot;/usr/local/bin&quot; &#124;&#124; mkdir -p -- . &quot;/usr/local/bin&quot;
 /usr/bin/install -c &#039;dd_rhelp&#039; &#039;/usr/local/bin/dd_rhelp&#039;
make[1]: Nothing to be done for `install-data-am&#039;.
make[1]: Leaving directory `/home/robert/dd_rhelp-0.0.6&#039;


Funny!  So I looked at the makefile and sure enough, install-data-am is an empty reference.  How did you guys get past this??

Thanks
Limbers</description>
		<content:encoded><![CDATA[<p>Looks very good: however, can somebody point me in the right direction on the makefile?  My (ubuntu) command is sudo make install and I&#8217;m having trouble:</p>
<p>robert@Humphrey:~/dd_rhelp-0.0.6$ sudo make install<br />
make[1]: Entering directory `/home/robert/dd_rhelp-0.0.6&#8242;<br />
test -z &#8220;/usr/local/bin&#8221; || mkdir -p -- . &#8220;/usr/local/bin&#8221;<br />
 /usr/bin/install -c &#8216;dd_rhelp&#8217; &#8216;/usr/local/bin/dd_rhelp&#8217;<br />
make[1]: Nothing to be done for `install-data-am&#8217;.<br />
make[1]: Leaving directory `/home/robert/dd_rhelp-0.0.6&#8242;</p>
<p>Funny!  So I looked at the makefile and sure enough, install-data-am is an empty reference.  How did you guys get past this??</p>
<p>Thanks<br />
Limbers</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cal Janus</title>
		<link>http://www.debianadmin.com/recover-data-from-a-damaged-hard-disk-using-dd_rhelp.html/comment-page-1#comment-1599</link>
		<dc:creator>Cal Janus</dc:creator>
		<pubDate>Sat, 13 Jan 2007 16:56:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/recover-data-from-a-damaged-hard-disk-using-dd_rhelp.html#comment-1599</guid>
		<description>Installed and used this script. It was amazing! You saved my boss, and of course me, a lot of stress Thanks for posting this!

Although I should add that I also tried to use this on a physically damaged drive, and it naturally couldn&#039;t do anything. I had to contact a few hard drive repair companies, and finally got in touch with one that worked well. Everyone was trying like mad to have me ship my drive without a quote! It was like a feeding frenzy! Fortunately I came across a company called Hard Drive . Good site, and the guy in charge really knew his stuff.

I just thought I should mention this, because although dd_rhelp is really good, in cases of physically damaged hard drives, it won&#039;t help much.

Cal Janus
Tech Wizards LLC</description>
		<content:encoded><![CDATA[<p>Installed and used this script. It was amazing! You saved my boss, and of course me, a lot of stress Thanks for posting this!</p>
<p>Although I should add that I also tried to use this on a physically damaged drive, and it naturally couldn&#8217;t do anything. I had to contact a few hard drive repair companies, and finally got in touch with one that worked well. Everyone was trying like mad to have me ship my drive without a quote! It was like a feeding frenzy! Fortunately I came across a company called Hard Drive . Good site, and the guy in charge really knew his stuff.</p>
<p>I just thought I should mention this, because although dd_rhelp is really good, in cases of physically damaged hard drives, it won&#8217;t help much.</p>
<p>Cal Janus<br />
Tech Wizards LLC</p>
]]></content:encoded>
	</item>
</channel>
</rss>

