From owner-freebsd-questions@FreeBSD.ORG Fri Jul 2 02:31:27 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A3AB216A4CF for ; Fri, 2 Jul 2004 02:31:27 +0000 (GMT) Received: from mproxy.gmail.com (mproxy.gmail.com [216.239.56.251]) by mx1.FreeBSD.org (Postfix) with SMTP id 95EE943D39 for ; Fri, 2 Jul 2004 02:31:27 +0000 (GMT) (envelope-from roop.nanuwa@gmail.com) Received: by mproxy.gmail.com with SMTP id w29so3793146cwb for ; Thu, 01 Jul 2004 19:30:33 -0700 (PDT) Received: by 10.11.116.8 with SMTP id o8mr12443cwc; Thu, 01 Jul 2004 19:23:53 -0700 (PDT) Message-ID: <75f3f7050407011923279dc72@mail.gmail.com> Date: Thu, 1 Jul 2004 19:23:53 -0700 From: Roop Nanuwa To: Bruce Hunter In-Reply-To: <1088728604.849.1.camel@solid.solisixoffice.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit References: <1088728604.849.1.camel@solid.solisixoffice.com> cc: freebsd-questions@freebsd.org Subject: Re: tar problem X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Jul 2004 02:31:27 -0000 On Thu, 01 Jul 2004 20:36:44 -0400, Bruce Hunter wrote: > > I am trying to archive this directory for backup purposes. I am getting > this error when trying to create a new tar file. > > Solisix/ > flipnode@solid$ su > Password: > flipnode@solid# tar -c Solisix/ > tar: /dev/sa0: Cannot open: Operation not supported > tar: Error is not recoverable: exiting now > > What is wrong? Permissions? I am root.. > You need to specify the 'f' option to tell tar where to write the tar to, it's defaulting to /dev/sa0 which probably doesn't exist on your system. Run: tar -cf Solisix.tar Solisix/ --roop