From owner-freebsd-questions Fri Feb 3 14:15:06 1995 Return-Path: questions-owner Received: (from root@localhost) by freefall.cdrom.com (8.6.9/8.6.6) id OAA22863 for questions-outgoing; Fri, 3 Feb 1995 14:15:06 -0800 Received: from copper.cmp.com (copper.cmp.com [198.80.26.247]) by freefall.cdrom.com (8.6.9/8.6.6) with SMTP id OAA22855 for ; Fri, 3 Feb 1995 14:15:02 -0800 Received: from [198.80.26.5] by copper.cmp.com with SMTP (1.38.193.5/16.2) id AA06187; Fri, 3 Feb 1995 09:55:29 -0500 Received: by mailgate.cmp.com with Microsoft Mail id <2F326DEB@mailgate.cmp.com>; Fri, 03 Feb 95 09:54:51 PST From: Plyaskin Sergey To: Mark Diekhans Cc: "'.freebsd-questions@freebsd.org'" Subject: Re: tape backup under 2.0 Date: Fri, 03 Feb 95 09:53:00 PST Message-Id: <2F326DEB@mailgate.cmp.com> Encoding: 35 TEXT X-Mailer: Microsoft Mail V3.0 Sender: questions-owner@FreeBSD.org Precedence: bulk ---------- From: Mark Diekhans To: splyaski Subject: Re: tape backup under 2.0 Date: Thursday, February 02, 1995 7:30PM >I have installed a Wangtek SCSI tape drive on my FreeBSD box running >2.0-950112-SNAP. >I get a bunch of "truncating inode number" messages during backup process. >What that means? How could it be corrected? Sorry if this is a silly >question :-) > >I do the folloing: >%cd / >%find -d . | cpio -ocvB > /dev/rst0 The standard cpio format only supports 16 bit inode numbers. To save 32 bit inodes, add the flag: -H crc Mark ---------------------------------------------------------------------------- ------------------------------------ Mark, Thanks, it works fine. Now I use find -d . | cpio -ovB -H crc > /dev/rst0 and get the following message cpio: cannot read checksum for ./proc/cuproc/mem: Operation not permitted What's that? Thanks. Serge