From owner-freebsd-questions@FreeBSD.ORG Sat Jan 18 08:05:50 2014 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 631F8E69 for ; Sat, 18 Jan 2014 08:05:50 +0000 (UTC) Received: from moh1-ve2.go2.pl (moh1-ve2.go2.pl [193.17.41.132]) by mx1.freebsd.org (Postfix) with ESMTP id 85F111A8A for ; Sat, 18 Jan 2014 08:05:49 +0000 (UTC) Received: from moh1-ve2.go2.pl (unknown [10.0.0.132]) by moh1-ve2.go2.pl (Postfix) with ESMTP id A69841064AE3 for ; Sat, 18 Jan 2014 09:05:09 +0100 (CET) Received: from unknown (unknown [10.0.0.142]) by moh1-ve2.go2.pl (Postfix) with SMTP for ; Sat, 18 Jan 2014 09:05:09 +0100 (CET) Received: from mail-we0-f174.google.com [74.125.82.174] by poczta.o2.pl with ESMTP id QMCfrz; Sat, 18 Jan 2014 09:05:09 +0100 Received: by mail-we0-f174.google.com with SMTP id x55so5277707wes.5 for ; Sat, 18 Jan 2014 00:05:06 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=mime-version:reply-to:date:message-id:subject:from:to:content-type; bh=ZZc2Oyz7tQRLF46iwYut45nxBdtFSRXYXUhdzKEQkUg=; b=O5cEtbefTdXRrFetwXaWb3ruincySZRZSpgqyWTlIm8Wc7k/ybjGPE3nii9GXMYH1j Aqx/+kJb5/YhF1vh9WGwST2xXFCqruJ5sSyRRfFwZHioQkvJeAiBJBu9Mz21wU0dF+kv gdf+FxPUcZUoxvF9oMbCT6hiL9SFzSphfQccdZFaxlc7Nvkk1ANlcglqRV6fYzdQtla3 /CP8iO1u/INbtbjm5bgdaz9CuE6xiw88u65St65LUKygwt6oLH58vsVy21GQIYzY2wKm w49X9UJVvPRV15Vr3rbqgAUxgb9/TdruueW7eLkYbfix3qRzpWDn08jSyqA6OGkodNTw U+lw== MIME-Version: 1.0 X-Received: by 10.194.75.198 with SMTP id e6mr5576175wjw.3.1390032306899; Sat, 18 Jan 2014 00:05:06 -0800 (PST) Received: by 10.216.68.194 with HTTP; Sat, 18 Jan 2014 00:05:06 -0800 (PST) Date: Sat, 18 Jan 2014 09:05:06 +0100 Message-ID: Subject: zfs receive: cannot receive incremental stream: invalid backup stream From: Sebastian Chmielewski To: freebsd-questions@freebsd.org X-O2-Trust: 2, 68 X-O2-SPF: notchecked Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: chmiels@o2.pl List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Jan 2014 08:05:50 -0000 I'm trying to restore a zfs dump and got following error: root@:/mnt # zfs receive -Fv thinkroot < backup/thinkroot.zfs receiving full stream of thinkroot@monthly-2014-01 into thinkroot@monthly-2014-01 received 41.7KB stream in 1 seconds (41.7KB/sec) receiving incremental stream of thinkroot@daily-2014-01-08 into thinkroot@daily-2014-01-08 received 312B stream in 1 seconds (312B/sec) receiving incremental stream of thinkroot@daily-2014-01-09 into thinkroot@daily-2014-01-09 received 312B stream in 1 seconds (312B/sec) receiving incremental stream of thinkroot@daily-2014-01-12 into thinkroot@daily-2014-01-12 received 312B stream in 1 seconds (312B/sec) receiving incremental stream of thinkroot@daily-2014-01-14 into thinkroot@daily-2014-01-14 received 312B stream in 1 seconds (312B/sec) receiving incremental stream of thinkroot@daily-2014-01-15 into thinkroot@daily-2014-01-15 received 312B stream in 1 seconds (312B/sec) receiving incremental stream of thinkroot@daily-2014-01-16 into thinkroot@daily-2014-01-16 received 312B stream in 1 seconds (312B/sec) receiving incremental stream of thinkroot@daily-2014-01-17 into thinkroot@daily-2014-01-17 received 312B stream in 1 seconds (312B/sec) receiving incremental stream of thinkroot@transfer into thinkroot@transfer received 312B stream in 1 seconds (312B/sec) receiving full stream of thinkroot/usrlocal@monthly-2014-01 into thinkroot/usrlocal@monthly-2014-01 received 11.5GB stream in 196 seconds (60.2MB/sec) receiving incremental stream of thinkroot/usrlocal@daily-2014-01-08 into thinkroot/usrlocal@daily-2014-01-08 received 101MB stream in 2 seconds (50.5MB/sec) receiving incremental stream of thinkroot/usrlocal@daily-2014-01-09 into thinkroot/usrlocal@daily-2014-01-09 cannot receive incremental stream: invalid backup stream Backup stream was not incremental, I've made it with zfs snapshot -r thinkroot@transfer zfs send -RD thinkroot@transfer > thinkroot.zfs The same problem occurs with another backup copy so I think it's a bug or a problem with method of backup. How to fix it?