From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 10624 invoked by alias); 9 Dec 2014 18:50:16 -0000 Mailing-List: contact zsh-users-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Users List List-Post: List-Help: X-Seq: 19513 Received: (qmail 19446 invoked from network); 9 Dec 2014 18:50:10 -0000 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,FREEMAIL_FROM, RCVD_IN_DNSWL_NONE autolearn=ham version=3.3.2 Date: Tue, 9 Dec 2014 19:24:15 +0100 From: meino.cramer@gmx.de To: zsh-users@zsh.org Subject: Parallel backupping embedded systems...how? Message-ID: <20141209182415.GB4483@solfire> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: mutt-ng/devel-r804 (Linux) X-Provags-ID: V03:K0:vXYor60wJ+egCvceX4wrlF8bSkXhtsskcxehx21fUWqEZFCFsHG a5RrgZB3X5tOXASn1nzpm+HzYL/fbl8ryWor296SCgm26rdArwQh0MJgpB3ODK8BaEPB2Bl vEdvg9ZhtQEygv4AO59DJG+NJtTpgqcZF3CKd4O7943d4MalWltRrL+3LfwLUWOh+O+Ey/G rE7isubbyXzqdBOuzSyPQ== X-UI-Out-Filterresults: notjunk:1; Hi, Currently I am experimenting with two of this little linux systems: http://www.acmesystems.it/arietta Since everything is changing fast I often make backups. I nfs-mount both Ariettas to mountpoints on my PC and tar the whole stuff. If tar is done for both systems, I compress the resulting archive with 7z. Currently this is done in pure sequentiell order...and slow therefor. I would like to do that in parallel if possible. I thought of gnu parallel ... But I have two different input parameter (both mountpoints) and (more complicated) tow different output parameter ... the names of the archives. If I put both tar processes into background I dont know how to wait correctly for the jobs end to start 7z. And most important: I dont know what I dont know in this case... ;) What is the most "hassle free" and secure (in the sense of "not failing") way to do what I want to acchieve with zsh? Thank you very much in advance for any parallel help :) ;) Best regards, Meino