From owner-freebsd-fs@FreeBSD.ORG Wed Oct 1 09:21:35 2014 Return-Path: Delivered-To: freebsd-fs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9217CC1 for ; Wed, 1 Oct 2014 09:21:35 +0000 (UTC) Received: from mail.ijs.si (mail.ijs.si [IPv6:2001:1470:ff80::25]) by mx1.freebsd.org (Postfix) with ESMTP id 40C083F9 for ; Wed, 1 Oct 2014 09:21:35 +0000 (UTC) Received: from amavis-proxy-ori.ijs.si (localhost [IPv6:::1]) by mail.ijs.si (Postfix) with ESMTP id 3j7BmY2DXfzZB for ; Wed, 1 Oct 2014 11:21:33 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ijs.si; h= user-agent:message-id:references:in-reply-to:organization :subject:subject:from:from:date:date:content-transfer-encoding :content-type:content-type:mime-version:received:received :received:received; s=jakla2; t=1412155288; x=1414747289; bh=bFW WdnOVSJWzpDgMIjZL4aUmxvFms+C9SrM5IuETyr8=; b=fPjkzVN+cJMJYO4PsPF D9rd6aAYzvyb/P7XYDwtf70uxF6/PbfWXI6xpLLBH8CqSV9bIMWisarDtQ8BbC4R Xs2U6nOS8ukN9PIVW5FskcCgCZ/dAwAHmNpduzExRIqqzGxS2CFZVyGKHKPl59ge wKRez7EOJuUs4Hf0pp5iUVPw= X-Virus-Scanned: amavisd-new at ijs.si Received: from mail.ijs.si ([IPv6:::1]) by amavis-proxy-ori.ijs.si (mail.ijs.si [IPv6:::1]) (amavisd-new, port 10012) with ESMTP id XQIidiAgH2rR for ; Wed, 1 Oct 2014 11:21:28 +0200 (CEST) Received: from mildred.ijs.si (mailbox.ijs.si [IPv6:2001:1470:ff80::143:1]) by mail.ijs.si (Postfix) with ESMTP for ; Wed, 1 Oct 2014 11:21:28 +0200 (CEST) Received: from neli.ijs.si (neli.ijs.si [IPv6:2001:1470:ff80:88:21c:c0ff:feb1:8c91]) by mildred.ijs.si (Postfix) with ESMTP id 3j7BmS3hDyz1CR for ; Wed, 1 Oct 2014 11:21:28 +0200 (CEST) Received: from sleepy.ijs.si ([2001:1470:ff80:e001::1:1]) by neli.ijs.si with HTTP (HTTP/1.1 POST); Wed, 01 Oct 2014 11:21:28 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Date: Wed, 01 Oct 2014 11:21:28 +0200 From: Mark Martinec To: freebsd-fs@freebsd.org Subject: Re: zfs-send/receive between FreeBSD10 and SmartOS (Illumos) fails. Organization: J. Stefan Institute In-Reply-To: References: <37BD986A-9B05-4CE8-9D55-CAB4B2713D9D@gmail.com> <99C93627-2B9C-423F-9C3D-D8B6ACB9C74A@gmail.com> <5C3F3898-9C40-48A6-9B8D-C2118448BE42@gmail.com> Message-ID: <7c3182852401d5cc2e98eea2787d6892@mailbox.ijs.si> X-Sender: Mark.Martinec+freebsd@ijs.si User-Agent: Roundcube Webmail/1.0.2 X-BeenThere: freebsd-fs@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Filesystems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Oct 2014 09:21:35 -0000 2014-09-23, John Terrell wrote: >> Hello all, I'm trying to replicate one of the ZFS filesystems that >> lives >> on my FreeBSD 10 NAS to a SmartOS (Illumos based) server. >> The transfer dies at about the 1.7TB (of almost 4TB) mark indicating: >> >> "cannot receive incremental stream: invalid backup stream" 2014-09-30, John Terrell wrote: >> Here's the command and output (run from the SmartOS box): > > ssh -c arcfour256 root@freebsdnas zfs send -R tank@daily20140920 | zfs > receive -v -F zones/tank > > The output (after running for a long time xferring data): Try logging to the sending host and run 'zfs send' there interactively from a command line, noting any potential error messages on stdout or syslog. See also: http://lists.freebsd.org/pipermail/freebsd-net/2014-July/039347.html Mark