From owner-freebsd-questions@FreeBSD.ORG Fri Apr 29 06:57:13 2005 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 C669D16A4CE for ; Fri, 29 Apr 2005 06:57:13 +0000 (GMT) Received: from mail.efacilitas.de (efacilitas.de [213.133.110.227]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1E25E43D5D for ; Fri, 29 Apr 2005 06:57:12 +0000 (GMT) (envelope-from bkoenig@cs.tu-berlin.de) Received: from eurystheus.local (port-212-202-39-77.dynamic.qsc.de [212.202.39.77]) by mail.efacilitas.de (Postfix) with ESMTP id 37B53123962; Fri, 29 Apr 2005 08:56:02 +0200 (CEST) Received: from localhost (eurystheus.local [192.168.1.67]) by eurystheus.local (Postfix) with ESMTP id 4840D12B0B6; Fri, 29 Apr 2005 08:57:01 +0200 (CEST) Received: from eurystheus.local ([192.168.1.67]) by localhost (eurystheus.locaL [192.168.1.67]) (amavisd-new, port 10024) with ESMTP id 96836-10; Fri, 29 Apr 2005 08:56:56 +0200 (CEST) Received: from [192.168.1.67] (eurystheus.local [192.168.1.67]) by eurystheus.local (Postfix) with ESMTP id 090C312B016; Fri, 29 Apr 2005 08:56:56 +0200 (CEST) Message-ID: <4271DAB7.7040607@cs.tu-berlin.de> Date: Fri, 29 Apr 2005 08:56:55 +0200 From: =?ISO-8859-15?Q?Bj=F6rn_K=F6nig?= User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.7) Gecko/20050425 X-Accept-Language: en-us, en MIME-Version: 1.0 To: pier References: <4271D753.1010003@lugpiacenza.org> In-Reply-To: <4271D753.1010003@lugpiacenza.org> Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 8bit X-Virus-Scanned: amavisd-new at example.com cc: freebsd questions Subject: Re: Problem ext2 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, 29 Apr 2005 06:57:13 -0000 pier wrote: >I need ext2 because i need to exchange very big files (dvd iso images) >with linux computers. >But everytime i try to copy a big file i receive this message: > >cp: ./sarge-i386-1.iso: File too large > > FreeBSD might only be able to deal with files smaller than 2 GiB on ext2 file systems. Use a program like lxsplit to cut the file into chunks first, e.g. lxsplit -s filename 1024M and join it later with lxsplit -j filename.001 Björn