From owner-freebsd-questions Mon Jul 10 06:49:28 1995 Return-Path: questions-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id GAA09255 for questions-outgoing; Mon, 10 Jul 1995 06:49:28 -0700 Received: from who.cdrom.com (who.cdrom.com [192.216.222.3]) by freefall.cdrom.com (8.6.10/8.6.6) with ESMTP id GAA09249 for ; Mon, 10 Jul 1995 06:49:27 -0700 Received: from id.slip.bcm.tmc.edu ([128.249.248.67]) by who.cdrom.com (8.6.11/8.6.11) with ESMTP id GAA02042 for ; Mon, 10 Jul 1995 06:49:20 -0700 Received: (from rich@localhost) by id.slip.bcm.tmc.edu (8.6.11/8.6.9) id IAA02009; Mon, 10 Jul 1995 08:46:21 -0500 Date: Mon, 10 Jul 1995 08:46:21 -0500 From: Rich Murphey Message-Id: <199507101346.IAA02009@id.slip.bcm.tmc.edu> To: lrnamrca@ix.netcom.com CC: questions@freebsd.org, llarson@du.edu, lrnamrca@ix.netcom.com In-reply-to: <199507091301.GAA17791@ix5.ix.netcom.com> (lrnamrca@ix.netcom.com) Subject: Re: Getting XFree86-3.1 from DOS?? Reply-to: rich@lamprey.utmb.edu Sender: questions-owner@freebsd.org Precedence: bulk |From: lrnamrca@ix.netcom.com (D. Duke Smith ) | |Hi - | |I'm having some difficulty getting loaded from the |Walnut Creek CD: | |1) It looks for a CD at 0x300; my SoundBlaster 16ASP | can only be at 220, 240, 260, or 280. How can I | change the I/O @ of /dev/mcd0? | |2) I was able to get most of the system by putting a | DOS (Yecch!) partition on the disk & copying the | distributions to it, but I can't create a directory | called xfree86-3.1 due to the filename length res- | trictions of DOS. Is there any hope of ever getting | X on my system? Anyway, the directory name on the CD | is , but the install routine looks for the | other name. | |3) Once I have gotten some of the system loaded, how | can I install additional packages without going | through the install procedure which newfs's every- | thing? Sysinstall didn't seem to want to let me | do this either. You can also simply unpack all of X yourself using: cd /usr for i in /dos/..../XFREE86_/X31*.tgz; do tar xzf $i done or in 'csh' syntax: cd /usr foreach i (/dos/..../XFREE86_/X31*.tgz) tar xzf $i end Then remove the manifest file if you like: rm /usr/MANIF* Rich