From owner-freebsd-small Mon May 10 12:15:57 1999 Delivered-To: freebsd-small@freebsd.org Received: from gta.com (mailgate.gta.com [199.120.225.4]) by hub.freebsd.org (Postfix) with ESMTP id 1068414EB8 for ; Mon, 10 May 1999 12:15:53 -0700 (PDT) (envelope-from lab@gta.com) Received: from gta.com (GTA internal mail system) by gta.com id PAA12420; Mon, 10 May 1999 15:15:35 -0400 (EDT) Date: Mon, 10 May 1999 15:15:35 -0400 (EDT) From: Larry Baird Message-Id: <199905101915.PAA12420@gta.com> To: freebsd-small@freebsd.org Subject: Re: 4MB DiskOnChip X-Newsgroups: freebsd.small In-Reply-To: <37320638.FB5D8844@gta.com> <99050817043500.00291@babsi.tu-graz.ac.at> Organization: Global Technology Associates, Inc. User-Agent: tin/pre-1.4-980618 (UNIX) (FreeBSD/2.2.8-STABLE (i386)) Sender: owner-freebsd-small@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In article <99050817043500.00291@babsi.tu-graz.ac.at> you wrote: > Am Do , 06 Mai 1999 schrieb Larry Baird: >> Has anyone had any luck booting from a 4MB diskOnChip using FreeBSD >> 3.1.0? >> > Yes, It works fine. Yes it works fine with a few caveats (-:. Hopefully somebody out there can help me understand the things I have almost figured out. If you use the 'c' partition everything works without a hitch. If you create multiple partitions and use the 'a' partition things get a bit strange. If the 'a' partition is less than 4096 blocks in size everthing works fine. If the 'a' partition is larger than 4096 blocks you must take care with how you put files onto the disk. I'll come back to this in a bit. The disk geometry that the DiskOnChip firmware driver maps into CMOS is a bit strange. The second stage of the boot uses standard bios int13 functions to do all disk I/O. Using the int13 function 0x8 to determine the geometry for the disk gives: heads (maximum heads) - 2 spt (sectors per track) - 2 maximum cylinder - 9 >From the above values the calculation for spc (sectors per cylinder) is: spc = spt * heads = 4 The maximum number of blocks for a 4MB DiskOnChip is 7888. This number comes from Paul-Henning's driver. Now say we want to read the block 7000 using int13 function 2. This function expects the access to be in terms of cylinder, head, and sector. So dividing 7000 by spc gives us a cylinder of 1750. This value causes problems from two perspectives. The first being that it is greater than the maximum of 9 from above. It is also greater than the maximum cylinder supported by int13 function 2 of 1023. From experimentation I have determined the following: In the 'c' partition case disk blocks are allocated from the beginning of the partition. In the 'a' partition case disk blocks are allocated from the end of the partition. So to boot off the 'a' partition make sure that loader and kernel are the last things you write to the 'a' partition. I have no idea why the two partitions act differently. Does anybody have a clue? Thanks for your time, Larry To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-small" in the body of the message From owner-freebsd-small Mon May 10 14:25:42 1999 Delivered-To: freebsd-small@freebsd.org Received: from tellink.net (pm-4-41.tellink.net [208.3.160.218]) by hub.freebsd.org (Postfix) with ESMTP id D1D3C15359 for ; Mon, 10 May 1999 14:25:32 -0700 (PDT) (envelope-from chip@tellink.net) Received: (from chip@localhost) by tellink.net (8.9.2/8.9.1) id RAA11105 for freebsd-small@freebsd.org; Mon, 10 May 1999 17:27:49 -0400 (EDT) (envelope-from chip) Message-ID: <19990510172749.A11070@expi> Date: Mon, 10 May 1999 17:27:49 -0400 From: Chip Marshall To: freebsd-small@freebsd.org Subject: PC/104 Question Reply-To: cmarshall@expi.com Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.93.2i X-Real-OS: FreeBSD holly 3.1-RELEASE FreeBSD 3.1-RELEASE Sender: owner-freebsd-small@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I was just wondering if PicoBSD will work on SMB with PC/104 busses. Is PC/104 just ISA with pins instead of edge connectors or is it a completly different bus standard? -- Chip Marshall Exploration Physics International, Inc. Internet Technology Programmer http://www.eboai.org/~chip/ InterNIC handle - CLM21 PGP key available on my web page On IRC via EFnet as Magus To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-small" in the body of the message From owner-freebsd-small Thu May 13 7:24: 9 1999 Delivered-To: freebsd-small@freebsd.org Received: from chopin.seattleu.edu (chopin.seattleu.edu [206.81.198.70]) by hub.freebsd.org (Postfix) with ESMTP id DC73514F98 for ; Thu, 13 May 1999 07:24:05 -0700 (PDT) (envelope-from hodeleri@seattleu.edu) Received: from seattleu.edu ([172.17.41.90]) by chopin.seattleu.edu (8.8.5/8.8.5) with ESMTP id HAA03002 for ; Thu, 13 May 1999 07:24:04 -0700 (PDT) Message-ID: <373AE05C.44CF2322@seattleu.edu> Date: Thu, 13 May 1999 07:23:24 -0700 From: Eric Hodel Organization: Dis X-Mailer: Mozilla 4.51 [en] (X11; U; FreeBSD 4.0-CURRENT i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-small@freebsd.org Subject: PicoBSD and 4.0-CURRENT - panic: cannot mount root Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-small@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Is it possible to use PicoBSD with 4.0-CURRENT souces? Didn't see much in the archives. I have been using the default dial kernel (and a couple of custom kernels) with only ssh removed from the crunch file. -- Eric Hodel hodeleri@seattleu.edu "If you understand what you're doing, you're not learning anything." -- A. L. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-small" in the body of the message From owner-freebsd-small Thu May 13 9:22:18 1999 Delivered-To: freebsd-small@freebsd.org Received: from dart.sr.se (dart.SR.SE [193.12.91.98]) by hub.freebsd.org (Postfix) with ESMTP id 8804514D25 for ; Thu, 13 May 1999 09:22:12 -0700 (PDT) (envelope-from kenta@sr.se) Received: from honken.sr.se ([134.25.128.27]) by dart.sr.se (8.9.3/8.9.3) with ESMTP id SAA07414 for ; Thu, 13 May 1999 18:22:11 +0200 (MET DST) Received: from aramis.sr.se (kenta@aramis.SR.SE [134.25.129.1]) by honken.sr.se (8.7.5/8.7.3) with SMTP id SAA09177 for ; Thu, 13 May 1999 18:22:11 +0200 (MET DST) Date: Thu, 13 May 1999 17:19:08 +0000 (GMT) From: Kent Berggren To: freebsd-small@FreeBSD.ORG Subject: ssh => lsh Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-small@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi By the way. There are an embrion of an GNU vers of ssh called lsh ftp://ftp.lysator.liu.se/pub/security/lsh ftp://ftp.net.lut.ac.uk/lsh (UK mirror site, updated 0100 local time nightly) I have not tested the code on FreeBSD. Look also at http://www.net.lut.ac.uk/psst/ for more info. Have a nice day Kent Berggren /* --------------------------------------------------------- /* Kent Berggren | /* Mobil 070-620 79 00 | /* tel: 08-784 98 85 ||| Sweden | /* Sveriges Radio AB (@ @) SM0LRU | /* -------------------oOO--(_)--OOo------------------------- perl -e 'print $i=pack(c5,(41*2),sqrt(7056),(unpack(c,H)-2),oct(115),10);' To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-small" in the body of the message From owner-freebsd-small Thu May 13 10: 1:21 1999 Delivered-To: freebsd-small@freebsd.org Received: from chopin.seattleu.edu (chopin.seattleu.edu [206.81.198.70]) by hub.freebsd.org (Postfix) with ESMTP id 07C3614C47 for ; Thu, 13 May 1999 10:01:17 -0700 (PDT) (envelope-from hodeleri@seattleu.edu) Received: from seattleu.edu ([172.17.41.90]) by chopin.seattleu.edu (8.8.5/8.8.5) with ESMTP id KAA06407; Thu, 13 May 1999 10:00:10 -0700 (PDT) Message-ID: <373B04F2.5334E688@seattleu.edu> Date: Thu, 13 May 1999 09:59:30 -0700 From: Eric Hodel Organization: Dis X-Mailer: Mozilla 4.51 [en] (X11; U; FreeBSD 4.0-CURRENT i386) X-Accept-Language: en MIME-Version: 1.0 To: William Lloyd Cc: PicoBSD Subject: Re: PicoBSD and 4.0-CURRENT - panic: cannot mount root References: <373AE05C.44CF2322@seattleu.edu> <19990513102838.A8280@tolstoy.mpd.ca> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-small@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG William Lloyd wrote: > > On Thu, May 13, 1999 at 07:23:24AM -0700, Eric Hodel wrote: > > Is it possible to use PicoBSD with 4.0-CURRENT souces? Didn't see > > much in the archives. I have been using the default dial kernel (and > > a couple of custom kernels) with only ssh removed from the crunch > > file. > > > PicoBSD is now part of FreeBSD. > > Versions exist in 3.x and 4.x > > Look in /usr/src/sys/release/picobsd > > If you have 3.x source it's 3.x PicoBSD, 4.x source 4.x PicoBSD. I wasn't entirely clear...That is what I used to build the floppy. I get the whole source tree (src-all, ports-all) when I cvsup, so I'm certain that I have everything I need to build the floppy, but I get the can't mount root panic if I try to use the disk I built out of /usr/src/release/picobsd/ I was just too lazy to bother including ssh, and don't yet have a use for it. -- Eric Hodel hodeleri@seattleu.edu "If you understand what you're doing, you're not learning anything." -- A. L. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-small" in the body of the message From owner-freebsd-small Thu May 13 12: 1:27 1999 Delivered-To: freebsd-small@freebsd.org Received: from freja.webgiro.com (freja.webgiro.com [212.209.29.10]) by hub.freebsd.org (Postfix) with ESMTP id B665D153E6 for ; Thu, 13 May 1999 12:01:22 -0700 (PDT) (envelope-from abial@webgiro.com) Received: by freja.webgiro.com (Postfix, from userid 1001) id A457718D0; Thu, 13 May 1999 21:01:30 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by freja.webgiro.com (Postfix) with ESMTP id A14FB49D1; Thu, 13 May 1999 21:01:30 +0200 (CEST) Date: Thu, 13 May 1999 21:01:30 +0200 (CEST) From: Andrzej Bialecki To: Eric Hodel Cc: William Lloyd , PicoBSD Subject: Re: PicoBSD and 4.0-CURRENT - panic: cannot mount root In-Reply-To: <373B04F2.5334E688@seattleu.edu> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-small@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, 13 May 1999, Eric Hodel wrote: > I wasn't entirely clear...That is what I used to build the floppy. I > get the whole source tree (src-all, ports-all) when I cvsup, so I'm > certain that I have everything I need to build the floppy, but I get > the can't mount root panic if I try to use the disk I built out of > /usr/src/release/picobsd/ I was just too lazy to bother including > ssh, and don't yet have a use for it. Tis panic is unrelated to ssh. Someone mentioned exactly this problem on freebsd-current, with possible cause (recent changes in config(8)), but I can't investigate it ATM (my -current machine is in Poland, and I'm in Sweden at the moment). Use 3.2-STABLE instead - it builds just fine. Andrzej Bialecki // WebGiro AB, Sweden (http://www.webgiro.com) // ------------------------------------------------------------------- // ------ FreeBSD: The Power to Serve. http://www.freebsd.org -------- // --- Small & Embedded FreeBSD: http://www.freebsd.org/~picobsd/ ---- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-small" in the body of the message From owner-freebsd-small Thu May 13 14:44:10 1999 Delivered-To: freebsd-small@freebsd.org Received: from relay04.netaddress.usa.net (relay04.netaddress.usa.net [204.68.24.184]) by hub.freebsd.org (Postfix) with SMTP id 52630153AF for ; Thu, 13 May 1999 14:43:55 -0700 (PDT) (envelope-from jesus.monroy@usa.net) Received: (qmail 23196 invoked from network); 13 May 1999 21:43:48 -0000 Received: from nwcst067.netaddress.usa.net (204.68.24.67) by outbound.netaddress.usa.net with SMTP; 13 May 1999 21:43:48 -0000 Received: (qmail 28906 invoked by uid 60001); 13 May 1999 21:43:47 -0000 Message-ID: <19990513214347.28905.qmail@nwcst067.netaddress.usa.net> Received: from 204.68.24.67 by nwcst067 via web-mailer(M3.0.0.118) on Thu May 13 21:43:47 GMT 1999 Date: 13 May 99 14:43:47 PDT From: Jesus Monroy To: freebsd-small@freebsd.org Subject: BUDS Coming to you soon. X-Mailer: USANET web-mailer (M3.0.0.118) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable Sender: owner-freebsd-small@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Sorry this posting should have also been sent to freebsd-small. Jessem. ---------------------------------------------------- BUDS Coming to you soon. BUDS (BSD Unix Distributed Simple-ly) 1999-05-13 The Digital Marshalls[4] are proud to annouce the the coming of a new shared resoure for the FreeBSD development community. = BUDS, BSD Unix Distributed Simple-ly, is "general purpose" cluster system= for FreeBSD. The system uses a PC/workstation design for parallelized tas= king = and distributed computing experiments. Details for BUDS are at: http://www.mozie.com/projects/buds/index.html As more information becomes available it will be announced. = In the mean time we hope that the development community will = consider the following topics for this system. o........ Deep Recursion Testing[1] o........ Permuntation Compilation of the GENERIC Kernel[2] o........ Custom Packaging of FreeBSD[3] o........ Individual Experimenting[4] Donations for this project were provided by the Digital Marshalls, DVBS (www.videotechnology.com) and Tom Sailers of Editor of = The Cheap Sheet (http://www.thesoftroute.com/humor.htm). --- [1] Deep Recursion Testing Recursive testing of known bugs and pasts bugs to test for their possible reintroduction in to the kernel tree. [2] Permuntation Compilation of the GENERIC Kernel Currently, the make for the kernel has bugs which do not allow certain parts of it to be compiled cleans. For instance, commenting out the controller 'pci0' and trying to build the kernel will provide many errors. The idea would be to compile all permutations of the GENERIC kernel so that these bugs/errors would be elminated. [3] Custom Packaging of FreeBSD The thought is to be able to provide users with custom kernel with the exact needs according to their hardware and software specifications. This could possibly be part of a commerial = project that would charge end-users a minial fee, of which a percentage would go to the FreeBSD Project. = [4] Individual Experimenting This means that any individual part of the FreeBSD community could use this project for whatever they wanted. [5] The Digital Marshalls are: Terje Oseberg, programmer extraordinare from SRI Jonathan Walters, gopher and head pipe cleaner Jesus Monroy, hack and annoying FreeBSD advocate --- IN that context, it is the BSD that should be considered, not the prefix. http://minnie.cs.adfa.oz.au/cgi-bin/newsread?34858 ____________________________________________________________________ Get free e-mail and a permanent address at http://www.netaddress.com/?N=3D= 1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-small" in the body of the message From owner-freebsd-small Fri May 14 10:58:28 1999 Delivered-To: freebsd-small@freebsd.org Received: from dfw-ix2.ix.netcom.com (dfw-ix2.ix.netcom.com [206.214.98.2]) by hub.freebsd.org (Postfix) with ESMTP id C2C1B14D08 for ; Fri, 14 May 1999 10:58:26 -0700 (PDT) (envelope-from sverzunov@netscaler.com) Received: (from smap@localhost) by dfw-ix2.ix.netcom.com (8.8.4/8.8.4) id MAA10297 for ; Fri, 14 May 1999 12:58:21 -0500 (CDT) Received: from sji-ca1-248.ix.netcom.com(209.109.232.248) by dfw-ix2.ix.netcom.com via smap (V1.3) id rma010249; Fri May 14 12:57:52 1999 Message-ID: <373C63AD.39D99A7A@netscaler.com> Date: Fri, 14 May 1999 10:55:58 -0700 From: Sergey Verzunov Reply-To: sverzunov@netscaler.com Organization: NetScaler Inc. X-Mailer: Mozilla 4.06 [en] (Win95; I) MIME-Version: 1.0 To: freebsd-small@freebsd.org Subject: Partial kernel core dump Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-small@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi. Is there any method of getting partial kernel core dump, say trace only? Thanks a lot. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-small" in the body of the message From owner-freebsd-small Fri May 14 11:57:54 1999 Delivered-To: freebsd-small@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (Postfix) with ESMTP id 81FD014E18 for ; Fri, 14 May 1999 11:57:52 -0700 (PDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.9.3/8.9.3) with ESMTP id MAA46804; Fri, 14 May 1999 12:56:52 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id MAA35317; Fri, 14 May 1999 12:57:43 -0600 (MDT) Message-Id: <199905141857.MAA35317@harmony.village.org> To: sverzunov@netscaler.com Subject: Re: Partial kernel core dump Cc: freebsd-small@FreeBSD.ORG In-reply-to: Your message of "Fri, 14 May 1999 10:55:58 PDT." <373C63AD.39D99A7A@netscaler.com> References: <373C63AD.39D99A7A@netscaler.com> Date: Fri, 14 May 1999 12:57:43 -0600 From: Warner Losh Sender: owner-freebsd-small@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message <373C63AD.39D99A7A@netscaler.com> Sergey Verzunov writes: : Is there any method of getting partial kernel core dump, say trace only? options DDB Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-small" in the body of the message From owner-freebsd-small Fri May 14 18: 2:24 1999 Delivered-To: freebsd-small@freebsd.org Received: from xena.trademart.com (unknown [206.171.92.194]) by hub.freebsd.org (Postfix) with ESMTP id 4F59D14D0C for ; Fri, 14 May 1999 18:02:16 -0700 (PDT) (envelope-from samkee@samkeetrading.co.kr) Received: from [210.219.130.224] by xena.trademart.com (post.office MTA v2.0 0813 ID# 0-13925) with SMTP id ADT244 for ; Fri, 14 May 1999 19:04:53 -0700 Message-ID: <199805151001520300.0035DC5D@trademart.com> X-Mailer: Calypso Version 2.40.41.08 Date: Fri, 15 May 1998 10:01:52 +0900 Reply-To: samkee@samkeetrading.co.kr From: "samkee" To: freebsd-small@FreeBSD.ORG Subject: Log Cap Sender: owner-freebsd-small@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG SAMKEE TRADING CO., LTD. EXPORTOR & IMPORTER MANUFACTURER DEAR SIRS, WE ARE THE MANUFACTURER AND EXPORTER OF INNER SEAL (WAD/MEMBRANE) AND LUG CAP FOR COFFEE BOTTLE AND ETC. FOR 20 YEARS HERE IN KOREA. WE ARE EAGER TO TRANSACT WITH YOU AND WHEN IT IS SUCESSFUL, WE WILL DO OUR BEST IN EVERY PROBLEM SUCH AS PRICE, DELIVERY AND QUALITY. WHEN YOU ARE INTERESTED IN OUR PRODUCTS, PLEASE VISIT OUR HOME PAGE. IF YOU HAVE ANY KIND OF SUGGESTION THAN PLEASE CONTACT ME WITHOUT ANY HESITE AS FOLLOWING ADDRESS. HOMEPAGE: HTTP://WWW.SAMKEETRADING.CO.KR PHONE: 82-2-408-3933 FAX: 82-2-404-8199 MAIL: SAMKEE@SAMKEETRADING.CO.KR 70-13, MOONJUNG-DONG, SONGPA-KU SEOUL, KOREA Faithfully yours, H,K,KIM, PRESIDENT To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-small" in the body of the message From owner-freebsd-small Fri May 14 20:53:18 1999 Delivered-To: freebsd-small@freebsd.org Received: from members.unlimited.net (members.unlimited.net [209.186.200.8]) by hub.freebsd.org (Postfix) with ESMTP id 874E314BCE for ; Fri, 14 May 1999 20:53:16 -0700 (PDT) (envelope-from norami@unlimited.net) Received: from unlimited.net (ts2-95.unlimited.net [209.186.200.95]) by members.unlimited.net (8.8.7/8.8.5) with ESMTP id TAA22782; Fri, 14 May 1999 19:49:18 -0700 Message-ID: <373CF120.E6FC9938@unlimited.net> Date: Fri, 14 May 1999 20:59:28 -0700 From: John Oram Reply-To: norami@unlimited.net Organization: norAmi X-Mailer: Mozilla 4.5 [en] (Win95; U) X-Accept-Language: en MIME-Version: 1.0 To: samkee@samkeetrading.co.kr Cc: freebsd-small@FreeBSD.ORG Subject: Re: Log Cap References: <199805151001520300.0035DC5D@trademart.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-small@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG SAY WHAT!? John O samkee wrote: > > SAMKEE TRADING CO., LTD. > > EXPORTOR & IMPORTER > MANUFACTURER > > DEAR SIRS, > > WE ARE THE MANUFACTURER AND EXPORTER OF INNER SEAL > (WAD/MEMBRANE) AND LUG CAP FOR COFFEE BOTTLE AND ETC. > FOR 20 YEARS HERE IN KOREA. WE ARE EAGER TO TRANSACT > WITH YOU AND WHEN IT IS SUCESSFUL, WE WILL DO OUR > BEST IN EVERY PROBLEM SUCH AS PRICE, DELIVERY AND > QUALITY. WHEN YOU ARE INTERESTED IN OUR PRODUCTS, > PLEASE VISIT OUR HOME PAGE. > > IF YOU HAVE ANY KIND OF SUGGESTION THAN PLEASE CONTACT > ME WITHOUT ANY HESITE AS FOLLOWING ADDRESS. > > HOMEPAGE: HTTP://WWW.SAMKEETRADING.CO.KR > PHONE: 82-2-408-3933 > FAX: 82-2-404-8199 > MAIL: SAMKEE@SAMKEETRADING.CO.KR > > 70-13, MOONJUNG-DONG, SONGPA-KU > SEOUL, KOREA > > Faithfully yours, > > H,K,KIM, PRESIDENT > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-small" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-small" in the body of the message From owner-freebsd-small Mon May 17 11:26:52 1999 Delivered-To: freebsd-small@freebsd.org Received: from stmpy.cais.net (stmpy.cais.net [199.0.216.101]) by hub.freebsd.org (Postfix) with ESMTP id 7FFE615109 for ; Mon, 17 May 1999 11:26:38 -0700 (PDT) (envelope-from bparker@dc.net) Received: from sandrab ([207.226.85.183]) by stmpy.cais.net (8.8.8/8.8.8) with SMTP id OAA09038 for ; Mon, 17 May 1999 14:40:01 -0400 (EDT) From: "Bill Parker" To: Subject: Adding SCSI support in PicoBSD Date: Mon, 17 May 1999 14:26:04 -0400 Message-ID: <000101bea092$b8e57f30$0100a8c0@sandrab> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook 8.5, Build 4.71.2173.0 Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V4.72.2106.4 Sender: owner-freebsd-small@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello: I recently installed PicoBSD (Network) to 1.44 MB floppy disk using rawrite from DOS and it successfully created a boot disk. I booted the new PicoBSD floppy disk, it booted the system just fine, and eventually presented a login prompt; I logged in just fine. Everything is nice except that PicoBSD kernel does not see my Adaptec AHA-2940UW adapter or SCSI hard disks. This is obviously not compiled in the kernel. Can I load SCSI support from a standard module? Also, I tried to mount the PicoBSD boot floppy disk from Linux and no luck; I tried minix, UFS, sysv filesystems and several others but it would not mount. What filesystem is the boot floppy using? I have no *BSD experience and am probably doing something stupid. I looked at documentation on the PicoBSD website and do not see anything explicitly about these matters. Any help or comments will be appreciated. Regards, Bill Parker, The HURD is a free GNU operating system. 'Hurd' stands for `Hird of Unix-Replacing Daemons'. And, then, `Hird' stands for `Hurd of Interfaces Representing Depth'. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-small" in the body of the message From owner-freebsd-small Mon May 17 22:30:57 1999 Delivered-To: freebsd-small@freebsd.org Received: from peach.ocn.ne.jp (peach.ocn.ne.jp [210.145.254.87]) by hub.freebsd.org (Postfix) with ESMTP id F215814D9A for ; Mon, 17 May 1999 22:30:55 -0700 (PDT) (envelope-from dcs@newsguy.com) Received: from newsguy.com by peach.ocn.ne.jp (8.9.1a/OCN) id OAA21983; Tue, 18 May 1999 14:30:49 +0900 (JST) Message-ID: <3740F3F7.A3A2A005@newsguy.com> Date: Tue, 18 May 1999 14:00:39 +0900 From: "Daniel C. Sobral" X-Mailer: Mozilla 4.51 [en] (Win98; I) X-Accept-Language: pt-BR,ja MIME-Version: 1.0 To: Bill Parker Cc: freebsd-small@FreeBSD.ORG Subject: Re: Adding SCSI support in PicoBSD References: <000101bea092$b8e57f30$0100a8c0@sandrab> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Transfer-Encoding: 7bit Sender: owner-freebsd-small@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Bill Parker wrote: > > Everything is nice except that PicoBSD kernel does not see my Adaptec > AHA-2940UW adapter or SCSI hard disks. This is obviously not compiled in > the kernel. Can I load SCSI support from a standard module? At the present time, no. You need to build the kernel with support for it. > Also, I tried to mount the PicoBSD boot floppy disk from Linux and no luck; > I tried minix, UFS, sysv filesystems and several others but it would not > mount. What filesystem is the boot floppy using? I have no *BSD experience > and am probably doing something stupid. I don't know what the problem is. The floppy is ufs. OTOH, I was not aware Linux supported ufs/ffs. -- Daniel C. Sobral (8-DCS) dcs@newsguy.com dcs@freebsd.org "Proof of Trotsky's farsightedness is that _none_ of his predictions have come true yet." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-small" in the body of the message From owner-freebsd-small Tue May 18 4:36:58 1999 Delivered-To: freebsd-small@freebsd.org Received: from internet.kb.be (kb.be [164.35.153.50]) by hub.freebsd.org (Postfix) with SMTP id 9F8AF15803; Tue, 18 May 1999 04:36:44 -0700 (PDT) (envelope-from Danny.Backx@kb.be) Received: id NAA22316; Tue, 18 May 1999 13:36:02 +0100 Received: by gateway ??? Received: by gateway id NAA04823; Tue, 18 May 1999 13:36:09 +0200 (METDST) Message-ID: <37414F2C.1FBC@kb.be> Date: Tue, 18 May 1999 13:29:48 +0200 From: Danny Backx Reply-To: Danny.Backx@kb.be Organization: KBC Bank, Brussel X-Mailer: Mozilla 2.02 (OS/2; I) MIME-Version: 1.0 To: freebsd-small@freebsd.org, abial@freebsd.org Cc: Danny.Backx@kb.be Subject: PicoBSD not on Freshmeat.net ? Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-small@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, I stumbled across the mini-distrubutions category on freshmeat (http://freshmeat.net/appindex/console/mini-distributions.html). It contains lots of stuff similar to PicoBSD to I figured I'd let you know - it would be a good idea to announce picobsd to freshmeat. Danny -- (FreeBSD and Linux work; WinNT and Win9* just crash all the time) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-small" in the body of the message From owner-freebsd-small Wed May 19 2: 1:42 1999 Delivered-To: freebsd-small@freebsd.org Received: from fleming.cs.strath.ac.uk (fleming.cs.strath.ac.uk [130.159.196.126]) by hub.freebsd.org (Postfix) with ESMTP id 2BFE714D7C for ; Wed, 19 May 1999 02:01:37 -0700 (PDT) (envelope-from roger@cs.strath.ac.uk) Received: from cs.strath.ac.uk (scary.dmem.strath.ac.uk [130.159.202.5]) by fleming.cs.strath.ac.uk (8.8.8/8.8.8) with ESMTP id KAA03108 Wed, 19 May 1999 10:01:35 +0100 (BST) Message-ID: <37427E16.D740F0C0@cs.strath.ac.uk> Date: Wed, 19 May 1999 10:02:14 +0100 From: Roger Hardiman Organization: Strathclyde University X-Mailer: Mozilla 4.04 [en] (X11; I; FreeBSD 3.2-STABLE i386) MIME-Version: 1.0 To: freebsd-small@freebsd.org Subject: PicoBSD on 3.2-beta machine Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-small@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi there, i'm tryung to build the 'net' picoBSD floppy. It fails int he crunch because the pam, radius, tacplus and md libraries are not included in the cruch.conf file. I added these, and it got a bit further, but it still fails. Any ideas? Bye Roger -- Roger Hardiman Strathclyde Uni Telepresence Research Group, Glasgow, Scotland. http://telepresence.dmem.strath.ac.uk 0141 548 2897 roger@cs.strath.ac.uk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-small" in the body of the message From owner-freebsd-small Wed May 19 5:30:15 1999 Delivered-To: freebsd-small@freebsd.org Received: from fleming.cs.strath.ac.uk (fleming.cs.strath.ac.uk [130.159.196.126]) by hub.freebsd.org (Postfix) with ESMTP id 1CFC015520 for ; Wed, 19 May 1999 05:30:08 -0700 (PDT) (envelope-from roger@cs.strath.ac.uk) Received: from muir-10 (roger@muir-10.cs.strath.ac.uk [130.159.148.10]) by fleming.cs.strath.ac.uk (8.8.8/8.8.8) with SMTP id NAA07915 Wed, 19 May 1999 13:30:03 +0100 (BST) Message-ID: <3742AECC.FF6@cs.strath.ac.uk> Date: Wed, 19 May 1999 13:30:04 +0100 From: Roger Hardiman Organization: University of Strathclyde X-Mailer: Mozilla 3.04Gold (X11; I; OSF1 V4.0 alpha) MIME-Version: 1.0 To: small@freebsd.org Subject: problem with picobsd 'net' disk on 3.2-release Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-small@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, Using the new FreeBSD 3.2-RELEASE I tried to make the 'net' picoBSD code. It did not build because it does not link in the radius library So, I had to add libs -lradius to the end of the following file /usr/src/release/picobsd/net/crunch1/crunch.conf And then it all worked, except the 'dd' command did not work on my Libretto with the PCMCIA Floppy Disk. It reported an error on DMA 0. Bye Roger -- Roger Hardiman | Telepresence Research Group roger@cs.strath.ac.uk | DMEM, University of Strathclyde tel: 0141 548 2897 | Glasgow, Scotland, G1 1XJ, UK fax: 0141 552 0557 | http://telepresence.dmem.strath.ac.uk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-small" in the body of the message From owner-freebsd-small Thu May 20 11:42:18 1999 Delivered-To: freebsd-small@freebsd.org Received: from fleming.cs.strath.ac.uk (fleming.cs.strath.ac.uk [130.159.196.126]) by hub.freebsd.org (Postfix) with ESMTP id 291D614CC0; Thu, 20 May 1999 11:42:08 -0700 (PDT) (envelope-from roger@cs.strath.ac.uk) Received: from muir-10 (roger@muir-10.cs.strath.ac.uk [130.159.148.10]) by fleming.cs.strath.ac.uk (8.8.8/8.8.8) with SMTP id TAA06980 Thu, 20 May 1999 19:42:04 +0100 (BST) Message-ID: <3744577E.167E@cs.strath.ac.uk> Date: Thu, 20 May 1999 19:42:06 +0100 From: Roger Hardiman Organization: University of Strathclyde X-Mailer: Mozilla 3.04Gold (X11; I; OSF1 V4.0 alpha) MIME-Version: 1.0 To: hackers@freebsd.org Cc: small@freebsd.org Subject: error 6: panic : cannot mount root(2) with PicoBSD current Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-small@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Help I'm trying to get the PicoBSD code on -current compiling again as it has got a bit stale. But I get a kernel Panic. I brought the kernel config files up to date. Booting with the 'dial' disk (build without ssh) panics with error 6: panic: cannot mount root (2) This comes just ater the sio and ie0 probes. I wonder if it has anything to do with the old entry config kernel root on wd0 which the new config program ignores. Any suggestions? Bye Roger To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-small" in the body of the message From owner-freebsd-small Thu May 20 14:18:54 1999 Delivered-To: freebsd-small@freebsd.org Received: from cimlogic.com.au (cimlog.lnk.telstra.net [139.130.51.31]) by hub.freebsd.org (Postfix) with ESMTP id CE7FF1587B; Thu, 20 May 1999 14:18:45 -0700 (PDT) (envelope-from jb@cimlogic.com.au) Received: (from jb@localhost) by cimlogic.com.au (8.9.1/8.9.1) id HAA05350; Fri, 21 May 1999 07:33:02 +1000 (EST) (envelope-from jb) From: John Birrell Message-Id: <199905202133.HAA05350@cimlogic.com.au> Subject: Re: error 6: panic : cannot mount root(2) with PicoBSD current In-Reply-To: <3744577E.167E@cs.strath.ac.uk> from Roger Hardiman at "May 20, 1999 7:42: 6 pm" To: roger@cs.strath.ac.uk (Roger Hardiman) Date: Fri, 21 May 1999 07:33:02 +1000 (EST) Cc: hackers@FreeBSD.ORG, small@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL43 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-small@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Roger Hardiman wrote: > Help > > I'm trying to get the PicoBSD code on -current compiling again > as it has got a bit stale. But I get a kernel Panic. > > > I brought the kernel config files up to date. Booting > with the 'dial' disk (build without ssh) panics with > > error 6: panic: cannot mount root (2) > > This comes just ater the sio and ie0 probes. > > I wonder if it has anything to do with the old entry > config kernel root on wd0 > > which the new config program ignores. In a kernel with only mfs, MFS_ROOT means _no_ rootdev. This breakage was caused by phk when he changed src/sys/kern/vfs_conf.c for his "jail" implementation. The problem is that with MFS_ROOT, the cpu_rootconf() function in src/i386/i386/autoconf.c correctly chooses mfs, but doesn't set the global rootdev variable that phk's code requires. I've reported this problem to current (got no response) and to phk (with a patch which he responded to with "what am I missing?"). Here is the patch I sent (cut'n'pasted from my copy of the email. so tabs are smashed). NB: I have an axe too. Mine is an Oz version though, so if I turn it over, it works like a hammer. I'll use it on Sunday (23rd) and commit this patch if nobody fixes the MFS_ROOT problem before then. Index: vfs_conf.c =================================================================== RCS file: /home/ncvs/src/sys/kern/vfs_conf.c,v retrieving revision 1.26 diff -c -r1.26 vfs_conf.c *** vfs_conf.c 1998/09/14 19:56:40 1.26 --- vfs_conf.c 1999/05/11 09:53:33 *************** *** 52,57 **** --- 52,58 ---- * on SMP reentrancy */ #include "opt_bootp.h" + #include "opt_mfs.h" #include /* dev_t (types.h)*/ #include *************** *** 136,141 **** --- 137,145 ---- /* * Attempt the mount */ + #ifdef MFS_ROOT + err = VFS_MOUNT(mp, NULL, NULL, NULL, p); + #else err = ENXIO; orootdev = rootdev; if (rootdevs[0] == NODEV) *************** *** 154,159 **** --- 158,164 ---- if (err != ENXIO) break; } + #endif if (err) { /* * XXX should ask the user for the name in some cases. -- John Birrell - jb@cimlogic.com.au; jb@freebsd.org http://www.cimlogic.com.au/ CIMlogic Pty Ltd, GPO Box 117A, Melbourne Vic 3001, Australia +61 418 353 137 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-small" in the body of the message From owner-freebsd-small Fri May 21 1:40:28 1999 Delivered-To: freebsd-small@freebsd.org Received: from spooky.eis.net.au (spooky.eis.net.au [203.12.171.2]) by hub.freebsd.org (Postfix) with ESMTP id 1248B1597E for ; Fri, 21 May 1999 01:39:15 -0700 (PDT) (envelope-from ernie@spooky.eis.net.au) Received: (from ernie@localhost) by spooky.eis.net.au (8.9.2/8.8.3) id SAA20783 for freebsd-small@freebsd.org; Fri, 21 May 1999 18:39:03 +1000 (EST) From: Ernie Elu Message-Id: <199905210839.SAA20783@spooky.eis.net.au> Subject: Diskconchip To: freebsd-small@freebsd.org Date: Fri, 21 May 1999 18:39:02 +1000 (EST) X-Mailer: ELM [version 2.4ME+ PL40 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-small@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I have an Advantech 6154 CPU card with a 40MB M-Systems DiskOnChip installed. I built a FreeBSD 3.1 kernel on an attached IDE drive that had the fla0 device drive installed and it recognised the DiskOnchip. My question is how do I get a minmal FreeBSD install on to the DiskOnChip. When I try to do it from /stand/sysinstall it just overwites wd0 even though I select /dev/fla0 and disklabel it etc. And of course I can't boot sysinstall off a floppy as it does not have the fla device driver. Any ideas? - Ernie. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-small" in the body of the message From owner-freebsd-small Mon May 24 9: 8:11 1999 Delivered-To: freebsd-small@freebsd.org Received: from mail.networld.com (redhat.networld.com [207.247.96.3]) by hub.freebsd.org (Postfix) with ESMTP id 7BD3115441 for ; Mon, 24 May 1999 09:07:59 -0700 (PDT) (envelope-from kris-bsd@networld.com) Received: from chris ([208.235.192.201]) by mail.networld.com (8.9.3/8.9.1) with SMTP id JAA00011 for ; Mon, 24 May 1999 09:03:31 -0600 From: "Kris Lander" To: Subject: Child Failed? Date: Mon, 24 May 1999 10:06:51 -0600 Message-ID: <000001bea5ff$6f8ce220$c9c0ebd0@chris.networld1.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook 8.5, Build 4.71.2173.0 Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3110.3 Sender: owner-freebsd-small@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I just downloaded PicoBSD, and I'm having a problem. I'm pretty new to UNIX, and very new to FreeBSD, so if this is just an operator error, please excuse me. I've run through the dialup script to get things my ppp properly configured. Everything seems to work okay, but then when I try to invoke the command 'ppp -background dialup' I get an error message back that says "child failed (errdead)". I don't know what could be causing this, I believe that everything is set up correctly. My modem is resides on cuaa2 (Com3 in DOS or cua2 in Linux), and it works fine there, so I'm assuming that is not the problem. If you can shed any light on my problem, I'd appreciate it. Thanks, Kris Lander To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-small" in the body of the message From owner-freebsd-small Mon May 24 10:16:33 1999 Delivered-To: freebsd-small@freebsd.org Received: from vera.dpo.uab.edu (Vera.dpo.uab.edu [138.26.1.12]) by hub.freebsd.org (Postfix) with ESMTP id 4080F14F88 for ; Mon, 24 May 1999 10:16:22 -0700 (PDT) (envelope-from drake@cis.uab.edu) Received: from cis.uab.edu (138.26.65.34) by vera.dpo.uab.edu (LSMTP for Windows NT v1.1a) with SMTP id <0.3BD70570@vera.dpo.uab.edu>; Mon, 24 May 1999 12:16:21 -0500 Received: from cis.uab.edu by cis.uab.edu (SMI-8.6/SMI-SVR4) id MAA00675; Mon, 24 May 1999 12:16:20 -0500 Message-ID: <374989FC.9EB3EE88@cis.uab.edu> Date: Mon, 24 May 1999 12:18:52 -0500 From: John Drake Organization: UAB X-Mailer: Mozilla 4.5 [en] (WinNT; I) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-small@freebsd.org Subject: How to subscribe Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-small@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG How do you subscribe to this mailing list? Also I have a question about using PicoBSD. If I create a file from inside PicoBSD it seems to still be there when I logoff and log back on. But if I restart the computer it vanishes. How do I create new files that will be stored on disk? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-small" in the body of the message From owner-freebsd-small Mon May 24 11:30: 6 1999 Delivered-To: freebsd-small@freebsd.org Received: from smtp05.wxs.nl (smtp05.wxs.nl [195.121.6.57]) by hub.freebsd.org (Postfix) with ESMTP id 178E214BF8 for ; Mon, 24 May 1999 11:30:01 -0700 (PDT) (envelope-from asmodai@wxs.nl) Received: from daemon.ninth-circle.org ([195.121.196.168]) by smtp05.wxs.nl (Netscape Messaging Server 3.61) with ESMTP id AAAB0E; Mon, 24 May 1999 20:29:56 +0200 Received: from daemon.ninth-circle.org (abaddon@daemon [192.168.0.1]) by daemon.ninth-circle.org (8.9.3/8.9.3) with ESMTP id UAA38572; Mon, 24 May 1999 20:30:16 +0200 (CEST) (envelope-from asmodai@wxs.nl) Message-ID: X-Mailer: XFMail 1.3 [p0] on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <374989FC.9EB3EE88@cis.uab.edu> Date: Mon, 24 May 1999 20:30:16 +0200 (CEST) Organization: Ninth Circle Enterprises From: Jeroen Ruigrok/Asmodai To: John Drake Subject: RE: How to subscribe Cc: freebsd-small@FreeBSD.ORG Sender: owner-freebsd-small@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On 24-May-99 John Drake wrote: > How do you subscribe to this mailing list? > > Also I have a question about using PicoBSD. If > I create a file from inside PicoBSD it seems to > still be there when I logoff and log back on. But > if I restart the computer it vanishes. How do I > create new files that will be stored on disk? That's because ye are using a RAM-disk (MFS)... I can remember that this question has been asked on this list before, try to search on the website in the archives for this list... > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-small" in the body of the message Hey, try to use this in the other order to subscribe ;) --- Jeroen Ruigrok van der Werven asmodai(at)wxs.nl The FreeBSD Programmer's Documentation Project Network/Security Specialist *BSD: Accept no limitations... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-small" in the body of the message From owner-freebsd-small Mon May 24 17:30: 7 1999 Delivered-To: freebsd-small@freebsd.org Received: from spooky.eis.net.au (spooky.eis.net.au [203.12.171.2]) by hub.freebsd.org (Postfix) with ESMTP id 179A014EC9 for ; Mon, 24 May 1999 17:29:56 -0700 (PDT) (envelope-from ernie@spooky.eis.net.au) Received: (from ernie@localhost) by spooky.eis.net.au (8.9.2/8.8.3) id KAA48377 for freebsd-small@freebsd.org; Tue, 25 May 1999 10:29:53 +1000 (EST) From: Ernie Elu Message-Id: <199905250029.KAA48377@spooky.eis.net.au> Subject: fla driver To: freebsd-small@freebsd.org Date: Tue, 25 May 1999 10:29:52 +1000 (EST) X-Mailer: ELM [version 2.4ME+ PL40 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-small@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Has anyone made a sysinstall floppy with the DiskOnChip fla driver installed so I can get FreeBSD on to it? - Ernie. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-small" in the body of the message From owner-freebsd-small Tue May 25 10:56:46 1999 Delivered-To: freebsd-small@freebsd.org Received: from peach.ocn.ne.jp (peach.ocn.ne.jp [210.145.254.87]) by hub.freebsd.org (Postfix) with ESMTP id 8BBA51572E for ; Tue, 25 May 1999 10:56:42 -0700 (PDT) (envelope-from dcs@newsguy.com) Received: from newsguy.com by peach.ocn.ne.jp (8.9.1a/OCN) id CAA19520; Wed, 26 May 1999 02:56:35 +0900 (JST) Message-ID: <374AE3B8.8C282797@newsguy.com> Date: Wed, 26 May 1999 02:54:00 +0900 From: "Daniel C. Sobral" X-Mailer: Mozilla 4.6 [en] (Win98; I) X-Accept-Language: pt-BR,ja MIME-Version: 1.0 To: Jeroen Ruigrok/Asmodai Cc: John Drake , freebsd-small@FreeBSD.ORG Subject: Re: How to subscribe References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Transfer-Encoding: 7bit Sender: owner-freebsd-small@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Jeroen Ruigrok/Asmodai wrote: > > On 24-May-99 John Drake wrote: > > How do you subscribe to this mailing list? > > > > Also I have a question about using PicoBSD. If > > I create a file from inside PicoBSD it seems to > > still be there when I logoff and log back on. But > > if I restart the computer it vanishes. How do I > > create new files that will be stored on disk? > > That's because ye are using a RAM-disk (MFS)... > > I can remember that this question has been asked on this list before, try > to search on the website in the archives for this list... That would be /stand/update, I guess. Has nothing to do with recent (non) dates with girlfriends, though that's why I'll never forget it. :-) -- Daniel C. Sobral (8-DCS) dcs@newsguy.com dcs@freebsd.org "If at first you don't succeed, skydiving is not for you." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-small" in the body of the message From owner-freebsd-small Tue May 25 11:21:32 1999 Delivered-To: freebsd-small@freebsd.org Received: from mark.kingsu.ab.ca (mark.kingsu.ab.ca [199.185.113.37]) by hub.freebsd.org (Postfix) with ESMTP id 5932714CDE for ; Tue, 25 May 1999 11:21:20 -0700 (PDT) (envelope-from bwood@KingsU.ab.ca) Received: from KingsU.ab.ca (kingsnet.kingsu.ab.ca [199.185.113.33]) by mark.kingsu.ab.ca (8.9.3/8.9.2) with ESMTP id MAA78107 for ; Tue, 25 May 1999 12:21:17 -0600 (MDT) (envelope-from bwood@KingsU.ab.ca) Message-Id: <199905251821.MAA78107@mark.kingsu.ab.ca> Received: from KINGSNET/SpoolDir by KingsU.ab.ca (Mercury 1.44); 25 May 99 12:21:26 -0700 Received: from SpoolDir by KINGSNET (Mercury 1.44); 25 May 99 12:21:04 -0700 From: "Broderick Wood" Organization: The King's University College To: freebsd-small@FreeBSD.ORG Date: Tue, 25 May 1999 12:20:59 -0600 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: Newbie To PicoBSD X-mailer: Pegasus Mail for Win32 (v3.10) Sender: owner-freebsd-small@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I am just starting with PicoBSD, but have a full FreeBSD (STABLE) running successfully for quite some time. Any hints, tips on playing with this one? Looking for 2 main goals... Firewall and Traffic Monitoring... Possibly as a software configurable Router (enable/disable students access to Internet, etc...) Got the NET version of the image and am playing with that now. Hardware has 2 NICs and a modem (thinking of backup emergency type PPP access for me to get to my Intranet). Hardware is all detected properly. Now what? I've gotten spoiled by all the automatic scripts and interfaces in the full freeBSD package ... :-) --------------------------- -BMW- Don't just stand there! Pray something! (bwood@kingsu.ab.ca) Broderick Wood, Director of Information Technology Services The King's University College 9125 - 50 Street Edmonton, Alberta T6B 2H3 (780) 465-8315 (780) 465-3534 (FAX) ><> <>< To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-small" in the body of the message From owner-freebsd-small Tue May 25 11:30: 0 1999 Delivered-To: freebsd-small@freebsd.org Received: from mail.networld.com (redhat.networld.com [207.247.96.3]) by hub.freebsd.org (Postfix) with ESMTP id 7E3F914C15 for ; Tue, 25 May 1999 11:29:40 -0700 (PDT) (envelope-from kris-bsd@networld.com) Received: from chris ([208.235.192.201]) by mail.networld.com (8.9.3/8.9.1) with SMTP id LAA19173 for ; Tue, 25 May 1999 11:24:59 -0600 From: "Kris Lander" To: Subject: Child failed Date: Tue, 25 May 1999 12:28:30 -0600 Message-ID: <000601bea6dc$63785900$c9c0ebd0@chris.networld1.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook 8.5, Build 4.71.2173.0 Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3110.3 Sender: owner-freebsd-small@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I sent a message to the list yesterday about an error message I got when trying to use PicoBSD to dialup to my ISP. I realized when I wrote the message I probably didn't provide enough information. So, here we go again. Then I execute the dialup script it goes all the way to the end and asks me if I would like to test the connection. After I select yes, I get the following error: Working in background mode Using interface: tun0 Child Failed (errdead). I also get this same error message when I invoke the command 'ppp -disconnect dialup'. I've checked my /etc/ppp/ppp.conf file, and it looks fine. I'm trying to access my modem at /dev/cuaa2. I read in the supported hardware file that COM3 and COM4 are disabled by default, and that they need to be enabled in UserConfig. I think that may be my problem, but I can't seem to find UserConfig. Any advice you can give me would be appreciated. Thanks, Kris Lander To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-small" in the body of the message From owner-freebsd-small Tue May 25 15:28:13 1999 Delivered-To: freebsd-small@freebsd.org Received: from chopin.seattleu.edu (chopin.seattleu.edu [206.81.198.70]) by hub.freebsd.org (Postfix) with ESMTP id 0E80E14E56 for ; Tue, 25 May 1999 15:28:10 -0700 (PDT) (envelope-from hodeleri@seattleu.edu) Received: from seattleu.edu ([172.17.41.90]) by chopin.seattleu.edu (8.8.5/8.8.5) with ESMTP id PAA24491; Tue, 25 May 1999 15:27:33 -0700 (PDT) Message-ID: <374B23BF.E4949A32@seattleu.edu> Date: Tue, 25 May 1999 15:27:11 -0700 From: Eric Hodel Organization: Dis X-Mailer: Mozilla 4.51 [en] (X11; U; FreeBSD 4.0-CURRENT i386) X-Accept-Language: en MIME-Version: 1.0 To: Kris Lander Cc: freebsd-small@FreeBSD.ORG Subject: Re: Child failed References: <000601bea6dc$63785900$c9c0ebd0@chris.networld1.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-small@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Kris Lander wrote: > I also get this same error message when I invoke the command > 'ppp -disconnect dialup'. I've checked my /etc/ppp/ppp.conf file, and it > looks fine. I'm trying to access my modem at /dev/cuaa2. I read in the > supported hardware file that COM3 and COM4 are disabled by default, and that > they need to be enabled in UserConfig. I think that may be my problem, but I > can't seem to find UserConfig. type -c at the boot: prompt (right after bios finishes up) also check your kernel config file for the sio2 device. Alternately, you can switch around the sio0/1 io and irq values to match the standard COM3 settings. -- Eric Hodel hodeleri@seattleu.edu "If you understand what you're doing, you're not learning anything." -- A. L. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-small" in the body of the message From owner-freebsd-small Wed May 26 12:21:53 1999 Delivered-To: freebsd-small@freebsd.org Received: from buzz.slic.com (buzz.slic.com [206.25.233.41]) by hub.freebsd.org (Postfix) with SMTP id DC48615711 for ; Wed, 26 May 1999 12:21:46 -0700 (PDT) (envelope-from wrongway@slic.com) Received: (qmail 20311 invoked by uid 0); 26 May 1999 19:21:45 -0000 Received: from sysctl.urban-a.net (HELO woodhull.sciny.net) (206.150.81.10) by buzz.slic.com with SMTP; 26 May 1999 19:21:45 -0000 From: Jonathan Towne Reply-To: wrongway@slic.com To: freebsd-small@freebsd.org Subject: Child failed and whatnot Date: Wed, 26 May 1999 15:14:25 -0500 X-Mailer: KMail [version 1.0.21] Content-Type: text/plain MIME-Version: 1.0 Message-Id: <99052615161004.60039@woodhull.sciny.net> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-small@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG afaik, picobsd has sio{1,2,3,4} enabled by default on most floppies, now, if indeed it wasn't enabled, you wouldn't get the message you do now, you'd get a "device not configured" message instead, the one you're currently experiencing, is most likely due to a misconfigured ppp config file. - Jonathan Towne To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-small" in the body of the message From owner-freebsd-small Fri May 28 21:24:44 1999 Delivered-To: freebsd-small@freebsd.org Received: from orbit.flnet.com (orbit.flnet.com [205.240.232.32]) by hub.freebsd.org (Postfix) with ESMTP id 5CEA5151B5 for ; Fri, 28 May 1999 21:24:35 -0700 (PDT) (envelope-from groovus@flnet.com) Received: from groovus (cable8-143.gte.net [24.96.37.143]) by orbit.flnet.com (8.8.5/8.8.4) with SMTP id AAA26729 for ; Sat, 29 May 1999 00:24:33 -0400 (EDT) Reply-To: From: "Tim Grzechowski" To: Subject: Date: Sat, 29 May 1999 00:22:44 -0400 Message-ID: <003d01bea98a$e6433de0$8f256018@groovus.gte.net> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook 8.5, Build 4.71.2173.0 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3155.0 Importance: Normal Sender: owner-freebsd-small@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG subscribe Tim Grzechowski To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-small" in the body of the message From owner-freebsd-small Sat May 29 4:42:30 1999 Delivered-To: freebsd-small@freebsd.org Received: from mail.sc.cninfo.net (unknown [202.98.99.140]) by hub.freebsd.org (Postfix) with ESMTP id D824015056 for ; Sat, 29 May 1999 04:42:25 -0700 (PDT) (envelope-from catrat@263.net) Received: from cat ([10.143.2.73]) by mail.sc.cninfo.net (Post.Office MTA v3.5.1 release 219 ID# 0-55725U50000L50000S0V35) with SMTP id net for ; Sat, 29 May 1999 19:44:15 +0800 Message-ID: <000801beab5a$ba403910$0200a8c0@cat> From: "Huang" To: Subject: help Date: Mon, 31 May 1999 19:42:48 +0800 Organization: MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0005_01BEAB9D.C2F67720" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2014.211 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2014.211 Sender: owner-freebsd-small@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0005_01BEAB9D.C2F67720 Content-Type: text/plain; charset="gb2312" Content-Transfer-Encoding: base64 aGVscA0K ------=_NextPart_000_0005_01BEAB9D.C2F67720 Content-Type: text/html; charset="gb2312" Content-Transfer-Encoding: base64 PCFET0NUWVBFIEhUTUwgUFVCTElDICItLy9XM0MvL0RURCBIVE1MIDQuMCBUcmFuc2l0aW9uYWwv L0VOIj4NCjxIVE1MPjxIRUFEPg0KPE1FVEEgY29udGVudD0idGV4dC9odG1sOyBjaGFyc2V0PWdi MjMxMiIgaHR0cC1lcXVpdj1Db250ZW50LVR5cGU+DQo8TUVUQSBjb250ZW50PSJNU0hUTUwgNS4w MC4yMDE0LjIxMCIgbmFtZT1HRU5FUkFUT1I+DQo8U1RZTEU+PC9TVFlMRT4NCjwvSEVBRD4NCjxC T0RZIGJnQ29sb3I9I2ZmZmZmZj4NCjxESVY+PEZPTlQgc2l6ZT0yPmhlbHA8L0ZPTlQ+PC9ESVY+ PC9CT0RZPjwvSFRNTD4NCg== ------=_NextPart_000_0005_01BEAB9D.C2F67720-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-small" in the body of the message From owner-freebsd-small Sat May 29 4:48:19 1999 Delivered-To: freebsd-small@freebsd.org Received: from mail.sc.cninfo.net (unknown [202.98.99.140]) by hub.freebsd.org (Postfix) with ESMTP id 8712715056 for ; Sat, 29 May 1999 04:48:14 -0700 (PDT) (envelope-from catrat@263.net) Received: from cat ([10.143.2.73]) by mail.sc.cninfo.net (Post.Office MTA v3.5.1 release 219 ID# 0-55725U50000L50000S0V35) with SMTP id net for ; Sat, 29 May 1999 19:50:01 +0800 Message-ID: <000801beab5b$8b41c6f0$0200a8c0@cat> From: "Huang" To: Subject: help Date: Mon, 31 May 1999 19:42:48 +0800 Organization: MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0005_01BEAB9D.C2F67720" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2014.211 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2014.211 Sender: owner-freebsd-small@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0005_01BEAB9D.C2F67720 Content-Type: text/plain; charset="gb2312" Content-Transfer-Encoding: base64 aGVscA0K ------=_NextPart_000_0005_01BEAB9D.C2F67720 Content-Type: text/html; charset="gb2312" Content-Transfer-Encoding: base64 PCFET0NUWVBFIEhUTUwgUFVCTElDICItLy9XM0MvL0RURCBIVE1MIDQuMCBUcmFuc2l0aW9uYWwv L0VOIj4NCjxIVE1MPjxIRUFEPg0KPE1FVEEgY29udGVudD0idGV4dC9odG1sOyBjaGFyc2V0PWdi MjMxMiIgaHR0cC1lcXVpdj1Db250ZW50LVR5cGU+DQo8TUVUQSBjb250ZW50PSJNU0hUTUwgNS4w MC4yMDE0LjIxMCIgbmFtZT1HRU5FUkFUT1I+DQo8U1RZTEU+PC9TVFlMRT4NCjwvSEVBRD4NCjxC T0RZIGJnQ29sb3I9I2ZmZmZmZj4NCjxESVY+PEZPTlQgc2l6ZT0yPmhlbHA8L0ZPTlQ+PC9ESVY+ PC9CT0RZPjwvSFRNTD4NCg== ------=_NextPart_000_0005_01BEAB9D.C2F67720-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-small" in the body of the message From owner-freebsd-small Sun May 30 5:19:52 1999 Delivered-To: freebsd-small@freebsd.org Received: from smtp3.263.net (unknown [202.96.44.22]) by hub.freebsd.org (Postfix) with SMTP id 317E8150AE for ; Sun, 30 May 1999 05:19:45 -0700 (PDT) (envelope-from catrat@263.net) Received: (fmail 5232 invoked from network); 30 May 1999 12:23:27 -0000 Received: from unknown (HELO 263.net) (202.96.44.36) by smtp3 with SMTP; 30 May 1999 12:23:27 -0000 Received: (fmail 81322 invoked by uid 1004); 30 May 1999 20:22:07 -0000 Date: 30 May 1999 20:22:07 -0000 Message-ID: <19990530202207.81321.fmail@263.net> Reply-To: catrat@263.net From: catrat@263.net To: freebsd-small@freebsd.org Subject: flashrom Content-Transfer-Encoding: 8bit Sender: owner-freebsd-small@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Dear Sir, Anyone can give me some tips on how to run picobsd from flashrom.I want to build a router with a 586 PC but without floppy disk and hard disk.Just a flashrom card plug in the ISA or PCI slot:)I have poor knowledge with freebsd kernel and file system:( Thanks! Yours truly, Jingchang Huang 5.30 __________________________________________________ 欢迎使用首都在线免费电子邮箱http://freemail.263.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-small" in the body of the message From owner-freebsd-small Sun May 30 7:38:21 1999 Delivered-To: freebsd-small@freebsd.org Received: from mail.sanritz.co.jp (mail.sanritz.co.jp [210.138.4.10]) by hub.freebsd.org (Postfix) with ESMTP id F2EDD14F13 for ; Sun, 30 May 1999 07:38:03 -0700 (PDT) (envelope-from miyagawa@sanritz.co.jp) Received: from mv1.sanritz.co.jp (proxy [172.16.2.9]) by mail.sanritz.co.jp (8.8.8/3.6W-1.03) with SMTP id XAA05692; Sun, 30 May 1999 23:36:50 +0900 (JST) Message-Id: <199905301436.AA00682@mv1.sanritz.co.jp> Date: Sun, 30 May 1999 23:36:47 +0900 To: catrat@263.net Cc: freebsd-small@freebsd.org Subject: Re: flashrom From: Seiichi Miyagawa In-Reply-To: <19990530202207.81321.fmail@263.net> MIME-Version: 1.0 X-Mailer: AL-Mail32 Version 1.10 beta7 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-small@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG //---[flashrom] //----[1999/05/31 From:catrat@263.net] |> Anyone can give me some tips on how to run picobsd from flashrom. Maybe http://www.m-sys.com/start.htm help you. //-- Miyagawa@sanritz.co.jp ---------------- http://www.sanritz.com -- // Sanritz Automation Co.,Ltd. Basic Software, Miyagawa,Seiichi // PGP Fingerprint : B2E8 1CB0 C342 388C AAF4 CF63 4794 26BA To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-small" in the body of the message From owner-freebsd-small Sun May 30 18:20:33 1999 Delivered-To: freebsd-small@freebsd.org Received: from smtp3.263.net (unknown [202.96.44.22]) by hub.freebsd.org (Postfix) with SMTP id 9A6BB14BCF for ; Sun, 30 May 1999 18:20:23 -0700 (PDT) (envelope-from catrat@263.net) Received: (fmail 8440 invoked from network); 31 May 1999 01:24:07 -0000 Received: from unknown (HELO 263.net) (202.96.44.36) by smtp3 with SMTP; 31 May 1999 01:24:07 -0000 Received: (fmail 17566 invoked by uid 1004); 31 May 1999 09:22:47 -0000 Date: 31 May 1999 09:22:47 -0000 Message-ID: <19990531092247.17565.fmail@263.net> Reply-To: catrat@263.net From: catrat@263.net To: freebsd-small@freebsd.org Subject: ISDN Content-Transfer-Encoding: 8bit Sender: owner-freebsd-small@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Dear friends,How can I make the Picobsd dialup floppy support my ISDN line?I have a TAICOM external ISDN TA.I try to use ppp to dial up,but there is no message for me to login my ISP and I can't get online.My ISP's ISDN line maybe only support PPP. Thanks! Jingchang Huang 5.31 __________________________________________________ 欢迎使用首都在线免费电子邮箱http://freemail.263.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-small" in the body of the message From owner-freebsd-small Sun May 30 18:27:58 1999 Delivered-To: freebsd-small@freebsd.org Received: from mail.rdc2.occa.home.com (ha1.rdc2.occa.home.com [24.2.8.66]) by hub.freebsd.org (Postfix) with ESMTP id 4AF8D14BCF for ; Sun, 30 May 1999 18:27:57 -0700 (PDT) (envelope-from dabldgd@home.com) Received: from cx714043a ([24.5.159.239]) by mail.rdc2.occa.home.com (InterMail v4.01.01.00 201-229-111) with SMTP id <19990531012756.HIUM22117.mail.rdc2.occa.home.com@cx714043a> for ; Sun, 30 May 1999 18:27:56 -0700 Message-ID: <005801beab04$cd6acce0$ef9f0518@pv1.ca.home.com> From: "Dave Bloodgood" To: Subject: Simple question Date: Sun, 30 May 1999 18:27:52 -0700 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0055_01BEAACA.20E13B60" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2314.1300 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 Sender: owner-freebsd-small@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0055_01BEAACA.20E13B60 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Ive downloaded the image ( router version ) and gotten it onto a floppy. = When i boot my 386/40, with NO coprocessor, I get part way thru and then crash dead - Is a 387 required ( or a 486 / = pentium ) ? When I boot the floppy on a pentium - it gets all the way thru and = enters the shell. Thanks Dave ------=_NextPart_000_0055_01BEAACA.20E13B60 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Ive downloaded the image ( router version ) and = gotten it onto=20 a floppy. When i boot my 386/40, with NO coprocessor,
I get part way thru and then crash dead - Is a 387 = required (=20 or a 486 / pentium ) ?
 
When I boot the floppy on a pentium - it gets all = the way thru=20 and enters the shell.
 
Thanks
 
Dave
------=_NextPart_000_0055_01BEAACA.20E13B60-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-small" in the body of the message From owner-freebsd-small Mon May 31 2:33:39 1999 Delivered-To: freebsd-small@freebsd.org Received: from smtp3.263.net (unknown [202.96.44.22]) by hub.freebsd.org (Postfix) with SMTP id DDC7B14D9B for ; Mon, 31 May 1999 02:33:34 -0700 (PDT) (envelope-from catrat@263.net) Received: (fmail 12236 invoked from network); 31 May 1999 09:37:14 -0000 Received: from unknown (HELO 263.net) (202.96.44.36) by smtp3 with SMTP; 31 May 1999 09:37:14 -0000 Received: (fmail 60277 invoked by uid 1004); 31 May 1999 17:35:53 -0000 Date: 31 May 1999 17:35:53 -0000 Message-ID: <19990531173553.60276.fmail@263.net> Reply-To: catrat@263.net From: catrat@263.net To: freebsd-small@freebsd.org Subject: ISDN Content-Transfer-Encoding: 8bit Sender: owner-freebsd-small@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Dear friends,how can i make picobsd support ISDN?I have a ISDN line and a TAICOM external ISDN TA.I dont know what to do:( Thanks! Jingchang Huang 5.31 __________________________________________________ 欢迎使用首都在线免费电子邮箱http://freemail.263.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-small" in the body of the message From owner-freebsd-small Tue Jun 1 0:10:35 1999 Delivered-To: freebsd-small@freebsd.org Received: from 1stpc.org (a147.ccgnv.net [207.141.129.147]) by hub.freebsd.org (Postfix) with SMTP id 102AB152AC for ; Tue, 1 Jun 1999 00:10:29 -0700 (PDT) (envelope-from tjl@luomat.peak.org) Received: from luomat.peak.org [207.141.129.116] by 1stpc.org with ESMTP (SMTPD32-4.04) id A71112FD0374; Tue, 01 Jun 1999 03:09:05 EST Received: by luomat.peak.org (8.9.3/8.9.0) id DAA04551 for freebsd-small@freebsd.org; Tue, 1 Jun 1999 03:10:13 -0400 (EDT) Message-Id: <199906010710.DAA04551@ocalhost> Content-Type: text/plain MIME-Version: 1.0 X-Image-URL: http://www.peak.org/~luomat/luomat@peak.org.tiff From: Timothy J Luoma Date: Tue, 1 Jun 1999 03:10:09 -0400 To: freebsd-small@freebsd.org Subject: what is BootFORTH? Sender: owner-freebsd-small@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG There's a link to it on /~picobsd/ but no explanation of what it is/does TjL To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-small" in the body of the message From owner-freebsd-small Tue Jun 1 0:20: 0 1999 Delivered-To: freebsd-small@freebsd.org Received: from dingo.cdrom.com (dingo.cdrom.com [204.216.28.145]) by hub.freebsd.org (Postfix) with ESMTP id 3CAD21560B for ; Tue, 1 Jun 1999 00:19:59 -0700 (PDT) (envelope-from mike@dingo.cdrom.com) Received: from dingo.cdrom.com (localhost.cdrom.com [127.0.0.1]) by dingo.cdrom.com (8.9.3/8.8.8) with ESMTP id AAA02562; Tue, 1 Jun 1999 00:17:13 -0700 (PDT) (envelope-from mike@dingo.cdrom.com) Message-Id: <199906010717.AAA02562@dingo.cdrom.com> X-Mailer: exmh version 2.0.2 2/24/98 To: Timothy J Luoma Cc: freebsd-small@freebsd.org Subject: Re: what is BootFORTH? In-reply-to: Your message of "Tue, 01 Jun 1999 03:10:09 EDT." <199906010710.DAA04551@ocalhost> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 01 Jun 1999 00:17:13 -0700 From: Mike Smith Sender: owner-freebsd-small@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > There's a link to it on /~picobsd/ but no explanation of what it is/does It's the Forth interpreter in the bootloader. -- \\ The mind's the standard \\ Mike Smith \\ of the man. \\ msmith@freebsd.org \\ -- Joseph Merrick \\ msmith@cdrom.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-small" in the body of the message From owner-freebsd-small Fri Jun 4 17:59:28 1999 Delivered-To: freebsd-small@freebsd.org Received: from mail.networld.com (redhat.networld.com [207.247.96.3]) by hub.freebsd.org (Postfix) with ESMTP id A3D9215367 for ; Fri, 4 Jun 1999 17:59:20 -0700 (PDT) (envelope-from kris@networld.com) Received: from chris ([208.235.192.201]) by mail.networld.com (8.9.3/8.9.1) with SMTP id RAA20026 for ; Fri, 4 Jun 1999 17:54:53 -0600 From: "Kris Lander" To: "PicoBSD" Subject: List archives? Date: Fri, 4 Jun 1999 18:58:02 -0600 Message-ID: <000001beaeee$76dd0bc0$c9c0ebd0@chris.networld1.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook 8.5, Build 4.71.2173.0 Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3110.3 Sender: owner-freebsd-small@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I managed to stumble upon the archives of this list once, but I forgot to bookmark it, and I can't seem to find it again. If you know where I can find the archives, please email me the URL. Thanks, Kris Lander To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-small" in the body of the message From owner-freebsd-small Sat Jun 5 16:15:15 1999 Delivered-To: freebsd-small@freebsd.org Received: from biff.nerdpower.net (c13574-001.nerdpower.net [24.108.37.222]) by hub.freebsd.org (Postfix) with SMTP id 67FAC15224 for ; Sat, 5 Jun 1999 16:15:03 -0700 (PDT) (envelope-from jeff@nerdpower.com) Received: (qmail 11279 invoked by alias); 5 Jun 1999 23:16:04 -0000 Received: from unknown (HELO flanders) (24.108.37.21) by biff.nerdpower.net with SMTP; 5 Jun 1999 23:16:04 -0000 From: "Jeff Lush" To: Subject: Using PicoBSD and NAT Date: Sat, 5 Jun 1999 17:17:14 -0600 Message-ID: <000201beafa9$8c2f5a80$15256c18@flanders.nerdpower.net> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook 8.5, Build 4.71.2173.0 Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3110.3 Sender: owner-freebsd-small@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello, I am attempting to run PicoBSD with NAT and am having some difficulties with the process. I have installed the PicoBSD router on a floppy and am attempting to use it on the following hardware: Intel 486 DX33 8 MB RAM 2 - 3com 3c509 NICs When PicoBSD starts, it recognizes the NICs as ep0 and ep1. In the rc.conf.local file I have setup ep0 with a public IP and ep1 with a private IP. I have identified all interfaces and labeled my internet router as the "defaultrouter". As well I have said yes to enable_gateway and enable_firewall as per the NATD howto. For NATD I have added the following entry to /etc/services: natd 8668/divert and created a new rc.firewall as per the NATD howto. I try to start NAT with the following command: natd -n ep0 redirect_address 192.168.0.2 0.0.0.0 The response I get is: natd: unknown service natd/divert I don't know what the problem might be. What I would like from this install is for this machine to translate the packet stream from ep0 (internet) and send it to ep1(internal LAN) Any advice on this would be greatly appreciated. Thanks, Jeff Lush To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-small" in the body of the message From owner-freebsd-small Sat Jun 5 21: 7:51 1999 Delivered-To: freebsd-small@freebsd.org Received: from phluffy.fks.bt (net25-cust199.pdx.wantweb.net [24.236.25.199]) by hub.freebsd.org (Postfix) with ESMTP id 19233152C9 for ; Sat, 5 Jun 1999 21:07:44 -0700 (PDT) (envelope-from myke@ees.com) Received: from localhost (myke@localhost) by phluffy.fks.bt (8.8.8/8.8.8) with ESMTP id VAA08355; Sat, 5 Jun 1999 21:07:28 -0700 (PDT) (envelope-from myke@ees.com) Date: Sat, 5 Jun 1999 21:07:28 -0700 (PDT) From: Mike Holling X-Sender: myke@phluffy.fks.bt To: Jeff Lush Cc: freebsd-small@FreeBSD.ORG Subject: Re: Using PicoBSD and NAT In-Reply-To: <000201beafa9$8c2f5a80$15256c18@flanders.nerdpower.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-small@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > The response I get is: > natd: unknown service natd/divert You have to add the port to /etc/services by hand. I've got picobsd as a NAT router on several 486/33 machines and it works great, there's just some minor annoyances like that to get past first. - Mike To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-small" in the body of the message