From owner-freebsd-questions Sun Apr 21 12:48: 2 2002 Delivered-To: freebsd-questions@freebsd.org Received: from ralf.artlogix.com (sense-mcglk-240.oz.net [216.39.168.240]) by hub.freebsd.org (Postfix) with ESMTP id 5787E37B419 for ; Sun, 21 Apr 2002 12:47:47 -0700 (PDT) Received: by ralf.artlogix.com (Postfix, from userid 1000) id A6A381B9C52; Sun, 21 Apr 2002 12:49:35 -0700 (PDT) To: Mark Filipak Cc: freebsd-questions Subject: Re: Mark asks: Easy way to copy CD-ROM > MS-floppy? References: <3CC0CAE5.A8A56319@earthlink.net> <877kn1ptad.fsf@ralf.artlogix.com> <3CC26E9E.1F131018@earthlink.net> From: Ken McGlothlen Date: 21 Apr 2002 12:49:35 -0700 In-Reply-To: <3CC26E9E.1F131018@earthlink.net> Message-ID: <87u1q4rfw0.fsf@ralf.artlogix.com> Lines: 50 User-Agent: Gnus/5.0808 (Gnus v5.8.8) XEmacs/21.1 (Cuyahoga Valley) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Mark Filipak writes: | Well, Ken. Things did not go entirely as hoped... Uh-oh. | I tried to use this technique to back up /usr/local/s_apache since this is | the directory that contains almost all of the GallantWEB goodies. | | # tar cvfz /tmp/s_apache.tar.gz /usr/local/s_apache | | went as expected. How large did the tarball turn out to be? If it's over 1.4MiB, it's not going to work. | Then, after I umounted the msdos to avoid a 'busy' error message, this is | what happened: | | # dd if=/tmp/s_apache.tar.gz of=/dev/fd0 | dd: /dev/fd0: end of device | 2881+0 records in | 2880+0 records out | 1474560 bytes transferred in 192.223091 secs (7671 bytes/sec) Okay. That would be normal, except I'm concerned that the tarball was larger than the floppy would handle. | # ls -FL /usr/tmp | total 10824 | -rw-r--r-- 1 root wheel 11067771 Apr 21 02:01 s_apache.tar.gz Yep. | Do you have any way for me to chop up s_apache.tar.gz into floppy-sized | pieces that I will be able to reassemble in Win98SE? I do! # cd /tmp # split -b 1474560 s_apache.tar.gz s_apache.tar.gz. That will create a bunch of files called s_apache.tar.gz.aa s_apache.tar.gz.ab and so on. Write each of those individually, shove them over to the MSDOS system (apache.01, apache.02, etc.), and concatenate them there (into APACHE.TGZ), and you're set. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message