From mboxrd@z Thu Jan 1 00:00:00 1970 From: John Robinson Subject: Re: Stacked array data recovery Date: Fri, 29 Jun 2012 11:15:58 +0100 Message-ID: <4FED805E.2010904@anonymous.org.uk> References: <4FE5B213.5010503@hardwarefreak.com> <4FE72053.4040101@hardwarefreak.com> <4FE7E044.6040506@hardwarefreak.com> <4FE91619.4020709@hardwarefreak.com> <1340699839.3241.29.camel@hoferr-desktop.hofer.rummelring> <4FEA1A4F.9090605@hardwarefreak.com> <1340788044.3420.8.camel@hoferr-desktop.hofer.rummelring> <1340909075.29964.35.camel@oxygen.netxsys.com> <1340955849.3461.0.camel@hoferr-desktop.hofer.rummelring> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <1340955849.3461.0.camel@hoferr-desktop.hofer.rummelring> Sender: linux-raid-owner@vger.kernel.org To: Ramon Hofer Cc: Krzysztof Adamski , linux-raid@vger.kernel.org List-Id: linux-raid.ids On 29/06/2012 08:44, Ramon Hofer wrote: > On Don, 2012-06-28 at 14:44 -0400, Krzysztof Adamski wrote: >> You can send USR1 signal to the dd command and it will print how far it >> has gone, like this: >> # kill -USR1 > > Great! > Thanks for that :-) When running dd on whole discs, I usually run: while p=`pidof dd` ; do kill -USR1 $p ; sleep 30 ; done so I have a continuous progress monitor. Cheers, John.