From owner-freebsd-questions@FreeBSD.ORG Mon Dec 19 08:24:51 2005 Return-Path: X-Original-To: questions@freebsd.org 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 6208716A41F for ; Mon, 19 Dec 2005 08:24:51 +0000 (GMT) (envelope-from nikolas.britton@gmail.com) Received: from xproxy.gmail.com (xproxy.gmail.com [66.249.82.193]) by mx1.FreeBSD.org (Postfix) with ESMTP id 17E0843D5A for ; Mon, 19 Dec 2005 08:24:50 +0000 (GMT) (envelope-from nikolas.britton@gmail.com) Received: by xproxy.gmail.com with SMTP id s9so840203wxc for ; Mon, 19 Dec 2005 00:24:49 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=ADSIxDgb6nnNfrobWR7iAELihCvUL+Du2sD4KjIsfts4yX+BrDgS4E/3ay6DgagqTAl+VQfWsbGgLZFLGx1dXlDK0TpY+CrEH3FNUqrFqMjRYgBN3FkpnqeR9+MpVO0rKAlOs5hUxdWuWmL0VkE47iCOTDYRWlM5w2Lsie0PzFg= Received: by 10.70.110.13 with SMTP id i13mr4227094wxc; Mon, 19 Dec 2005 00:24:49 -0800 (PST) Received: by 10.70.66.9 with HTTP; Mon, 19 Dec 2005 00:24:49 -0800 (PST) Message-ID: Date: Mon, 19 Dec 2005 02:24:49 -0600 From: Nikolas Britton To: TuxGirl , Questions at FreeBSD In-Reply-To: <6e4453640512182139g52255edfta8aa957077e8a98c@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <6e4453640512181858qdcf8e2ay640326713dee89be@mail.gmail.com> <6e4453640512181948y47c6578fu153c11c2256ac56e@mail.gmail.com> <6e4453640512182139g52255edfta8aa957077e8a98c@mail.gmail.com> Cc: Subject: Re: Value too large to be stored in data type -- gzipped tarball X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Dec 2005 08:24:51 -0000 On 12/18/05, TuxGirl wrote: > > There is nothing wrong with tar and large files, it's synonymous with > > what tar is used for. I think your problem is just a Linux tar to > > FreeBSD tar quirk. I had no problems with the 3.3GB testfile I made > > for tar and gzip to play with: > > I think I may have found some additional info about the problem: > http://groups.google.com/group/list.freebsd.questions/browse_thread/threa= d/9234a3841dce6209/ce62e532d4e2fa0d?lnk=3Dst&q=3D%22+Value+too+large+to+be+= stored+in+data+type%22+freebsd&rnum=3D14&hl=3Den#ce62e532d4e2fa0d > > It appears that the problem has something to do with large files > burned to DVD and read in freebsd (linux has not had a problem with > it, from what I've seen). > > I've found a few articles on google and google-groups regarding this, > but they all seem to be related to burning DVDs in FreeBSD. It > appears to be the same problem however... So, I guess now my question > is, does anybody have any great ideas for getting around this? I was > wondering if it's possible to use dd to copy the tarball over to my > local drivek so that i can work with it that way. I haven't had the > chance yet to figure out dd well enough to know if this is possible or > how I would do it, but it seems to be the best option i've been able > to think of... > > Thanks for the help! > ~Erin > >From what I've read their is a 2GB limit per file on ISO9660 file systems. It seems as though Linux 'worked around' this limit thus forcing you into this problem. dd will not work for you. the only easy workaround is to mount the DVD on a Linux box and then copy the file over the network to the FreeBSD box, or make a new DVD. In the future make sure the files you burn to disc are less then 2GB. dd is for disk image stuff to see what it does and how it works read up on mdconfig and mdmfs (man pages). you want to make file backed (vnode) memory disks to use for playing with dd... http://www.crazytrain.com/dd.html Also grab some floppy, hdd, or even cd image files to play. http://rcsg-gsir.imsb-dsgi.nrc-cnrc.gc.ca/documents/advanced/node13.html http://www.rajeevnet.com/hacks_hints/os_clone/os_cloning.html anyways...