From owner-freebsd-questions Sun Aug 15 0: 0:48 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mobil.surnet.ru (mobil.surnet.ru [195.54.2.7]) by hub.freebsd.org (Postfix) with ESMTP id 54A0814ED1 for ; Sun, 15 Aug 1999 00:00:39 -0700 (PDT) (envelope-from ilia@cgilh.chel.su) Received: (from uucgilh@localhost) by mobil.surnet.ru (8.9.1a/8.9.1) with UUCP id MAA21549; Sun, 15 Aug 1999 12:55:19 +0600 (UDT) Received: (from uucp@localhost) by cgilh.chel.su (8.8.7/8.8.7) with UUCP id LAA03336; Sun, 15 Aug 1999 11:57:01 +0600 Received: from localhost (ilia@localhost) by localhost.cgu.chel.su (8.9.2/8.9.2) with ESMTP id LAA00623; Sun, 15 Aug 1999 11:54:12 +0600 (ESS) (envelope-from ilia@cgilh.chel.su) X-Authentication-Warning: localhost.cgu.chel.su: ilia owned process doing -bs Date: Sun, 15 Aug 1999 11:54:12 +0600 (ESS) From: Ilia Chipitsine X-Sender: ilia@localhost.cgu.chel.su To: "David S. Jackson" Cc: Ed Vander Bush , freebsd-questions@FreeBSD.ORG Subject: Re: Mount CDROM from User Account In-Reply-To: <19990815001859.G20961@juno.dsj.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=koi8-r Content-Transfer-Encoding: 8BIT Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG guys, playing with sudo make sure you allow _only_ mounting cdrom, but not just mount(8) :-( FreeBSD is supposed to be stable and robust, would it be so if you allow any user to mount any partition with sudo ?! I recall the recent thread when somebody strongly wanted to allow 'sudo passwd' :-))) sudo is _that_ tricky. option "user" in /etc/fstab makes much more sense... Regards, (îÁÉÌÕÞÛÉÅ ÐÏÖÅÌÁÎÉÑ) Ilia Chipitsine (éÌØÑ ûÉÐÉÃÉÎ) On Sun, 15 Aug 1999, David S. Jackson wrote: > So then Ed Vander Bush (ed@metafy.com) said . . . > > > I am trying to mount my cd from a user acount and I am getting the error > > "Operation Not Permitted". It works as root. This account is in the > > wheel group and mounting to a directory with proper permissions. What am I > > doing wrong? Thanks. > > Looks like the BSD implementation of 'mount' doesn't include 'user' > among its mount options. Is this true, gurus? > > [ hmmm...he thought...scratching his head as he read page 236 of _The > Complete FreeBSD_. "If you come from a System V environment, you'll > notice a significant difference in format--see the man page _fstab(5)_ > for the full story." ] > > Anyway, you could always join sudoers and mount/umount the CD that > way, right? > > I wrote this little script below for use first with Linux. And I just > now tried to adapt it to FBSD. Gurus, please let me know if what I'm > doing is in error or is ill-advised! > > --------------SNIP---------------(Warning: Linux centric) > #! /bin/sh > > # Syntax: cdm [-flum] > > # This utility allows you to unmount or mount the cdrom device > # to/from the ftp public location (/home/ftp/pub/cdrom) or the > # normal mount location (/cdrom). > > # HISTORY: created Aug 26, 1998. last modified Aug 27, 1998. > # adapted (hopefully) to FreeBSD by dsj@dsj.net Aug 14, 1999. > > device="/dev/wcd0c" > mountpt="/cdrom" > ftpmountpt="/home/ftp/pub/cdrom" > mntcmd="mount -t cd9660" > > case $1 in > > -f) > sudo "$mntcmd $device $ftpmountpt" > ;; > -l) > mount > ;; > -u) > check=$(mount | grep /cdrom) > check1=$(mount | grep /home/ftp/pub/cdrom) > check2=$(mount | grep /dev/scd0) > if [ -n "$check" ]; then > echo "umounting $check" > sudo "umount $device /cdrom" > elif [ -n "$check1" ]; then > echo "unmounting $check1" > sudo "umount $device /home/ftp/pub/cdrom" > elif [ -n "$check2" ]; then > echo "unmounting $check2" > where=$(echo $check2 | cut -f 3 -d " ") > sudo "umount $device $where" > else > echo "$device is not mounted" > fi > ;; > -m) > sudo "mount $args $device $mountpt" > ;; > *) > echo "usage: cdm -f (for ftp users: requires root access) \n or -l (to show mounted directories) \n or -u (to umount /dev/wcd0c: requires root access) \n or * (to show this help resource) \n or -m (to mount to normal mount position: /cdrom -- Requires root access)" > > esac > > -----------------SNIP------------------ > > Hope this helps more than it hinders. I haven't tested this yet; its > predecessor worked under Linux, but, well...that was Linux. Perhaps > using login classes would be more fruitful? > > -- > David S. Jackson http://www.dsj.net > =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= > To give your sheep or cow a large, spacious meadow is the > way to control him. --Shunryu Suzuki > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Aug 15 0:19:26 1999 Delivered-To: freebsd-questions@freebsd.org Received: from twwells.com (twwells.com [209.118.236.57]) by hub.freebsd.org (Postfix) with SMTP id DA3BD14BD3 for ; Sun, 15 Aug 1999 00:19:21 -0700 (PDT) (envelope-from news@twwells.com) Received: from news by twwells.com with local (Exim 1.71 #2) id 11FuTV-0007Gi-00; Sun, 15 Aug 1999 03:13:01 -0400 From: bill@twwells.com (T. William Wells) To: freebsd-questions@freebsd.org Subject: Re: Nslookup failure when host looking for itself? Message-ID: <7p5p35$r0o$1@twwells.com> References: <19990815063607.E56B6152AE@hub.freebsd.org> Date: Sun, 15 Aug 1999 03:13:01 -0400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In article <19990815063607.E56B6152AE@hub.freebsd.org>, Kevin Weiss wrote: : send: Permission denied : send: Permission denied : send: Permission denied Check your ipfw rules. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Aug 15 0:32:52 1999 Delivered-To: freebsd-questions@freebsd.org Received: from sequoia.astea.com.au (sequoia.astea.com.au [203.20.95.19]) by hub.freebsd.org (Postfix) with SMTP id 7A38D14DCD for ; Sun, 15 Aug 1999 00:32:43 -0700 (PDT) (envelope-from betterformat@astea.com.au) Received: from GUILDENSTERN by sequoia.astea.com.au via smtpd (for hub.FreeBSD.ORG [204.216.27.18]) with SMTP; 15 Aug 1999 07:33:07 UT Received: (private information removed) Message-Id: <199908150748.RAA04641@astea.com.au> From: "betterformat" To: , "Evren Yurtesen" Subject: Re: Leave workstation on or off? Date: Sun, 15 Aug 1999 17:26:38 +1000 X-MSMail-Priority: Normal X-Priority: 3 X-Mailer: Microsoft Internet Mail 4.70.1162 MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG it also depends on how much you are paying for electricity and how clean the power is...... adventually the components will die from the surge of being switched on and off, on the other hand they will die from being left running contiuously... and at the end of the day they will die sooner if switched on and off. Back in the hey day of 486's and on relativley clean Sydney, Australia power I worked out that it roughly added up to the same cost either way...... so it's your choice.... the same hardware for longer.... or newer hardware more often....... Betterformat ---------- > From: Evren Yurtesen > To: Kendall Shaw > Cc: freebsd-questions@FreeBSD.ORG > Subject: Re: Leave workstation on or off? > Date: Saturday, 14 August 1999 02:17 AM > > I believe that it would be cheaper to turn them off at night. > I have heard that if you open and close electronic devices too much > you can damage them but I heard it 5 years ago or something. > I believe that now electronic products are more stable and have > protective circuits for protecting them from the electric current > when you are opening and closing. But of course there is a > lifetime for every electronic component and if you are lucky you > may use them for a long time. > For example I had an IBM PS/2 Model 30, which has a 8080 cpu :) for > 6-8 years and I was normally opening and closing it twice in a day > and nothing happened > well once the monitor went black and never come back though. > > Kendall Shaw wrote: > > > > Is it cheaper to turn workstations off at night and, or leave them > > on? I'd heard the idea before that you damage electronics > > by turning it off and on. > > > > Kendall > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Aug 15 1:31:22 1999 Delivered-To: freebsd-questions@freebsd.org Received: from inet.chip-web.com (c1003518-a.plstn1.sfba.home.com [24.1.82.47]) by hub.freebsd.org (Postfix) with SMTP id D0AAB151EA for ; Sun, 15 Aug 1999 01:31:15 -0700 (PDT) (envelope-from ludwigp@bigfoot.com) Received: (qmail 26981 invoked from network); 15 Aug 1999 08:31:16 -0000 Received: from unknown (HELO bigfoot.com) (172.16.1.29) by inet.chip-web.com with SMTP; 15 Aug 1999 08:31:16 -0000 Message-ID: <37B67AC2.35C519A0@bigfoot.com> Date: Sun, 15 Aug 1999 01:30:59 -0700 From: Ludwig Pummer X-Mailer: Mozilla 4.6 [en] (X11; I; FreeBSD 3.2-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: big-sky@altavista.net Cc: Freebsd-Questions Subject: Re: SSL and Apache question References: <000001bee6e7$e7fffde0$0201010a@cmr.net> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Mark Einreinhof wrote: > Installed Apache. Then installed PHP. Compiled Apache both times. Now I've > downloaded and compiled OpenSSL-0.9.4. I'm at a loss as to what to do next. > Do I need to recompile Apache at this point? If I do recompile Apache, do I > lose the PHP that was compiled? Next, all I require is a 128bit encrypted > connection to the server, it will only be myself and some others using it so > I don't desire to pay for a certificate. How do I create my own certificate? > I saw mention of openssl, but docs are real sketchy. > > My ultimate goal is to run IMP via SSL, so I can read my email securely from > anywhere. I remember doing that exact same stuff just a few months ago. I feel I should point out that the Apache13+PHP3 port gives you the option of installing mod_ssl/OpenSSL support, as well as MySQL support (used for IMP address book and preferences. more on this later). Let me tell you the story of the long, difficult way: I downloaded the source distributions for Apache, PHP, MySQL, UW-IMAP, mod_ssl, and OpenSSL. I first installed the UW-IMAP server and MySQL by themselves, since building PHP later depends on them being already installed. I then got Apache working by itself (using the APACI method). I did 'make install' using the base apache configuration. Then I compiled in PHP support (Apache keeps a copy of the last-used ./configure line in config.status, so adding PHP while keeping everything else the same was as simple as "./config.status --activate-module=src/modules/php3/libphp3.a"). I just copied the new httpd binary in the apache/src directory over the old one in /usr/local/apache/bin. I also copied the php3.ini file to /usr/local/lib. Then I attempted to add mod_ssl support, according to their documentation. I tried to install OpenSSL by hand. I got hung up because the "make test" or something like that would fail. I later found out that was because the RSAREF library was missing something. There's now a patch for that, and it's installed by the port for you! So I installed OpenSSL via the port and then installed mod_ssl according to the mod_ssl documentation (and used config.status to keep the PHP module that I had previously added). Mod_ssl makes some big changes to Apache's makefile, for building the certificates and such. After mod_ssl was built in and compiled, I did 'make certificate TYPE=test'. I did another 'make install'. I ended up with duplicate configuration files (one set of configs before mod_ssl and one after mod_ssl) which I had to then merge by hand. But I ended up with a working Apache + PHP3 + IMAP + mod_ssl/OpenSSL + MySQL binary which I could then use to run IMP. When I tried to go to https://myserver, the web browser complained that the certificate wasn't signed by a valid CA, but I was able to tell the web browsers to accept the certificate anyway, and so I got a secure connection without paying a CA (note that earlier web browsers may not let you accept a certificate with an invalid CA. I've found that I need at least a version 4.x browser) That said, let me also say that I have never gotten IMP to work properly with MySQL, using a MySQL database for preferences and such. I also haven't been tracking IMP (just to be fair, in case that's been fixed by now). I found that IMP had too many quirks for my taste and went to TWIG (http://twig.screwdriver.net/) instead. It doesn't look as flashy, but it's a lot smaller and cleaner and doesn't require as much time to set up. I disabled the MySQL support in TWIG because I didn't want to set up another table and permissions (not after trying and failing with IMP). So... I suggest suggest you try the Apache+PHP port first, as it must be less painful than what I did. --Ludwig Pummer To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Aug 15 1:57:35 1999 Delivered-To: freebsd-questions@freebsd.org Received: from ddsecurity.com.br (vitoria.ddsecurity.com.br [200.18.130.93]) by hub.freebsd.org (Postfix) with SMTP id 8C23314CF0 for ; Sun, 15 Aug 1999 01:57:28 -0700 (PDT) (envelope-from grios@ddsecurity.com.br) Received: (qmail 25049 invoked from network); 15 Aug 1999 08:57:06 -0000 Received: from remoteip160.buynet.com.br (HELO ddsecurity.com.br) (200.238.234.160) by vitoria.ddsecurity.com.br with SMTP; 15 Aug 1999 08:57:06 -0000 Message-ID: <37B6563E.93104C44@ddsecurity.com.br> Date: Sun, 15 Aug 1999 05:55:10 +0000 From: Gustavo Vieira G C Rios X-Mailer: Mozilla 4.51 [en] (X11; I; FreeBSD 3.2-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: questions@freebsd.org Subject: slices Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Is there any tutorial about working with slices ? I have already tried the HandBook/FAQ, but no success yet! i have two slices at the moment: 1: DOS 2: FreeBSD 3: empty 4: empty I would like to add one for linux native (131) and another one for openbsd(166). I can create them using fdisk, but when a reboot, my system complains about: wd0s3: raw partition offset != slice partition offset (somethin' like that)! can any one help me? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Aug 15 2:18:17 1999 Delivered-To: freebsd-questions@freebsd.org Received: from luke.cpl.net (luke.cpl.net [192.216.136.195]) by hub.freebsd.org (Postfix) with ESMTP id ACD3014A14 for ; Sun, 15 Aug 1999 02:18:14 -0700 (PDT) (envelope-from shawn@luke.cpl.net) Received: (from shawn@localhost) by luke.cpl.net (8.9.3/8.9.3) id CAA13577; Sun, 15 Aug 1999 02:18:02 -0700 (PDT) Date: Sun, 15 Aug 1999 02:18:02 -0700 From: Shawn Ramsey To: big-sky@altavista.net Cc: Freebsd-Questions Subject: Re: SSL and Apache question Message-ID: <19990815021801.D2391@cpl.net> References: <000001bee6e7$e7fffde0$0201010a@cmr.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.6i In-Reply-To: <000001bee6e7$e7fffde0$0201010a@cmr.net>; from Mark Einreinhof on Sun, Aug 15, 1999 at 01:32:11AM -0500 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > Don't know the next step here... > > Installed Apache. Then installed PHP. Compiled Apache both times. Now I've > downloaded and compiled OpenSSL-0.9.4. I'm at a loss as to what to do next. > Do I need to recompile Apache at this point? If I do recompile Apache, do I > lose the PHP that was compiled? Next, all I require is a 128bit encrypted Do yourself a favor and install the port. Unless you need some type of functionality not provided by the port, it will make life MUCH easier. :) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Aug 15 3: 2:24 1999 Delivered-To: freebsd-questions@freebsd.org Received: from vax1.baker.ie (VAX1.baker.IE [194.125.50.91]) by hub.freebsd.org (Postfix) with SMTP id C663F1543C for ; Sun, 15 Aug 1999 03:02:15 -0700 (PDT) (envelope-from cillian@baker.ie) Received: from baker.ie ([194.106.150.250]) by vax1.baker.ie with ESMTP; Sun, 15 Aug 1999 11:07:42 +0100 Message-ID: <37B69DCB.FA82BC22@baker.ie> Date: Sun, 15 Aug 1999 12:00:27 +0100 From: Cillian Sharkey X-Mailer: Mozilla 4.51 [en] (X11; I; FreeBSD 3.2-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: Greg Lehey Cc: questions@FreeBSD.ORG Subject: Re: NetBSD has software RAID5 with ccd, FreeBSD has ... ? References: <37B5DA62.E9BC4308@baker.ie> <19990815091819.D456@freebie.lemis.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > FreeBSD has vinum but RAID-5 functionality > > is not integrated yet (have to get it > > seperately from www.cybernet.com) > > Incorrect. It's available in -CURRENT and will be merged into -STABLE > as soon as we're sure it's stable. Excellent! I can hardly wait :D Thanks, - Cillian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Aug 15 3:12: 7 1999 Delivered-To: freebsd-questions@freebsd.org Received: from vax1.baker.ie (VAX1.baker.IE [194.125.50.91]) by hub.freebsd.org (Postfix) with SMTP id 4B0D41523D for ; Sun, 15 Aug 1999 03:11:52 -0700 (PDT) (envelope-from cillian@baker.ie) Received: from baker.ie ([194.106.150.250]) by vax1.baker.ie with ESMTP; Sun, 15 Aug 1999 11:15:52 +0100 Message-ID: <37B69FB7.B6E5DA10@baker.ie> Date: Sun, 15 Aug 1999 12:08:39 +0100 From: Cillian Sharkey X-Mailer: Mozilla 4.51 [en] (X11; I; FreeBSD 3.2-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: john holland Cc: freebsd-questions@freebsd.org Subject: Re: routing table/natd problem upon ISP disconnect References: <19990815043728.11909.rocketmail@web1105.mail.yahoo.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > I found when setting up natd to "IP masquerade" a > local net to the internet through a modem that, when > the modem link went down and I brought it back up, the > routing table acted strangely and I ended up having to > reboot. > > the symptoms were: > > netstat -r would hang with just the header - > if I deleted the default route to the Internet through > tun0, netstat -r worked fine netstat -r will try and resolve each address to a name which can cause it to "hang" if using DNS to do the lookup if you use netstat -rn instead it will just report the addresses as opposed to their names > I couldn't ping the ISP successfully, let alone a host > on the Net. I could see that it was trying to though > as the transmit light on the modem was blinking with > the pings. which host did you ping from and did it return any error messages ? Regards, - Cillian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Aug 15 3:42:11 1999 Delivered-To: freebsd-questions@freebsd.org Received: from m2.pp.htv.fi (m2ep.pp.htv.fi [212.90.64.98]) by hub.freebsd.org (Postfix) with ESMTP id 7E3D414C0B for ; Sun, 15 Aug 1999 03:42:06 -0700 (PDT) (envelope-from greenie@mpoli.fi) Received: from m7.pp.htv.fi (m7.pp.htv.fi [212.90.64.22]) by m2.pp.htv.fi (8.8.6 (PHNE_14041)/8.8.6) with ESMTP id NAA15914 for ; Sun, 15 Aug 1999 13:42:27 +0300 (EETDST) Received: from mpoli.fi (cs69016.pp.htv.fi [212.90.69.16]) by m7.pp.htv.fi (8.8.6 (PHNE_14041)/8.8.6) with ESMTP id NAA10550 for ; Sun, 15 Aug 1999 13:43:30 +0300 (EETDST) Message-ID: <37B699BF.28A547A8@mpoli.fi> Date: Sun, 15 Aug 1999 13:43:11 +0300 From: Mikko =?iso-8859-1?Q?Gr=F6nroos?= Organization: Lemonsoda Organizing X-Mailer: Mozilla 4.5 [en] (Win98; I) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: Kernel/SMC Ultra etc. Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello, people. I've just moved from Linux to FreeBSD. You might ask me why, but the answer is simple. I just want to learn how to use FreeBSD/"The one that's more like an UNIX than Linux is." So, well you all probably know how Linux kernel is configured, k.? You just go and type "make config" in /usr/src/linux directory and you will be guided thru the operation. But I'm kinda "out" how do I add my SMC Ultra (onboard) card to the kernel? Or how do I add a support to %somedevice in general? If I should to put that stuff above to an other form; How the kernel is configured and how do I add some devices to it / system (I know how to add a NIC to ISA/PCMCIA/PCI - slot, but I ment in the FreeBSD, not the actual "physical" hardware installation)? Thank you and keep on rockin', -Mikko Grönroos aka greenie@IRCNet PostScript, sorry about my english ;) -- _ _ _ _ |\ \ | \ _ _ _ \ >> Bring me flowers, godseyes and boxes of air. \ | | - CJ & Fish, another fine Berkeley release. \|_______| To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Aug 15 4:31:43 1999 Delivered-To: freebsd-questions@freebsd.org Received: from Mail.austin.rr.com (sm2.texas.rr.com [24.93.35.55]) by hub.freebsd.org (Postfix) with ESMTP id 1F71114FD0 for ; Sun, 15 Aug 1999 04:29:14 -0700 (PDT) (envelope-from kelem@prismnet.com) Received: from kelem ([24.93.48.226]) by Mail.austin.rr.com with Microsoft SMTPSVC(5.5.1875.185.18); Sun, 15 Aug 1999 06:23:29 -0500 Message-ID: <002f01bee711$b7abc320$e2305d18@austin.rr.com> From: "KeLeMvOr LyOnSbAnE" To: Subject: FreeBSD Date: Sun, 15 Aug 1999 06:31:29 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2615.200 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2615.200 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I am currently in search of a replacement OS for a Sun Ultra Wokrstation. While RedHat 6 works on it, I am still looking for something "more". Solaris (rather slowaris) runs some programs that I truly need thru a program called SoftWin95, Redhat will not run it, but I am told some other unix based systems (bsd and such) might do so. I am having problems finding another OS that yet runs on the Ultra Sparc systems though. Any help would be appreciated To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Aug 15 5: 2:48 1999 Delivered-To: freebsd-questions@freebsd.org Received: from peedub.muc.de (newpc.muc.ditec.de [194.120.126.33]) by hub.freebsd.org (Postfix) with ESMTP id B361114E70 for ; Sun, 15 Aug 1999 05:02:43 -0700 (PDT) (envelope-from garyj@peedub.muc.de) Received: from peedub.muc.de (localhost [127.0.0.1]) by peedub.muc.de (8.9.3/8.6.9) with ESMTP id NAA06056; Sun, 15 Aug 1999 13:39:34 +0200 (CEST) Message-Id: <199908151139.NAA06056@peedub.muc.de> X-Mailer: exmh version 2.0.2 2/24/98 To: Alex V P Cc: questions@FreeBSD.ORG Subject: Re: NetBSD has software RAID5 with ccd, FreeBSD has ... ? Reply-To: Gary Jennejohn In-reply-to: Your message of "Sat, 14 Aug 1999 20:30:53 EDT." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sun, 15 Aug 1999 13:39:33 +0200 From: Gary Jennejohn Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Alex V P writes: >Hi >I was looking for drivers for AAA-131U2 RAID controller,It seems that ( >sorry for my English) nobody wanna work on that card and do a drivers. Any >special reason? Just curious. >Alex > this seems to have little to do with *software* RAID support. you're suggesting that some developer should invest the money to buy the necessary hardware (controller and disks) just so you can have a driver ? sorry, it doesn't work that way. If you really need this driver then I suggest you donate the necessary hardware and documentation to the project and I'm sure that Jordan will see to it that it gets into the appropriate hands. --- Gary Jennejohn Home - garyj@muc.de Work - garyj@fkr.dec.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Aug 15 5:25:29 1999 Delivered-To: freebsd-questions@freebsd.org Received: from sasknow.com (h139-142-245-96.ss.FiberONE.NET [139.142.245.96]) by hub.freebsd.org (Postfix) with ESMTP id A47B015333 for ; Sun, 15 Aug 1999 05:24:30 -0700 (PDT) (envelope-from freebsd@sasknow.com) Received: from sasknow.com (ntstn [10.0.0.2]) by sasknow.com (8.9.3/8.9.3) with ESMTP id GAA00412; Sun, 15 Aug 1999 06:24:20 GMT (envelope-from freebsd@sasknow.com) Message-ID: <37B6B19F.9521BF2C@sasknow.com> Date: Sun, 15 Aug 1999 06:25:03 -0600 From: "Ryan Thompson [FreeBSD]" X-Mailer: Mozilla 4.61 [en] (WinNT; U) X-Accept-Language: en MIME-Version: 1.0 To: Iain Templeton , freebsd-questions@freebsd.org Subject: Re: xdm for remote hosts only? References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Iain Templeton wrote: > > On Fri, 13 Aug 1999, Ryan Thompson wrote: > > > Hi everybody... > > > > Just wondering if there's something I missed in the XDM manpage that will > > allow XDM to run in the background as an XDM server for remote hosts only, > > and NOT start up an X session on the local computer, nor require logins > > for X sessions on the local computer. > > > > I realize that an X server must be running for remote logins to work. > > However, what I would like to see happen is for the X server to start, > > then switch me back to my terminal screen. (Without having to hit the > > obligatory Ctrl-Alt-F# key combination :-) > > > No, you don't have to run an X server at all. Look at the file > /usr/X11R6/lib/X11/xdm/Xservers, and you should see down at the bottom a > line telling xdm to start a server on the local host. If you comment this > out you should be ok. > > I don't even have an X server binary on this computer, and everything runs > ok. > > Iain. Ha! Well... That was certainly an easy fix. So easy, in fact... I'm almost sorry I asked :-) Thank you muchly. - Ryan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Aug 15 5:44:14 1999 Delivered-To: freebsd-questions@freebsd.org Received: from cwb.pacific.net.hk (cwb.pacific.net.hk [202.14.67.92]) by hub.freebsd.org (Postfix) with ESMTP id 84A6A14D35 for ; Sun, 15 Aug 1999 05:44:10 -0700 (PDT) (envelope-from alexkwan@pacific.net.hk) Received: from kwaifong.pacific.net.hk (kwaifong.pacific.net.hk [202.14.67.7]) by cwb.pacific.net.hk with ESMTP id UAA24063; Sun, 15 Aug 1999 20:44:28 +0800 (HKT) Received: from parsley (max8-16.hk.super.net [202.64.24.16]) by kwaifong.pacific.net.hk with SMTP id UAA12384; Sun, 15 Aug 1999 20:44:27 +0800 (HKT) Message-ID: <000801bee71c$b3bc1160$b0c2fea9@parsley> From: "Alex Kwan" To: "Borja Marcos" Cc: References: <001701bee6e4$dcafe700$b0c2fea9@parsley> <37B6ADB1.947BB0A0@sarenet.es> Subject: Re: How to intall FreeBSD3.2 on a Laptop without floppy and CDROM Date: Sun, 15 Aug 1999 20:50:05 +0800 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2615.200 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2615.200 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi! Borja, I can't use the boot floopy or cdrom to boot up the PC, how to do first step (boot up with FreeBSD)in installing Freebsd3.2, would you please explain more? Thanks Alex > Alex Kwan wrote: > > > I want to install FreeBSD3.2 on my Toshiba Libretto > > 70-CT (without floppy drive and CDROM), I have > > installed the 2.2.7 on it before, because the 2.2.7 CDROM#1 > > have the install.bat, and I can copy all the necessary file of > > CD-ROM to the laptop from my desktop through > > MS Windows 98 Network to do the installation, > > But this time, the 3.2 CDROM haven't the install.bat file, > > What can I do now? > > I have done some network installations in laptop, either > with an ethernet card or with PPP. > > > Borja. > > -- > *********************************************************************** > Borja Marcos * Internet: borjamar@sarenet.es > Alangoeta, 11 1 izq * borjam@we.lc.ehu.es > 48990 - Algorta (Vizcaya) * borjam@well.com > SPAIN * CompuServe: 100015,3502 > *********************************************************************** To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Aug 15 6: 8:19 1999 Delivered-To: freebsd-questions@freebsd.org Received: from juno.dsj.net (sylvester.dsj.net [208.148.155.228]) by hub.freebsd.org (Postfix) with ESMTP id 997E114E96 for ; Sun, 15 Aug 1999 06:08:16 -0700 (PDT) (envelope-from dsj@juno.dsj.net) Received: (from dsj@localhost) by juno.dsj.net (8.9.2/8.9.2) id JAA45850; Sun, 15 Aug 1999 09:08:41 -0400 (EDT) (envelope-from dsj) Date: Sun, 15 Aug 1999 09:08:41 -0400 From: "David S. Jackson" To: ilia@cgilh.chel.su Cc: freebsd-questions@freebsd.org Subject: Re: Mount CDROM from User Account Message-ID: <19990815090841.C44880@juno.dsj.net> Reply-To: "David S. Jackson" Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.3i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG So then Ilia Chipitsine said . . . > sudo is _that_ tricky. option "user" in /etc/fstab makes much more > sense... The more I think of it, the less I'm comfortable with the 'user' option too. I can just see some anon. ftper ejecting the CD-ROM! By the way, does the BSD implementation of mount even allow the 'user' option? Anyway, something like 'su -c "$mountcmd $device $mountpt"' in the previous script would make a lot more sense to me. But I see the BSD implementation of 'su' has a '-c' switch that doesn't mean the same as the SysV '-c'. How could you do 'su -c "$mountcmd $device $mountpt"' in a script in BSD? Something like 'su -c root "$mountcmd $device $mountpt"' ? I didn't see an example in the manpage. TIA! -- David S. Jackson http://www.dsj.net =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= Out ed0, through the firewall, over the analog line, into usr1, past another firewall, through the gateway, out the T-3, off core2 in Atlanta . . . nothin' but Net. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Aug 15 6:35:44 1999 Delivered-To: freebsd-questions@freebsd.org Received: from juno.dsj.net (sylvester.dsj.net [208.148.155.228]) by hub.freebsd.org (Postfix) with ESMTP id A680E15375 for ; Sun, 15 Aug 1999 06:35:36 -0700 (PDT) (envelope-from dsj@juno.dsj.net) Received: (from dsj@localhost) by juno.dsj.net (8.9.2/8.9.2) id JAA45969; Sun, 15 Aug 1999 09:34:24 -0400 (EDT) (envelope-from dsj) Date: Sun, 15 Aug 1999 09:34:24 -0400 From: "David S. Jackson" Cc: ilia@cgilh.chel.su, freebsd-questions@FreeBSD.ORG Subject: Re: Mount CDROM from User Account Message-ID: <19990815093424.D44880@juno.dsj.net> Reply-To: "David S. Jackson" References: <19990815090841.C44880@juno.dsj.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.3i In-Reply-To: <19990815090841.C44880@juno.dsj.net>; from David S. Jackson on Sun, Aug 15, 1999 at 09:08:41AM -0400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG So then David S. Jackson (dsj@dsj.net) said . . . > How could you do 'su -c "$mountcmd $device $mountpt"' in a script in > BSD? Something like 'su -c root "$mountcmd $device $mountpt"' ? I > didn't see an example in the manpage. Okay, I get it now. It's more similar to the SysV way than I thought: su root -c "$mountcmd $device $mountpt" So, this should work: ===SNIP=== #! /bin/sh device="/dev/wcd0c" mountpt="/cdrom" ftpmountpt="/home/ftp/pub/cdrom" mntcmd="mount -t cd9660" case $1 in -f) su root -c "$mntcmd $device $ftpmountpt" ;; -l) mount ;; -u) check=$(mount | grep /cdrom) check1=$(mount | grep /home/ftp/pub/cdrom) check2=$(mount | grep /dev/wcd0c) if [ -n "$check" ]; then echo "unmounting $check" su root -c "umount $device" elif [ -n "$check1" ]; then echo "unmounting $check1" su root -c "umount $device" elif [ -n "$check2" ]; then echo "unmounting $check2" su root -c "umount $device" else echo "$device is not mounted" fi ;; -m) su root -c "$mntcmd $device $mountpt" ;; *) echo -e "usage: cdm -f (for ftp users: requires root access) \n or -l (to show mounted directories) \n or -u (to umount /dev/wcd0c: requires root access) \n or * (to show this help resource) \n or -m (to mount to normal mount position: /cdrom -- Requires root access)" esac ===SNIP=== Let me know what you think! :-) -- David S. Jackson http://www.dsj.net =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= Out ed0, through the firewall, over the analog line, into usr1, past another firewall, through the gateway, out the T-3, off core2 in Atlanta . . . nothin' but Net. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Aug 15 6:36:22 1999 Delivered-To: freebsd-questions@freebsd.org Received: from misty.apana.org.au (misty.apana.org.au [203.11.114.178]) by hub.freebsd.org (Postfix) with ESMTP id 76F3615323 for ; Sun, 15 Aug 1999 06:36:14 -0700 (PDT) (envelope-from gurubonz@odyssey.apana.org.au) Received: from localhost (gurubonz@localhost) by misty.apana.org.au (8.8.7/8.8.7) with ESMTP id VAA10019 for ; Sun, 15 Aug 1999 21:36:46 +0800 X-Authentication-Warning: misty.apana.org.au: gurubonz owned process doing -bs Date: Sun, 15 Aug 1999 21:36:45 +0800 (WST) From: Tony Cooper X-Sender: gurubonz@misty.apana.org.au To: questions@freebsd.org Subject: fork Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Can someone please tell me if there is a limit to the number of simultaneous processes that each user can run on a freeBSD system and a way to increase this number if there is? I recently modified a script which pings all 16 ports of our stallion card sequentially to doing it by running each ping process in the background. A similar script written to ping all 4 ports on a different freebsd box doesn't have the problem. The error I get is fork: Resource Temporarily unavailable. hope someone has a bright idea that may fix the problem TIA gb Would some one please stop this spinning ball, I wanna get off. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Aug 15 7:10: 0 1999 Delivered-To: freebsd-questions@freebsd.org Received: from ligarius-fe0.ultra.net (ligarius-fe0.ultra.net [146.115.8.189]) by hub.freebsd.org (Postfix) with ESMTP id 5F8A814F2E for ; Sun, 15 Aug 1999 07:09:57 -0700 (PDT) (envelope-from moncrg@ma.ultranet.com) Received: from ma.ultranet.com (d126.dial-2.cmb.ma.ultra.net [209.6.65.126]) by ligarius-fe0.ultra.net (8.8.8/ult/n20340/mtc.v2) with ESMTP id KAA22134 for ; Sun, 15 Aug 1999 10:09:54 -0400 (EDT) Message-ID: <37B6C9AA.8DC2F13C@ma.ultranet.com> Date: Sun, 15 Aug 1999 10:07:38 -0400 From: "Gregory D. Moncreaff" Reply-To: moncrg@ma.ultranet.com X-Mailer: Mozilla 4.61 [en] (X11; U; FreeBSD 3.2-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: FreeBSD Questions Subject: Dial out attempt every 30 minutes, why? Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On a fairly recent 3.2-stable (end of July) I am noticing a ppp dial attempt about every 30 minutes, all day long. Any idea what might be causing this? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Aug 15 7:10:16 1999 Delivered-To: freebsd-questions@freebsd.org Received: from avarice.riverstyx.net (hq-port-89.harbour-dhcp-pool.infinetgroup.com [207.23.37.89]) by hub.freebsd.org (Postfix) with ESMTP id 7DE8414F2E for ; Sun, 15 Aug 1999 07:09:54 -0700 (PDT) (envelope-from unknown@riverstyx.net) Received: from avarice (unknown@avarice [10.0.0.2]) by localhost.localdomain (8.9.3/8.9.3) with ESMTP id RAA24759; Sat, 7 Aug 1999 17:39:19 -0700 Date: Sat, 7 Aug 1999 17:39:19 -0700 (PDT) From: Tani Hosokawa To: Brian Cc: questions@FreeBSD.ORG Subject: Re: apache In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG PHP's a scripting language that can be compiled into Apache... I guess that's a prepatched version. Couldn't really say what ru is, maybe Russian? The first two are presumably stock copies, altho they're not the originals. The filesizes are way off (714976 and 1372280 respectively). On Sat, 7 Aug 1999, Brian wrote: > > What are the differences amongst the 4 of these, I cant guess the meaning > of php or ru: > > ftp> ls *apache* > 200 PORT command successful. > 150 Opening ASCII mode data connection for 'file list'. > -r--r--r-- 1 569 207 370212 May 11 11:04 apache-1.2.6.tgz > -r--r--r-- 1 569 207 770701 May 11 11:08 apache-1.3.6.tgz > -r--r--r-- 1 569 207 976433 May 11 11:12 apache-php3-1.3.6.tgz > -r--r--r-- 1 569 207 805601 May 11 11:03 ru-apache-1.3.6.tgz > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > --- tani hosokawa river styx internet To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Aug 15 7:10:20 1999 Delivered-To: freebsd-questions@freebsd.org Received: from avarice.riverstyx.net (hq-port-89.harbour-dhcp-pool.infinetgroup.com [207.23.37.89]) by hub.freebsd.org (Postfix) with ESMTP id 5106D1534B for ; Sun, 15 Aug 1999 07:09:54 -0700 (PDT) (envelope-from unknown@riverstyx.net) Received: from avarice (unknown@avarice [10.0.0.2]) by localhost.localdomain (8.9.3/8.9.3) with ESMTP id RAA24803; Sat, 7 Aug 1999 17:45:24 -0700 Date: Sat, 7 Aug 1999 17:45:24 -0700 (PDT) From: Tani Hosokawa To: Brian Cc: questions@FreeBSD.ORG Subject: Re: apache In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Ahh... ok, I was thinking of the "official" Apache distro, not the FreeBSD package... what you probably want is apache-1.3.6.tar.gz. On Sat, 7 Aug 1999, Brian wrote: > Re the sizes, that ls is from the 3.2-release packages directory of > ftp.freebsd.org, so if they're off, tis time for some suspicion. > > Bri > > On Sat, 7 Aug 1999, Tani Hosokawa wrote: > > > PHP's a scripting language that can be compiled into Apache... I guess > > that's a prepatched version. Couldn't really say what ru is, maybe > > Russian? The first two are presumably stock copies, altho they're not the > > originals. The filesizes are way off (714976 and 1372280 respectively). > > > > On Sat, 7 Aug 1999, Brian wrote: > > > > > > > > What are the differences amongst the 4 of these, I cant guess the meaning > > > of php or ru: > > > > > > ftp> ls *apache* > > > 200 PORT command successful. > > > 150 Opening ASCII mode data connection for 'file list'. > > > -r--r--r-- 1 569 207 370212 May 11 11:04 apache-1.2.6.tgz > > > -r--r--r-- 1 569 207 770701 May 11 11:08 apache-1.3.6.tgz > > > -r--r--r-- 1 569 207 976433 May 11 11:12 apache-php3-1.3.6.tgz > > > -r--r--r-- 1 569 207 805601 May 11 11:03 ru-apache-1.3.6.tgz > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > with "unsubscribe freebsd-questions" in the body of the message > > > > > > > --- > > tani hosokawa > > river styx internet > > > > > --- tani hosokawa river styx internet To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Aug 15 7:23:54 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail.go2france.com (go2france.com [209.51.193.70]) by hub.freebsd.org (Postfix) with SMTP id 4B96014F2E for ; Sun, 15 Aug 1999 07:23:47 -0700 (PDT) (envelope-from lconrad@Go2France.com) Received: from superviseur [62.161.63.210] by mail.go2france.com with ESMTP (SMTPD32-4.03) id A80E2550372; Sun, 15 Aug 1999 08:52:30 EDT Message-Id: <4.2.0.58.19990815161408.016a9a00@go2france.com> X-Sender: lconrad@go2france.com X-Mailer: QUALCOMM Windows Eudora Pro Version 4.2.0.58 Date: Sun, 15 Aug 1999 16:15:20 +0200 To: freebsd-questions@freebsd.org From: Len Conrad Subject: BIND 8.2.1 ? Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Is this latest version of BIND going to be included in fbsb? Len To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Aug 15 7:25:21 1999 Delivered-To: freebsd-questions@freebsd.org Received: from tantalum.btinternet.com (tantalum.btinternet.com [194.73.73.80]) by hub.freebsd.org (Postfix) with ESMTP id 835A514F2E for ; Sun, 15 Aug 1999 07:25:16 -0700 (PDT) (envelope-from duncanks@altavista.net) Received: from [195.171.233.165] (helo=duncan) by tantalum.btinternet.com with smtp (Exim 2.05 #1) id 11G1Dn-0004Pe-00; Sun, 15 Aug 1999 15:25:15 +0100 Message-ID: <012301bee729$bbed0260$0100a8c0@my.domain> From: "Duncan Spooner" To: , "FreeBSD Questions" References: <37B6C9AA.8DC2F13C@ma.ultranet.com> Subject: Re: Dial out attempt every 30 minutes, why? Date: Sun, 15 Aug 1999 15:23:16 +0100 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2615.200 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2615.200 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > On a fairly recent 3.2-stable (end of July) > I am noticing a ppp dial attempt about > every 30 minutes, all day long. > > Any idea what might be causing this? Look in your /etc/rc.conf file I bet there is a line for starting up sendmail with something like "sendmail -bq30", remove the "q30" bit, as it tells it to do something every 30 minutes. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Aug 15 7:48:41 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail.netwalk.com (mail.netwalk.com [216.69.192.12]) by hub.freebsd.org (Postfix) with ESMTP id 081AB1534D for ; Sun, 15 Aug 1999 07:48:36 -0700 (PDT) (envelope-from jmutter@netwalk.com) Received: from pokey.local.net (root@tcs3-22.arl.netwalk.net [216.69.200.150]) by mail.netwalk.com (8.8.7/8.6.9) with ESMTP id KAA27105; Sun, 15 Aug 1999 10:48:16 -0400 Received: from insomnia.local.net (insomnia.local.net [192.168.2.3]) by pokey.local.net (8.9.3/8.9.2) with ESMTP id KAA38169; Sun, 15 Aug 1999 10:48:09 -0400 (EDT) (envelope-from jmutter@insomnia.local.net) Date: Sun, 15 Aug 1999 10:53:51 -0400 (EDT) From: "James A. Mutter" Reply-To: jmutter@netwalk.com To: KeLeMvOr LyOnSbAnE Cc: freebsd-questions@FreeBSD.ORG Subject: Re: FreeBSD In-Reply-To: <002f01bee711$b7abc320$e2305d18@austin.rr.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG FreeBSD won't run on that Sparc, but NetBSD and OpenBSD will. My preference is OpenBSD, it seems to be a bit more versitile than NetBSD. Good luck. -- Jim On Sun, 15 Aug 1999, KeLeMvOr LyOnSbAnE wrote: :I am currently in search of a replacement OS for a Sun Ultra Wokrstation. :While RedHat 6 works on it, I am still looking for something "more". :Solaris (rather slowaris) runs some programs that I truly need thru a :program called SoftWin95, Redhat will not run it, but I am told some other :unix based systems (bsd and such) might do so. I am having problems finding :another OS that yet runs on the Ultra Sparc systems though. : :Any help would be appreciated : : : :To Unsubscribe: send mail to majordomo@FreeBSD.org :with "unsubscribe freebsd-questions" in the body of the message : : To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Aug 15 7:48:42 1999 Delivered-To: freebsd-questions@freebsd.org Received: from voyager.bxscience.edu (voyager.bxscience.edu [167.206.32.174]) by hub.freebsd.org (Postfix) with ESMTP id 02BE715346 for ; Sun, 15 Aug 1999 07:48:38 -0700 (PDT) (envelope-from stuyman@confusion.net) Received: from confusion.net (choates1-bp-57.dartmouth.edu [129.170.46.57]) by voyager.bxscience.edu (8.9.3/8.9.1) with ESMTP id KAA57910 for ; Sun, 15 Aug 1999 10:51:08 -0400 (EDT) Message-ID: <37B6D297.5CEE9B0D@confusion.net> Date: Sun, 15 Aug 1999 10:45:43 -0400 From: Laurence Berland X-Mailer: Mozilla 4.61 [en] (Win95; I) X-Accept-Language: en MIME-Version: 1.0 To: questions@freebsd.org Subject: [Fwd: File names and CD-ROM formats] Content-Type: multipart/mixed; boundary="------------0106EFDB4B7BAC97FD73EFAB" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. --------------0106EFDB4B7BAC97FD73EFAB Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit I don't think this got through the first time. If it did, my apologies for any inconvenience --------------0106EFDB4B7BAC97FD73EFAB Content-Type: message/rfc822 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Mozilla-Status2: 00000000 Message-ID: <37B608BD.D3EC15DA@confusion.net> Date: Sat, 14 Aug 1999 20:24:29 -0400 From: Laurence Berland X-Mailer: Mozilla 4.61 [en] (Win95; I) X-Accept-Language: en MIME-Version: 1.0 To: questions@freebsd.org Subject: File names and CD-ROM formats Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit A few questions 1. Is there a maximum pathlength in FreeBSD? 2. What about a maximum filename/directoryname length? 3. I need to burn a CD from a MS machine that I need to be able to read with FreeBSD. Do I choose ISO-9660 lev 1 (8+3) or lev 2 (31 chars I think) There's also some option to loosen the standard or something so I can get pathnames > 255 chars. And joliet, can I use that? It doesn't offer RockRidge extensions (know of any that do?) Thanks Laurence Please CC me, I'm not on the list --------------0106EFDB4B7BAC97FD73EFAB-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Aug 15 7:54:38 1999 Delivered-To: freebsd-questions@freebsd.org Received: from arutam.inch.com (ns.inch.com [207.240.140.101]) by hub.freebsd.org (Postfix) with ESMTP id C1DA51534D for ; Sun, 15 Aug 1999 07:54:36 -0700 (PDT) (envelope-from freyes@inch.com) Received: from your-name (freyes.static.inch.com [207.240.212.43]) by arutam.inch.com (8.9.3/8.9.3/UTIL-INCH-2.0.0) with SMTP id KAA00599; Sun, 15 Aug 1999 10:54:00 -0400 (EDT) Message-Id: <199908151454.KAA00599@arutam.inch.com> From: "Francisco Reyes" To: "montana1@home.com" , "Christopher Taylor" , "questions@FreeBSD.ORG" Date: Sun, 15 Aug 1999 10:50:58 -0400 Reply-To: "Francisco Reyes" X-Mailer: PMMail 98 Professional (2.01.1600) For Windows 98 (4.10.1998) MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Subject: Re: MYSQL install Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, 11 Aug 1999 09:22:27 -0600, Christopher Taylor wrote: >Mark Einreinhof wrote: >> >> I used /stand/sysinstall to install mysql ... >> ....How do I uninstall ... >1. 'pkg_info -a | grep mysql' >3. as root, run 'pkg_delete ' Another, possibly simpler, way is to go back in sysinstall and look for the package. Then unselect the [X]. This will prompt you if you want to uninstall. After you confirm, this will delete the package. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Aug 15 8: 8:12 1999 Delivered-To: freebsd-questions@freebsd.org Received: from arutam.inch.com (ns.inch.com [207.240.140.101]) by hub.freebsd.org (Postfix) with ESMTP id EBC3C15357 for ; Sun, 15 Aug 1999 08:08:10 -0700 (PDT) (envelope-from freyes@inch.com) Received: from your-name (freyes.static.inch.com [207.240.212.43]) by arutam.inch.com (8.9.3/8.9.3/UTIL-INCH-2.0.0) with SMTP id LAA01231; Sun, 15 Aug 1999 11:07:37 -0400 (EDT) Message-Id: <199908151507.LAA01231@arutam.inch.com> From: "Francisco Reyes" To: "Don Croyle" , "Parker Brown" Cc: "questions@FreeBSD.ORG" Date: Sun, 15 Aug 1999 11:04:30 -0400 Reply-To: "Francisco Reyes" X-Mailer: PMMail 98 Professional (2.01.1600) For Windows 98 (4.10.1998) MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Subject: Re: Cannot Boot Up Into Single-User Mode Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On 14 Aug 1999 14:18:33 -0500, Don Croyle wrote: > >What you have to do is catch the loader while it's counting down to an >automatic boot and use the commands > > set boot_single > boot You can also just use "boot -s" My understanding is that by the time you get the countdown the kernel is already loaded in memory. The boot command tells it to load the kernel in memory and by adding "-s" it just passes it. These notes of course apply if you are using 3.2 Also remember than the countdown uses [enter] to stop the wait and load. So you need to press something else like Space Bar. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Aug 15 8:25:29 1999 Delivered-To: freebsd-questions@freebsd.org Received: from voyager.fisicc-ufm.edu (pm2a-s33.guate.net [200.12.57.172]) by hub.freebsd.org (Postfix) with ESMTP id 69D3015357 for ; Sun, 15 Aug 1999 08:25:12 -0700 (PDT) (envelope-from obonilla@voyager.fisicc-ufm.edu) Received: (from obonilla@localhost) by voyager.fisicc-ufm.edu (8.9.3/8.9.3) id MAA01707; Fri, 13 Aug 1999 12:19:38 -0600 (CST) (envelope-from obonilla) Date: Fri, 13 Aug 1999 12:19:38 -0600 From: Oscar Bonilla To: daniel B Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Testing a new install Message-ID: <19990813121938.A1352@fisicc-ufm.edu> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.6i In-Reply-To: ; from daniel B on Fri, Aug 13, 1999 at 08:56:06AM -0700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, Aug 13, 1999 at 08:56:06AM -0700, daniel B wrote: > Hi; > Is there a way of testing a new Freebsd install sort of 12 - 24 hour > burn-in period to see if the system is stable hardware and software wise > before dedicating the machine for production use? > > Any tools that are good at this kinda application? > make world really stresses the hardware... a couple of make worlds in a row might be a good way. regards, -Oscar -- For PGP Public Key: finger obonilla@fisicc-ufm.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Aug 15 8:38:10 1999 Delivered-To: freebsd-questions@freebsd.org Received: from sand2.global.net.uk (sand2.global.net.uk [195.147.246.100]) by hub.freebsd.org (Postfix) with ESMTP id 6FFC815357 for ; Sun, 15 Aug 1999 08:38:05 -0700 (PDT) (envelope-from marko@globalnet.co.uk) Received: from peas13a06.client.global.net.uk ([195.147.221.235] helo=marder-1.) by sand2.global.net.uk with esmtp (Exim 2.05 #1) id 11G2LD-0001xm-00; Sun, 15 Aug 1999 16:37:00 +0100 Received: (from marko@localhost) by marder-1. (8.9.2/8.8.8) id QAA00334; Sun, 15 Aug 1999 16:30:17 +0100 (BST) (envelope-from marko) Date: Sun, 15 Aug 1999 16:30:17 +0100 From: Mark Ovens To: "Andrew L. Neporada" Cc: Mark Ovens , freebsd-questions@freebsd.org Subject: Re: Console resolution (at startup) Message-ID: <19990815163017.A275@marder-1> References: <19990815041515.B451@marder-1> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.3i In-Reply-To: ; from Andrew L. Neporada on Sun, Aug 15, 1999 at 07:52:06AM +0400 Organization: Total lack of Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, Aug 15, 1999 at 07:52:06AM +0400, Andrew L. Neporada wrote: > > Thank you, Mark. It works fine ( even better than I expected ;-) > But what should I do to keep this behaviour at startup? I've added the following to my /etc/rc.conf: font8x8="iso-8x8" font8x14="iso-8x14" font8x16="iso-thin-8x16" keymap="uk.cp850.swap" allscreens_flags="-m on VGA_80x30" You may want to use different fonts (the iso-thin one looks good at 80x30). The ``allscreens_flags'' line turns the console mouse on (-m on) and sets 80x30 for all console screens. HTH > Andrew. > > On Sun, 15 Aug 1999, Mark Ovens wrote: > > > On Sun, Aug 15, 1999 at 07:16:28AM +0400, Andrew L. Neporada wrote: > > > > > > Is it possible to increase console resolution from standard (80x24, > > > if I'am not mistaken)? > > > > Yes. take a look at the manpage for vidcontrol(1). > > > > Try ``vidcontrol VGA_80x30'' > > > > > Thanks in advance. > > > Andrew. > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > with "unsubscribe freebsd-questions" in the body of the message > > > > > > > -- > > FreeBSD - The Power To Serve http://www.freebsd.org > > My Webpage http://http://ukug.uk.freebsd.org/~mark/ > > _______________________________________________________________ > > Mark Ovens, CNC Apps Engineer, Radan Computational Ltd. Bath UK > > CAD/CAM solutions for Sheetmetal Working Industry > > mailto:mark@ukug.uk.freebsd.org http://www.radan.com > > > > > > -- FreeBSD - The Power To Serve http://www.freebsd.org My Webpage http://http://ukug.uk.freebsd.org/~mark/ _______________________________________________________________ Mark Ovens, CNC Apps Engineer, Radan Computational Ltd. Bath UK CAD/CAM solutions for Sheetmetal Working Industry mailto:mark@ukug.uk.freebsd.org http://www.radan.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Aug 15 9: 3:10 1999 Delivered-To: freebsd-questions@freebsd.org Received: from po3.wam.umd.edu (po3.wam.umd.edu [128.8.10.165]) by hub.freebsd.org (Postfix) with ESMTP id 5341114DF3 for ; Sun, 15 Aug 1999 09:02:59 -0700 (PDT) (envelope-from kee@wam.umd.edu) Received: from rac5.wam.umd.edu (root@rac5.wam.umd.edu [128.8.10.145]) by po3.wam.umd.edu (8.9.3/8.9.3) with ESMTP id MAA00236 for ; Sun, 15 Aug 1999 12:03:21 -0400 (EDT) Received: from rac5.wam.umd.edu (sendmail@localhost [127.0.0.1]) by rac5.wam.umd.edu (8.9.3/8.9.3) with SMTP id MAA12399 for ; Sun, 15 Aug 1999 12:03:20 -0400 (EDT) Received: from localhost (kee@localhost) by rac5.wam.umd.edu (8.9.3/8.9.3) with ESMTP id MAA12395 for ; Sun, 15 Aug 1999 12:03:20 -0400 (EDT) X-Authentication-Warning: rac5.wam.umd.edu: kee owned process doing -bs Date: Sun, 15 Aug 1999 12:03:19 -0400 (EDT) From: Byoung-Kee Yi To: freebsd-questions@FreeBSD.org Subject: [Q] sb pro sound card problem in R3.2 Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Dear all: I upgraded my desktop to R3.2 from R2.2.7 yesterday. (Actually I installed it from scratch) I'm having difficulty to make my (old) SB Pro card working. Here's my kernel config: ----------------------------------------------------------------------------- controller snd0 device sb0 at isa? port 0x220 irq 5 drq 3 vector sbintr #options SBC_IRQ=5 #options SBC_DMA=3 device opl0 at isa? port 0x388 conflicts ----------------------------------------------------------------------------- 'config' refused to recognize the 'options' lines, so I commented them out. (This configuration worked without any problems with R2.2.7.) Now kernel compilation went just smooth. Below is what the new kernel told me while rebooting. ----------------------------------------------------------------------------- ....skip.... sb0 at 0x220 irq 5 drq 3 on isa NOTE! SB Pro support required with your soundcard! snd0: opl0 at 0x388 on isa snd0: ....skip.... ----------------------------------------------------------------------------- Also, I got the following from `cat /dev/sndstat`: ----------------------------------------------------------------------------- VoxWare Sound Driver:3.5-alpha15-970902 (Wed Aug 6 22:58:35 PDT 1997 Amancio Hasty@rah.star-gate.com) Config options: Installed drivers: Type 1: OPL-2/OPL-3 FM Type 2: SoundBlaster Card config: SoundBlaster at 0x220 irq 5 drq 3 OPL-2/OPL-3 FM at 0x388 irq 1 Audio devices: 0: SoundBlaster Pro 3.2 Synth devices: 0: Yamaha OPL-3 Midi devices: 0: SoundBlaster Timers: 0: System clock Mixers: ----------------------------------------------------------------------------- I don't know why there are no entries for mixers. And I tried 'mpg123' and got the following console messages: ----------------------------------------------------------------------------- Sound: DMA (output) timed out - IRQ/DRQ config error? Sound: DMA (output) timed out - IRQ/DRQ config error? Sound: DMA (output) timed out - IRQ/DRQ config error? Sound: DMA (output) timed out - IRQ/DRQ config error? ....skip.... ----------------------------------------------------------------------------- Does anybody have any idea what's wrong? Cheers! -- Kee PS: Since I'm not on this list, cc your response to kee@wam.umd.edu please. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Aug 15 9:17:22 1999 Delivered-To: freebsd-questions@freebsd.org Received: from adsl-216-102-203-44.dsl.snfc21.pacbell.net (adsl-216-102-203-44.dsl.snfc21.pacbell.net [216.102.203.44]) by hub.freebsd.org (Postfix) with ESMTP id A5F4015137 for ; Sun, 15 Aug 1999 09:17:20 -0700 (PDT) (envelope-from bri@sonicboom.org) Received: from information (adsl-216-102-203-43.dsl.snfc21.pacbell.net [216.102.203.43]) by adsl-216-102-203-44.dsl.snfc21.pacbell.net (8.9.3/8.9.3) with SMTP id JAA37710; Sun, 15 Aug 1999 09:16:47 -0700 (PDT) (envelope-from bri@sonicboom.org) Message-ID: <000d01bee739$9bbdc550$2bcb66d8@sonicboom.org> From: "Brian W." To: "cetus303" Cc: References: <000001bee73f$4bcdffa0$3e2c54c2@default> Subject: Re: info & tutorials Date: Sun, 15 Aug 1999 09:17:01 -0700 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit 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-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Well pretty much all the web docs contain a version number, perhaps they could be glimpsified, and a column added to the search results with that version number. Brian ----- Original Message ----- From: cetus303 To: Brian Sent: Sunday, August 15, 1999 9:57 AM Subject: RE: info & tutorials > heh, that seems like a good advice, but... it's not a 100% gotcha solution. > those people who write tutorials, may use old versions of FreeBSD, don't > they? > > > -----Original Message----- > > From: Brian [mailto:bri@sonicboom.org] > > Sent: Friday, August 13, 1999 1:58 AM > > To: cetus303 > > Cc: freebsd-questions@FreeBSD.ORG > > Subject: Re: info & tutorials > > > > > > That is 1 of my long standing gripes of the page, perhaps search matches > > and/or docs ought to be sorted by release or date? > > > > Bri > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Aug 15 9:37:38 1999 Delivered-To: freebsd-questions@freebsd.org Received: from scientia.demon.co.uk (scientia.demon.co.uk [212.228.14.13]) by hub.freebsd.org (Postfix) with ESMTP id 16BE914F61 for ; Sun, 15 Aug 1999 09:37:26 -0700 (PDT) (envelope-from ben@scientia.demon.co.uk) Received: from lithium.scientia.demon.co.uk ([192.168.0.3] ident=exim) by scientia.demon.co.uk with esmtp (Exim 3.024 #3) id 11G1sI-0004vI-00; Sun, 15 Aug 1999 16:07:06 +0100 Received: (from ben) by lithium.scientia.demon.co.uk (Exim 3.024 #3) id 11G1sJ-0006g2-00; Sun, 15 Aug 1999 16:07:07 +0100 Date: Sun, 15 Aug 1999 16:07:07 +0100 From: Ben Smithurst To: KeLeMvOr LyOnSbAnE Cc: freebsd-questions@FreeBSD.ORG Subject: Re: FreeBSD Message-ID: <19990815160706.A25394@lithium.scientia.demon.co.uk> References: <002f01bee711$b7abc320$e2305d18@austin.rr.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: <002f01bee711$b7abc320$e2305d18@austin.rr.com> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG KeLeMvOr LyOnSbAnE wrote: > I am currently in search of a replacement OS for a Sun Ultra Wokrstation. > While RedHat 6 works on it, I am still looking for something "more". > Solaris (rather slowaris) runs some programs that I truly need thru a > program called SoftWin95, Redhat will not run it, but I am told some other > unix based systems (bsd and such) might do so. I am having problems finding > another OS that yet runs on the Ultra Sparc systems though. FreeBSD will not run on a Sparc. Try NetBSD. -- Ben Smithurst | PGP: 0x99392F7D ben@scientia.demon.co.uk | key available from keyservers and | ben+pgp@scientia.demon.co.uk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Aug 15 9:37:39 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mu.egroups.com (mu.egroups.com [207.138.41.151]) by hub.freebsd.org (Postfix) with SMTP id 1434515236 for ; Sun, 15 Aug 1999 09:37:25 -0700 (PDT) (envelope-from verma@quicklink.com) Received: from [10.1.2.24] by mu.egroups.com with NNFMP; 15 Aug 1999 17:35:39 -0000 Date: Sat, 14 Aug 1999 07:22:06 -0700 From: verma@quicklink.com To: freebsd-questions@freebsd.org Subject: Re: xwindows remotely Message-ID: <7p3u2e$1gph@eGroups.com> In-Reply-To: User-Agent: eGroups-EW/0.76 Content-Length: 1385 X-Mailer: www.eGroups.com Message Poster Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG verm-@quicklink.com wrote: Telnet is something different then X. You dont Telnet in to an Xwindows program. You must have an X server on your local system, ( X-Win32, Excede, etc... if you are on a windows system). If your local system is UNIX then chances are that X is already installed and running. In order to display a Xwindows program on your local system you must execute it on the remote system and pass in the -display switch.. example: xload -display your.IP.address:0:0 Before you execute the above command you have to setup your local system to accept an Xwindows connection from the remote system.. This is done for security purposes. ( man xauth or xhost command for more information). That's about it. If your local system is windows, then help files are included with the above mentioned programs. original article:http://www.egroups.com/group/freebsd-questions/?start= 168072 > > How difficult is xwindows server setup for remote login viva telnet ? > Where might I find faq on this subject ? thanks in advance... > JT > > > --/The human mind ordinarily operates at only ten percent of its capacity -- > the rest is overhead for the operating system.\-- > --/System Administrator support@techpower.net\-- > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Aug 15 9:59:15 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mobil.surnet.ru (mobil.surnet.ru [195.54.2.7]) by hub.freebsd.org (Postfix) with ESMTP id DDB0C15236 for ; Sun, 15 Aug 1999 09:59:02 -0700 (PDT) (envelope-from ilia@cgilh.chel.su) Received: (from uucgilh@localhost) by mobil.surnet.ru (8.9.1a/8.9.1) with UUCP id WAA10752 for questions@FreeBSD.ORG; Sun, 15 Aug 1999 22:55:18 +0600 (UDT) Received: (from uucp@localhost) by cgilh.chel.su (8.8.7/8.8.7) with UUCP id WAA03779 for questions@FreeBSD.ORG; Sun, 15 Aug 1999 22:45:36 +0600 Received: from localhost (ilia@localhost) by localhost.cgu.chel.su (8.9.2/8.9.2) with ESMTP id WAA00455 for ; Sun, 15 Aug 1999 22:44:55 +0600 (ESS) (envelope-from ilia@cgilh.chel.su) X-Authentication-Warning: localhost.cgu.chel.su: ilia owned process doing -bs Date: Sun, 15 Aug 1999 22:44:55 +0600 (ESS) From: Ilia Chipitsine X-Sender: ilia@localhost.cgu.chel.su To: questions@FreeBSD.ORG Subject: how much do I depend on PROCFS ? can I just throw it away ?! Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Aug 15 10: 4:15 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mobil.surnet.ru (mobil.surnet.ru [195.54.2.7]) by hub.freebsd.org (Postfix) with ESMTP id 4FDAB15236 for ; Sun, 15 Aug 1999 10:04:05 -0700 (PDT) (envelope-from ilia@cgilh.chel.su) Received: (from uucgilh@localhost) by mobil.surnet.ru (8.9.1a/8.9.1) with UUCP id WAA10750; Sun, 15 Aug 1999 22:55:17 +0600 (UDT) Received: (from uucp@localhost) by cgilh.chel.su (8.8.7/8.8.7) with UUCP id WAA03772; Sun, 15 Aug 1999 22:45:36 +0600 Received: from localhost (ilia@localhost) by localhost.cgu.chel.su (8.9.2/8.9.2) with ESMTP id WAA00393; Sun, 15 Aug 1999 22:31:34 +0600 (ESS) (envelope-from ilia@cgilh.chel.su) X-Authentication-Warning: localhost.cgu.chel.su: ilia owned process doing -bs Date: Sun, 15 Aug 1999 22:31:34 +0600 (ESS) From: Ilia Chipitsine X-Sender: ilia@localhost.cgu.chel.su To: "David S. Jackson" Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Mount CDROM from User Account In-Reply-To: <19990815093424.D44880@juno.dsj.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, 15 Aug 1999, David S. Jackson wrote: > > ===SNIP=== > > Let me know what you think! :-) no problems with that :-) I think there's some stuff that could work for us. I mean 'amd'. Currently it allows you mount on demand nfs partitions. It mounts directories which are mount points for nfs'ed shares after _anybody_ cd'ed to them ! Actually you can have nfs-shares on 'localhost', but it now won't mount floppy & cdrom for you :-( 'amd' could be better than 'sudo' and 'user'. > > > -- > David S. Jackson http://www.dsj.net > =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= > Out ed0, through the firewall, over the analog line, into > usr1, past another firewall, through the gateway, out the > T-3, off core2 in Atlanta . . . nothin' but Net. > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Aug 15 10: 5:24 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mobil.surnet.ru (mobil.surnet.ru [195.54.2.7]) by hub.freebsd.org (Postfix) with ESMTP id 5DD1A15369 for ; Sun, 15 Aug 1999 10:05:15 -0700 (PDT) (envelope-from ilia@cgilh.chel.su) Received: (from uucgilh@localhost) by mobil.surnet.ru (8.9.1a/8.9.1) with UUCP id WAA10751; Sun, 15 Aug 1999 22:55:17 +0600 (UDT) Received: (from uucp@localhost) by cgilh.chel.su (8.8.7/8.8.7) with UUCP id WAA03775; Sun, 15 Aug 1999 22:45:36 +0600 Received: from localhost (ilia@localhost) by localhost.cgu.chel.su (8.9.2/8.9.2) with ESMTP id WAA00405; Sun, 15 Aug 1999 22:39:28 +0600 (ESS) (envelope-from ilia@cgilh.chel.su) X-Authentication-Warning: localhost.cgu.chel.su: ilia owned process doing -bs Date: Sun, 15 Aug 1999 22:39:28 +0600 (ESS) From: Ilia Chipitsine X-Sender: ilia@localhost.cgu.chel.su To: Tony Cooper Cc: questions@FreeBSD.ORG Subject: Re: fork In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=koi8-r Content-Transfer-Encoding: 8BIT Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG there's file called /etc/login.conf which describes login classes (you can change your login class with vipw or with 'passwd anyuser' from root). If login class field is empty it means "default". in "default" we have :maxproc=unlimited: but, make sure you "login" way uses login_cap (which means it read /etc/login.conf), for example xdm simply ignores it at all :-( if you need more processes than "unlimited" recompile your kernel, have a look at LINT. Regards, (îÁÉÌÕÞÛÉÅ ÐÏÖÅÌÁÎÉÑ) Ilia Chipitsine (éÌØÑ ûÉÐÉÃÉÎ) On Sun, 15 Aug 1999, Tony Cooper wrote: > Can someone please tell me if there is a limit to the number of > simultaneous processes that each user can run on a freeBSD system and a > way to increase this number if there is? > I recently modified a script which pings all 16 ports of our stallion > card sequentially to doing it by running each ping process in the > background. > A similar script written to ping all 4 ports on a different freebsd box > doesn't have the problem. > The error I get is fork: Resource Temporarily unavailable. > hope someone has a bright idea that may fix the problem > TIA > gb > Would some one please stop this spinning ball, I wanna get off. > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Aug 15 10:19:44 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail.rdc2.on.home.com (ha1.rdc2.on.home.com [24.9.0.15]) by hub.freebsd.org (Postfix) with ESMTP id B4331151F3 for ; Sun, 15 Aug 1999 10:19:38 -0700 (PDT) (envelope-from milkmann@home.com) Received: from daniel ([24.65.62.76]) by mail.rdc2.on.home.com (InterMail v4.01.01.07 201-229-111-110) with SMTP id <19990815171959.HSGN12218.mail.rdc2.on.home.com@daniel> for ; Sun, 15 Aug 1999 10:19:59 -0700 X-Sender: milkmann@mail.rdc1.on.wave.home.com X-Mailer: QUALCOMM Windows Eudora Pro Version 4.0 Date: Sun, 15 Aug 1999 13:17:17 -0400 To: freebsd-questions@FreeBSD.ORG From: Dan Subject: Instalation Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Message-Id: <19990815171959.HSGN12218.mail.rdc2.on.home.com@daniel> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I am trying to install the newset version of freebsd by using your ftp installation feature. However I can not get past the first step. I have downloaded fdimage.exe but can't seem to find the file kern.flp for download, nor am I even sure I am to download it anymore. Please advise me. I remember seeing it one your ftp site, but when clicking on it I was shown the source of the file. Thank you for your speedy response, Daniel To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Aug 15 10:27:35 1999 Delivered-To: freebsd-questions@freebsd.org Received: from ddsecurity.com.br (vitoria.ddsecurity.com.br [200.18.130.93]) by hub.freebsd.org (Postfix) with SMTP id 88645151F3 for ; Sun, 15 Aug 1999 10:27:21 -0700 (PDT) (envelope-from grios@ddsecurity.com.br) Received: (qmail 26231 invoked from network); 15 Aug 1999 17:26:16 -0000 Received: from remoteip172.buynet.com.br (HELO ddsecurity.com.br) (200.238.234.172) by vitoria.ddsecurity.com.br with SMTP; 15 Aug 1999 17:26:16 -0000 Message-ID: <37B6CD94.8AAFB879@ddsecurity.com.br> Date: Sun, 15 Aug 1999 14:24:20 +0000 From: Gustavo Vieira G C Rios X-Mailer: Mozilla 4.51 [en] (X11; I; FreeBSD 3.2-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: Mikko =?iso-8859-1?Q?Gr=F6nroos?= Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Kernel/SMC Ultra etc. References: <37B699BF.28A547A8@mpoli.fi> Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Mikko Grönroos wrote: > > Hello, people. > > > How the kernel is configured and how do I add some devices to > it / system (I know how to add a NIC to ISA/PCMCIA/PCI - slot, > but I ment in the FreeBSD, not the actual "physical" hardware > installation)? > cd /sys/i386/conf/ cp LINT MY_KERNEL_NAME /* This dir contains files you should edit to have a personal kernel./* vi MY_KERNEL_NAME /* Edit this file to suit your needs */ config MY_KERNEL_NAME cd ../../compile/MY_KERNEL_NAME make depend && make && make install & reboot To know what each options means, try the handbook. -- "The box said 'Requires Windows 9x, NT, Linux or better,' so i installed FreeBSD." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Aug 15 11: 0:16 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mobil.surnet.ru (mobil.surnet.ru [195.54.2.7]) by hub.freebsd.org (Postfix) with ESMTP id B31FB14DF2 for ; Sun, 15 Aug 1999 10:59:52 -0700 (PDT) (envelope-from ilia@cgilh.chel.su) Received: (from uucgilh@localhost) by mobil.surnet.ru (8.9.1a/8.9.1) with UUCP id XAA12706; Sun, 15 Aug 1999 23:55:18 +0600 (UDT) Received: (from uucp@localhost) by cgilh.chel.su (8.8.7/8.8.7) with UUCP id XAA03817; Sun, 15 Aug 1999 23:14:15 +0600 Received: from localhost (ilia@localhost) by localhost.cgu.chel.su (8.9.2/8.9.2) with ESMTP id WAA00478; Sun, 15 Aug 1999 22:52:11 +0600 (ESS) (envelope-from ilia@cgilh.chel.su) X-Authentication-Warning: localhost.cgu.chel.su: ilia owned process doing -bs Date: Sun, 15 Aug 1999 22:52:07 +0600 (ESS) From: Ilia Chipitsine X-Sender: ilia@localhost.cgu.chel.su To: "Gregory D. Moncreaff" Cc: questions@FreeBSD.ORG Subject: Re: Dial out attempt every 30 minutes, why? In-Reply-To: <37B6C9AA.8DC2F13C@ma.ultranet.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=koi8-r Content-Transfer-Encoding: 8BIT Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG it looks strange, but it be this way if 1. sendmail flushes its queue every 30 minutes (-q30m) what is pretty typical 2. you have ppp running in 'auto' mode what means it dials out if there's network traffic. Regards, (îÁÉÌÕÞÛÉÅ ÐÏÖÅÌÁÎÉÑ) Ilia Chipitsine (éÌØÑ ûÉÐÉÃÉÎ) On Sun, 15 Aug 1999, Gregory D. Moncreaff wrote: > On a fairly recent 3.2-stable (end of July) > I am noticing a ppp dial attempt about > every 30 minutes, all day long. > > Any idea what might be causing this? > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Aug 15 11:16:53 1999 Delivered-To: freebsd-questions@freebsd.org Received: from escambia.se.mediaone.net (escambia.se.mediaone.net [24.129.0.53]) by hub.freebsd.org (Postfix) with ESMTP id 520DF14E3B for ; Sun, 15 Aug 1999 11:16:39 -0700 (PDT) (envelope-from dlee@cse.fau.edu) Received: from cse.fau.edu (lc72-21.pompano.net [24.129.72.21]) by escambia.se.mediaone.net (8.8.7/8.8.7) with ESMTP id OAA13235; Sun, 15 Aug 1999 14:16:49 -0400 (EDT) Message-ID: <37B704E6.DC305405@cse.fau.edu> Date: Sun, 15 Aug 1999 14:20:22 -0400 From: Donjuma Lee X-Mailer: Mozilla 4.6 [en] (WinNT; I) X-Accept-Language: en MIME-Version: 1.0 To: Dan Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Instalation References: <19990815171959.HSGN12218.mail.rdc2.on.home.com@daniel> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG its on the ftp site. If you are clicking on it and getting data in your browser sdreen then you need to press the shift key and click, to save the file. Dan wrote: > I am trying to install the newset version of freebsd by using your ftp > installation feature. However I can not get past the first step. I have > downloaded fdimage.exe but can't seem to find the file kern.flp for > download, nor am I even sure I am to download it anymore. > Please advise me. I remember seeing it one your ftp site, but when clicking > on it I was shown the source of the file. > > Thank you for your speedy response, > Daniel > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Aug 15 11:33:10 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mailout1.nyroc.rr.com (mailout1-1.nyroc.rr.com [24.92.226.146]) by hub.freebsd.org (Postfix) with ESMTP id A618E14A14 for ; Sun, 15 Aug 1999 11:33:04 -0700 (PDT) (envelope-from reichman@twcny.rr.com) Received: from mail1.twcny.rr.com ([24.92.226.74]) by mailout1.nyroc.rr.com (Post.Office MTA v3.5.3 release 223 ID# 0-59787U250000L250000S0V35) with ESMTP id com for ; Sun, 15 Aug 1999 14:33:18 -0400 Received: from twcny.rr.com ([24.95.188.113]) by mail1.twcny.rr.com (Post.Office MTA v3.5.2 release 221 ID# 0-53939U80000L80000S0V35) with ESMTP id com for ; Sun, 15 Aug 1999 14:33:17 -0400 Message-ID: <37B70A1C.5EF04EE7@twcny.rr.com> Date: Sun, 15 Aug 1999 14:42:36 -0400 From: "Mark S. Reichman" X-Mailer: Mozilla 4.61 [en] (X11; I; FreeBSD 3.2-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: USE_128BIT and Netscape Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG During the recent install of Netscape 4.61 it says, "You can make netscape use 128 bit encryption by defining USE_128BIT." Ok.. Where is this mysterious USE_128BIT and what should it be defined as (i.e. True, False, Yes, No, Always, Never)... I read a dejanews posting about make.conf but it is not in make.conf on 3.2 Stable. USE_128BIT is not reported as a flag when I do "netscape -help". Should I define it in my .cshrc or .profile. If yes, what is the value? Thanks.. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Aug 15 11:59:28 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mobil.surnet.ru (mobil.surnet.ru [195.54.2.7]) by hub.freebsd.org (Postfix) with ESMTP id F221114E96 for ; Sun, 15 Aug 1999 11:59:21 -0700 (PDT) (envelope-from ilia@cgilh.chel.su) Received: (from uucgilh@localhost) by mobil.surnet.ru (8.9.1a/8.9.1) with UUCP id AAA15063 for questions@FreeBSD.ORG; Mon, 16 Aug 1999 00:55:14 +0600 (UDT) Received: (from uucp@localhost) by cgilh.chel.su (8.8.7/8.8.7) with UUCP id XAA03876 for questions@FreeBSD.ORG; Sun, 15 Aug 1999 23:59:48 +0600 Received: from localhost (ilia@localhost) by localhost.cgu.chel.su (8.9.2/8.9.2) with ESMTP id XAA00842 for ; Sun, 15 Aug 1999 23:59:20 +0600 (ESS) (envelope-from ilia@cgilh.chel.su) X-Authentication-Warning: localhost.cgu.chel.su: ilia owned process doing -bs Date: Sun, 15 Aug 1999 23:59:20 +0600 (ESS) From: Ilia Chipitsine X-Sender: ilia@localhost.cgu.chel.su To: questions@FreeBSD.ORG Subject: ?! Re: Returned mail: Service unavailable In-Reply-To: <199908151709.XAA10891@mobil.surnet.ru> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=koi8-r Content-Transfer-Encoding: 8BIT Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG what's up ? haven't seen this one yet ... Regards, (îÁÉÌÕÞÛÉÅ ÐÏÖÅÌÁÎÉÑ) Ilia Chipitsine (éÌØÑ ûÉÐÉÃÉÎ) On Sun, 15 Aug 1999, Mail Delivery Subsystem wrote: > The original message was received at Sun, 15 Aug 1999 22:55:17 +0600 (UDT) > from uucgilh@localhost > > ----- The following addresses had permanent fatal errors ----- > dsj@sylvester.dsj.net > > ----- Transcript of session follows ----- > ... while talking to mail.atlnet.com.: > >>> RCPT To: > <<< 571 ... Relay denied by rule Contact support@atlnet.com > 554 dsj@sylvester.dsj.net... Service unavailable > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Aug 15 12: 3:39 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mobil.surnet.ru (mobil.surnet.ru [195.54.2.7]) by hub.freebsd.org (Postfix) with ESMTP id BEF70156B5 for ; Sun, 15 Aug 1999 12:03:30 -0700 (PDT) (envelope-from ilia@cgilh.chel.su) Received: (from uucgilh@localhost) by mobil.surnet.ru (8.9.1a/8.9.1) with UUCP id AAA15064; Mon, 16 Aug 1999 00:55:14 +0600 (UDT) Received: (from uucp@localhost) by cgilh.chel.su (8.8.7/8.8.7) with UUCP id XAA03865; Sun, 15 Aug 1999 23:55:28 +0600 Received: from localhost (ilia@localhost) by localhost.cgu.chel.su (8.9.2/8.9.2) with ESMTP id XAA00799; Sun, 15 Aug 1999 23:44:33 +0600 (ESS) (envelope-from ilia@cgilh.chel.su) X-Authentication-Warning: localhost.cgu.chel.su: ilia owned process doing -bs Date: Sun, 15 Aug 1999 23:44:32 +0600 (ESS) From: Ilia Chipitsine X-Sender: ilia@localhost.cgu.chel.su To: "David S. Jackson" Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Mount CDROM from User Account In-Reply-To: <19990815090841.C44880@juno.dsj.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, 15 Aug 1999, David S. Jackson wrote: > So then Ilia Chipitsine said . . . > > > sudo is _that_ tricky. option "user" in /etc/fstab makes much more > > sense... > > The more I think of it, the less I'm comfortable with the 'user' > option too. I can just see some anon. ftper ejecting the CD-ROM! > so, what are file permission for ? create group "mafia" and make /dev/acdXXX mafia-writeable :-) Do not add ftper to mafia ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Aug 15 13:15:56 1999 Delivered-To: freebsd-questions@freebsd.org Received: from templar.fgi.net (templar.fgi.net [206.101.112.9]) by hub.freebsd.org (Postfix) with ESMTP id A78CE1538B for ; Sun, 15 Aug 1999 13:15:53 -0700 (PDT) (envelope-from darnold@fgi.net) Received: from darnold.fgi.net (usr4tc103.fgi.net [208.130.70.103]) by templar.fgi.net (Pro-8.9.3/Pro-8.9.3) with SMTP id PAA08327; Sun, 15 Aug 1999 15:14:45 -0500 From: Dick Arnold To: "Mark S. Reichman" , freebsd-questions@FreeBSD.ORG Subject: Re: USE_128BIT and Netscape Date: Sun, 15 Aug 1999 15:13:12 -0500 X-Mailer: KMail [version 1.0.21] Content-Type: text/plain References: <37B70A1C.5EF04EE7@twcny.rr.com> MIME-Version: 1.0 Message-Id: <99081515151700.00263@darnold.fgi.net> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, 15 Aug 1999, Mark S. Reichman wrote: > During the recent install of Netscape 4.61 it says, > "You can make netscape use 128 bit encryption by defining USE_128BIT." > Ok.. Where is this mysterious USE_128BIT and what should it be > defined as (i.e. True, False, Yes, No, Always, Never)... > I read a dejanews posting about make.conf but it > is not in make.conf on 3.2 Stable. > USE_128BIT is not reported as a flag when I do "netscape -help". > Should I define it in my .cshrc or .profile. If yes, > what is the value? > > Thanks.. > > I put it at the end of /etc/make.conf USE_128BIT=yes To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Aug 15 13:28:44 1999 Delivered-To: freebsd-questions@freebsd.org Received: from post.mail.nl.demon.net (post-10.mail.nl.demon.net [194.159.73.20]) by hub.freebsd.org (Postfix) with ESMTP id 0975015398 for ; Sun, 15 Aug 1999 13:28:35 -0700 (PDT) (envelope-from dave@free-jpg.demon.nl) Received: from [212.238.53.82] (helo=free-jpg.demon.nl) by post.mail.nl.demon.net with esmtp (Exim 2.02 #1) id 11G6tl-0001Ki-00 for freebsd-questions@FreeBSD.ORG; Sun, 15 Aug 1999 20:28:58 +0000 Message-ID: <32CA1868.7FEE6176@free-jpg.demon.nl> Date: Wed, 01 Jan 1997 07:55:21 +0000 From: Dave orsel X-Mailer: Mozilla 4.5 [en] (WinNT; I) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: Unable to fetch packages Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Dear BSD Crew I'am having lots of troubles while installing Packages into FreeBSD 3.2 Release. With every Package i like to install , something like bash, doesn't want to install at all. He gave me this error message, while trying to get new packages from the Cd-rom: Unable to fetch package Bash-2.03 from selected media, no package add will be done. (this happens with all the Packages) I'am trying to install the Packages thrue a network connection, from my own webserver it reads the Index of that position, and let me collect an item like Bash, and afther that he won't install at all. Can you please help me out i worked for 2 weeks on this problem and hope you good help me out. Thanks a lot for your attention. With Regards, Dave Orsel Holland To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Aug 15 13:52:33 1999 Delivered-To: freebsd-questions@freebsd.org Received: from www.keycomp.net (www.keycomp.net [207.44.1.33]) by hub.freebsd.org (Postfix) with ESMTP id 1763314D11 for ; Sun, 15 Aug 1999 13:52:20 -0700 (PDT) (envelope-from billieakay@yahoo.com) Received: from bopper (kc-rmt01.keycomp.net [207.44.1.3]) by www.keycomp.net (8.8.5/SCO5) with SMTP id QAA25666 for ; Sun, 15 Aug 1999 16:59:00 -0400 (EDT) Message-ID: <002501bee75f$02878da0$01010101@bopper> From: "Bill A. K." To: "FreeBSD Questions" Subject: USB Mouse on 4.0-CURRENT Date: Sun, 15 Aug 1999 16:44:44 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit 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-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, I'm trying to run a Logitech USB Mouse on FreeBSD 4.0-CURRENT (Updated yesterday), and I'm having a problem. The system boots up and the mouse works fine, but when I shut down, the system crashes with a page fault in moused. (This also happens when I killall moused). Like I said, I updated -CURRENT yesterday. Oh, and this also behaved like this on 3.2-RELEASE I don't know how to get the error message output, because when this happens, the system has to reboot and I don't know if or where the message might be logged. If someone can help me, please let me know. Bill billieakay@yahoo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Aug 15 14:11:25 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail.cybcon.com (mail.cybcon.com [216.190.188.5]) by hub.freebsd.org (Postfix) with ESMTP id 1BDAD14D11 for ; Sun, 15 Aug 1999 14:11:23 -0700 (PDT) (envelope-from wwoods@cybcon.com) Received: from freebsd.cybcon.com (william@pm3b-4.cybcon.com [205.147.75.69]) by mail.cybcon.com (8.9.0/8.9.0) with ESMTP id OAA26669 for ; Sun, 15 Aug 1999 14:11:46 -0700 (PDT) Message-ID: X-Mailer: XFMail 1.3 [p0] on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 Date: Sun, 15 Aug 1999 14:11:46 -0700 (PDT) Reply-To: wwoods@cybcon.com From: william woods To: freebsd-questions@freebsd.org Subject: StarOffice 5.1 help please Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I just finished installing StarOffice 5.1 and the install went fine. The only problem I have now is when I run /home/william/Office51/bin/soffice , I get the setup screen......how do I get the program to start and not the set up screen? ---------------------------------- E-Mail: william woods Date: 15-Aug-99 Time: 14:10:09 This message was sent by XFMail ---------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Aug 15 14:19:38 1999 Delivered-To: freebsd-questions@freebsd.org Received: from neodymium.btinternet.com (neodymium.btinternet.com [194.73.73.83]) by hub.freebsd.org (Postfix) with ESMTP id BF55515245 for ; Sun, 15 Aug 1999 14:19:27 -0700 (PDT) (envelope-from duncanks@altavista.net) Received: from [195.171.231.251] (helo=duncan) by neodymium.btinternet.com with smtp (Exim 2.05 #1) id 11G7gg-0002Ll-00; Sun, 15 Aug 1999 22:19:33 +0100 Message-ID: <00ae01bee763$5cbfba00$0100a8c0@my.domain> From: "Duncan Spooner" To: , References: Subject: Re: StarOffice 5.1 help please Date: Sun, 15 Aug 1999 22:15:46 +0100 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2615.200 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2615.200 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > I just finished installing StarOffice 5.1 and the install went fine. The only > problem I have now is when I run /home/william/Office51/bin/soffice , I get the > setup screen......how do I get the program to start and not the set up screen? You can't not do the setup screen, because you have to enter your Registration Number or Media Key. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Aug 15 14:34:37 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail.cybcon.com (mail.cybcon.com [216.190.188.5]) by hub.freebsd.org (Postfix) with ESMTP id 95BEF15389 for ; Sun, 15 Aug 1999 14:34:35 -0700 (PDT) (envelope-from wwoods@cybcon.com) Received: from freebsd.cybcon.com (william@pm3b-4.cybcon.com [205.147.75.69]) by mail.cybcon.com (8.9.0/8.9.0) with ESMTP id OAA27678 for ; Sun, 15 Aug 1999 14:34:58 -0700 (PDT) Message-ID: X-Mailer: XFMail 1.3 [p0] on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 Date: Sun, 15 Aug 1999 14:34:58 -0700 (PDT) Reply-To: wwoods@cybcon.com From: william woods To: freebsd-questions@freebsd.org Subject: StarOffice 5.1 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG OK, I got StarOffice to work, has anyone had any luck getting the plug-in manager to work ? If so, how.... ---------------------------------- E-Mail: william woods Date: 15-Aug-99 Time: 14:33:56 This message was sent by XFMail ---------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Aug 15 14:51:54 1999 Delivered-To: freebsd-questions@freebsd.org Received: from gold.wvnet.edu (gold.wvnet.edu [129.71.2.25]) by hub.freebsd.org (Postfix) with ESMTP id B760F153BF for ; Sun, 15 Aug 1999 14:51:50 -0700 (PDT) (envelope-from sce04020@mail.wvnet.edu) Received: from myname.my.domain (IP227232.DIALUP.WVNET.EDU) by gold.wvnet.edu (LSMTP for Windows NT v1.1b) with SMTP id <0.41CC0111@gold.wvnet.edu>; 15 Aug 1999 18:00:28 -0400 From: Kenneth Legg To: freebsd-questions@FreeBSD.ORG Subject: kppp Date: Sun, 15 Aug 1999 17:51:09 -0400 X-Mailer: KMail [version 1.0.21] Content-Type: text/plain MIME-Version: 1.0 Message-Id: <99081517540300.00317@myname.my.domain> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Why can I only login on at 38400 with kppp? When I try loging in at faster baud rate the modem will not dial. The same modem will login at 115000 with win95. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Aug 15 15:48:42 1999 Delivered-To: freebsd-questions@freebsd.org Received: from fsjrez01.adm.rl.af.mil (FSJREZ01.adm.rl.af.mil [128.132.129.29]) by hub.freebsd.org (Postfix) with ESMTP id 7742E15271 for ; Sun, 15 Aug 1999 15:48:40 -0700 (PDT) (envelope-from Richard.Smith@rl.af.mil) Received: by FSJREZ01.adm.rl.af.mil with Internet Mail Service (5.5.2448.0) id ; Sun, 15 Aug 1999 18:48:28 -0400 Message-ID: <17B0902BC8CCD211A63B0000D11B4C2C011A98E7@FSJREZ02.adm.rl.af.mil> From: Smith Richard N Civ AFRL/IFGC To: "'freebsd-questions@FreeBSD.ORG'" Subject: Printer Port /dev/lpt0 Date: Sun, 15 Aug 1999 18:48:51 -0400 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2448.0) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi The command lptest > /dev/lpt0 worked under 2.2.2 but not under 2.2.7 or 3.2. I got a new HP DeskJet 712C. I have a dual boot system. Under window98 printer works great but under FreeBSD lptest > /dev/lpt0 doesn't work. In the bios SETUP I have ECP parallel port mode selected. Any help? Rich To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Aug 15 16:27:43 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mspeos0.corp.medtronic.COM (mspeos0.corp.medtronic.COM [144.15.157.114]) by hub.freebsd.org (Postfix) with SMTP id 41B0914ECB for ; Sun, 15 Aug 1999 16:27:38 -0700 (PDT) (envelope-from marcus.young@medtronic.com) Received: from MSPEOS-Message_Server by mspeos0.corp.medtronic.COM with Novell_GroupWise; Sun, 15 Aug 1999 18:27:53 -0500 Message-Id: X-Mailer: Novell GroupWise 5.5.2 Date: Sun, 15 Aug 1999 18:27:37 -0500 From: "Marcus Young" To: Subject: kernel log messages Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi. The security check output of my 2.2.7 system is giving the following messages. Would somebody be able to explain what they mean? > s full > file: table is full > file: table is full > file: table is full > file: table is full > file: table is full > file: table is full > file: table is full > file: table is full > file: table is full Marcus To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Aug 15 17: 1:32 1999 Delivered-To: freebsd-questions@freebsd.org Received: from sand4.global.net.uk (sand4.global.net.uk [194.126.80.248]) by hub.freebsd.org (Postfix) with ESMTP id 85291153CE for ; Sun, 15 Aug 1999 17:00:57 -0700 (PDT) (envelope-from marko@globalnet.co.uk) Received: from p14s13a06.client.global.net.uk ([195.147.221.21] helo=marder-1.) by sand4.global.net.uk with esmtp (Exim 2.12 #1) id 11GADH-0004ZO-00 for questions@freebsd.org; Mon, 16 Aug 1999 01:01:19 +0100 Received: (from marko@localhost) by marder-1. (8.9.2/8.8.8) id AAA00364 for questions@freebsd.org; Mon, 16 Aug 1999 00:54:34 +0100 (BST) (envelope-from marko) Date: Mon, 16 Aug 1999 00:54:34 +0100 From: Mark Ovens To: questions@freebsd.org Subject: Mail archive search bug? Message-ID: <19990816005434.B270@marder-1> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.3i Organization: Total lack of Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Is the mail archive search engine broken? I was searching for something and noticed a post from me dated 1995, a year before I discovered FreeBSD!!. I did some simple tests and this is the output: Search for ``+Volume+Label'' in -questions only, sorted by date and with 25 matches includes this: 25.Doug White Re: Reading the "Volume Label" of a CD Score: 1098; Lines: 41; 23-Feb-1995; Archive: freebsd-questions Search for ``+Mark+Ovens'' in -questions only, sorted by date and with 25 matches includes this: 15.Doug White Re: Reading the "Volume Label" of a CD Score: 875; Lines: 41; 05-Feb-1997; Archive: freebsd-questions Search for ``+Mark+Ovens'' in -questions only, sorted by date and with 50 matches includes this: 37.Doug White Re: Reading the "Volume Label" of a CD Score: 875; Lines: 41; 08-Jul-1996; Archive: freebsd-questions 3 different dates and all wrong!! The actual date of this message is 20 Apr 1999: Date: Tue, 20 Apr 1999 14:27:56 -0700 (PDT) From: Doug White To: Mark Ovens Cc: questions@FreeBSD.ORG Subject: Re: Reading the "Volume Label" of a CD Message-ID: In-Reply-To: <371C5C88.63C40A85@uk.radan.com> Should I raise a PR for this? -- FreeBSD - The Power To Serve http://www.freebsd.org My Webpage http://http://ukug.uk.freebsd.org/~mark/ _______________________________________________________________ Mark Ovens, CNC Apps Engineer, Radan Computational Ltd. Bath UK CAD/CAM solutions for Sheetmetal Working Industry mailto:mark@ukug.uk.freebsd.org http://www.radan.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Aug 15 17:22:41 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail.mato.com (Mail.mato.com [199.240.78.3]) by hub.freebsd.org (Postfix) with SMTP id BFFF215155 for ; Sun, 15 Aug 1999 17:22:33 -0700 (PDT) (envelope-from dragonk@mato.com) Received: from dk1 [199.240.78.220] by mail.mato.com with smtp id 11GAYA-0004O2-00; Sun, 15 Aug 1999 18:22:54 -0600 Message-ID: <002101bee77d$6a6fe980$0201a8c0@dragonknight.yi.org> From: "Dragon Knight ][" To: "Kenneth Legg" , References: <99081517540300.00317@myname.my.domain> Subject: Re: kppp Date: Sun, 15 Aug 1999 18:22:16 -0600 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit 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-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Most likely you were only connecting at 38,400 in Windows 95, it was just telling you that you were connecting faster. This often happens with the generic drivers in my experience. Sam > > Why can I only login on at 38400 with kppp? When I try loging in at faster baud > rate the modem will not dial. The same modem will login at 115000 with win95. > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Aug 15 17:31:18 1999 Delivered-To: freebsd-questions@freebsd.org Received: from sand5.global.net.uk (sand5.global.net.uk [194.126.80.249]) by hub.freebsd.org (Postfix) with ESMTP id A34C714FBE for ; Sun, 15 Aug 1999 17:31:12 -0700 (PDT) (envelope-from marko@globalnet.co.uk) Received: from p14s13a06.client.global.net.uk ([195.147.221.21] helo=marder-1.) by sand5.global.net.uk with esmtp (Exim 2.05 #1) id 11GAew-0006OV-00; Mon, 16 Aug 1999 01:29:54 +0100 Received: (from marko@localhost) by marder-1. (8.9.2/8.8.8) id BAA00498; Mon, 16 Aug 1999 01:23:12 +0100 (BST) (envelope-from marko) Date: Mon, 16 Aug 1999 01:23:12 +0100 From: Mark Ovens To: "Dragon Knight ][" Cc: Kenneth Legg , freebsd-questions@freebsd.org Subject: Re: kppp Message-ID: <19990816012311.D270@marder-1> References: <99081517540300.00317@myname.my.domain> <002101bee77d$6a6fe980$0201a8c0@dragonknight.yi.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.3i In-Reply-To: <002101bee77d$6a6fe980$0201a8c0@dragonknight.yi.org>; from Dragon Knight ][ on Sun, Aug 15, 1999 at 06:22:16PM -0600 Organization: Total lack of Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, Aug 15, 1999 at 06:22:16PM -0600, Dragon Knight ][ wrote: > Most likely you were only connecting at 38,400 > in Windows 95, it was just telling you that you > were connecting faster. This often happens with > the generic drivers in my experience. > Yeah, Windows tends to show the DTE speed if it doesn't recognize the CONNECT string it receives, e.g. CONNECT 46667/ARQ. I had this with my modem under 95. > Sam > > > > > Why can I only login on at 38400 with kppp? When I try loging in at > faster baud > > rate the modem will not dial. The same modem will login at 115000 > with win95. > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > -- FreeBSD - The Power To Serve http://www.freebsd.org My Webpage http://http://ukug.uk.freebsd.org/~mark/ _______________________________________________________________ Mark Ovens, CNC Apps Engineer, Radan Computational Ltd. Bath UK CAD/CAM solutions for Sheetmetal Working Industry mailto:mark@ukug.uk.freebsd.org http://www.radan.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Aug 15 18:25:50 1999 Delivered-To: freebsd-questions@freebsd.org Received: from gold.wvnet.edu (gold.wvnet.edu [129.71.2.25]) by hub.freebsd.org (Postfix) with ESMTP id 1887914D45 for ; Sun, 15 Aug 1999 18:25:47 -0700 (PDT) (envelope-from sce04020@mail.wvnet.edu) Received: from myname.my.domain (IP227228.DIALUP.WVNET.EDU) by gold.wvnet.edu (LSMTP for Windows NT v1.1b) with SMTP id <0.41CC03BC@gold.wvnet.edu>; 15 Aug 1999 21:33:45 -0400 From: Kenneth Legg To: freebsd-questions@FreeBSD.ORG Subject: printing Date: Sun, 15 Aug 1999 21:24:18 -0400 X-Mailer: KMail [version 1.0.21] Content-Type: text/plain MIME-Version: 1.0 Message-Id: <99081521273000.00319@myname.my.domain> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I'v set-up my /etc/printcat file and I think I have everything right, but when I try to print a file I get this: /root # lpr .profile lpr: connect: No such file or directory jobs queued, but cannot start deamon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Aug 15 19: 3: 7 1999 Delivered-To: freebsd-questions@freebsd.org Received: from cc942873-a.ewndsr1.nj.home.com (cc942873-a.ewndsr1.nj.home.com [24.2.89.207]) by hub.freebsd.org (Postfix) with ESMTP id 0C593153C3 for ; Sun, 15 Aug 1999 19:02:58 -0700 (PDT) (envelope-from cjc@cc942873-a.ewndsr1.nj.home.com) Received: (from cjc@localhost) by cc942873-a.ewndsr1.nj.home.com (8.8.8/8.8.8) id WAA04485; Sun, 15 Aug 1999 22:03:34 -0400 (EDT) (envelope-from cjc) From: "Crist J. Clark" Message-Id: <199908160203.WAA04485@cc942873-a.ewndsr1.nj.home.com> Subject: Re: printing In-Reply-To: <99081521273000.00319@myname.my.domain> from Kenneth Legg at "Aug 15, 99 09:24:18 pm" To: sce04020@mail.wvnet.edu (Kenneth Legg) Date: Sun, 15 Aug 1999 22:03:34 -0400 (EDT) Cc: freebsd-questions@FreeBSD.ORG Reply-To: cjclark@home.com 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-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Kenneth Legg wrote, > I'v set-up my /etc/printcat file and I think I have everything right, but when > I try to print a file I get this: > /root # lpr .profile > lpr: connect: No such file or directory > jobs queued, but cannot start deamon. Did you start the printer daemon, lpd(8), first? -- Crist J. Clark cjclark@home.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Aug 15 19:41:21 1999 Delivered-To: freebsd-questions@freebsd.org Received: from rm-rstar.sfu.ca (rm-rstar.sfu.ca [142.58.120.21]) by hub.freebsd.org (Postfix) with ESMTP id E162714F5C for ; Sun, 15 Aug 1999 19:41:18 -0700 (PDT) (envelope-from raymondl@sfu.ca) Received: from sfu.ca (rs2-annex2.sfu.ca [142.58.122.2]) by rm-rstar.sfu.ca (8.9.1/8.9.1/SFU-5.0H) with ESMTP id TAA23324 for ; Sun, 15 Aug 1999 19:39:17 -0700 (PDT) Message-ID: <37B779EC.3F8A0C47@sfu.ca> Date: Sun, 15 Aug 1999 19:39:40 -0700 From: Raymond Lee X-Mailer: Mozilla 4.61 [en] (Win95; I) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: Hardware compatibility? Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I am an university student who is working on a project about operating system. My PC has a hard drive with Ultra ATA interface. Would the FreeBSD support the Enhanced IDE standard of my hard drive? My PC system has everything using Win95. If I start to build a new PC system using FreeBSD, then do I need to get a video card driver for FreeBSD. ATI supports only WIN95 driver for its products. Where can I get a new driver. Would the FreeBSD support Quantum Fireball hard drive with ultra DMA interface Raymond To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Aug 15 20:18:16 1999 Delivered-To: freebsd-questions@freebsd.org Received: from gateway.ciminot.com (gateway.ciminot.com [208.149.231.26]) by hub.freebsd.org (Postfix) with ESMTP id B3A90153CE for ; Sun, 15 Aug 1999 20:18:06 -0700 (PDT) (envelope-from dave@ciminot.com) Received: from dave ([192.168.200.15]) by gateway.ciminot.com (8.9.1/8.9.1) with SMTP id WAA16241 for ; Sun, 15 Aug 1999 22:16:45 -0500 (CDT) (envelope-from dave@ciminot.com) From: "David B. Aas" To: Subject: Where are the PPP config files? Date: Sun, 15 Aug 1999 22:18:08 -0500 Message-ID: <004801bee795$f8ffa740$0fc8a8c0@dave.ciminot.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 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3155.0 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I installed FBSD 3.2 with an FTP install. I did a user (non-X) install. Now I want to set up PPP, so I go to my trusty "The Complete FreeBSD" book, and Greg says that the sample config files are under /etc/ppp. Except that I only have 2 files in the directory. Where are the rest? I looked in the Ports Collection index, to look for "User PPP", and didn't see anything to install. I also checked the MAN page. Nothing there. Where else can I look to install these files? Thanks for your help. Dave Aas dave@ciminot.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Aug 15 20:23:50 1999 Delivered-To: freebsd-questions@freebsd.org Received: from vulcan.addy.com (vulcan.addy.com [207.239.68.7]) by hub.freebsd.org (Postfix) with ESMTP id A7575153CE for ; Sun, 15 Aug 1999 20:23:46 -0700 (PDT) (envelope-from francisco@natserv.com) Received: from your-name (freyes.static.inch.com [207.240.212.43]) by vulcan.addy.com (8.8.5/8.6.12) with SMTP id XAA10874 for ; Sun, 15 Aug 1999 23:23:47 -0400 (EDT) Message-Id: <199908160323.XAA10874@vulcan.addy.com> From: "Francisco Reyes" To: "FreeBSD questions" Date: Sun, 15 Aug 1999 23:23:44 -0400 Reply-To: "Francisco Reyes" X-Mailer: PMMail 98 Professional (2.01.1600) For Windows 98 (4.10.1998) MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Subject: MySQL port fails with "cannot open makefile" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I am trying to install MySQL 3.22 from the ports and it fails with "cannot open makefile" Netmax FreeBSD 2.2.7 Running make from "/usr/ports/mysql322-server" ns1# head -5 Makefile # ports collection makefile for: MySQL-server # Version required: v3.22.x # Date created: 26 Jan 1998 # Whom: Josh Tiefenbach head /usr/share/mk/bsd.port.mk #-*- mode: Fundamental; tab-width: 4; -*- # ex:ts=4 # # $Id: bsd.port.mk,v 1.302 1999/01/20 01:55:05 asami Exp $ # $NetBSD: $ # # bsd.port.mk - 940820 Jordan K. Hubbard. # This file is in the public domain. I have applied the 227upgrade.tgz I have built several other ports without problems so I am not sure if it is a problem with the port or if there is a file in Netmax which is either missing or in a different directory than in a regular FreeBSD build. How does one troubleshoot a port? Is there a way to see which part in the makefile it is running as to see which is the make file that it can not open? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Aug 15 20:23:54 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail.greatbasin.net (mail.greatbasin.net [207.228.35.39]) by hub.freebsd.org (Postfix) with ESMTP id 45F1F153F5 for ; Sun, 15 Aug 1999 20:23:49 -0700 (PDT) (envelope-from dan@jgl.reno.nv.us) Received: from pandora.home (rno-max9-41.gbis.net [207.228.62.105]) by mail.greatbasin.net (8.9.3/8.9.3) with ESMTP id UAA18695; Sun, 15 Aug 1999 20:23:56 -0700 (PDT) Received: from danco (danco.home [10.0.0.2]) by pandora.home (8.9.3/8.9.2) with SMTP id UAA00953; Sun, 15 Aug 1999 20:23:53 -0700 (PDT) (envelope-from dan@jgl.reno.nv.us) Message-ID: <021001bee796$c52ca2a0$0200000a@home> From: "Dan O'Connor" To: "Raymond Lee" , References: <37B779EC.3F8A0C47@sfu.ca> Subject: Re: Hardware compatibility? Date: Sun, 15 Aug 1999 20:23:52 -0700 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit 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-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Yes, FreeBSD 3.2 supports EIDE and Ultra-DMA drives just fine. By default (i.e., the GENERIC kernel), UDMA mode is not enabled, but you can enable it by rebuilding the kernel and adding "flags 0xa0ffa0ff" to the IDE controller definition in your kernel configuration file, e.g.: controller wdc0 at isa? port "IO_WD1" bio irq 14 flags 0xa0ffa0ff vector wdintr See the handbook (http://www.freebsd.org/handbook/kernelconfig.html) for info on building your own kernel. As far as your video card is concerned, FreeBSD will work, since it runs video in text-mode. If you think you'd like to run X-Windows (which you probably will), check out http://www.xfree86.org/3.3.4/ati3.html#3 , as well as other parts of the XFree86-project's FAQ. Basically, XFree86 supports 256 colors on most ATI cards, and 32K, 64K and 16M color modes on the 264xT and 3D Rage cards (athough acceleration is not yet supported). Apparently, the newer Rage 128 chips are not yet supported. Good luck! --Dan ** The thing I like most about Windows 98 is... ** You can download FreeBSD with it! ----- Original Message ----- From: Raymond Lee To: Sent: Sunday, August 15, 1999 7:39 PM Subject: Hardware compatibility? > I am an university student who is working on a project about operating > system. My PC has a hard drive with Ultra ATA interface. Would the > FreeBSD support the Enhanced IDE standard of my hard drive? My PC system > > has everything using Win95. If I start to build a new PC system using > FreeBSD, then do I need to get a video card driver for FreeBSD. ATI > supports only WIN95 driver for its products. Where can I get a new > driver. Would the FreeBSD support Quantum Fireball hard drive with ultra > DMA interface > > Raymond > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Aug 15 20:27:26 1999 Delivered-To: freebsd-questions@freebsd.org Received: from www.keycomp.net (www.keycomp.net [207.44.1.33]) by hub.freebsd.org (Postfix) with ESMTP id 58373153F5 for ; Sun, 15 Aug 1999 20:27:14 -0700 (PDT) (envelope-from billieakay@yahoo.com) Received: from bopper (kc-rmt14.keycomp.net [207.44.1.16]) by www.keycomp.net (8.8.5/SCO5) with SMTP id XAA27212; Sun, 15 Aug 1999 23:33:18 -0400 (EDT) Message-ID: <001201bee796$1859c6c0$01010101@bopper> From: "Bill A. K." To: "Raymond Lee" , "FreeBSD Questions" References: <37B779EC.3F8A0C47@sfu.ca> Subject: Re: Hardware compatibility? Date: Sun, 15 Aug 1999 23:19:03 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit 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-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG you shouldn't have any problems at all with the hard drive, FreeBSD supports UDMA 33 and EIDE. The video card depends on the ATI model. if you let me know what ATI card you have, i can check it out and get back to you glad to help Bill billieakay@yahoo.com ----- Original Message ----- From: Raymond Lee To: Sent: Sunday, August 15, 1999 10:39 PM Subject: Hardware compatibility? > I am an university student who is working on a project about operating > system. My PC has a hard drive with Ultra ATA interface. Would the > FreeBSD support the Enhanced IDE standard of my hard drive? My PC system > > has everything using Win95. If I start to build a new PC system using > FreeBSD, then do I need to get a video card driver for FreeBSD. ATI > supports only WIN95 driver for its products. Where can I get a new > driver. Would the FreeBSD support Quantum Fireball hard drive with ultra > DMA interface > > Raymond > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Aug 15 20:36:24 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mailgw00.execpc.com (mailgw00.execpc.com [169.207.1.78]) by hub.freebsd.org (Postfix) with ESMTP id 6B32214DF2 for ; Sun, 15 Aug 1999 20:36:19 -0700 (PDT) (envelope-from hamilton@pobox.com) Received: from woodstock.monkey.net (lakertya-2-14.mdm.mkt.execpc.com [169.207.118.142]) by mailgw00.execpc.com (8.9.1) id WAA27848; Sun, 15 Aug 1999 22:35:50 -0500 Received: from pobox.com (localhost [127.0.0.1]) by woodstock.monkey.net (Postfix) with ESMTP id 12BDB20A; Sun, 15 Aug 1999 22:36:22 -0500 (CDT) To: "David B. Aas" Cc: freebsd-questions@freebsd.org Subject: Re: Where are the PPP config files? In-reply-to: Your message of "Sun, 15 Aug 1999 22:18:08 CDT." <004801bee795$f8ffa740$0fc8a8c0@dave.ciminot.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sun, 15 Aug 1999 22:36:22 -0500 From: Jon Hamilton Message-Id: <19990816033622.12BDB20A@woodstock.monkey.net> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message <004801bee795$f8ffa740$0fc8a8c0@dave.ciminot.com>, "David B. Aas" wr ote: } I installed FBSD 3.2 with an FTP install. I did a user (non-X) install. } } Now I want to set up PPP, so I go to my trusty "The Complete FreeBSD" book, } and Greg says that the sample config files are under /etc/ppp. Except that I } only have 2 files in the directory. Where are the rest? } } I looked in the Ports Collection index, to look for "User PPP", and didn't } see anything to install. } } I also checked the MAN page. Nothing there. Oh please. The man page is more than 2700 lines of almost nothing _but_ describing options and their usage. } Where else can I look to install these files? Which files? ppp.conf is really all you should need. } Thanks for your help. You'll get more useful assistance if you describe what you are trying to do, what you did, and what the results were, and what surprised you about the results. The question you asked is so vague it's hard to even know where to start. http://www.freebsd.org/tutorials/ppp/ppp.html will likely be of considerable help as well; if you are still having problems after reading through that and the man page, come back and ask some specific questions. -- Jon Hamilton hamilton@pobox.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Aug 15 20:57:48 1999 Delivered-To: freebsd-questions@freebsd.org Received: from gateway.ciminot.com (gateway.ciminot.com [208.149.231.26]) by hub.freebsd.org (Postfix) with ESMTP id 8AC5914E64 for ; Sun, 15 Aug 1999 20:57:44 -0700 (PDT) (envelope-from dave@ciminot.com) Received: from dave ([192.168.200.15]) by gateway.ciminot.com (8.9.1/8.9.1) with SMTP id WAA16348; Sun, 15 Aug 1999 22:56:22 -0500 (CDT) (envelope-from dave@ciminot.com) From: "David B. Aas" To: "'Dan O'Connor'" Cc: Subject: RE: Hardware compatibility? Date: Sun, 15 Aug 1999 22:57:45 -0500 Message-ID: <004e01bee79b$7fcf6d00$0fc8a8c0@dave.ciminot.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 In-Reply-To: <021001bee796$c52ca2a0$0200000a@home> X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3155.0 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Uh, Dan- I found the information about the UDMA drives in LINT, but I am confused. Is the "vector wdintr" part of that line? Where does that part come in? I do not see that in LINT. Thanks- Dave Aas dave@ciminot.com > -----Original Message----- > From: owner-freebsd-questions@FreeBSD.ORG > [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Dan O'Connor > Sent: Sunday, August 15, 1999 10:24 PM > To: Raymond Lee; freebsd-questions@FreeBSD.ORG > Subject: Re: Hardware compatibility? > > > Yes, FreeBSD 3.2 supports EIDE and Ultra-DMA drives just fine. > > By default (i.e., the GENERIC kernel), UDMA mode is not > enabled, but you can > enable it by rebuilding the kernel and adding "flags > 0xa0ffa0ff" to the IDE > controller definition in your kernel configuration file, e.g.: > > controller wdc0 at isa? port "IO_WD1" bio irq 14 > flags 0xa0ffa0ff > vector wdintr To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Aug 15 22:26:40 1999 Delivered-To: freebsd-questions@freebsd.org Received: from allegro.lemis.com (allegro.lemis.com [192.109.197.134]) by hub.freebsd.org (Postfix) with ESMTP id D84B015443 for ; Sun, 15 Aug 1999 22:26:25 -0700 (PDT) (envelope-from grog@freebie.lemis.com) Received: from freebie.lemis.com (freebie.lemis.com [192.109.197.137]) by allegro.lemis.com (8.9.1/8.9.0) with ESMTP id OAA04097; Mon, 16 Aug 1999 14:55:44 +0930 (CST) Received: (from grog@localhost) by freebie.lemis.com (8.9.3/8.9.0) id OAA07231; Mon, 16 Aug 1999 14:55:42 +0930 (CST) Date: Mon, 16 Aug 1999 14:55:42 +0930 From: Greg Lehey To: "David B. Aas" Cc: "Dan O'Connor" , questions@FreeBSD.ORG Subject: Re: Hardware compatibility? Message-ID: <19990816145541.A7187@freebie.lemis.com> References: <021001bee796$c52ca2a0$0200000a@home> <004e01bee79b$7fcf6d00$0fc8a8c0@dave.ciminot.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: <004e01bee79b$7fcf6d00$0fc8a8c0@dave.ciminot.com>; from David B. Aas on Sun, Aug 15, 1999 at 10:57:45PM -0500 WWW-Home-Page: http://www.lemis.com/~grog X-PGP-Fingerprint: 6B 7B C3 8C 61 CD 54 AF 13 24 52 F8 6D A4 95 EF Organization: LEMIS, PO Box 460, Echunga SA 5153, Australia Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-41-739-7062 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sunday, 15 August 1999 at 22:57:45 -0500, David B. Aas wrote: > On Sunday, August 15, 1999 10:24 PM, Dan O'Connor wrote: >> >> Yes, FreeBSD 3.2 supports EIDE and Ultra-DMA drives just fine. >> >> By default (i.e., the GENERIC kernel), UDMA mode is not >> enabled, but you can >> enable it by rebuilding the kernel and adding "flags >> 0xa0ffa0ff" to the IDE >> controller definition in your kernel configuration file, e.g.: >> >> controller wdc0 at isa? port "IO_WD1" bio irq 14 >> flags 0xa0ffa0ff >> vector wdintr > > > Uh, Dan- > > I found the information about the UDMA drives in LINT, but I am confused. Is > the "vector wdintr" part of that line? Where does that part come in? I do > not see that in LINT. This message has been mutilated. This text: >> controller wdc0 at isa? port "IO_WD1" bio irq 14 >> flags 0xa0ffa0ff >> vector wdintr should all be on one line: controller wdc0 at isa? port "IO_WD1" bio irq 14 flags 0xa0ffa0ff vector wdintr The 'vector' specification went away recently, and the 'bio' keyword will soon go as well. They tell the driver which interrupt routine and interrupt level to use. I'd guess that Dan's config file is a little older. Greg -- When replying to this message, please copy the original recipients. For more information, see http://www.lemis.com/questions.html See complete headers for address, home page and phone numbers finger grog@lemis.com for PGP public key To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Aug 15 22:32:26 1999 Delivered-To: freebsd-questions@freebsd.org Received: from vulcan.addy.com (vulcan.addy.com [207.239.68.7]) by hub.freebsd.org (Postfix) with ESMTP id C25EA14F10 for ; Sun, 15 Aug 1999 22:32:20 -0700 (PDT) (envelope-from francisco@natserv.com) Received: from your-name (freyes.static.inch.com [207.240.212.43]) by vulcan.addy.com (8.8.5/8.6.12) with SMTP id BAA20141 for ; Mon, 16 Aug 1999 01:32:15 -0400 (EDT) Message-Id: <199908160532.BAA20141@vulcan.addy.com> From: "Francisco Reyes" To: "FreeBSD questions" Date: Mon, 16 Aug 1999 01:31:46 -0400 Reply-To: "Francisco Reyes" X-Mailer: PMMail 98 Professional (2.01.1600) For Windows 98 (4.10.1998) MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Subject: Re: MySQL port fails with "cannot open makefile" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, 15 Aug 1999 23:23:44 -0400, Francisco Reyes wrote: After sending the message below I did "man make" and found about the "-d d" option. I tried that and the part before make fails is: Searching for /etc/make.conf...Looking for "/etc/make.conf"...Caching 22:54:59 Aug 14, 1999 for /etc/make.conf Searching for /etc/make.conf...Looking for "/etc/make.conf"...got it (in mtime cache) Searching for Makefile...failed. Searching for Makefile.../usr/share/mk...failed. make: cannot open Makefile. *** Error code 2 >I am trying to install MySQL 3.22 from the ports and it fails >with "cannot open makefile" > >Netmax FreeBSD 2.2.7 >Running make from "/usr/ports/mysql322-server" > >ns1# head -5 Makefile ># ports collection makefile for: MySQL-server ># Version required: v3.22.x ># Date created: 26 Jan 1998 ># Whom: Josh Tiefenbach > > >head /usr/share/mk/bsd.port.mk >#-*- mode: Fundamental; tab-width: 4; -*- ># ex:ts=4 ># ># $Id: bsd.port.mk,v 1.302 1999/01/20 01:55:05 asami Exp $ ># $NetBSD: $ ># ># bsd.port.mk - 940820 Jordan K. Hubbard. ># This file is in the public domain. > >I have applied the 227upgrade.tgz > >I have built several other ports without problems so I am not >sure if it is a problem with the port or if there is a file in >Netmax which is either missing or in a different directory than >in a regular FreeBSD build. > >How does one troubleshoot a port? Is there a way to see which >part in the makefile it is running as to see which is the make >file that it can not open? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Aug 15 22:50: 3 1999 Delivered-To: freebsd-questions@freebsd.org Received: from css.tuu.utas.edu.au (css.tuu.utas.edu.au [131.217.115.65]) by hub.freebsd.org (Postfix) with ESMTP id 59AC114FFE for ; Sun, 15 Aug 1999 22:49:36 -0700 (PDT) (envelope-from iaint@css.tuu.utas.edu.au) Received: from localhost (iaint@localhost) by css.tuu.utas.edu.au (8.9.3/8.9.3) with ESMTP id PAA21281; Mon, 16 Aug 1999 15:46:35 +1000 (EST) (envelope-from iaint@depravitas.tuu.utas.edu.au) Date: Mon, 16 Aug 1999 15:46:35 +1000 (EST) From: Iain Templeton To: "David B. Aas" Cc: questions@FreeBSD.ORG Subject: Re: Where are the PPP config files? In-Reply-To: <004801bee795$f8ffa740$0fc8a8c0@dave.ciminot.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, 15 Aug 1999, David B. Aas wrote: > I installed FBSD 3.2 with an FTP install. I did a user (non-X) install. > > Now I want to set up PPP, so I go to my trusty "The Complete FreeBSD" book, > and Greg says that the sample config files are under /etc/ppp. Except that I > only have 2 files in the directory. Where are the rest? > > I looked in the Ports Collection index, to look for "User PPP", and didn't > see anything to install. > > I also checked the MAN page. Nothing there. > > Where else can I look to install these files? > /usr/share/examples/ppp Or something like that. Iain. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Aug 15 23: 2:44 1999 Delivered-To: freebsd-questions@freebsd.org Received: from www.inx.de (www.inx.de [195.21.255.251]) by hub.freebsd.org (Postfix) with ESMTP id 55AA414FFE for ; Sun, 15 Aug 1999 23:02:38 -0700 (PDT) (envelope-from jnickelsen@acm.org) Received: from n31-100.berlin.snafu.de ([195.21.31.100] helo=goting.jn.berlin.snafu.de) by www.inx.de with esmtp (Exim 3.02 #1) id 11GFrJ-0007Mm-00; Mon, 16 Aug 1999 08:03:02 +0200 Received: by goting.jn.berlin.snafu.de (Postfix, from userid 100) id 8016912F; Mon, 16 Aug 1999 00:58:41 +0200 (CEST) To: Gustavo Vieira G C Rios Cc: Mikko Grönroos , freebsd-questions@FreeBSD.ORG Subject: Re: Kernel/SMC Ultra etc. References: <37B699BF.28A547A8@mpoli.fi> <37B6CD94.8AAFB879@ddsecurity.com.br> From: Juergen Nickelsen Date: 16 Aug 1999 00:58:41 +0200 In-Reply-To: Gustavo Vieira G C Rios's message of "Sun, 15 Aug 1999 14:24:20 +0000" Message-ID: Lines: 52 X-Mailer: Gnus v5.5/XEmacs 20.4 - "Emerald" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Gustavo Vieira G C Rios writes: [on the question how to configure a kernel] > cd /sys/i386/conf/ > cp LINT MY_KERNEL_NAME > /* This dir contains files you should edit to have a personal kernel./* > vi MY_KERNEL_NAME While this is technically correct, I think for a novice it is a bad idea to start with the LINT configuration when building a kernel. The LINT configuration contains many, many more options than necessary for a running system, and this will be very confusing for someone who isn't *really* familiar with the meaning of all these options. I'd recommend starting with the GENERIC configuration. I always do the following for each item: (1) If I don't know what this option or driver/device does, I leave it in place or I look it up in LINT and continue with step (2). (2) If I am not really sure if I need it, I leave it in place. (3) If I know it and I know I will never need it, I delete it from my configuration. (4) If I know that I don't need it, but may need it some time, I comment it out. (5) If I know that I need it, I leave it in place. If I then can't find the option or driver I need, I look into LINT to locate it and copy the entry. When building the first custom kernel, the GENERIC configuration has the prime advantage that it is guaranteed to work -- after all, this is the kernel you booted the currently running system from. (If you by chanced booted any other kernel, use that configuration to start with.) If you are not sure you fully understood the process of configuring and building a kernel, you can for a start copy the GENERIC configuration, change only the "ident" directive to the name your configuration should have, and configure, build, install, and boot this kernel as described. If the name you chose shows up on boot (and with ``uname -v''), you are on the right track so far. > /* Edit this file to suit your needs */ > config MY_KERNEL_NAME > cd ../../compile/MY_KERNEL_NAME > make depend && make && make install & reboot ^ This should, of course, be a double ampersand as well. -- Juergen Nickelsen To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Aug 15 23: 2:45 1999 Delivered-To: freebsd-questions@freebsd.org Received: from www.inx.de (www.inx.de [195.21.255.251]) by hub.freebsd.org (Postfix) with ESMTP id 0FE921536B for ; Sun, 15 Aug 1999 23:02:40 -0700 (PDT) (envelope-from jnickelsen@acm.org) Received: from n31-100.berlin.snafu.de ([195.21.31.100] helo=goting.jn.berlin.snafu.de) by www.inx.de with esmtp (Exim 3.02 #1) id 11GFrM-0007NQ-00 for freebsd-questions@freebsd.org; Mon, 16 Aug 1999 08:03:04 +0200 Received: by goting.jn.berlin.snafu.de (Postfix, from userid 100) id C5634195; Mon, 16 Aug 1999 01:28:12 +0200 (CEST) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14263.19723.737691.715817@goting.jn.berlin.snafu.de> Date: Mon, 16 Aug 1999 01:28:11 +0200 (CEST) To: freebsd-questions@freebsd.org Subject: mount_cd9660: invalid argument -- why? From: Juergen Nickelsen Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG For some time now I seem to be unable to mount a CD. I have FreeBSD 3.2-STABLE running (last update August 9) on more or less standard hardware. The CD-ROM drive is a little older, but I can probe it... # camcontrol devlist at scbus0 target 0 lun 0 (pass0,da0) at scbus0 target 4 lun 0 (pass1,cd0) ...and read it. # dd if=/dev/cd0a of=/dev/null count=1000 1000+0 records in 1000+0 records out 512000 bytes transferred in 3.461937 secs (147894 bytes/sec) I just can't mount it: # mount_cd9660 /dev/cd0a /cdrom mount_cd9660: Invalid argument When I debug mount_cd9660, I see that, as expected with this error message, mount(2) returns -1 with EINVAL. This seems to be independent of my custom kernel, because it also happens with the GENERIC kernel of 3.2-RELEASE. (And yes, I *have* ``options "CD9660"'' in my kernel.) Unfortunately I don't know when this problem occured the first time. With this pretty standard hardware (motherboard Tyan Tomcat IV single, Intel Pentium 200, CD-ROM as seen above, Adaptec 2940-UW), mount_cd9660 *has* already worked some time in the past. It does also not work with the mount_cd9660 from the 3.1 CD (I don't have the 3.2 CDs at hand at the moment), so I should assume that this is a problem of the kernel -- on the other hand it does not work with the GENERIC kernel of 3.2-RELEASE, and I am pretty sure that is has already worked with this kernel some time. I don't understand that. Is this a known problem? Have I missed something? What can I try? What more information should I give? I'd appreciate all help, since this probem gets on my nerves. Greetings, -- Juergen Nickelsen To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Aug 15 23: 9:34 1999 Delivered-To: freebsd-questions@freebsd.org Received: from nowcool.com (FX3-1-119.mgfairfax.rr.com [24.28.200.119]) by hub.freebsd.org (Postfix) with ESMTP id 11F9F14FFE for ; Sun, 15 Aug 1999 23:09:23 -0700 (PDT) (envelope-from question@blink.dhs.org) Received: from localhost (question@localhost) by nowcool.com (8.9.3/8.9.3) with ESMTP id CAA05294; Mon, 16 Aug 1999 02:06:41 -0400 (EDT) (envelope-from question@blink.dhs.org) Date: Mon, 16 Aug 1999 02:06:41 -0400 (EDT) From: FreeBSD Question X-Sender: question@nowcool.com To: william woods Cc: freebsd-questions@FreeBSD.ORG Subject: Re: StarOffice 5.1 In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG could you briefly write what exactly you did to make it work? I had the similar problem that you had..getting setup screen after installation.. On Sun, 15 Aug 1999, william woods wrote: > OK, I got StarOffice to work, has anyone had any luck getting the plug-in > manager to work ? > > If so, how.... > > ---------------------------------- > E-Mail: william woods > Date: 15-Aug-99 > Time: 14:33:56 > > This message was sent by XFMail > ---------------------------------- > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Aug 15 23:24:54 1999 Delivered-To: freebsd-questions@freebsd.org Received: from front5.grolier.fr (front5.grolier.fr [194.158.96.55]) by hub.freebsd.org (Postfix) with ESMTP id DEC0F14D5B; Sun, 15 Aug 1999 23:24:45 -0700 (PDT) (envelope-from pushf@club-internet.fr) Received: from club-internet.fr (Chateauroux-2-50.club-internet.fr [195.36.140.50]) by front5.grolier.fr (8.9.3/No_Relay+No_Spam_MGC990224) with ESMTP id IAA17242; Mon, 16 Aug 1999 08:25:06 +0200 (MET DST) Message-ID: <37B7AEC1.44EEAE39@club-internet.fr> Date: Mon, 16 Aug 1999 08:25:05 +0200 From: Pierre-Francois LAURAND X-Mailer: Mozilla 4.5 [en] (X11; I; FreeBSD 3.1-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-stable@freebsd.org, freebsd-questions@freebsd.org Subject: "make buildworld" failure with -stable under 3.1 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello, I am running FreeBSD-3.1 and I've just ended to download FreeBSD-stable ( 3.0-stable ), and, while I'am trying to make it with "make buildworld", the file /usr/src/bin/ls/stat_flags.c seems to provoke the following mistake : ... cc -O2 -pipe -fno-strength-reduce -m486 -I/usr/obj/usr/src/tmp/usr/include -c /usr/src/usr.bin/xinstall/../../bin/ls/stat_flags.c /usr/src/usr.bin/xinstall/../../bin/ls/stat_flags.c:50: parse error before `if' /usr/src/usr.bin/xinstall/../../bin/ls/stat_flags.c:50: stray '\' in program /usr/src/usr.bin/xinstall/../../bin/ls/stat_flags.c:51: stray '\' in program /usr/src/usr.bin/xinstall/../../bin/ls/stat_flags.c:52: stray '\' in program /usr/src/usr.bin/xinstall/../../bin/ls/stat_flags.c:53: warning: initialization makes integer from pointer without a cast /usr/src/usr.bin/xinstall/../../bin/ls/stat_flags.c:53: warning: data definition has no type or storage class /usr/src/usr.bin/xinstall/../../bin/ls/stat_flags.c:53: stray '\' in program /usr/src/usr.bin/xinstall/../../bin/ls/stat_flags.c:54: parse er: parse error before `}' /usr/src/usr.bin/xinstall/../../bin/ls/stat_flags.c: In function `flags_to_string': /usr/src/usr.bin/xinstall/../../bin/ls/stat_flags.c:72: stray '\' in program /usr/src/usr.bin/xinstall/../../bin/ls/stat_flags.c:74: stray '\' in program /usr/src/usr.bin/xinstall/../../bin/ls/stat_flags.c:77: stray '\' in program /usr/src/usr.bin/xinstall/../../bin/ls/stat_flags.c:80: stray '\' in program /usr/src/usr.bin/xinstall/../../bin/ls/stat_flags.c:82: stray '\' in program /usr/src/usr.bin/xinstall/../../bin/ls/stat_flags.c:84: stray '\' in program /usr/src/usr.bin/xinstall/../../bin/ls/stat_flags.c:86: stray '\' in program /usr/src/usr.bin/xinstall/../../bin/ls/stat_flags.c:88: stray '\' in program /usr/src/usr.bin/xinstall/../../bin/ls/stat_flags.c:91: stray '\' in program /usr/src/usr.bin/xinstall/../../bin/ls/stat_flags.c:97: `a' undeclared (first use this function) /usr/src/usr.bin/xinstall/../../bin/ls/stat_flags.c:97: (Each undeclared identifier is reported only once /usr/src/usr.binr/src/usr.bin/xinstall/../../bin/ls/stat_flags.c:97: for each function it appears in.) /usr/src/usr.bin/xinstall/../../bin/ls/stat_flags.c:97: `b' undeclared (first use this function) /usr/src/usr.bin/xinstall/../../bin/ls/stat_flags.c:97: stray '\' in program /usr/src/usr.bin/xinstall/../../bin/ls/stat_flags.c:98: `clear' undeclared (first use this function) /usr/src/usr.bin/xinstall/../../bin/ls/stat_flags.c:98: stray '\' in program /usr/src/usr.bin/xinstall/../../bin/ls/stat_flags.c:99: `clrp' undeclared (first use this function) /usr/src/usr.bin/xinstall/../../bin/ls/stat_flags.c:99: stray '\' in program /usr/src/usr.bin/xinstall/../../bin/ls/stat_flags.c:100: `f' undeclared (first use this function) /usr/src/usr.bin/xinstall/../../bin/ls/stat_flags.c:100: stray '\' in program /usr/src/usr.bin/xinstall/../../bin/ls/stat_flags.c:101: `setp' undeclared (first use this function) /usr/src/usr.bin/xinstall/../../bin/ls/stat_flags.c:101: stray '\' in program /usr/src/usr.bin/xinstall/../../bin/ls/stat_flags.c:102flags.c:102: stray '\' in program /usr/src/usr.bin/xinstall/../../bin/ls/stat_flags.c:103: break statement not within loop or switch /usr/src/usr.bin/xinstall/../../bin/ls/stat_flags.c:103: stray '\' in program /usr/src/usr.bin/xinstall/../../bin/ls/stat_flags.c:104: stray '\' in program /usr/src/usr.bin/xinstall/../../bin/ls/stat_flags.c:113: parse error before `int' /usr/src/usr.bin/xinstall/../../bin/ls/stat_flags.c:126: `stringp' undeclared (first use this function) /usr/src/usr.bin/xinstall/../../bin/ls/stat_flags.c:137: stray '\' in program /usr/src/usr.bin/xinstall/../../bin/ls/stat_flags.c:138: stray '\' in program /usr/src/usr.bin/xinstall/../../bin/ls/stat_flags.c:139: warning: return makes pointer from integer without a cast /usr/src/usr.bin/xinstall/../../bin/ls/stat_flags.c:142: stray '\' in program /usr/src/usr.bin/xinstall/../../bin/ls/stat_flags.c:143: warning: return makes pointer from integer without a cast /usr/src/usr.bin/xinstall/../../bin/ls/stat_flags.c:145: stray '\' in program /usr/sgram /usr/ssrc/usr.bin/xinstall/../../bin/ls/stat_flags.c:146: warning: return makes pointer from integer without a cast /usr/src/usr.bin/xinstall/../../bin/ls/stat_flags.c:148: stray '\' in program /usr/src/usr.bin/xinstall/../../bin/ls/stat_flags.c:149: stray '\' in program /usr/src/usr.bin/xinstall/../../bin/ls/stat_flags.c:150: stray '\' in program /usr/src/usr.bin/xinstall/../../bin/ls/stat_flags.c:151: stray '\' in program /usr/src/usr.bin/xinstall/../../bin/ls/stat_flags.c:152: stray '\' in program /usr/src/usr.bin/xinstall/../../bin/ls/stat_flags.c:154: stray '\' in program /usr/src/usr.bin/xinstall/../../bin/ls/stat_flags.c:155: stray '\' in program /usr/src/usr.bin/xinstall/../../bin/ls/stat_flags.c:157: warning: return makes pointer from integer without a cast /usr/src/usr.bin/xinstall/../../bin/ls/stat_flags.c:159: stray '\' in program /usr/src/usr.bin/xinstall/../../bin/ls/stat_flags.c:160: stray '\' in program /usr/src/usr.bin/xinstall/../../bin/ls/stat_flags.c:161: stray '\' in program /usr/srcam /usr/srcc/usr.bin/xinstall/../../bin/ls/stat_flags.c:162: stray '\' in program /usr/src/usr.bin/xinstall/../../bin/ls/stat_flags.c:163: stray '\' in program /usr/src/usr.bin/xinstall/../../bin/ls/stat_flags.c:165: stray '\' in program /usr/src/usr.bin/xinstall/../../bin/ls/stat_flags.c:166: stray '\' in program /usr/src/usr.bin/xinstall/../../bin/ls/stat_flags.c:170: warning: return makes pointer from integer without a cast /usr/src/usr.bin/xinstall/../../bin/ls/stat_flags.c:175: parse error at end of input *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. (radm@horus:/usr/src)# I'm not sure that the mistake comes from stat_flags.c because stat_flags.c from -stable is the same as stat_flags.c from release 3.1, and a "make buildworld" with the source of the 3.1 runs well. I think that the mistake comes from me, but I don't see where the problem is. I've just downloaded the sources, installed them under /usr/src; and run a "make buildworld". Thanks for your help ! -- Pierre-François LAURAND pushf@club-internet.fr To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Aug 15 23:34:29 1999 Delivered-To: freebsd-questions@freebsd.org Received: from blues.ghis.net (pppc2-102.eisa.net.au [203.166.251.222]) by hub.freebsd.org (Postfix) with ESMTP id 0453C1542C for ; Sun, 15 Aug 1999 23:34:06 -0700 (PDT) (envelope-from jim@blues.ghis.net) Received: (from jim@localhost) by blues.ghis.net (8.9.3/8.9.3) id QAA31655; Mon, 16 Aug 1999 16:33:06 +1000 (EST) (envelope-from jim) Date: Mon, 16 Aug 1999 16:33:05 +1000 From: Jim Mock To: FreeBSD Question Cc: william woods , freebsd-questions@FreeBSD.ORG Subject: Re: StarOffice 5.1 Message-ID: <19990816163305.A31622@blues.ghis.net> Reply-To: jim@blues.ghis.net References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii User-Agent: Mutt/0.96.3i In-Reply-To: Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, 16 Aug 1999 at 02:06:41 -0400, FreeBSD Question wrote: > could you briefly write what exactly you did to make it work? > I had the similar problem that you had..getting setup screen after > installation.. Go read http://minnie.cs.adfa.edu.au/Misc/staroffice.html and follow the instructions. -- - Jim Mock - jim@blues.ghis.net - systems administrator - ghis.NET - - work: http://www.ghis.net/ - personal: http://www.ghis.net/~jim/ - - FreeBSD 'zine: http://www.freebsdzine.org/ - jim@freebsdzine.org - - The FreeBSD Project -- http://www.FreeBSD.org/ - jim@FreeBSD.org - To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Aug 15 23:56:42 1999 Delivered-To: freebsd-questions@freebsd.org Received: from dt011n65.san.rr.com (dt011n65.san.rr.com [204.210.13.101]) by hub.freebsd.org (Postfix) with ESMTP id C18D314EB1 for ; Sun, 15 Aug 1999 23:56:33 -0700 (PDT) (envelope-from Doug@gorean.org) Received: from gorean.org (master [10.0.0.2]) by dt011n65.san.rr.com (8.9.3/8.8.8) with ESMTP id XAA15521 for ; Sun, 15 Aug 1999 23:56:53 -0700 (PDT) (envelope-from Doug@gorean.org) Message-ID: <37B7B63C.B23DFF9@gorean.org> Date: Sun, 15 Aug 1999 23:57:00 -0700 From: Doug Organization: Triborough Bridge & Tunnel Authority X-Mailer: Mozilla 4.61 [en] (X11; U; FreeBSD 4.0-CURRENT-0815 i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: Re: Wheelie mouse + PS/2 mouse possible? References: <37B23870.F12EC364@gorean.org> <37B2446D.361229D3@gorean.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Doug wrote: > > Doug wrote: > > > > I have a PS/2 wheelie mouse (a logitech model M-C48 to be precise) and > > following the instructions in the moused man page I set this in > > rc.conf.local: > > > > moused_enable="YES" > > moused_port="/dev/psm0" > > moused_type="intellimouse" > > > > When I boot (or try to start moused by hand with the same settings) I get: > > > > moused: mouse type mismatch (ps/2 != intellimouse), ps/2 is assumed > > > > I don't see any other combinations in the man page that look like they > > will do what I want, so any suggestions would be welcome. > > Sorry I wasn't clear on what I'm trying to do. The mouse itself works, > both buttons and the wheel actually acts like a third button when > depressed, that's all good. What I want is the wheel scrolling feature, > which currently isn't recognized. For the archives: I was never able to get it to work with moused + X. I finally solved the problem by using the following settings in /etc/XF86Config: Section "Pointer" Protocol "Auto" Device "/dev/psm0" Buttons 5 ZAxisMapping 4 5 That combined with the .Xdefaults stuff for xterm and Netscape give me scrolling for those two apps (actually it's kvt, not xterm, but it works for xterm too). I haven't tried setting it up for kde itself, and a quick check of a few KDE apps showed that they aren't recognizing the wheel, but at least I have a starting place to work from now. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sun Aug 15 23:58:10 1999 Delivered-To: freebsd-questions@freebsd.org Received: from dt011n65.san.rr.com (dt011n65.san.rr.com [204.210.13.101]) by hub.freebsd.org (Postfix) with ESMTP id 545F814E12 for ; Sun, 15 Aug 1999 23:58:06 -0700 (PDT) (envelope-from Doug@gorean.org) Received: from gorean.org (master [10.0.0.2]) by dt011n65.san.rr.com (8.9.3/8.8.8) with ESMTP id XAA15525; Sun, 15 Aug 1999 23:56:57 -0700 (PDT) (envelope-from Doug@gorean.org) Message-ID: <37B7B640.93651765@gorean.org> Date: Sun, 15 Aug 1999 23:57:04 -0700 From: Doug Organization: Triborough Bridge & Tunnel Authority X-Mailer: Mozilla 4.61 [en] (X11; U; FreeBSD 4.0-CURRENT-0815 i386) X-Accept-Language: en MIME-Version: 1.0 To: John Reynolds~ Cc: freebsd-questions@freebsd.org Subject: Re: hints on getting MouseMan+ "wheel" working? References: <14260.14873.406944.979169@hip186.ch.intel.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG John Reynolds~ wrote: > > Hello, > > I have recently been trying to get my "wheeled mouse" to work under X > on 3.2-STABLE. I've read the stuff on > > http://www.inria.fr/koala/colas/mouse-wheel-scroll/ > > but can't seem to get any button4/button5 events to be recognized by X. > When I use "xev" to view events all I can see are button1/2/3 events for > the "standard" three buttons on the MouseMan+ mouse. This is a PS/2 mouse > and I have moused running via: I had the same problem, and was never able to get it to work with moused + X. I finally solved the problem by using the following settings in /etc/XF86Config: Section "Pointer" Protocol "Auto" Device "/dev/psm0" Buttons 5 ZAxisMapping 4 5 That combined with the .Xdefaults stuff for xterm and Netscape give me scrolling for those two apps (actually it's kvt, not xterm, but it works for xterm too). I haven't tried setting it up for kde itself, and a quick check of a few KDE apps showed that they aren't recognizing the wheel, but at least I have a starting place to work from now. HTH, Doug To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 0:29:13 1999 Delivered-To: freebsd-questions@freebsd.org Received: from nexus.plymovent.se (nexus.plymovent.se [212.247.77.253]) by hub.freebsd.org (Postfix) with ESMTP id 4860D14F76 for ; Mon, 16 Aug 1999 00:29:03 -0700 (PDT) (envelope-from thomas.uhrfelt@plymovent.se) Received: from tu ([192.168.1.21]) by nexus.plymovent.se (8.9.3/8.9.3) with SMTP id JAA10467 for ; Mon, 16 Aug 1999 09:36:34 +0200 (CEST) (envelope-from thomas.uhrfelt@plymovent.se) From: "Thomas Uhrfelt" To: "FreeBSD Questions" Subject: Sendmail retries Date: Mon, 16 Aug 1999 09:27:14 +0200 Message-ID: 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 IMO, Build 9.0.2416 (9.0.2910.0) X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On a machine I am fiddling with right now I got some problems with sendmail. They are located in New York and are routed via ALTER.NET and ALTER.NET seems to have some sort of routerproblems that has been going on for almost three weeks now with the link going dead. Traceroute just stops at them. And until they fix their problem I need to tweak (this is on a 3.2S machine) sendmail so it retries to send failed deliveries more often, perhaps every 10 minutes or so? Any ideas on how to do this? Regards, Thomas Uhrfelt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 0:39:39 1999 Delivered-To: freebsd-questions@freebsd.org Received: from smtp.shellnet.co.uk (smtp.shellnet.co.uk [194.129.209.14]) by hub.freebsd.org (Postfix) with ESMTP id 9AA8D14F0D for ; Mon, 16 Aug 1999 00:39:32 -0700 (PDT) (envelope-from flec@flec.co.uk) Received: from STEVENFHOME (stevenf.shellnet.co.uk [194.128.147.85]) by smtp.shellnet.co.uk (8.9.3/8.9.1-shellnet.stevenf) with SMTP id IAA19116; Mon, 16 Aug 1999 08:39:44 +0100 (BST) Posted-Date: Mon, 16 Aug 1999 08:39:44 +0100 (BST) From: flec@flec.co.uk (Steven Fletcher) To: "Thomas Uhrfelt" Cc: questions@freebsd.org Subject: Re: Sendmail retries Date: Mon, 16 Aug 1999 07:39:43 GMT Message-ID: <37b7bfec.281394@smtp.shellnet.co.uk> References: In-Reply-To: X-Mailer: Forte Agent 1.5/32.452 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, 16 Aug 1999 09:27:14 +0200, you wrote: >sendmail so it retries to send failed deliveries more often, perhaps = every >10 minutes or so? Any ideas on how to do this? Start sendmail with with the option "-q10m" then. If you look in your /etc/rc.conf or /etc/defaults/rc.conf, you'll see it's probably set to be -q30m. -flec flec@flec.co.uk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 1: 5:29 1999 Delivered-To: freebsd-questions@freebsd.org Received: from Bespin.worldnet.net (bespin.worldnet.net [195.3.3.4]) by hub.freebsd.org (Postfix) with ESMTP id E5B9C14EB9 for ; Mon, 16 Aug 1999 01:05:24 -0700 (PDT) (envelope-from pcasidy@worldnet.fr) Received: from greatoak.home (p14-047.province.worldnet.fr [195.3.14.47]) by Bespin.worldnet.net (8.8.8/8.8.8) with ESMTP id KAA02593 for ; Mon, 16 Aug 1999 10:01:34 +0200 (CEST) Received: (from pcasidy@localhost) by greatoak.home (8.9.3/8.9.3) id WAA01249; Sun, 15 Aug 1999 22:06:25 +0200 (CEST) (envelope-from pcasidy) Message-Id: <199908152006.WAA01249@greatoak.home> Date: Sun, 15 Aug 1999 22:06:25 +0200 (CEST) From: Philippe CASIDY Subject: [HELP] Unrecognize IDE hard disk To: freebsd-questions@freebsd.org Cc: pcasidy@greatoak.home MIME-Version: 1.0 Content-Type: TEXT/plain; CHARSET=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi! Here are new information regarding my problem of this IDE hard drive uncorrectly recognized by FreeBSD. I am currently using FreeBSD 3.2-RELEASE and during the boot phase, I have the following message : wd1: size unknown, using fake values wd1: 0MB (17 sectors), 1 cyls, 1 heads, 17 S/T, 512 B/S This wd1 is recognized by the BIOS as Conner Peripherals 850MB - CFS850A I am able to partition it and format it under Windows on this same machine. Booting using a 2.2.5R boot floppy result in the same message. This hard drive has already run under FreeBSD with no troubles but on a different machine some the problem may come from the controller. Here are the messages I have booting in verbose mode : CPU: AMD-K6(tm) 3D processor (350.80-MHz 586-class CPU) .... found-> vendor=0x10b9, dev=0x5229, revid=0xc1 class=01-01-fa, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 intpin=a, irq=0 map[0]: type 4, range 32, base 0000f000, size 4 ide_pci0: rev 0xc1 int a irq 0 on pci0.15.0 ide_pci: busmaster 0 status: a4 from port: 0000f002 ide_pci: ide0:0 has been configured for DMA by BIOS ide_pci: busmaster 1 status: 84 from port: 0000f00a .... wdc0 at 0x1f0-0x1f7 irq 14 on isa wdc0: unit 0 (wd0): wd0: 4111MB (8420832 sectors), 8354 cyls, 16 heads, 63 S/T, 512 B/S wd0: ATA INQUIRE valid = 0007, dmamword = 0407, apio = 0003, udma = 0007 wdc0: unit 1 (wd1): wd1: size unknown, using fake values wd1: 0MB (17 sectors), 1 cyls, 1 heads, 17 S/T, 512 B/S wd1: ATA INQUIRE valid = 0000, dmamword = 0000, apio = 0000, udma = 0000 wdc1 at 0x170-0x177 irq 15 on isa wdc1: unit 0 (atapi): , removable, accel, ovlap, dma, iordy .... I have been able to use Fdisk on this hard drive anyway but not disklabel (from sysinstall) ! Any help will be greatly appreciate! Thanks Phil. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 1:42:16 1999 Delivered-To: freebsd-questions@freebsd.org Received: from volodya.prime.net.ua (volodya.prime.net.ua [195.64.229.17]) by hub.freebsd.org (Postfix) with ESMTP id 7AD3D15497 for ; Mon, 16 Aug 1999 01:42:04 -0700 (PDT) (envelope-from andyo@prime.net.ua) Received: from prime.net.ua (localhost [127.0.0.1]) by volodya.prime.net.ua (8.9.3/8.8.8) with ESMTP id LAA08740; Mon, 16 Aug 1999 11:41:49 +0300 (EEST) (envelope-from andyo@prime.net.ua) Message-ID: <37B7CEC9.53630EA7@prime.net.ua> Date: Mon, 16 Aug 1999 11:41:46 +0300 From: "Andy V. Oleynik" Organization: M-Info X-Mailer: Mozilla 4.61 [en] (X11; I; FreeBSD 3.2-STABLE i386) X-Accept-Language: en, ru, uk MIME-Version: 1.0 To: Ilia Chipitsine Cc: questions@FreeBSD.ORG Subject: Re: ?! Re: Returned mail: Service unavailable References: Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Looks like mail.atlnet.com is not ready to forward mail to sylvester.dsj.net thought being a 2nd MX for sylvester.dsj.net. Ilia Chipitsine wrote: > what's up ? haven't seen this one yet ... > > Regards, (îÁÉÌÕÞÛÉÅ ÐÏÖÅÌÁÎÉÑ) > > Ilia Chipitsine (éÌØÑ ûÉÐÉÃÉÎ) > > On Sun, 15 Aug 1999, Mail Delivery Subsystem wrote: > > > The original message was received at Sun, 15 Aug 1999 22:55:17 +0600 (UDT) > > from uucgilh@localhost > > > > ----- The following addresses had permanent fatal errors ----- > > dsj@sylvester.dsj.net > > > > ----- Transcript of session follows ----- > > ... while talking to mail.atlnet.com.: > > >>> RCPT To: > > <<< 571 ... Relay denied by rule Contact support@atlnet.com > > 554 dsj@sylvester.dsj.net... Service unavailable > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- WBW Andy V. Oleynik (When U work in virtual office prime.net.ua's U have good chance to obtain system administrator virtual money ö%-) +380442448363 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 2: 9:13 1999 Delivered-To: freebsd-questions@freebsd.org Received: from guard.polynet.lviv.ua (Guard.PolyNet.Lviv.UA [194.44.138.1]) by hub.freebsd.org (Postfix) with SMTP id 9BF5A15481 for ; Mon, 16 Aug 1999 02:08:48 -0700 (PDT) (envelope-from ts@postoffice.polynet.lviv.ua) Received: (qmail 692 invoked from network); 16 Aug 1999 09:08:06 -0000 Received: from unknown (HELO postoffice.polynet.lviv.ua) (unknown) by unknown with SMTP; 16 Aug 1999 09:08:06 -0000 Received: (qmail 35394 invoked by uid 1000); 16 Aug 1999 09:08:05 -0000 Date: 16 Aug 1999 12:08:05 +0300 Date: Mon, 16 Aug 1999 12:08:05 +0300 (EEST) From: Yaroslav Terletsky X-Sender: ts@NetSurfer.lp.lviv.ua To: freebsd-questions@FreeBSD.ORG Subject: Q: Any Custom FreeBSD Install Info [install.cfg] Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi all, There is an entry in installation menu of FreeBSD called "Load Config - Load default install configuration". Any information on how to do such a install.cfg ? Thanks == ts To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 2:19:43 1999 Delivered-To: freebsd-questions@freebsd.org Received: from uni-sb.de (uni-sb.de [134.96.252.33]) by hub.freebsd.org (Postfix) with ESMTP id 94C871512A for ; Mon, 16 Aug 1999 02:19:29 -0700 (PDT) (envelope-from schuerge@wjpserver.CS.Uni-SB.DE) Received: from cs.uni-sb.de (cs.uni-sb.de [134.96.252.31]) by uni-sb.de (8.9.3/1999070600) with ESMTP id LAA19473 for ; Mon, 16 Aug 1999 11:19:17 +0200 (CEST) Received: from wjpserver.cs.uni-sb.de (wjpserver.cs.uni-sb.de [134.96.247.42]) by cs.uni-sb.de (8.9.3/1999031900) with ESMTP id LAA15919 for ; Mon, 16 Aug 1999 11:19:16 +0200 (CEST) Received: (from schuerge@localhost) by wjpserver.cs.uni-sb.de (8.9.3/8.9.3/wjp-SVR4/1999052600) id LAA17505 for freebsd-questions@freebsd.org; Mon, 16 Aug 1999 11:19:16 +0200 (MET DST) From: Thomas Schuerger Message-Id: <199908160919.LAA17505@wjpserver.cs.uni-sb.de> Subject: Glide problems To: freebsd-questions@freebsd.org Date: Mon, 16 Aug 1999 11:19:16 +0200 (MET DST) X-Mailer: ELM [version 2.4ME+ PL57 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi! I just installed linux-glide 2.4 on my system and wanted to test it, but the test program tells me that no voodoo board is installed. root@starfire:/usr/compat/linux/usr/bin% ./test-glide test00: Clear screen to blue 2.4b1 Resolution: 640x480 Press A Key To Begin Test. _GlideInitEnvironment: glide2x.dll expected Voodoo Graphics, none detected Exit 1 I have a Diamond Voodoo II board installed, which works fine under Windows. Do I have to set up some special devices in FreeBSD or something? Any help is appreciated! Ciao, Thomas. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 2:26:47 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mc-qout4.whowhere.com (mc-qout4.whowhere.com [209.185.123.18]) by hub.freebsd.org (Postfix) with SMTP id 72E2B14F83 for ; Mon, 16 Aug 1999 02:26:44 -0700 (PDT) (envelope-from olafs@my-deja.com) Received: from Unknown/Local ([?.?.?.?]) by my-deja.com; Mon Aug 16 01:57:31 1999 To: freebsd-questions@FreeBSD.ORG Date: Mon, 16 Aug 1999 01:57:31 -0700 From: "Olaf Stoyke" Message-ID: Mime-Version: 1.0 Cc: X-Sent-Mail: on Reply-To: X-Mailer: MailCity Service Subject: Looking for *BSD Insight... X-Sender-Ip: 194.175.125.228 Organization: My Deja Email (http://www.my-deja.com:80) Content-Type: text/plain; charset=us-ascii Content-Length: 1223 Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello, freebsd-questions@FreeBSD.ORG! I've learned that there is a FreeBSD, a NetBSD and an OpenBSD (hoping that I have not forgotten a member of the *BSD group :). From a developer's point of view, the following questions are quite interesting: - What are the differences of these three versions/ releases/distributions? - What are the differences in the system APIs? - Provided that I find the time to do so, is it possible to develop device drivers for all three ebvironments based on one source? Or are the interfaces required to build/install the driver too different to make this approach possible? - If the differences are of practically no relevance (only minor stuff), are there plans to unite the three *BSDs or to (at least) build some uniform device driver interfaces so that a driver can be used without modifications? If these questions have previously been discussed somewhere and/or were written down into a FAQ, I apologize (in advance) and will continue to look for these comments in the newsgroups, mailing-lists and FAQs... Regards, Olaf --== Sent via Deja.com http://www.deja.com/ ==-- Share what you know. Learn what you don't. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 2:34:21 1999 Delivered-To: freebsd-questions@freebsd.org Received: from gwdu60.gwdg.de (gwdu60.gwdg.de [134.76.10.60]) by hub.freebsd.org (Postfix) with ESMTP id E9A7715932 for ; Mon, 16 Aug 1999 02:34:11 -0700 (PDT) (envelope-from kheuer@gwdu60.gwdg.de) Received: from localhost (kheuer@localhost) by gwdu60.gwdg.de (8.9.2/8.9.2) with ESMTP id LAA29275; Mon, 16 Aug 1999 11:34:26 +0200 (CEST) (envelope-from kheuer@gwdu60.gwdg.de) Date: Mon, 16 Aug 1999 11:34:26 +0200 (CEST) From: Konrad Heuer To: Thomas Schuerger Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Glide problems In-Reply-To: <199908160919.LAA17505@wjpserver.cs.uni-sb.de> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=X-UNKNOWN Content-Transfer-Encoding: QUOTED-PRINTABLE Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, 16 Aug 1999, Thomas Schuerger wrote: > I just installed linux-glide 2.4 on my system and wanted to > test it, but the test program tells me that no voodoo board > is installed. > (...) > I have a Diamond Voodoo II board installed, which works fine under Window= s. > Do I have to set up some special devices in FreeBSD or something? > Any help is appreciated! Don't know about linux-glide, but there's no chance to address the Voodoo chipset unless you use the corresponding X server within the very new XFree86 3.3.4 release (URL for download e.g. ftp://ftp.gwdg.de/pub/xfree86/XFree86/3.3.4/binaries/FreeBSD-3.x). Regards // // Konrad Heuer ____ ___ _____= __=20 // Gesellschaft f=FCr wissenschaftliche / __/______ ___ / _ )/ __= / _ \ // Datenverarbeitung mbH G=D6ttingen / _// __/ -_) -_) _ |\ \/= // / // Am Fa=DFberg, D-37077 G=D6ttingen /_/ /_/ \__/\__/____/___= /____/=20 // Deutschland (Germany) ----- The Power to Serve ----= - // http://www.freebsd.org // kheuer@gwdu60.gwdg.de // To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 2:40:13 1999 Delivered-To: freebsd-questions@freebsd.org Received: from gw.tdgu.sumy.ua (gw.tdgu.sumy.ua [62.244.19.144]) by hub.freebsd.org (Postfix) with ESMTP id A346B150B6 for ; Mon, 16 Aug 1999 02:40:01 -0700 (PDT) (envelope-from solik@solik.net) Received: from solik.net (darkside.tdgu.sumy.ua [10.0.0.2]) by gw.tdgu.sumy.ua (8.9.3/8.9.3) with ESMTP id MAA03883 for ; Mon, 16 Aug 1999 12:40:24 +0300 (EEST) Message-ID: <37B7DCA9.A8F37EE8@solik.net> Date: Mon, 16 Aug 1999 12:40:57 +0300 From: Sergey Solyanik Organization: NetDeeper X-Mailer: Mozilla 4.51 [en] (Win95; I) X-Accept-Language: ru,en MIME-Version: 1.0 To: freebsd-questions Subject: Re: Strange pppd problem References: <37B359D5.98BA99FE@solik.net> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi there! I'm sorry that I ask again this question, but first my message brings no answer to me. Sergey Solyanik wrote: > Could anyone help me with pppd trouble? > I want to dial-in to my FreeBSD-3.2-RELEASE box, and setup a simple > login script like this: > > #/bin/sh > /usr/sbin/pppd 10.0.1.1:10.0.1.2 > > and it works. And it works for any FreeBSD-2.x version without any > trouble. > > But sometimes right after login it disconnects without any reason, > leaving these records in /var/log/messages: > > pppd[PID]: pppd 2.3.5 started by LOGIN, uid UID > pppd[PID]: tcsetattr: Input/output error > > Situation become correct again only after reboot. :( > > I've search mailing lists archives, but found only questions, not > solutions... > Please, help me! -- SSV3-RIPE Tired of this second-hand fun, http://www.solik.net/ I'm heading for the absolute one. $Id: .signature,v 1.2 1998/10/19 03:09:20 solik Exp $ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 2:52:11 1999 Delivered-To: freebsd-questions@freebsd.org Received: from nexus.plymovent.se (nexus.plymovent.se [212.247.77.253]) by hub.freebsd.org (Postfix) with ESMTP id A4835150C1 for ; Mon, 16 Aug 1999 02:51:57 -0700 (PDT) (envelope-from thomas.uhrfelt@plymovent.se) Received: from tu ([192.168.1.21]) by nexus.plymovent.se (8.9.3/8.9.3) with SMTP id MAA11230; Mon, 16 Aug 1999 12:01:25 +0200 (CEST) (envelope-from thomas.uhrfelt@plymovent.se) From: "Thomas Uhrfelt" To: "Steven Fletcher" Cc: "FreeBSD Questions" Subject: RE: Sendmail retries Date: Mon, 16 Aug 1999 11:52:09 +0200 Message-ID: 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 IMO, Build 9.0.2416 (9.0.2910.0) In-Reply-To: <37b7bfec.281394@smtp.shellnet.co.uk> Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Well, it doesnt seem to do it every 30 minutes either.. for example if I got a hostname lookup error in the queue due to the internet failure, the mail doesnt seem to get delivered (even if the link is up again) until I do a sendmail -q. > On Mon, 16 Aug 1999 09:27:14 +0200, you wrote: > > >sendmail so it retries to send failed deliveries more often, > perhaps every > >10 minutes or so? Any ideas on how to do this? > > Start sendmail with with the option "-q10m" then. > If you look in your /etc/rc.conf or /etc/defaults/rc.conf, you'll see > it's probably set to be -q30m. > > -flec > flec@flec.co.uk > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 3:16:25 1999 Delivered-To: freebsd-questions@freebsd.org Received: from campino.informatik.rwth-aachen.de (campino.Informatik.RWTH-Aachen.DE [137.226.116.240]) by hub.freebsd.org (Postfix) with ESMTP id AE1FF1543C for ; Mon, 16 Aug 1999 03:16:19 -0700 (PDT) (envelope-from kuku@gilberto.physik.RWTH-Aachen.DE) Received: from gil.physik.rwth-aachen.de (gilberto.physik.rwth-aachen.de [137.226.30.2]) by campino.informatik.rwth-aachen.de (8.9.1a/8.9.1/3) with ESMTP id MAA07601; Mon, 16 Aug 1999 12:16:43 +0200 (MET DST) Received: (from kuku@localhost) by gil.physik.rwth-aachen.de (8.9.2/8.6.9) id MAA82884; Mon, 16 Aug 1999 12:16:44 +0200 (CEST) Date: Mon, 16 Aug 1999 12:16:44 +0200 From: Christoph Kukulies To: Thierry Herbelot Cc: Christoph Kukulies , questions@FreeBSD.ORG Subject: Re: ccd nogo in 2.2.8 STABLE (maybe 2.2.8 R also) Message-ID: <19990816121643.A82841@gil.physik.rwth-aachen.de> References: <199906141103.NAA30266@gil.physik.rwth-aachen.de> <3764FB54.D9B9C197@telspace.alcatel.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4us In-Reply-To: <3764FB54.D9B9C197@telspace.alcatel.fr>; from Thierry Herbelot on Mon, Jun 14, 1999 at 02:53:40PM +0200 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, Jun 14, 1999 at 02:53:40PM +0200, Thierry Herbelot wrote: > Hello, > > I'm afraid the combination you use is **TOTALLY** unsupported and not > viable (you only can upgrade in FreeBSD, but not downgrade from 3.x to > 2.2.x) Finally solved the problem and recovered my old (pre 2.2.8/3.2) ccd disk(s). With the installation of 3.2 disklabel didn't seem to report that the partitions were 4.2BSD fstype - maybe the ccd code had changed wrt that. Anyway, I disklabed -e 'd and filled in the appropriate FS type in each disk and could usr the ccdconfig -C command to get back the old configuration. The error message (inappropriate ioctl - see below) was indeed confusing and didn't give any hint where to look for the problem. > > > Why do I get : > > > > duke# > > duke# ccdconfig -C > > ccdconfig: ioctl (CCDIOCSET): /dev/ccd0c: Inappropriate file type or format > > duke# disklabel -r ccd0c > > disklabel: /dev/rccd0c: Device not configured > > duke# > > > > although I have ccd 4 in my kernel CONFIG file > > and built a fresh 2.2.8-STABLE kernel (also running it). > > > > -- > > Chris Christoph P. U. Kukulies kuku@gil.physik.rwth-aachen.de > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > -- > Thierry Herbelot > Phone : (+33) 1 46 52 47 23 > Home Page : http://perso.cybercable.fr/herbelot > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- Chris Christoph P. U. Kukulies kuku@gil.physik.rwth-aachen.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 4: 8:16 1999 Delivered-To: freebsd-questions@freebsd.org Received: from microshell.com (209.249.229.164.fastpoint.net [209.249.229.164]) by hub.freebsd.org (Postfix) with ESMTP id BFD9714BE0 for ; Mon, 16 Aug 1999 04:08:13 -0700 (PDT) (envelope-from mnirwan@microshell.com) Received: from localhost (mnirwan@localhost) by microshell.com (8.9.2/8.9.2) with ESMTP id EAA10821; Mon, 16 Aug 1999 04:10:12 -0700 (PDT) (envelope-from mnirwan@microshell.com) Date: Mon, 16 Aug 1999 04:10:12 -0700 (PDT) From: Maresa Nirwan To: freebsd-questions@FreeBSD.org Cc: mnirwan@netscape.net Subject: Please help me. I'm having trouble with kernel configuration. Message-ID: MIME-Version: 1.0 Content-Type: MULTIPART/MIXED; BOUNDARY="0-2051082700-934801812=:10784" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. Send mail to mime@docserver.cac.washington.edu for more info. --0-2051082700-934801812=:10784 Content-Type: TEXT/PLAIN; charset=US-ASCII Hi, Thank you for trying to help me. I'm rebuilding my kernel because I want to set up my sound card (Turtle Beach TBS-200). When I do 'make', there's error saying : loading kernel cs4232.o: in function 'attach_cs4232': cs4232.o(.text+0x1ca): undefined reference to 'probe_mpu401' cs4232.o(.text+0x1e5): undefined reference to 'attach_mpu401' *** Error code 1 Stop. ------ Please email me back what I need to do and please cc the email to mnirwan@netscape.net in case I can't receive it from my acc here. Thank you very much. MSN --0-2051082700-934801812=:10784 Content-Type: TEXT/PLAIN; charset=US-ASCII; name=MARESA Content-ID: Content-Description: Content-Disposition: attachment; filename=MARESA Content-Transfer-Encoding: BASE64 IwkkSWQ6IE1BUkVTQSx2IDEuMTQzLjIuMTIgMTk5OS8wNS8xNCAxNToxMjoy NiBqa2ggRXhwICQNCg0KbWFjaGluZQkJImkzODYiDQpjcHUJCSJJMzg2X0NQ VSINCmNwdQkJIkk0ODZfQ1BVIg0KY3B1CQkiSTU4Nl9DUFUiDQpjcHUJCSJJ Njg2X0NQVSINCm9wdGlvbnMJCSJDUFVfV1RfQUxMT0MiDQoNCg0KaWRlbnQJ CU1BUkVTQQ0KbWF4dXNlcnMJMzINCg0Kb3B0aW9ucwkJSU5FVAkJCSNJbnRl ck5FVHdvcmtpbmcNCm9wdGlvbnMJCUZGUwkJCSNCZXJrZWxleSBGYXN0IEZp bGVzeXN0ZW0NCm9wdGlvbnMJCUZGU19ST09UCQkjRkZTIHVzYWJsZSBhcyBy b290IGRldmljZSBba2VlcCB0aGlzIV0NCm9wdGlvbnMJCU1GUwkJCSNNZW1v cnkgRmlsZXN5c3RlbQ0Kb3B0aW9ucwkJTUZTX1JPT1QJCSNNRlMgdXNhYmxl IGFzIHJvb3QgZGV2aWNlLCAiTUZTIiByZXEnZWQNCm9wdGlvbnMJCU5GUwkJ CSNOZXR3b3JrIEZpbGVzeXN0ZW0NCm9wdGlvbnMJCU5GU19ST09UCQkjTkZT IHVzYWJsZSBhcyByb290IGRldmljZSwgIk5GUyIgcmVxJ2VkDQpvcHRpb25z CQkiQ0Q5NjYwIgkJI0lTTyA5NjYwIEZpbGVzeXN0ZW0NCm9wdGlvbnMJCSJD RDk2NjBfUk9PVCIJCSNDRC1ST00gdXNhYmxlIGFzIHJvb3QuICJDRDk2NjAi IHJlcSdlZA0Kb3B0aW9ucwkJUFJPQ0ZTCQkJI1Byb2Nlc3MgZmlsZXN5c3Rl bQ0Kb3B0aW9ucwkJIkNPTVBBVF80MyIJCSNDb21wYXRpYmxlIHdpdGggQlNE IDQuMyBbS0VFUCBUSElTIV0NCm9wdGlvbnMJCVVDT05TT0xFCQkjQWxsb3cg dXNlcnMgdG8gZ3JhYiB0aGUgY29uc29sZQ0Kb3B0aW9ucwkJRkFJTFNBRkUJ CSNCZSBjb25zZXJ2YXRpdmUNCm9wdGlvbnMJCVVTRVJDT05GSUcJCSNib290 IC1jIGVkaXRvcg0Kb3B0aW9ucwkJVklTVUFMX1VTRVJDT05GSUcJI3Zpc3Vh bCBib290IC1jIGVkaXRvcg0KDQpjb25maWcJCWtlcm5lbAlyb290IG9uIHdk MA0KDQpjb250cm9sbGVyCWlzYTANCmNvbnRyb2xsZXIJcG5wMA0KY29udHJv bGxlcglwY2kwDQoNCmNvbnRyb2xsZXIJZmRjMAlhdCBpc2E/IHBvcnQgIklP X0ZEMSIgYmlvIGlycSA2IGRycSAyDQpkaXNrCQlmZDAJYXQgZmRjMCBkcml2 ZSAwDQpkaXNrCQlmZDEJYXQgZmRjMCBkcml2ZSAxDQoNCm9wdGlvbnMJCSJD TUQ2NDAiCSMgd29yayBhcm91bmQgQ01ENjQwIGNoaXAgZGVmaWNpZW5jeQ0K Y29udHJvbGxlcgl3ZGMwCWF0IGlzYT8gcG9ydCAiSU9fV0QxIiBiaW8gaXJx IDE0DQpkaXNrCQl3ZDAJYXQgd2RjMCBkcml2ZSAwDQpkaXNrCQl3ZDEJYXQg d2RjMCBkcml2ZSAxDQoNCmNvbnRyb2xsZXIJd2RjMQlhdCBpc2E/IHBvcnQg IklPX1dEMiIgYmlvIGlycSAxNQ0KZGlzawkJd2QyCWF0IHdkYzEgZHJpdmUg MA0KZGlzawkJd2QzCWF0IHdkYzEgZHJpdmUgMQ0KDQpvcHRpb25zCQlBVEFQ SQkJI0VuYWJsZSBBVEFQSSBzdXBwb3J0IGZvciBJREUgYnVzDQpvcHRpb25z CQlBVEFQSV9TVEFUSUMJI0Rvbid0IGRvIGl0IGFzIGFuIExLTQ0KZGV2aWNl CQlhY2QwCQkjSURFIENELVJPTQ0KZGV2aWNlCQl3ZmQwCQkjSURFIEZsb3Bw eSAoZS5nLiBMUy0xMjApDQoNCmNvbnRyb2xsZXIJYXRrYmRjMAlhdCBpc2E/ IHBvcnQgSU9fS0JEIHR0eQ0KZGV2aWNlCQlhdGtiZDAJYXQgaXNhPyB0dHkg aXJxIDENCmRldmljZQkJcHNtMAlhdCBpc2E/IHR0eSBpcnEgMTINCg0KZGV2 aWNlCQl2Z2EwCWF0IGlzYT8gcG9ydCA/IGNvbmZsaWN0cw0KDQpwc2V1ZG8t ZGV2aWNlCXNwbGFzaA0KDQpkZXZpY2UJCXNjMAlhdCBpc2E/IHR0eQ0KZGV2 aWNlCQlucHgwCWF0IGlzYT8gcG9ydCBJT19OUFggaXJxIDEzDQpjb250cm9s bGVyCXNuZDANCmRldmljZQkJY3NzMAlhdCBpc2E/IHBvcnQgMHg1MzQgaXJx IDUgZHJxIDEgZmxhZ3MgMHgwOA0KZGV2aWNlCQlzaW8wCWF0IGlzYT8gcG9y dCAiSU9fQ09NMSIgZmxhZ3MgMHgxMCB0dHkgaXJxIDQNCmRldmljZQkJc2lv MQlhdCBpc2E/IHBvcnQgIklPX0NPTTIiIHR0eSBpcnEgMw0KZGV2aWNlCQlz aW8yCWF0IGlzYT8gZGlzYWJsZSBwb3J0ICJJT19DT00zIiB0dHkgaXJxIDUN CmRldmljZQkJc2lvMwlhdCBpc2E/IGRpc2FibGUgcG9ydCAiSU9fQ09NNCIg dHR5IGlycSA5DQpkZXZpY2UJCXBwYzAJYXQgaXNhPyBwb3J0PyBmbGFncyAw eDQwIG5ldCBpcnEgNw0KY29udHJvbGxlcglwcGJ1czANCmRldmljZQkJbHB0 MAlhdCBwcGJ1cz8NCmRldmljZQkJcHBpMAlhdCBwcGJ1cz8NCg0KZGV2aWNl IGV4MCBhdCBpc2E/IHBvcnQ/IG5ldCBpcnE/DQoNCnBzZXVkby1kZXZpY2UJ bG9vcA0KcHNldWRvLWRldmljZQlldGhlcg0KcHNldWRvLWRldmljZQlwdHkJ MTYNCnBzZXVkby1kZXZpY2UJZ3ppcAkJIyBFeGVjIGd6aXBwZWQgYS5vdXQn cw0KDQpvcHRpb25zCQlTWVNWU0hNDQpvcHRpb25zCQlTWVNWTVNHDQpvcHRp b25zCQlTWVNWU0VNDQoNCg== --0-2051082700-934801812=:10784-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 4:21:33 1999 Delivered-To: freebsd-questions@freebsd.org Received: from uni-sb.de (uni-sb.de [134.96.252.33]) by hub.freebsd.org (Postfix) with ESMTP id 98CC114CF3 for ; Mon, 16 Aug 1999 04:21:04 -0700 (PDT) (envelope-from schuerge@wjpserver.CS.Uni-SB.DE) Received: from cs.uni-sb.de (cs.uni-sb.de [134.96.252.31]) by uni-sb.de (8.9.3/1999070600) with ESMTP id NAA20299; Mon, 16 Aug 1999 13:21:18 +0200 (CEST) Received: from wjpserver.cs.uni-sb.de (wjpserver.cs.uni-sb.de [134.96.247.42]) by cs.uni-sb.de (8.9.3/1999031900) with ESMTP id NAA17399; Mon, 16 Aug 1999 13:21:17 +0200 (CEST) Received: (from schuerge@localhost) by wjpserver.cs.uni-sb.de (8.9.3/8.9.3/wjp-SVR4/1999052600) id NAA19280; Mon, 16 Aug 1999 13:21:17 +0200 (MET DST) From: Thomas Schuerger Message-Id: <199908161121.NAA19280@wjpserver.cs.uni-sb.de> Subject: How to use Voodoo 2 with FreeBSD? In-Reply-To: from Konrad Heuer at "Aug 16, 1999 11:34:26 am" To: Konrad Heuer Date: Mon, 16 Aug 1999 13:21:17 +0200 (MET DST) Cc: freebsd-questions@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL57 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > I just installed linux-glide 2.4 on my system and wanted to > > test it, but the test program tells me that no voodoo board > > is installed. > > (...) > > I have a Diamond Voodoo II board installed, which works fine under Windows. > > Do I have to set up some special devices in FreeBSD or something? > > Any help is appreciated! > Don't know about linux-glide, but there's no chance to address the Voodoo > chipset unless you use the corresponding X server within the very new > XFree86 3.3.4 release (URL for download e.g. > ftp://ftp.gwdg.de/pub/xfree86/XFree86/3.3.4/binaries/FreeBSD-3.x). What do you mean by corresponding X server? Do I have to install a special X server for Voodoo support? I'm using a Matrox G200 AGP has my "normal" graphics board and want to use my PCI Voodoo 2 board once in a while. I looked at the new features of 3.3.4, there Voodoo 3 and Banshee support is mentioned, so I think Voodoo 2 must have been supported already in an earlier version of XFree86. Has anyone managed to use a Voodoo 2 board with FreeBSD? I'm interested in using Glide and/or MesaGL with it... Ciao, Thomas. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 4:29: 0 1999 Delivered-To: freebsd-questions@freebsd.org Received: from gwdu60.gwdg.de (gwdu60.gwdg.de [134.76.10.60]) by hub.freebsd.org (Postfix) with ESMTP id D96DF14CF3 for ; Mon, 16 Aug 1999 04:28:45 -0700 (PDT) (envelope-from kheuer@gwdu60.gwdg.de) Received: from localhost (kheuer@localhost) by gwdu60.gwdg.de (8.9.2/8.9.2) with ESMTP id NAA29434; Mon, 16 Aug 1999 13:28:34 +0200 (CEST) (envelope-from kheuer@gwdu60.gwdg.de) Date: Mon, 16 Aug 1999 13:28:34 +0200 (CEST) From: Konrad Heuer To: Olaf Stoyke Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Looking for *BSD Insight... In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=X-UNKNOWN Content-Transfer-Encoding: QUOTED-PRINTABLE Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, 16 Aug 1999, Olaf Stoyke wrote: > Hello, freebsd-questions@FreeBSD.ORG! >=20 > I've learned that there is a FreeBSD, a NetBSD and > an OpenBSD (hoping that I have not forgotten a member > of the *BSD group :). From a developer's point of > view, the following questions are quite interesting: >=20 > - What are the differences of these three versions/ > releases/distributions? As far as I know: The goal of the NetBSD project is to make the OS available on all hardware platforms capable of running a virtual memory system. The FreeBSD project concentrates on the i386 and the alpha platforms and is interested to achieve best perfomance. The OpenBSD project doesn't support as many platforms as NetBSD, but more than FreeBSD. The OpenBSD project wants to make its OS the most secure open source OS. Historically, the NetBSD was the very first one, and the FreeBSD project started a little bit later. Both use a more hierarchical development model with a fixed core team, registered system developers etc. OpenBSD spinned off from NetBSD later, and its model is more liberal and a bit like the Linux model. >=20 > - What are the differences in the system APIs? > =20 Since all three systems are based on 4.4BSD-Lite2, the last version of Berkeley UNIX, the differences shouldn't be very serious. > - Provided that I find the time to do so, is it > possible to develop device drivers for all three > ebvironments based on one source? Or are the=20 > interfaces required to build/install the driver > too different to make this approach possible? I'mt not a kernel programmer but I expect the kernel sources to be very different. > - If the differences are of practically no relevance > (only minor stuff), are there plans to unite the > three *BSDs or to (at least) build some uniform > device driver interfaces so that a driver can be > used without modifications? People say the best chances for unification are in the userland. Regards // // Konrad Heuer ____ ___ _____= __=20 // Gesellschaft f=FCr wissenschaftliche / __/______ ___ / _ )/ __= / _ \ // Datenverarbeitung mbH G=D6ttingen / _// __/ -_) -_) _ |\ \/= // / // Am Fa=DFberg, D-37077 G=D6ttingen /_/ /_/ \__/\__/____/___= /____/=20 // Deutschland (Germany) ----- The Power to Serve ----= - // http://www.freebsd.org // kheuer@gwdu60.gwdg.de // To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 4:29:55 1999 Delivered-To: freebsd-questions@freebsd.org Received: from ligarius-fe0.ultra.net (ligarius-fe0.ultra.net [146.115.8.189]) by hub.freebsd.org (Postfix) with ESMTP id 9265014E24 for ; Mon, 16 Aug 1999 04:29:46 -0700 (PDT) (envelope-from moncrg@ma.ultranet.com) Received: from ma.ultranet.com (d57.dial-2.cmb.ma.ultra.net [209.6.65.57]) by ligarius-fe0.ultra.net (8.8.8/ult/n20340/mtc.v2) with ESMTP id HAA26166 for ; Mon, 16 Aug 1999 07:30:10 -0400 (EDT) Message-ID: <37B7F590.26A6AC35@ma.ultranet.com> Date: Mon, 16 Aug 1999 07:27:12 -0400 From: "Gregory D. Moncreaff" Reply-To: moncrg@ma.ultranet.com X-Mailer: Mozilla 4.61 [en] (X11; U; FreeBSD 3.2-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: FreeBSD Questions Subject: Re: Dial out attempt every 30 minutes, why? References: <37B6C9AA.8DC2F13C@ma.ultranet.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG As was suggested, it was sendmail_flags in /etc/rc.conf that was the knob to be adjusted for this, since I usually run with ppp -auto. Is there any theory/philosophy about what is a sane queue wait time for a dial up internet connection? or differing internet access/usage profiles in general? thanks for the help, -g To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 5: 5:22 1999 Delivered-To: freebsd-questions@freebsd.org Received: from gwdu60.gwdg.de (gwdu60.gwdg.de [134.76.10.60]) by hub.freebsd.org (Postfix) with ESMTP id 423E914DEB for ; Mon, 16 Aug 1999 05:04:43 -0700 (PDT) (envelope-from kheuer@gwdu60.gwdg.de) Received: from localhost (kheuer@localhost) by gwdu60.gwdg.de (8.9.2/8.9.2) with ESMTP id OAA29520; Mon, 16 Aug 1999 14:04:31 +0200 (CEST) (envelope-from kheuer@gwdu60.gwdg.de) Date: Mon, 16 Aug 1999 14:04:31 +0200 (CEST) From: Konrad Heuer To: Thomas Schuerger Cc: freebsd-questions@FreeBSD.ORG Subject: Re: How to use Voodoo 2 with FreeBSD? In-Reply-To: <199908161121.NAA19280@wjpserver.cs.uni-sb.de> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=X-UNKNOWN Content-Transfer-Encoding: QUOTED-PRINTABLE Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, 16 Aug 1999, Thomas Schuerger wrote: > > > I just installed linux-glide 2.4 on my system and wanted to > > > test it, but the test program tells me that no voodoo board > > > is installed. > > > (...) > > > I have a Diamond Voodoo II board installed, which works fine under Wi= ndows. > > > Do I have to set up some special devices in FreeBSD or something? > > > Any help is appreciated! >=20 > > Don't know about linux-glide, but there's no chance to address the Vood= oo > > chipset unless you use the corresponding X server within the very new > > XFree86 3.3.4 release (URL for download e.g. > > ftp://ftp.gwdg.de/pub/xfree86/XFree86/3.3.4/binaries/FreeBSD-3.x). >=20 > What do you mean by corresponding X server? Do I have to install a specia= l > X server for Voodoo support? I'm using a Matrox G200 AGP has my "normal" > graphics board and want to use my PCI Voodoo 2 board once in a while. >=20 > I looked at the new features of 3.3.4, there Voodoo 3 and Banshee support > is mentioned, so I think Voodoo 2 must have been supported already in an > earlier version of XFree86. >=20 > Has anyone managed to use a Voodoo 2 board with FreeBSD? I'm interested i= n > using Glide and/or MesaGL with it... Sorry, I didn't understand your problem fully after reading your first mail. I don't know whether you've a chance for Voodoo 2 support in FreeBSD. Good luck! // // Konrad Heuer ____ ___ _____= __=20 // Gesellschaft f=FCr wissenschaftliche / __/______ ___ / _ )/ __= / _ \ // Datenverarbeitung mbH G=D6ttingen / _// __/ -_) -_) _ |\ \/= // / // Am Fa=DFberg, D-37077 G=D6ttingen /_/ /_/ \__/\__/____/___= /____/=20 // Deutschland (Germany) ----- The Power to Serve ----= - // http://www.freebsd.org // kheuer@gwdu60.gwdg.de // To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 5:19:10 1999 Delivered-To: freebsd-questions@freebsd.org Received: from po4.wam.umd.edu (po4.wam.umd.edu [128.8.10.166]) by hub.freebsd.org (Postfix) with ESMTP id 4F1A214F83 for ; Mon, 16 Aug 1999 05:17:48 -0700 (PDT) (envelope-from culverk@wam.umd.edu) Received: from rac1.wam.umd.edu (root@rac1.wam.umd.edu [128.8.10.141]) by po4.wam.umd.edu (8.9.3/8.9.3) with ESMTP id IAA15374; Mon, 16 Aug 1999 08:16:17 -0400 (EDT) Received: from rac1.wam.umd.edu (sendmail@localhost [127.0.0.1]) by rac1.wam.umd.edu (8.9.3/8.9.3) with SMTP id IAA24848; Mon, 16 Aug 1999 08:16:16 -0400 (EDT) Received: from localhost (culverk@localhost) by rac1.wam.umd.edu (8.9.3/8.9.3) with ESMTP id IAA24844; Mon, 16 Aug 1999 08:16:16 -0400 (EDT) X-Authentication-Warning: rac1.wam.umd.edu: culverk owned process doing -bs Date: Mon, 16 Aug 1999 08:16:15 -0400 (EDT) From: Kenneth Wayne Culver To: Konrad Heuer Cc: freebsd-questions@freebsd.org Subject: Re: How to use Voodoo 2 with FreeBSD? In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=X-UNKNOWN Content-Transfer-Encoding: QUOTED-PRINTABLE Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Alright, in addition to the linux-glide 2.4, you have to go to 3dfx's website and d/l and install the proper linux glide library. The one that comes with linux-glide 2.4 is for a plain old VooDoo I think. Once I downloaded and installed the the glide library for the voodoo II on my computer, my voodoo 2's work fine. One thing though, any program that uses the voodoo II's needs to be run as root. > > > > I just installed linux-glide 2.4 on my system and wanted to > > > > test it, but the test program tells me that no voodoo board > > > > is installed. > > > > (...) > > > > I have a Diamond Voodoo II board installed, which works fine under = Windows. > > > > Do I have to set up some special devices in FreeBSD or something? > > > > Any help is appreciated! > >=20 > > > Don't know about linux-glide, but there's no chance to address the Vo= odoo > > > chipset unless you use the corresponding X server within the very new > > > XFree86 3.3.4 release (URL for download e.g. > > > ftp://ftp.gwdg.de/pub/xfree86/XFree86/3.3.4/binaries/FreeBSD-3.x). > >=20 > > What do you mean by corresponding X server? Do I have to install a spec= ial > > X server for Voodoo support? I'm using a Matrox G200 AGP has my "normal= " > > graphics board and want to use my PCI Voodoo 2 board once in a while. > >=20 > > I looked at the new features of 3.3.4, there Voodoo 3 and Banshee suppo= rt > > is mentioned, so I think Voodoo 2 must have been supported already in a= n > > earlier version of XFree86. > >=20 > > Has anyone managed to use a Voodoo 2 board with FreeBSD? I'm interested= in > > using Glide and/or MesaGL with it... >=20 > Sorry, I didn't understand your problem fully after reading your first > mail. I don't know whether you've a chance for Voodoo 2 support in > FreeBSD. >=20 > Good luck! >=20 > // > // Konrad Heuer ____ ___ ___= ____=20 > // Gesellschaft f=FCr wissenschaftliche / __/______ ___ / _ )/ = __/ _ \ > // Datenverarbeitung mbH G=D6ttingen / _// __/ -_) -_) _ |\ = \/ // / > // Am Fa=DFberg, D-37077 G=D6ttingen /_/ /_/ \__/\__/____/_= __/____/=20 > // Deutschland (Germany) ----- The Power to Serve --= --- > // http://www.freebsd.org > // kheuer@gwdu60.gwdg.de > // >=20 >=20 >=20 > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message >=20 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 5:47:10 1999 Delivered-To: freebsd-questions@freebsd.org Received: from finch-post-12.mail.demon.net (finch-post-12.mail.demon.net [194.217.242.41]) by hub.freebsd.org (Postfix) with ESMTP id CA1D714FFC for ; Mon, 16 Aug 1999 05:46:54 -0700 (PDT) (envelope-from martin@chiron-s.demon.co.uk) Received: from chiron-s.demon.co.uk ([158.152.196.202]) by finch-post-12.mail.demon.net with esmtp (Exim 2.12 #1) id 11GM9y-000DLV-0C; Mon, 16 Aug 1999 12:46:42 +0000 Received: by chiron-s.demon.co.uk (Postfix, from userid 1000) id 3C6B87E8; Mon, 16 Aug 1999 12:23:25 +0100 (BST) Received: from localhost (localhost [127.0.0.1]) by chiron-s.demon.co.uk (Postfix) with ESMTP id 3714B7E7; Mon, 16 Aug 1999 12:23:25 +0100 (BST) Date: Mon, 16 Aug 1999 12:23:25 +0100 (BST) From: Martin Smith To: Juergen Nickelsen Cc: freebsd-questions@freebsd.org Subject: Re: mount_cd9660: invalid argument -- why? In-Reply-To: <14263.19723.737691.715817@goting.jn.berlin.snafu.de> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, 16 Aug 1999, Juergen Nickelsen wrote: > For some time now I seem to be unable to mount a CD. > > I have FreeBSD 3.2-STABLE running (last update August 9) on more or > less standard hardware. The CD-ROM drive is a little older, but I > can probe it... > > # camcontrol devlist > at scbus0 target 0 lun 0 (pass0,da0) > at scbus0 target 4 lun 0 (pass1,cd0) > > ...and read it. > > # dd if=/dev/cd0a of=/dev/null count=1000 > 1000+0 records in > 1000+0 records out > 512000 bytes transferred in 3.461937 secs (147894 bytes/sec) > > I just can't mount it: > > # mount_cd9660 /dev/cd0a /cdrom > mount_cd9660: Invalid argument > the rest snipped Juergen, I think you should be using cd0c rather than cd0a -- martin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 6:30: 4 1999 Delivered-To: freebsd-questions@freebsd.org Received: from rmx05.globecomm.net (rmx05.iname.net [206.253.130.43]) by hub.freebsd.org (Postfix) with ESMTP id 5B54E150D9 for ; Mon, 16 Aug 1999 06:30:02 -0700 (PDT) (envelope-from dadsip@iname.com) Received: from weba1.iname.net by rmx05.globecomm.net (8.9.1/8.8.0) with ESMTP id JAA22988 ; Mon, 16 Aug 1999 09:29:31 -0400 (EDT) From: dadsip@iname.com Received: (from root@localhost) by weba1.iname.net (8.9.1a/8.9.2.Alpha2) id JAA00353; Mon, 16 Aug 1999 09:29:30 -0400 (EDT) MIME-Version: 1.0 Message-Id: <990816092929HH.20878@weba1.iname.net> Date: Mon, 16 Aug 1999 09:29:29 -0400 (EDT) Content-Type: Text/Plain Content-Transfer-Encoding: 7bit To: freebsd-questions@FreeBSD.ORG Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, I am a new comer of this mailing lists. I want to ask how to mount vfat (partition C) to FreeeBSD at partition D and how to mount disk drive (vfat) a to FreeBSD. thank you ! --------------------------------------------------- Get free personalized email at http://www.iname.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 6:54:14 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail.greatbasin.net (mail.greatbasin.net [207.228.35.39]) by hub.freebsd.org (Postfix) with ESMTP id 4725014CED for ; Mon, 16 Aug 1999 06:54:10 -0700 (PDT) (envelope-from dan@jgl.reno.nv.us) Received: from pandora.home (rno-max5-47.gbis.net [207.228.61.111]) by mail.greatbasin.net (8.9.3/8.9.3) with ESMTP id GAA27771; Mon, 16 Aug 1999 06:54:35 -0700 (PDT) Received: from danco (danco.home [10.0.0.2]) by pandora.home (8.9.3/8.9.2) with SMTP id GAA01784; Mon, 16 Aug 1999 06:54:02 -0700 (PDT) (envelope-from dan@jgl.reno.nv.us) Message-ID: <050801bee7ee$dee16a20$0200000a@home> From: "Dan O'Connor" To: "Philippe CASIDY" , Cc: References: <199908152006.WAA01249@greatoak.home> Subject: Re: [HELP] Unrecognize IDE hard disk Date: Mon, 16 Aug 1999 06:54:01 -0700 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit 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-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hmmm...That's a strange one. Are you sure the jumpers on each drive are set properly for master and slave? You might also try removing the CDROM and sticking the 850MB drive on the other IDE controller to see if it works there (make sure the jumpers are correct for a single drive). In the old days (when Conner was still around), there were some drives that just didn't get along well if you mixed manufacturers on the same bus. If it works alone on the other controller, it's one of those "unfriendly" drive situations. If it doesn't work, then there's something else amiss, and hopefully, someone else out there has a better idea. Good luck, --Dan ** The thing I like most about Windows 98 is... ** You can download FreeBSD with it! ----- Original Message ----- From: Philippe CASIDY To: Cc: Sent: Sunday, August 15, 1999 1:06 PM Subject: [HELP] Unrecognize IDE hard disk > Hi! > > Here are new information regarding my problem of this IDE hard drive > uncorrectly recognized by FreeBSD. > > I am currently using FreeBSD 3.2-RELEASE and during the boot phase, I > have the following message : > > wd1: size unknown, using fake values > wd1: 0MB (17 sectors), 1 cyls, 1 heads, 17 S/T, 512 B/S > > This wd1 is recognized by the BIOS as > Conner Peripherals 850MB - CFS850A > > I am able to partition it and format it under Windows on this same > machine. > > Booting using a 2.2.5R boot floppy result in the same message. > > This hard drive has already run under FreeBSD with no troubles but on a > different machine some the problem may come from the controller. > > Here are the messages I have booting in verbose mode : > > CPU: AMD-K6(tm) 3D processor (350.80-MHz 586-class CPU) > .... > found-> vendor=0x10b9, dev=0x5229, revid=0xc1 > class=01-01-fa, hdrtype=0x00, mfdev=0 > subordinatebus=0 secondarybus=0 > intpin=a, irq=0 > map[0]: type 4, range 32, base 0000f000, size 4 > ide_pci0: rev 0xc1 int a irq 0 on pci0.15.0 > ide_pci: busmaster 0 status: a4 from port: 0000f002 > ide_pci: ide0:0 has been configured for DMA by BIOS > ide_pci: busmaster 1 status: 84 from port: 0000f00a > .... > wdc0 at 0x1f0-0x1f7 irq 14 on isa > wdc0: unit 0 (wd0): > wd0: 4111MB (8420832 sectors), 8354 cyls, 16 heads, 63 S/T, 512 B/S > wd0: ATA INQUIRE valid = 0007, dmamword = 0407, apio = 0003, udma = 0007 > wdc0: unit 1 (wd1): > wd1: size unknown, using fake values > wd1: 0MB (17 sectors), 1 cyls, 1 heads, 17 S/T, 512 B/S > wd1: ATA INQUIRE valid = 0000, dmamword = 0000, apio = 0000, udma = 0000 > wdc1 at 0x170-0x177 irq 15 on isa > wdc1: unit 0 (atapi): , removable, accel, ovlap, dma, iordy > .... > > I have been able to use Fdisk on this hard drive anyway but not > disklabel (from sysinstall) ! > > Any help will be greatly appreciate! > > Thanks > > Phil. > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 6:58:58 1999 Delivered-To: freebsd-questions@freebsd.org Received: from styx.uwa.edu.au (styx.uwa.edu.au [130.95.128.6]) by hub.freebsd.org (Postfix) with ESMTP id D22E014CED for ; Mon, 16 Aug 1999 06:58:54 -0700 (PDT) (envelope-from mayd@cygnus.uwa.edu.au) Received: from cygnus.uwa.edu.au (mayd@cygnusl.uwa.edu.au [130.95.128.5]) by styx.uwa.edu.au (8.9.3/8.9.3/Debian/GNU) with ESMTP id VAA06722; Mon, 16 Aug 1999 21:57:25 +0800 Received: from localhost (mayd@localhost) by cygnus.uwa.edu.au (8.8.8/8.8.5) with SMTP id VAA28682; Mon, 16 Aug 1999 21:57:24 +0800 (WST) Date: Mon, 16 Aug 1999 21:57:23 +0800 (WST) From: David May To: freebsd-questions@FreeBSD.ORG Subject: [Q] Problem setting up user PPP over SSH. Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I am trying to get a VPN going by running user PPP over SSH as per the example in /etc/ppp/ppp.conf.sample but it does not seem to be working. It is failing in the PPP LCP negotiation phase. Can anybody provide more detailed example setup than is given in the default example configuration? I have no problems using either ssh nor ppp separately. One side is set to openmode active (the caller). It sends several LCP config requests but does not seem to get any responses. Then it quits due to "Exception detected on descriptor 2". The other side is set to openmode passive (the callee). It seems to be receiving and sending LCP config requests. My setup is FreeBSD 2.2.8 on one box FreeBSD 3.1 on the other box SSH 1.2.27 (not from Ports) on both Link is an Ethernet LAN I am getting a bit desparate at this stage. Any suggestions welcome. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 7: 4:26 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail.greatbasin.net (mail.greatbasin.net [207.228.35.39]) by hub.freebsd.org (Postfix) with ESMTP id 1713B14CED for ; Mon, 16 Aug 1999 07:04:21 -0700 (PDT) (envelope-from dan@jgl.reno.nv.us) Received: from pandora.home (rno-max5-47.gbis.net [207.228.61.111]) by mail.greatbasin.net (8.9.3/8.9.3) with ESMTP id HAA14605; Mon, 16 Aug 1999 07:04:28 -0700 (PDT) Received: from danco (danco.home [10.0.0.2]) by pandora.home (8.9.3/8.9.2) with SMTP id HAA01807; Mon, 16 Aug 1999 07:04:25 -0700 (PDT) (envelope-from dan@jgl.reno.nv.us) Message-ID: <057601bee7f0$406b6560$0200000a@home> From: "Dan O'Connor" To: "Greg Lehey" , "David B. Aas" Cc: References: <021001bee796$c52ca2a0$0200000a@home> <004e01bee79b$7fcf6d00$0fc8a8c0@dave.ciminot.com> <19990816145541.A7187@freebie.lemis.com> Subject: Re: Hardware compatibility? Date: Mon, 16 Aug 1999 07:04:24 -0700 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit 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-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Yes, I see in the latest LINT that "vector wdintr" is indeed no longer there... As soon as I get some time, I need to do a really good cleaning--my /etc/rc.conf is still the full-blown version, and I still have an rc.local to start daemons with!!! --Dan ** The thing I like most about Windows 98 is... ** You can download FreeBSD with it! ----- Original Message ----- From: Greg Lehey To: David B. Aas Cc: Dan O'Connor ; Sent: Sunday, August 15, 1999 10:25 PM Subject: Re: Hardware compatibility? > On Sunday, 15 August 1999 at 22:57:45 -0500, David B. Aas wrote: > > On Sunday, August 15, 1999 10:24 PM, Dan O'Connor wrote: > >> > >> Yes, FreeBSD 3.2 supports EIDE and Ultra-DMA drives just fine. > >> > >> By default (i.e., the GENERIC kernel), UDMA mode is not > >> enabled, but you can > >> enable it by rebuilding the kernel and adding "flags > >> 0xa0ffa0ff" to the IDE > >> controller definition in your kernel configuration file, e.g.: > >> > >> controller wdc0 at isa? port "IO_WD1" bio irq 14 > >> flags 0xa0ffa0ff > >> vector wdintr > > > > > > Uh, Dan- > > > > I found the information about the UDMA drives in LINT, but I am confused. Is > > the "vector wdintr" part of that line? Where does that part come in? I do > > not see that in LINT. > > This message has been mutilated. This text: > > >> controller wdc0 at isa? port "IO_WD1" bio irq 14 > >> flags 0xa0ffa0ff > >> vector wdintr > > should all be on one line: > > controller wdc0 at isa? port "IO_WD1" bio irq 14 flags 0xa0ffa0ff vector wdintr > > The 'vector' specification went away recently, and the 'bio' keyword > will soon go as well. They tell the driver which interrupt routine > and interrupt level to use. I'd guess that Dan's config file is a > little older. > > Greg > -- > When replying to this message, please copy the original recipients. > For more information, see http://www.lemis.com/questions.html > See complete headers for address, home page and phone numbers > finger grog@lemis.com for PGP public key > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 7:15:23 1999 Delivered-To: freebsd-questions@freebsd.org Received: from web702.mail.yahoo.com (web702.mail.yahoo.com [128.11.23.22]) by hub.freebsd.org (Postfix) with SMTP id 23FF21512C for ; Mon, 16 Aug 1999 07:15:21 -0700 (PDT) (envelope-from auximini@yahoo.com) Message-ID: <19990816141659.13078.rocketmail@web702.mail.yahoo.com> Received: from [205.201.40.35] by web702.mail.yahoo.com; Mon, 16 Aug 1999 07:16:59 PDT Date: Mon, 16 Aug 1999 07:16:59 -0700 (PDT) From: "Joe T." Subject: How to mount an ext2 (linux) formated zip disk? To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG hello I configured my zip disk according to what LINT said, and i am able to mount a dos formatted zip disk doing: mount -t msdos /dev/da0s4 /zip but when i do: mount -t ext2fs /dev/da0s1 /zip it gives me: ext2fs: vfsload(ext2fs): No such file or directory any help is appreciated thanks === Joe Topjian auximini@yahoo.com http://auximini.cjb.net _________________________________________________________ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 7:16:20 1999 Delivered-To: freebsd-questions@freebsd.org Received: from vax1.baker.ie (VAX1.baker.IE [194.125.50.91]) by hub.freebsd.org (Postfix) with SMTP id 641471512C for ; Mon, 16 Aug 1999 07:16:15 -0700 (PDT) (envelope-from cillian@baker.ie) Received: from baker.ie ([194.125.50.55]) by vax1.baker.ie with ESMTP; Mon, 16 Aug 1999 15:20:08 +0100 Message-ID: <37B819A9.230F6B86@baker.ie> Date: Mon, 16 Aug 1999 15:01:13 +0100 From: Cillian Sharkey X-Mailer: Mozilla 4.6 [en] (Win95; U) X-Accept-Language: en MIME-Version: 1.0 To: dadsip@iname.com Cc: freebsd-questions@FreeBSD.ORG Subject: Re: (No Subject) References: <990816092929HH.20878@weba1.iname.net> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > Hi, I am a new comer of this mailing lists. I want to ask how > to mount vfat (partition C) to FreeeBSD at partition D and how > to mount disk drive (vfat) a to FreeBSD. thank you ! not quite sure what you're asking here, but as for mounting a vfat partition under FreeBSD, one would normally do something like: mount -t msdos /dev/wd0s1 /mnt/dos which would mount the 1st slice on your first IDE disk under the directory /mnt/dos Regards, - Cillian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 7:23:22 1999 Delivered-To: freebsd-questions@freebsd.org Received: from sulu.mmm.com (sulu.mmm.com [192.28.4.21]) by hub.freebsd.org (Postfix) with ESMTP id EE7A11512C for ; Mon, 16 Aug 1999 07:23:02 -0700 (PDT) (envelope-from dskaberna@mmm.com) Received: from em-stpmta-01.mmm.com (em-stpmta-01.mmm.com [169.12.5.12]) by sulu.mmm.com (8.8.7/8.8.7) with SMTP id JAA12103 for ; Mon, 16 Aug 1999 09:23:11 -0500 (CDT) Received: by em-stpmta-01.mmm.com(Lotus SMTP MTA v4.6.2 (693.3 8-11-1998)) id 862567CF.004E1281 ; Mon, 16 Aug 1999 09:12:45 -0500 X-Lotus-FromDomain: 3M-CORPORATE From: dskaberna@mmm.com To: freebsd-questions@freebsd.org Message-ID: <862567CF.004E0DBE.00@em-stpmta-01.mmm.com> Date: Mon, 16 Aug 1999 09:22:17 -0500 Subject: FreeBSD problem Mime-Version: 1.0 Content-type: text/plain; charset=us-ascii Content-Disposition: inline Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Here's one for you techies out there: I have a 500 Mhz Pentium III. I have 128 mb Ram, and a Maxtor 17gb ultra IDE drive, and a Promise Ultra 66, ATA/66 PCI controller. I have Windoze 98 as the primary OS, and wish to install FreeBSD as my sec. OS. I partitioned my HD into two partitions: 8gb for Win and the remaining for Unix. When I boot the Kernel, and it probes for my devices. It does not find WD0 - my Hard Drive. At the end of the probe, is lists the error something like this "isa_probe_'something'" and does not allow me to proceed through the installation any furthere. It says that it could not locate my Hard Drive. I think it has to be some sort of conflict. I also have a DVD-ROM drive and a CD-RW drive. I hope this is enough detail for you. Let me know if you can think of anything. Devon To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 7:23:45 1999 Delivered-To: freebsd-questions@freebsd.org Received: from m2.pp.htv.fi (m2ep.pp.htv.fi [212.90.64.98]) by hub.freebsd.org (Postfix) with ESMTP id 4DE031512C for ; Mon, 16 Aug 1999 07:23:38 -0700 (PDT) (envelope-from greenie@mpoli.FI) Received: from m7.pp.htv.fi (m7.pp.htv.fi [212.90.64.22]) by m2.pp.htv.fi (8.8.6 (PHNE_14041)/8.8.6) with ESMTP id RAA27396 for ; Mon, 16 Aug 1999 17:24:03 +0300 (EETDST) Received: from mpoli.FI (cs69016.pp.htv.fi [212.90.69.16]) by m7.pp.htv.fi (8.8.6 (PHNE_14041)/8.8.6) with ESMTP id RAA21467 for ; Mon, 16 Aug 1999 17:25:06 +0300 (EETDST) Message-ID: <37B81F31.321C085E@mpoli.FI> Date: Mon, 16 Aug 1999 17:24:49 +0300 From: Mikko =?iso-8859-1?Q?Gr=F6nroos?= Organization: Lemonsoda Organizing X-Mailer: Mozilla 4.5 [en] (Win98; I) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: 2x3com NICs References: <37B699BF.28A547A8@mpoli.fi> Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Help, I need somebody.. HELP, well ok, you get the picture. So, I have two 3com NICs in the same computer. They are same model (3c509) and so on. I have compiled a support for them to the kernel and in visual kernel config (*start computer* -> *hit space* -> boot -c -> visual) they both seem to work OK (ep0 and ep1). But when I check that same stuff in CLI - mode it says that both cards aren't enabled? WTF? And when I go to visual mode it looks like that they are enabled? What's the problem? OK, I booted the computer (both NICs enabled (at least the visual kernel configuration says so)) and when it's that magical time to say "Hey hey, I here" - to ifconfig (in the bootup) ep0 seems to work fine but then ifconfig doesn't "find" ep1. Strange? or? Oh, and I also tried to work it out with sysinstall, but it doesn't probe ep1. And I am sure as sugar that when I check those cards in the boot's configuration in visual mode. It says that both cards are enabled. Help me out guys (and gals), -Mikko Grönroos -- _ _ _ _ |\ \ | \ _ _ _ \ >> Bring me flowers, godseyes and boxes of air. \ | | - CJ & Fish, another fine Berkeley release. \|_______| To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 7:59: 1 1999 Delivered-To: freebsd-questions@freebsd.org Received: from golem.easynet.fr (golem.easynet.fr [195.114.64.8]) by hub.freebsd.org (Postfix) with ESMTP id A24B114D3C for ; Mon, 16 Aug 1999 07:58:57 -0700 (PDT) (envelope-from dm@golem.easynet.fr) Received: (from dm@localhost) by golem.easynet.fr (8.8.7/8.8.7) id RAA18537; Mon, 16 Aug 1999 17:05:07 +0200 From: Danaii Maziar MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Date: Mon, 16 Aug 1999 17:05:07 +0200 (CEST) To: freebsd-questions@FreeBSD.ORG Subject: FIFO -- Device not configured X-Mailer: VM 6.43 under 20.4 "Emerald" XEmacs Lucid Message-ID: <14264.9594.118127.306139@golem.easynet.fr> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, I've created a fifo (with mkfifo) and every time I try to open it I get -- Device not configured -- As I know Fifo is standard part of kernel and there is no need to add options. Any suggestion. Thanks. # uname -a 2.2.8-STABLE FreeBSD 2.2.8-STABLE # ls -l prw-rw-rw- 1 root wheel 0 Aug 16 16:25 radfifo # cat xx.c #include #include main() { int pokefd; pokefd=open("radfifo", O_WRONLY|O_NONBLOCK); if (pokefd < 0) { perror("open:"); exit(1); } close(pokefd); } # kdump # kdump 5343 ktrace RET ktrace 0 5343 ktrace CALL execve(0xefbfdcfb,0xefbfdc90,0xefbfdc98) 5343 ktrace NAMI "/tmp/xx" 5343 xx RET execve 0 5343 xx CALL open(0x10c0,0x5,0) 5343 xx NAMI "radfifo" 5343 xx RET open -1 errno 6 Device not configured 5343 xx CALL writev(0x2,0xefbfdc44,0x4) 5343 xx GIO fd 2 wrote 29 bytes "open:: Device not configured " 5343 xx RET writev 29/0x1d 5343 xx CALL exit(0x1) -- Easynet France 33 1.44.54.70.32 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 7:59:19 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mobil.surnet.ru (mobil.surnet.ru [195.54.2.7]) by hub.freebsd.org (Postfix) with ESMTP id B9989154EC for ; Mon, 16 Aug 1999 07:59:08 -0700 (PDT) (envelope-from ilia@cgilh.chel.su) Received: (from uucgilh@localhost) by mobil.surnet.ru (8.9.1a/8.9.1) with UUCP id UAA23762; Mon, 16 Aug 1999 20:56:27 +0600 (UDT) Received: (from uucp@localhost) by cgilh.chel.su (8.8.7/8.8.7) with UUCP id TAA00699; Mon, 16 Aug 1999 19:15:41 +0600 Received: from localhost (ilia@localhost) by localhost.cgu.chel.su (8.9.2/8.9.2) with ESMTP id TAA00534; Mon, 16 Aug 1999 19:14:28 +0600 (ESS) (envelope-from ilia@cgilh.chel.su) X-Authentication-Warning: localhost.cgu.chel.su: ilia owned process doing -bs Date: Mon, 16 Aug 1999 19:14:28 +0600 (ESS) From: Ilia Chipitsine X-Sender: ilia@localhost.cgu.chel.su To: "Gregory D. Moncreaff" Cc: FreeBSD Questions Subject: Re: Dial out attempt every 30 minutes, why? In-Reply-To: <37B7F590.26A6AC35@ma.ultranet.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=koi8-r Content-Transfer-Encoding: 8BIT Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG go to www.imc.org, Internet Mail Consorcium. it has _the_most_up_to_date_ references on the Internet Mail standards and drafts. Regards, (îÁÉÌÕÞÛÉÅ ÐÏÖÅÌÁÎÉÑ) Ilia Chipitsine (éÌØÑ ûÉÐÉÃÉÎ) On Mon, 16 Aug 1999, Gregory D. Moncreaff wrote: > As was suggested, it was sendmail_flags in /etc/rc.conf > that was the knob to be adjusted for this, since I usually > run with ppp -auto. > > Is there any theory/philosophy about what is a sane queue > wait time for a dial up internet connection? or differing > internet access/usage profiles in general? > > thanks for the help, > -g > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 8:10:27 1999 Delivered-To: freebsd-questions@freebsd.org Received: from www.state.wy.us (www.state.wy.us [159.238.200.40]) by hub.freebsd.org (Postfix) with ESMTP id C92E5152ED for ; Mon, 16 Aug 1999 08:10:24 -0700 (PDT) (envelope-from srubot@missc.state.wy.us) Received: from [159.238.88.134] ([159.238.88.134]) by www.state.wy.us (8.7.5/8.7.3) with SMTP id PAA28683 for ; Mon, 16 Aug 1999 15:09:12 GMT X-Authentication-Warning: www.state.wy.us: Host [159.238.88.134] didn't use HELO protocol Message-ID: <37B8366F.828@missc.state.wy.us> Date: Mon, 16 Aug 1999 09:03:59 -0700 From: sandra rubottom Organization: department of family services X-Mailer: Mozilla 3.01 (Win16; I) MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: conferance Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG i would like information on the conferance planned in october in california. thanks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 8:19:42 1999 Delivered-To: freebsd-questions@freebsd.org Received: from pop2.tky.3web.ne.jp (pop2.tky.3web.ne.jp [202.235.209.39]) by hub.freebsd.org (Postfix) with ESMTP id 7C77214BF2 for ; Mon, 16 Aug 1999 08:19:32 -0700 (PDT) (envelope-from moris@tky2.3web.ne.jp) Received: from mx2.tky.3web.ne.jp (tky017.tky.3web.ne.jp [202.235.210.49]) by pop2.tky.3web.ne.jp (8.8.8+2.7Wbeta7/3.7W-99073118) with SMTP id AAA29086 for ; Tue, 17 Aug 1999 00:19:01 +0900 (JST) Date: Tue, 17 Aug 1999 00:19:01 +0900 (JST) Message-Id: <199908161519.AAA29086@pop2.tky.3web.ne.jp> From: =?iso-2022-jp?B?WXVrbyBLYXNoaXdhemFraQ==?= To: =?iso-2022-jp?B?ZnJlZWJzZC1xdWVzdGlvbnNARnJlZUJTRC5PUkc=?= Subject: =?iso-2022-jp?B?GyRCPWkkYSReJDckRiEiR3A6aiRIPz0kNyReJDkhIxsoQg==?= Mime-Version: 1.0 Content-Type: text/plain; charset= "ISO-2022-JP" Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG $B=i$a$^$7$F!"%$%*%s%IBg3X$NGp:j!!M5;R$H?=$7$^$9!#(B $B%$%*%s%IBg3X!!L>M@Gn;N!!?dA&0Q0w2q@_N)$N$*CN$i$;$,$"$j(B $B$^$7$F!"%a!<%k$rCW$7$^$7$?!#(B $B$3$NEY!"(BIOND University$B!J%O%o%$=#G'2D!"(BWAUC$B2CLA!K$G$O!"(B $BF|K\$N3F3&$K$*$$$FB?Bg$J$kM@Gn;N9f$rM@Gn;N?dA&0Q0wBP>](B $B!!!!!!#2(B. $BG/NpITLd!"3XNrITLd(B $B!!!!!!#3(B. $B?H853NM@Gn;N$r?dA&$7!"K\3X$N3X0L!K$K$h$j@5<07hDj$7$^$9!#L>M@Gn;N9f]e$K$7$F!"3F3&$K$*$$$F==J,$J8y@S$r;D$5$l6H(B $B!!!!!!!!!!3&$H0JFb!#(B $B!!!!!!#2(B. $B3XLdE*!"$"$k$$$OJ88%E*$K==J,$JA&$rLd$$$^$;$s$N$G!"1sN8$J$/$4O"Mm2<$5$$!#(B $BO"MmJ}K!$O%a!<%k$K$F$h$m$7$/$*4j$$CW$7$^$9!#(B ********************************************* Yuko Kashiwazaki E-Mail:moris@tky2.3web.ne.jp Faculty Recruiting Department of IOND University URL:http://member.nifty.ne.jp/Iond_Univ/ ********************************************* To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 8:33:51 1999 Delivered-To: freebsd-questions@freebsd.org Received: from eos.hitc.com (eos.east.hitc.com [38.177.222.21]) by hub.freebsd.org (Postfix) with ESMTP id 7F66114FE9 for ; Mon, 16 Aug 1999 08:33:46 -0700 (PDT) (envelope-from bcrosby@eos.hitc.com) Received: from eos.hitc.com (ringo.hitc.com [155.157.95.100]) by eos.hitc.com (8.8.8+Sun/8.8.4) with ESMTP id LAA25984; Mon, 16 Aug 1999 11:33:34 -0400 (EDT) Message-ID: <37B82E30.53CD945B@eos.hitc.com> Date: Mon, 16 Aug 1999 11:28:48 -0400 From: Boris Crosby X-Mailer: Mozilla 4.08 [en] (X11; I; Linux 2.0.36 i686) MIME-Version: 1.0 To: "Mikko Grönroos" Cc: freebsd-questions@FreeBSD.ORG Subject: Re: 2x3com NICs References: <37B699BF.28A547A8@mpoli.fi> <37B81F31.321C085E@mpoli.FI> Content-Type: multipart/alternative; boundary="------------3A577474EADF4CE6F364BE54" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG --------------3A577474EADF4CE6F364BE54 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit You might want to check and see if the cards are configured to use the same IRQ. If you configured them that way you need to reassign one to a different IRQ. Also chech to see if you have any plug&play devices that are assigned to the IRQ of one of you cards. Boris. Mikko Grönroos wrote: > Help, I need somebody.. HELP, well ok, you get the picture. > > So, I have two 3com NICs in the same computer. They are same > model (3c509) and so on. I have compiled a support for them > to the kernel and in visual kernel config (*start computer* > -> *hit space* -> boot -c -> visual) they both seem to work > OK (ep0 and ep1). But when I check that same stuff in > CLI - mode it says that both cards aren't enabled? WTF? > And when I go to visual mode it looks like that they are > enabled? What's the problem? > > OK, I booted the computer (both NICs enabled (at least the > visual kernel configuration says so)) and when it's that > magical time to say "Hey hey, I here" - to ifconfig (in > the bootup) ep0 seems to work fine but then ifconfig > doesn't "find" ep1. Strange? or? > > Oh, and I also tried to work it out with sysinstall, but > it doesn't probe ep1. > > And I am sure as sugar that when I check those cards in > the boot's configuration in visual mode. It says that > both cards are enabled. > > Help me out guys (and gals), > > -Mikko Grönroos > > -- > _ _ _ _ > |\ \ > | \ _ _ _ \ >> Bring me flowers, godseyes and boxes of air. > \ | | - CJ & Fish, another fine Berkeley release. > \|_______| > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- Boris Crosby --------------3A577474EADF4CE6F364BE54 Content-Type: text/html; charset=us-ascii Content-Transfer-Encoding: 7bit You might want to check and see if the cards are configured to use the same IRQ.  If you configured them that way you need to reassign one to a different IRQ.  Also chech to see if you have any plug&play devices that are assigned to the IRQ of one of you cards.

Boris.

Mikko Grönroos wrote:

Help, I need somebody.. HELP, well ok, you get the picture.

So, I have two 3com NICs in the same computer. They are same
model (3c509) and so on. I have compiled a support for them
to the kernel and in visual kernel config (*start computer*
-> *hit space* -> boot -c -> visual) they both seem to work
OK (ep0 and ep1). But when I check that same stuff in
CLI - mode it says that both cards aren't enabled? WTF?
And when I go to visual mode it looks like that they are
enabled? What's the problem?

OK, I booted the computer (both NICs enabled (at least the
visual kernel configuration says so)) and when it's that
magical time to say "Hey hey, I here" - to ifconfig (in
the bootup) ep0 seems to work fine but then ifconfig
doesn't "find" ep1. Strange? or?

Oh, and I also tried to work it out with sysinstall, but
it doesn't probe ep1.

And I am sure as sugar that when I check those cards in
the boot's configuration in visual mode. It says that
both cards are enabled.

Help me out guys (and gals),

-Mikko Grönroos

--
    _ _ _ _
   |\       \
   | \ _ _ _ \  >> Bring me flowers, godseyes and boxes of air.
    \ |       |     - CJ & Fish, another fine Berkeley release.
     \|_______|

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-questions" in the body of the message

-- 
Boris Crosby
  --------------3A577474EADF4CE6F364BE54-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 8:35: 5 1999 Delivered-To: freebsd-questions@freebsd.org Received: from Michelle.esfm.ipn.mx (Michelle.esfm.ipn.mx [148.204.104.23]) by hub.freebsd.org (Postfix) with ESMTP id D029214FE9 for ; Mon, 16 Aug 1999 08:34:23 -0700 (PDT) (envelope-from mrspock@esfm.ipn.mx) Received: from localhost (mrspock@localhost) by Michelle.esfm.ipn.mx (8.9.3/8.9.1) with ESMTP id KAA01090; Mon, 16 Aug 1999 10:34:33 -0500 (CDT) (envelope-from mrspock@esfm.ipn.mx) X-Authentication-Warning: Michelle.esfm.ipn.mx: mrspock owned process doing -bs Date: Mon, 16 Aug 1999 10:34:33 -0500 (CDT) From: Eduardo Viruena Silva To: Brian Cc: questions@freebsd.org Subject: Re: ftp problems in FBSD 3.2 ? In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, 12 Aug 1999, Brian wrote: > Apologies for a router lesson here.. On the contrary... thank you. > > Ok, the nitty gritty. Are you the network person there? no, but it is a friend of mine. > I have seen > this when a Cisco, which uses keepalive by default, tries to send an > ipcp config request to the router on the other end, that is usually not a > Cisco. The classic symptom of this is you start a download, then after a > couple minutes, things start to slow down, then die for about 3-4 minutes. > All is well after that. If that is what is occurring, you could try > looking at the router interface while someone else downloads. Does it > blink as if resetting? The fix to try is this on a Cisco.. ok. interface is blinking. > > First, do a show running or show config, and look at the config for the > serial interface that connects to the csu. Does it say no keepalive? If > not, try the below. This is not recommended for frame relay circuits, > they depend on keepalive for staying up. > > conf t > int interface name > no keepalive > ctrl z > Then test to see fi things improve. > > If so, then write mem on the Cisco Thank you Brian, it is better now. I think there was also a problem with an old tranceiver in the back of the router. I have not noticed it but it has a lot of collitions. Thank you, the problem seems to be solved. > > Brian > > On Thu, 12 Aug 1999, Eduardo Viruena Silva wrote: > > > On Thu, 12 Aug 1999, Brian wrote: > > > > > Potential problem; the circuit could be so bust with transferring your > > > data that something called keepalive is failing. 1 of the routers will > > > reset the connection at that point. > > > > > > Bri > > > > Thank you Brian. Then, what am I supposed to do? > > Do I have to change something in my router configuration? > > Do I have to change something in my computer ? > > Perhaps something to transfer data in a lower rate? > > > > > > > > On Thu, 12 Aug 1999, Eduardo Viruena Silva wrote: > > > > > > > > > > > Hello there, > > > > > > > > I have a FreeBSD 3.2 box with a 3com 509 ethernet card in my office and I > > > > have been having problems with FTP. Particularly when I transfer very > > > > large files (5Mb or more). My poor machine begins to slow down its > > > > transfers through the network... ping becomes a real turtle... telnet a > > > > snail... and suddenly all network activies stop... > > > > > > > > Do you have any idea of what is going wrong? > > > > > > Eduardo Viruena > > eduardo.viruena@esfm.ipn.mx > > > > - ______ _ * / /###\ / \ __ /\ /\ * / ./#### \ * \__|_/ | | / \/ \ | b#####| * _ | __ | | __ = .. \____ \ \_\#####/ / \| / \ | | /\_\/ = \_| * \___\###/ * \_/\_/\__/\__\/_/\__/ = \______/ _ | | To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 8:57:38 1999 Delivered-To: freebsd-questions@freebsd.org Received: from dt011n65.san.rr.com (dt011n65.san.rr.com [204.210.13.101]) by hub.freebsd.org (Postfix) with ESMTP id 9D5A614A2F for ; Mon, 16 Aug 1999 08:57:34 -0700 (PDT) (envelope-from Doug@gorean.org) Received: from gorean.org (master [10.0.0.2]) by dt011n65.san.rr.com (8.9.3/8.8.8) with ESMTP id IAA18686; Mon, 16 Aug 1999 08:57:35 -0700 (PDT) (envelope-from Doug@gorean.org) Message-ID: <37B834F6.E4BAE0BE@gorean.org> Date: Mon, 16 Aug 1999 08:57:42 -0700 From: Doug Organization: Triborough Bridge & Tunnel Authority X-Mailer: Mozilla 4.61 [en] (X11; U; FreeBSD 4.0-CURRENT-0815 i386) X-Accept-Language: en MIME-Version: 1.0 To: Mikko =?iso-8859-1?Q?Gr=F6nroos?= Cc: freebsd-questions@FreeBSD.ORG Subject: Re: 2x3com NICs References: <37B699BF.28A547A8@mpoli.fi> <37B81F31.321C085E@mpoli.FI> Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG "Mikko Grönroos" wrote: > > Help, I need somebody.. HELP, well ok, you get the picture. > > So, I have two 3com NICs in the same computer. They are same > model (3c509) and so on. I have compiled a support for them > to the kernel What did you put in your kernel config for them? Please copy and paste the lines from that file. Also, are you sure of the I/O and IRQ numbers, and are they different for each card? Doug To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 8:58:25 1999 Delivered-To: freebsd-questions@freebsd.org Received: from dt011n65.san.rr.com (dt011n65.san.rr.com [204.210.13.101]) by hub.freebsd.org (Postfix) with ESMTP id BABAC14A12 for ; Mon, 16 Aug 1999 08:58:23 -0700 (PDT) (envelope-from Doug@gorean.org) Received: from gorean.org (master [10.0.0.2]) by dt011n65.san.rr.com (8.9.3/8.8.8) with ESMTP id IAA18690; Mon, 16 Aug 1999 08:58:47 -0700 (PDT) (envelope-from Doug@gorean.org) Message-ID: <37B8353E.A53DF2AE@gorean.org> Date: Mon, 16 Aug 1999 08:58:54 -0700 From: Doug Organization: Triborough Bridge & Tunnel Authority X-Mailer: Mozilla 4.61 [en] (X11; U; FreeBSD 4.0-CURRENT-0815 i386) X-Accept-Language: en MIME-Version: 1.0 To: sandra rubottom Cc: freebsd-questions@FreeBSD.ORG Subject: Re: conferance References: <37B8366F.828@missc.state.wy.us> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sandra rubottom wrote: > > i would like information on the conferance planned in october in > california. http://www.freebsdcon.org/ enjoy, Doug To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 9: 3: 8 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail.tci-radio.com (mail.tci-radio.com [209.250.137.43]) by hub.freebsd.org (Postfix) with ESMTP id 71A811552F for ; Mon, 16 Aug 1999 09:02:54 -0700 (PDT) (envelope-from tMind@bigfoot.com) Received: from gchan (fan200.fan590.com [209.250.138.200]) by mail.tci-radio.com (8.9.1a/8.9.1) with SMTP id MAA01847; Mon, 16 Aug 1999 12:01:38 -0400 (EDT) Message-ID: <017601bee801$a11b8820$3c29a8c0@tci.rdo> From: "Tenacious" To: "Evren Yurtesen" , "Brian Clark" Cc: References: <4.2.0.58.19990813110934.009f7dd0@ais.ais-gwd.com> <37B441A6.4774583B@ispro.net.tr> Subject: Re: CD ISO Images Date: Mon, 16 Aug 1999 12:08:33 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit 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-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG check ftp://ftp7.de.freebsd.org/pub/FreeBSD/CD-ROM-images But if you want to support FreeBSD, please buy the CD-ROM. ----- Original Message ----- From: Evren Yurtesen To: Brian Clark Cc: Sent: Friday, August 13, 1999 12:02 PM Subject: Re: CD ISO Images > I do not know any places for download the iso images > but you can download the freebsd installation files from > (this is the latest release) > ftp://ftp.freebsd.org/pub/FreeBSD/3.2-RELEASE > and then burn them to a CD and you can install from CD if you boot > with boot floppies since the CD is not bootable... > > But I have done a bootable CD, thanks to 2.88MB boot floppy image > of FreeBSD. Some cd writer programs let you design your own bootable > CD's (and there are some for download which you can use for this > purpose) > They need an image file of a bootable floppy for putting to CD and > also you need the FreeBSD distribution too. > > The directories inside of > ftp://ftp.freebsd.org/pub/FreeBSD/3.2-RELEASE > should be at the root of the CD. And you will have plenty of > free space to fill with extra programs and packages... > > Evren > > Brian Clark wrote: > > > > Hello: > > > > Does anyone know if there are CD ISO images of the 3.2 release available > > for download anywhere? I'd like to grab some images and burn my own discs. > > I have searched the FTP and came up empty. I'm on a T1 so downloading them > > isn't really a struggle for me. > > > > Know of any individuals that are doing it (for the purpose of downloading)? > > > > Thanks - > > > > Brian > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 9: 6: 8 1999 Delivered-To: freebsd-questions@freebsd.org Received: from radius.wavefire.com (radius.workfire.net [139.142.95.252]) by hub.freebsd.org (Postfix) with SMTP id 8FB5514A12 for ; Mon, 16 Aug 1999 09:06:04 -0700 (PDT) (envelope-from swen@wavefire.com) Received: (qmail 5696 invoked from network); 16 Aug 1999 16:25:13 -0000 Received: from unknown (HELO swen) (139.142.95.222) by radius.workfire.net with SMTP; 16 Aug 1999 16:25:13 -0000 Message-Id: <3.0.32.19990816090651.00b14140@mail.wavefire.com> X-Sender: swen@mail.wavefire.com X-Mailer: Windows Eudora Pro Version 3.0 (32) Date: Mon, 16 Aug 1999 09:06:51 -0700 To: freebsd-questions@freebsd.org From: Chameleon Subject: Re: Leave workstation on or off? Mime-Version: 1.0 Content-Type: text/enriched; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG At 03:54 AM 8/15/99 +0100, you wrote: >On Sat, Aug 14, 1999 at 05:08:00PM -0700, Doug wrote: >> Kendall Shaw wrote: >> > >> > Is it cheaper to turn workstations off at night and, or leave them >> > on? I'd heard the idea before that you damage electronics >> > by turning it off and on. >> >> I am really surprised that your question did not evoke more responses. >> This is one of those "religious" topics that people usually have very >> strong feelings about. >> >> In the "Old Days" (TM) PC manufacturers tried to cut cost any way they >> could, and industry standards were such that it actually was possible to >> fry a computer by turning it on and off too often. However, a kind of >> vicious circle has evolved, where it is now very possible (and in fact, >> they often do) to build electronic circuits that can eliminate the "on/off >> power surge" that used to be such a problem. Think about it. How many other >> pieces of high end electronics do you own (like a television, good quality >> stereo, etc.) and how many of those manufacturers tell you to leave it on >> 24/7 because the power cycle is going to damage it? But since PC >> manufacturers have been getting away with this BS for so long, some of them >> try to perpetuate this myth so that they can continue to cut corners. >> Personally I don't do business with those kinds of people, but if you're >> using bargain basement PC parts (for whatever reason, hey, it's your box) >> then you should be more cautious. >> >> At the same time, someone else already pointed out that the box itself >> draws less wattage than a 60 watt light bulb. It's the MONITOR that is a >> huge power sucker, so I always enable the dpms features of my monitors, and >> turn them off for extended periods of non-use. >> > >Interesting observations. Where I work all us old hands (those >using Suns) just knock the monitors off at night. The new boys, >straight out of Uni, who are NT users shutdown the whole PC every >night. Some of our Suns have been up >400 days. I'm not sure who those Uni guys are, but i use both NT & FreeBSD, and i keep them both on all the time. I only turn off my NT monitor though, probably cause my FreeBSD box doesn't have one...LOL Swen > >> HTH, >> >> Doug (Is it possible to be an "old fart" at 33?) >> > >Probably judging by the age of some of the contributors to these >lists. I'm 41 so you're not alone. > >> >> To Unsubscribe: send mail to majordomo@FreeBSD.org >> with "unsubscribe freebsd-questions" in the body of the message >> > >-- > FreeBSD - The Power To Serve http://www.freebsd.org > My Webpage http://http://ukug.uk.freebsd.org/~mark/ >_______________________________________________________________ >Mark Ovens, CNC Apps Engineer, Radan Computational Ltd. Bath UK >CAD/CAM solutions for Sheetmetal Working Industry >mailto:mark@ukug.uk.freebsd.org http://www.radan.com > > > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-questions" in the body of the message > > ~ -----BEGIN GEEK CODE BLOCK----- GCS/O d-(+) s:+>:- a- C++++ UB++$>++++$ P+ L++>++++$ E-- W++(++) N+ o? K? w--- O- M-- V-- PS+ PE@ Y PGP t++ 5++ X R* tv++ b+++(+) DI++ D+++ G++ e++ h---->$ r+++ x** -----END GEEK CODE BLOCK----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 9: 8:56 1999 Delivered-To: freebsd-questions@freebsd.org Received: from melete.ch.intel.com (melete.ch.intel.com [143.182.246.25]) by hub.freebsd.org (Postfix) with ESMTP id AC65F14FA0 for ; Mon, 16 Aug 1999 09:08:49 -0700 (PDT) (envelope-from jreynold@sedona.ch.intel.com) Received: from sedona.intel.com (sedona.ch.intel.com [143.182.218.21]) by melete.ch.intel.com (8.9.1a+p1/8.9.1/d: relay.m4,v 1.6 1998/11/24 22:10:56 iwep Exp iwep $) with ESMTP id JAA05730; Mon, 16 Aug 1999 09:07:56 -0700 (MST) Received: from hip186.ch.intel.com (hip186.ch.intel.com [143.182.225.68]) by sedona.intel.com (8.9.1a/8.9.1/d: sendmail.cf,v 1.8 1999/04/16 15:25:49 steved Exp steved $) with ESMTP id JAA02379; Mon, 16 Aug 1999 09:07:56 -0700 (MST) X-Envelope-From: jreynold@sedona.ch.intel.com Received: (from jreynold@localhost) by hip186.ch.intel.com (8.9.1a/8.9.1/d: client.m4,v 1.3 1998/09/29 16:36:11 sedayao Exp sedayao $) id MAA11732; Mon, 16 Aug 1999 12:07:55 -0400 (EDT) From: John Reynolds~ MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14264.14169.884729.877403@hip186.ch.intel.com> Date: Mon, 16 Aug 1999 09:07:53 -0700 (MST) To: Doug Cc: freebsd-questions@freebsd.org Subject: Re: hints on getting MouseMan+ "wheel" working? In-Reply-To: <37B7B640.93651765@gorean.org> References: <14260.14873.406944.979169@hip186.ch.intel.com> <37B7B640.93651765@gorean.org> X-Mailer: VM 6.73 under Emacs 19.34.1 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG [ On Sunday, August 15, Doug wrote: ] > > I had the same problem, and was never able to get it to work with moused + > X. I finally solved the problem by using the following settings in > /etc/XF86Config: > > Section "Pointer" > Protocol "Auto" > Device "/dev/psm0" > Buttons 5 > ZAxisMapping 4 5 > Hmmmm. Thanks for the info. So you're basically saying you ditched "moused" in favor of getting this (wheel action) working? Is anyone out there running a PS/2 MouseMan+ -AND- moused and gotten the wheel events seen by X? Thanks, -Jr -- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= | John Reynolds CEG, CCE, Next Generation Flows, HLA | | Intel Corporation MS: CH6-210 Phone: 480-554-9092 pgr: 868-6512 | | jreynold@sedona.ch.intel.com http://www-aec.ch.intel.com/~jreynold/ | =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 9:33:21 1999 Delivered-To: freebsd-questions@freebsd.org Received: from custmail.concentric.net (custmail.concentric.net [205.158.16.13]) by hub.freebsd.org (Postfix) with ESMTP id AFE7714F54 for ; Mon, 16 Aug 1999 09:33:19 -0700 (PDT) (envelope-from sanjay@packetstream.com) Received: from packetstream.com (w042.z216112002.sjc-ca.dsl.cnc.net [216.112.2.42]) by custmail.concentric.net (8.9.1/8.9.1) with ESMTP id JAA10481 for ; Mon, 16 Aug 1999 09:32:26 -0700 (PDT) Message-ID: <37B83E49.8E8716C7@packetstream.com> Date: Mon, 16 Aug 1999 09:37:29 -0700 From: Sanjay Nayak Reply-To: sanjay@packetstream.com X-Mailer: Mozilla 4.61 [en] (Win95; I) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: ipnat clarification Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG hello, I am trying to use the nat functionality of freebsd. I am in a phase of browsing the IPnat.c and IPnat.h code. But After installation of the natd demon,i found in the source directory has the file ip_input.c . This file contains a function ip_nat_init. I am not able to trace the function in the whole source code tree. Could anybody help me out regarding this. regards sanjay To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 9:51: 5 1999 Delivered-To: freebsd-questions@freebsd.org Received: from dfssl.exchange.microsoft.com (dfssl.exchange.microsoft.com [131.107.88.59]) by hub.freebsd.org (Postfix) with ESMTP id 7F7D215284 for ; Mon, 16 Aug 1999 09:51:00 -0700 (PDT) (envelope-from a-ericwo@Exchange.Microsoft.com) Received: by dfssl with Internet Mail Service (5.5.2650.14) id ; Mon, 16 Aug 1999 09:45:22 -0700 Message-ID: <19398D273324D3118A2B0008C7E9A5693B0323@SIT.platinum.corp.microsoft.com> From: "Eric Worden (Volt Computer) (Exchange)" To: "'freebsd-questions@FreeBSD.ORG'" Subject: distribution Date: Mon, 16 Aug 1999 09:45:12 -0700 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.14) Content-Type: multipart/alternative; boundary="----_=_NextPart_001_01BEE806.BABEF67C" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. ------_=_NextPart_001_01BEE806.BABEF67C Content-Type: text/plain; charset="iso-8859-1" hello I am interested in downloading the latest distribution but I need to know for a full system (I want all Xwindows stuff +base) what is the order of download to make the distribution install properly.keep up the great work. and Thx... Eric.... ------_=_NextPart_001_01BEE806.BABEF67C Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
hello = I am=20 interested in downloading the latest distribution but I need to know = for a full=20 system (I want all Xwindows stuff +base) what is the order of download = to make=20 the distribution install properly.keep up the great = work.
and = Thx...=20
       &nb= sp;  =20
       &nb= sp;           &nb= sp;           &nb= sp;    =20 Eric....
 
------_=_NextPart_001_01BEE806.BABEF67C-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 9:58:24 1999 Delivered-To: freebsd-questions@freebsd.org Received: from ntex.co.napa.ca.us (209-78-56-68.co.napa.ca.us [209.78.56.68]) by hub.freebsd.org (Postfix) with ESMTP id BEB7415444 for ; Mon, 16 Aug 1999 09:58:22 -0700 (PDT) (envelope-from DBoune@co.napa.ca.us) Received: by 209-78-56-68.co.napa.ca.us with Internet Mail Service (5.0.1460.8) id ; Mon, 16 Aug 1999 10:01:21 -0700 Message-ID: From: "Boune, Damian" To: "'questions@freebsd.org'" Subject: dual ATI Mach64/X-windows problem Date: Mon, 16 Aug 1999 10:01:19 -0700 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.0.1460.8) Content-Type: text/plain Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Greets, I have a pc with an on-board ATI Mach64 VT, and I have a Mach64 GX plugged into one of the PCI slots on the motherboard, running on FreeBSD 3.2 . I don't actually want to use both cards, just the GX, and the VT that is on-board can not be disabled via hardware or bios. For some reason, I can run XF86Setup just fine, but when I attempt to run X using the Mach 64 server, it simply stops and does nothing. There are no error messages, no signs of anything happening other than the initial messages of the xserver starting. The monitor and video card are properly set up in the x config file as far as I know. X works ok when I pull the GX out of the system and reconfigure the video server. Help! Thank-you! Damian Boune To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 10:15:21 1999 Delivered-To: freebsd-questions@freebsd.org Received: from po4.wam.umd.edu (po4.wam.umd.edu [128.8.10.166]) by hub.freebsd.org (Postfix) with ESMTP id 481D2154AF for ; Mon, 16 Aug 1999 10:15:15 -0700 (PDT) (envelope-from kee@wam.umd.edu) Received: from rac3.wam.umd.edu (root@rac3.wam.umd.edu [128.8.10.143]) by po4.wam.umd.edu (8.9.3/8.9.3) with ESMTP id NAA27841; Mon, 16 Aug 1999 13:14:49 -0400 (EDT) Received: from rac3.wam.umd.edu (sendmail@localhost [127.0.0.1]) by rac3.wam.umd.edu (8.9.3/8.9.3) with SMTP id NAA06703; Mon, 16 Aug 1999 13:14:47 -0400 (EDT) Received: from localhost (kee@localhost) by rac3.wam.umd.edu (8.9.3/8.9.3) with ESMTP id NAA06699; Mon, 16 Aug 1999 13:14:47 -0400 (EDT) X-Authentication-Warning: rac3.wam.umd.edu: kee owned process doing -bs Date: Mon, 16 Aug 1999 13:14:47 -0400 (EDT) From: Byoung-Kee Yi To: freebsd-questions@FreeBSD.org Cc: kee@wam.umd.edu Subject: Re: [Q] sb pro sound card problem in R3.2 In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi - In regard to my previous question, I would like to add what I found afterwards. It seems that a kernel option "CONFIG_SBPRO" is needed. I added the following line in my kernel config file: options CONFIG_SBPRO "config" denied the option, but it worked - at least it fixed the starange "NOTE! blah blah..." message in `dmesg` and lacking mixer in `cat /dev/sndstat`. However, the "... IRQ/DRQ config error?" keeps coming out when I execute mpg123. I traced back the source location of the message, and it was "/sys/i386/isa/sound/dmabuf.c" as exerpted below. ....skip.... 501 /* XXX note -- nobody seems to set the mode to WK_TIMEOUT - lr */ 502 if ((in_sleep_flag[dev].mode & WK_TIMEOUT)) { 503 /* XXX hey, we are in splhigh here ? lr 970705 */ 504 printf("Sound: DMA (input) timed out - IRQ/DRQ config error? \n"); 505 err = EIO; ....skip.... According to the comments, something is going on here. By comparing the sources with those of R2.2.7, it seems that a significant overhaul was carried out and left some bugs. Cheers! -- Kee PS: again, please cc your reply to "kee@wam.umd.edu". To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 10:26:14 1999 Delivered-To: freebsd-questions@freebsd.org Received: from unix.megared.net.mx (megared.net.mx [207.249.162.252]) by hub.freebsd.org (Postfix) with ESMTP id 19D4415526 for ; Mon, 16 Aug 1999 10:26:10 -0700 (PDT) (envelope-from ales@megared.net.mx) Received: from ales (ales.megared.net.mx [207.249.163.252]) by unix.megared.net.mx (8.9.3/8.9.3) with SMTP id MAA37167 for ; Mon, 16 Aug 1999 12:26:18 -0500 (CDT) (envelope-from ales@megared.net.mx) Message-ID: <02be01bee80c$74ed1a60$fca3f9cf@megared.net.mx> From: "Alejandro Ramirez" To: "FreeBSD Questions" Subject: Server Almost Crashed!!! Please Help!!! Date: Mon, 16 Aug 1999 12:26:21 -0500 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-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, I have detected a problem in my system, I have FreeBSD 3.2 with sendmail 8.9.3, Procmail-3.13.1, and disk Quotas; I have searched the sendmail site and I didnt find anything usefull to solve my problem: all my users have 5MB of disk Quotas, the problem happened when 1 of my users that have his quota filled, send a mail to another user who has his quota filed too, the message wasnt to big, 250KB, but when procmail sended a message to sendmail that the quota was exceded, sendmail send a message to root, and tried to return the mail to the original sender, but this user also has his quota exceded, so the mail kept bouncing and trying to be sent all the night, and sendmail kept sending messages to root, an filling the file system, when I came back today, my file system was at 98% filled, in my home directory (I have a forward from root to my personal account), I had 3000 messages of 250KB, and my .mail file was like 7.5GB of size, I had to stop sendmail server and cleaned the mail queue of this mails and then restarted the process, I already know that I can make all this messages that are sent to root to go to trash, with a very simple script in the .procmailrc file, appending the matching subject to /dev/null, but sendmail will not stop from sending and sending the mail and keeping the procesor used and some resources, its there any way to avoid this situation of happening again, its there somethig that I could tell sendmail to discard the message if in X ftime hasnt been sent (in this case). I have already searched the sendmail site, but I couldnt find anything usefull, if someone can help me, I will appreciate this very much. Thanks in Advance Ales To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 10:42:55 1999 Delivered-To: freebsd-questions@freebsd.org Received: from iguana.internexo.co.cr (iguana.internexo.co.cr [196.40.17.2]) by hub.freebsd.org (Postfix) with ESMTP id 4A21314D20 for ; Mon, 16 Aug 1999 10:42:48 -0700 (PDT) (envelope-from freebsd@iguana.internexo.co.cr) Received: (from freebsd@localhost) by iguana.internexo.co.cr (8.9.3/8.9.3) id LAA16384 for freebsd-questions@FreeBSD.ORG; Mon, 16 Aug 1999 11:42:47 -0600 (CST) From: Theodore Hope Message-Id: <199908161742.LAA16384@iguana.internexo.co.cr> Subject: where is identd on 3.2-Release? To: freebsd-questions@FreeBSD.ORG Date: Mon, 16 Aug 1999 11:42:47 -0600 (CST) X-Mailer: ELM [version 2.4 PL25] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Just installed 3.2-R (just development and kernel, not the whole thing) and realized that "identd" (/usr/local/sbin/identd) is not part of the distrib, and can't find it under ftp.freebsd.org's tree. (I'm not physically where the 3.2 box is, and don't have the CD with me now, either :-() Where can I download the "identd" source and install it? Sorry for the newbie question.. Thanks, -T.H. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 10:52:10 1999 Delivered-To: freebsd-questions@freebsd.org Received: from www.netlabs.net (www.netlabs.net [216.116.128.3]) by hub.freebsd.org (Postfix) with ESMTP id 622D914C38 for ; Mon, 16 Aug 1999 10:52:06 -0700 (PDT) (envelope-from keerf@www.netlabs.net) Received: (from keerf@localhost) by www.netlabs.net (8.9.2/8.9.0) id NAA11120; Mon, 16 Aug 1999 13:52:01 -0400 (EDT) Date: Mon, 16 Aug 1999 13:52:01 -0400 (EDT) From: Terry Warner To: Theodore Hope Cc: freebsd-questions@FreeBSD.ORG Subject: Re: where is identd on 3.2-Release? In-Reply-To: <199908161742.LAA16384@iguana.internexo.co.cr> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Theodore, To install identd .. you need to do it from the ports .. the dir is as follows: /usr/ports/security/pidentd just go in there and do a make and make install .. then you got identd :) Terry Warner keerf@netlabs.net ---------------------------------------------------------------------- On Mon, 16 Aug 1999, Theodore Hope wrote: > Just installed 3.2-R (just development and kernel, not the whole thing) > and realized that "identd" (/usr/local/sbin/identd) is not part of > the distrib, and can't find it under ftp.freebsd.org's tree. > > (I'm not physically where the 3.2 box is, and don't have the CD > with me now, either :-() > > Where can I download the "identd" source and install it? > Sorry for the newbie question.. > > Thanks, -T.H. > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 11:23:13 1999 Delivered-To: freebsd-questions@freebsd.org Received: from unix.megared.net.mx (megared.net.mx [207.249.162.252]) by hub.freebsd.org (Postfix) with ESMTP id CCE8C155F6 for ; Mon, 16 Aug 1999 11:23:08 -0700 (PDT) (envelope-from ales@megared.net.mx) Received: from ales (ales.megared.net.mx [207.249.163.252]) by unix.megared.net.mx (8.9.3/8.9.3) with SMTP id NAA47291; Mon, 16 Aug 1999 13:22:51 -0500 (CDT) (envelope-from ales@megared.net.mx) Message-ID: <040101bee814$5bc0bb20$fca3f9cf@megared.net.mx> From: "Alejandro Ramirez" To: "Ilia Chipitsine" , References: Subject: RE: ?! Re: Returned mail: Service unavailable Date: Mon, 16 Aug 1999 13:22:54 -0500 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-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, This e-mail address its blocked in the accees list of the atlnet.com site, maybe got SPAM from this address???. Ales ----- Original Message ----- From: Ilia Chipitsine To: Sent: Sunday, August 15, 1999 12:59 PM Subject: ?! Re: Returned mail: Service unavailable > what's up ? haven't seen this one yet ... > > Regards, (îÁÉÌÕÞÛÉÅ ÐÏÖÅÌÁÎÉÑ) > > Ilia Chipitsine (éÌØÑ ûÉÐÉÃÉÎ) > > On Sun, 15 Aug 1999, Mail Delivery Subsystem wrote: > > > The original message was received at Sun, 15 Aug 1999 22:55:17 +0600 (UDT) > > from uucgilh@localhost > > > > ----- The following addresses had permanent fatal errors ----- > > dsj@sylvester.dsj.net > > > > ----- Transcript of session follows ----- > > ... while talking to mail.atlnet.com.: > > >>> RCPT To: > > <<< 571 ... Relay denied by rule Contact support@atlnet.com > > 554 dsj@sylvester.dsj.net... Service unavailable > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 11:26:14 1999 Delivered-To: freebsd-questions@freebsd.org Received: from unix.megared.net.mx (megared.net.mx [207.249.162.252]) by hub.freebsd.org (Postfix) with ESMTP id CC6BF14BFF for ; Mon, 16 Aug 1999 11:26:11 -0700 (PDT) (envelope-from ales@megared.net.mx) Received: from ales (ales.megared.net.mx [207.249.163.252]) by unix.megared.net.mx (8.9.3/8.9.3) with SMTP id NAA48028; Mon, 16 Aug 1999 13:26:23 -0500 (CDT) (envelope-from ales@megared.net.mx) Message-ID: <042f01bee814$d98f7500$fca3f9cf@megared.net.mx> From: "Alejandro Ramirez" To: , References: Subject: RE: StarOffice 5.1 help please Date: Mon, 16 Aug 1999 13:26:25 -0500 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-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, This is a recent post, maybe can help you out. > Hi, just upgraded to 4.0-CURRENT to see if Staroffice 5.1 works. > It does install fine as I did on 3.2-STABLE, but it fails to run. (it goes > back to the setup screen whenever I run it) > > Is there anybody who succeeded running it or is there any reference page > that explains how to do it successfully? > > Some people say that right after the installation, they had to create > $HOME/.sversionrc manually, but when I ran the setup, it created it for > me.(of course the content was correct, with DOS eoln style -- ^M ) My $HOME/.sversionrc file contains the lines: [Versions] StarOffice 5.1=/usr/local/bin/Office51 Be sure the StarOffice path is right. -- Vallo Kallaste vallo@matti.ee ----- Original Message ----- From: william woods To: Sent: Sunday, August 15, 1999 4:11 PM Subject: StarOffice 5.1 help please > I just finished installing StarOffice 5.1 and the install went fine. The only > problem I have now is when I run /home/william/Office51/bin/soffice , I get the > setup screen......how do I get the program to start and not the set up screen? > > > ---------------------------------- > E-Mail: william woods > Date: 15-Aug-99 > Time: 14:10:09 > > This message was sent by XFMail > ---------------------------------- > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 11:29:46 1999 Delivered-To: freebsd-questions@freebsd.org Received: from twwells.com (twwells.com [209.118.236.57]) by hub.freebsd.org (Postfix) with SMTP id 18D68150FA for ; Mon, 16 Aug 1999 11:29:40 -0700 (PDT) (envelope-from news@twwells.com) Received: from news by twwells.com with local (Exim 1.71 #2) id 11GRUH-0004Nz-00; Mon, 16 Aug 1999 14:28:01 -0400 From: bill@twwells.com (T. William Wells) To: freebsd-questions@freebsd.org Subject: Re: Server Almost Crashed!!! Please Help!!! Message-ID: <7p9kul$g2k$1@twwells.com> References: <02be01bee80c$74ed1a60$fca3f9cf@megared.net.mx> Date: Mon, 16 Aug 1999 14:28:01 -0400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In article <02be01bee80c$74ed1a60$fca3f9cf@megared.net.mx>, Alejandro Ramirez wrote: : I have detected a problem in my system, I have FreeBSD 3.2 with sendmail : 8.9.3, Procmail-3.13.1, and disk Quotas; I have searched the sendmail site : and I didnt find anything usefull to solve my problem: all my users have 5MB : of disk Quotas, the problem happened when 1 of my users that have his quota : filled, send a mail to another user who has his quota filed too, the message : wasnt to big, 250KB, but when procmail sended a message to sendmail that the : quota was exceded, sendmail send a message to root, and tried to return the : mail to the original sender, but this user also has his quota exceded, so According to the RFC, the process for delivering messages is something like: o Attempt to deliver the message. o If the delivery succeeds, quit. o The delivery failed, check the sender of the message. o If the sender of the message is null, quit. o Create an error message and deliver it to the sender *with the sender set to null* and quit. The purpose of this is to prevent just the sort of loop you have discovered. In order to break the loop you will need to discover which of the above steps your system is doing incorrectly. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 11:34:51 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail1.javanet.com (mail1.javanet.com [205.219.162.10]) by hub.freebsd.org (Postfix) with ESMTP id B703815486 for ; Mon, 16 Aug 1999 11:34:48 -0700 (PDT) (envelope-from scshaw@mail.javanet.com) Received: from myname.my.domain (ct-hartford-hiper2141.javanet.com [209.150.38.143]) by mail1.javanet.com (8.9.3/8.9.2) with SMTP id OAA07427 for ; Mon, 16 Aug 1999 14:32:54 -0400 (EDT) From: "Steven C. Shaw" To: questions@FreeBSD.ORG Subject: Printing problem Date: Mon, 16 Aug 1999 14:21:00 -0400 X-Mailer: KMail [version 1.0.21] Content-Type: text/plain MIME-Version: 1.0 Message-Id: <99081614333800.00301@myname.my.domain> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello, I've installed FreeBSD 3.2 and am having trouble printing. I've installed KDE in X and when I print the printer queue comes up with the error that "Warning: no daemon present" The pinter configuration files are as follows: /etc/pintcap lp|winwriter400|lexmark|line|Winwriter 400:\ :sh:sd=/var/spool/output/winwriter:\ :lp=/dev/lpt0:\ :if=/usr/local/libexec/winwriter.filter: /usr/local/libexec/winwriter.filter #!/bin/sh printf "\033&k2G" && cat && printf "\033&10H" && exit 0 exit 2 I have also created the /var/spool/output/winwriter directory Tried it in the /var/spool/winwriter directory also with no luck Thanks Steven C. Shaw scshaw@mail.javanet.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 11:35:10 1999 Delivered-To: freebsd-questions@freebsd.org Received: from list.wildcoast.co.za (list.wildcoast.co.za [196.25.82.3]) by hub.freebsd.org (Postfix) with ESMTP id B083514BFF for ; Mon, 16 Aug 1999 11:34:50 -0700 (PDT) (envelope-from evablunted@earthling.net) Received: from impakt (uta36-01-p18.ec.saix.NET [155.239.168.18]) by list.wildcoast.co.za (8.9.3/8.9.3) with SMTP id UAA03145; Mon, 16 Aug 1999 20:35:56 +0200 Message-ID: <00dc01bc3bae$eeee1560$0a01a8c0@sunshine.co.za> From: "Langa Kentane" To: "FreeBSD" Cc: "Linux" Subject: Sendmail, firewalling and DNS tutorial Date: Fri, 28 Mar 1997 21:33:21 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit 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-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Where can I get a good indepth tutorial on the above mentioned topics? Langa Kentane System Administrator Sunshine Networks cc Tel +27 82 928 1952 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 11:58: 6 1999 Delivered-To: freebsd-questions@freebsd.org Received: from dt011n65.san.rr.com (dt011n65.san.rr.com [204.210.13.101]) by hub.freebsd.org (Postfix) with ESMTP id C46A614CBE for ; Mon, 16 Aug 1999 11:58:03 -0700 (PDT) (envelope-from Doug@gorean.org) Received: from localhost (doug@localhost) by dt011n65.san.rr.com (8.9.3/8.8.8) with ESMTP id LAA20364; Mon, 16 Aug 1999 11:55:24 -0700 (PDT) (envelope-from Doug@gorean.org) Date: Mon, 16 Aug 1999 11:55:24 -0700 (PDT) From: Doug X-Sender: doug@dt011n65.san.rr.com To: John Reynolds~ Cc: Doug , freebsd-questions@freebsd.org Subject: Re: hints on getting MouseMan+ "wheel" working? In-Reply-To: <14264.14169.884729.877403@hip186.ch.intel.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, 16 Aug 1999, John Reynolds~ wrote: > Hmmmm. Thanks for the info. So you're basically saying you ditched "moused" > in favor of getting this (wheel action) working? Yes. > Is anyone out there running a PS/2 MouseMan+ -AND- moused and gotten the > wheel events seen by X? My read on the relevant stuff from XFree and moused was that it's not possible given the current state of things. The only thing moused does for you is give you the option of cut and paste in a cons25 terminal window, so if you're using X anyway it's not necessary. If you sometimes need to use the terminal window then switch to X you can always turn moused on, then turn it off again when you have to start up X. It would be nice to have moused support wheels on PS/2 mice, but if you're only using X you're not missing anything anyway. Good luck, Doug To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 11:59:55 1999 Delivered-To: freebsd-questions@freebsd.org Received: from iaces.com (horton.iaces.com [204.147.87.98]) by hub.freebsd.org (Postfix) with ESMTP id 1994F14E40 for ; Mon, 16 Aug 1999 11:59:50 -0700 (PDT) (envelope-from proot@iaces.com) Received: (from proot@localhost) by iaces.com (8.9.3/8.9.3) id NAA19207; Mon, 16 Aug 1999 13:59:33 -0500 (CDT) From: "Paul T. Root" Message-Id: <199908161859.NAA19207@iaces.com> Subject: Re: Sendmail, firewalling and DNS tutorial In-Reply-To: <00dc01bc3bae$eeee1560$0a01a8c0@sunshine.co.za> from Langa Kentane at "Mar 28, 97 09:33:21 pm" To: evablunted@earthling.net (Langa Kentane) Date: Mon, 16 Aug 1999 13:59:33 -0500 (CDT) Cc: freebsd-questions@FreeBSD.ORG, linux-admin@vger.rutgers.edu X-Organization: USWEST !nterprise Networking - ACES X-Phone: (612) 664-3385 X-Fax: (612) 664-4779 X-Page: (800) SKY-PAGE PIN: 537-7270 X-Address: 600 Stinson Blvd, Fl 1S X-Address: Minneapolis, MN 55413 X-Mailer: ELM [version 2.4ME+ PL38 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In a previous message, Langa Kentane said: > Where can I get a good indepth tutorial on the above mentioned topics? O'Reilly books are invaluable. -- If a woman has to choose between catching a fly ball and saving an infant's life, she will choose to save the infant's life without even considering if there are men on base. -- Dave Barry To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 12: 0:58 1999 Delivered-To: freebsd-questions@freebsd.org Received: from melete.ch.intel.com (melete.ch.intel.com [143.182.246.25]) by hub.freebsd.org (Postfix) with ESMTP id 89F9114E40 for ; Mon, 16 Aug 1999 12:00:46 -0700 (PDT) (envelope-from jreynold@sedona.ch.intel.com) Received: from sedona.intel.com (sedona.ch.intel.com [143.182.218.21]) by melete.ch.intel.com (8.9.1a+p1/8.9.1/d: relay.m4,v 1.6 1998/11/24 22:10:56 iwep Exp iwep $) with ESMTP id MAA12725; Mon, 16 Aug 1999 12:01:00 -0700 (MST) Received: from hip186.ch.intel.com (hip186.ch.intel.com [143.182.225.68]) by sedona.intel.com (8.9.1a/8.9.1/d: sendmail.cf,v 1.8 1999/04/16 15:25:49 steved Exp steved $) with ESMTP id MAA25322; Mon, 16 Aug 1999 12:01:00 -0700 (MST) X-Envelope-From: jreynold@sedona.ch.intel.com Received: (from jreynold@localhost) by hip186.ch.intel.com (8.9.1a/8.9.1/d: client.m4,v 1.3 1998/09/29 16:36:11 sedayao Exp sedayao $) id PAA20650; Mon, 16 Aug 1999 15:00:59 -0400 (EDT) From: John Reynolds~ MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14264.24554.415959.550737@hip186.ch.intel.com> Date: Mon, 16 Aug 1999 12:00:58 -0700 (MST) To: Doug Cc: freebsd-questions@freebsd.org Subject: Re: hints on getting MouseMan+ "wheel" working? In-Reply-To: References: <14264.14169.884729.877403@hip186.ch.intel.com> X-Mailer: VM 6.73 under Emacs 19.34.1 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG [ On Monday, August 16, Doug wrote: ] > > My read on the relevant stuff from XFree and moused was that it's > not possible given the current state of things. The only thing moused does > for you is give you the option of cut and paste in a cons25 terminal > window, so if you're using X anyway it's not necessary. If you sometimes > need to use the terminal window then switch to X you can always turn > moused on, then turn it off again when you have to start up X. > > It would be nice to have moused support wheels on PS/2 mice, but > if you're only using X you're not missing anything anyway. Interesting. Thanks for the information. You're right--I'm in X 99.9999% of the time anyway so I could probably just live without moused running and just point my X config file to /dev/psm0 to have things "work". Thanks! -Jr -- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= | John Reynolds CEG, CCE, Next Generation Flows, HLA | | Intel Corporation MS: CH6-210 Phone: 480-554-9092 pgr: 868-6512 | | jreynold@sedona.ch.intel.com http://www-aec.ch.intel.com/~jreynold/ | =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 12: 3:40 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail.alaskaair.com (mail.alaskaair.com [159.49.254.31]) by hub.freebsd.org (Postfix) with ESMTP id 653A115497 for ; Mon, 16 Aug 1999 12:03:37 -0700 (PDT) (envelope-from elazich@AlaskaAir.com) Received: by mail.alaskaair.com from localhost (router,SLMail V3.2); Mon, 16 Aug 1999 11:58:09 -0700 Received: from aag.alaskaair.com [159.49.254.10] by mail.alaskaair.com [159.49.254.31] (SLmail 3.2.3113) with SMTP id C6E1358853DA11D3A4DC0090274036DC for plus 2 more; Mon, 16 Aug 1999 11:58:06 -0700 From: elazich@AlaskaAir.com To: evablunted@earthling.net Cc: freebsd-questions@freebsd.org, linux-admin@vger.rutgers.edu Received: from asnasta.alaskaair.com by aag.alaskaair.com via smtpd (for mail.alaskaair.com [159.49.254.31]) with SMTP; 16 Aug 1999 19:04:20 UT Date: Mon, 16 Aug 1999 12:01:34 -0700 Subject: Re: Sendmail, firewalling and DNS tutorial Message-ID: References: <00dc01bc3bae$eeee1560$0a01a8c0@sunshine.co.za> Organization: Alaska Airlines MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit Content-ID: X-Gateway: NASTA Gate 2.0 for FirstClass(R) X-SLUIDL: 3122508D-52B511D3-A4DC0090-274036DC Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG O'Reilly & Associates books as follows; Sendmail - by Brian Costales with Eric Allman & Neil Rickert The BAT book Building Internet Firewalls - by Chapman & Zwicky - Castle gate onthe cover DNS & BIND - by Paul Albitz & Cricket Liu - Grasshoppers on the cover These should give you enough of what you're looking for. Eli evablunted@earthling.net writes: >Where can I get a good indepth tutorial on the above mentioned topics? >Langa Kentane >System Administrator >Sunshine Networks cc >Tel +27 82 928 1952 >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-questions" in the body of the message >Received: from aag.alaskaair.com (aag.alaskaair.com [159.49.42.2]) by >asnasta.alaskaair.com with SMTP id MSGYBZNY; Mon, 16 Aug 1999 19:38:34 >GMT >Received: from hub.FreeBSD.org ([204.216.27.18]) by aag.alaskaair.com >via smtpd (for asnasta.alaskaair.com [159.49.42.21]) with SMTP; 16 Aug >1999 18:38:43 UT >Received: by hub.freebsd.org (Postfix, from userid 538) id C7E41150FA; >Mon, 16 Aug 1999 11:35:10 -0700 (PDT) >Received: from localhost (localhost [127.0.0.1]) by hub.freebsd.org >(Postfix) with SMTP id AA6851CD893; Mon, 16 Aug 1999 11:35:10 -0700 >(PDT) (envelope-from owner-freebsd-questions) >Received: by hub.freebsd.org (bulk_mailer v1.12); Mon, 16 Aug 1999 >11:35:10 -0700 >Received: from list.wildcoast.co.za (list.wildcoast.co.za >[196.25.82.3]) by hub.freebsd.org (Postfix) with ESMTP id B083514BFF >for ; Mon, 16 Aug 1999 11:34:50 -0700 >(PDT) (envelope-from evablunted@earthling.net) >Received: from impakt (uta36-01-p18.ec.saix.NET [155.239.168.18]) by >list.wildcoast.co.za (8.9.3/8.9.3) with SMTP id UAA03145; Mon, 16 Aug >1999 20:35:56 +0200 >Message-ID: <00dc01bc3bae$eeee1560$0a01a8c0@sunshine.co.za> To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 12: 6: 0 1999 Delivered-To: freebsd-questions@freebsd.org Received: from zr3.lee.net (zr3.lee.net [208.229.121.3]) by hub.freebsd.org (Postfix) with ESMTP id D673515689 for ; Mon, 16 Aug 1999 12:05:49 -0700 (PDT) (envelope-from chris@townnews.com) Received: from localhost (chris@localhost) by zr3.lee.net (8.8.7/8.8.7) with SMTP id OAA00771 for ; Mon, 16 Aug 1999 14:06:00 -0500 (CDT) (envelope-from chris@townnews.com) Date: Mon, 16 Aug 1999 14:06:00 -0500 (CDT) From: Chris Dorr X-Sender: chris@zr3.lee.net To: freebsd-questions@FreeBSD.ORG Subject: /etc/groups Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I ran into a strange one this morning. I added a user to our system for an FTP account, but when I tried to change permissions on his account I got an illegal group name. And when I tried to restart one of our apache servers, I got a bad group name also. So I went into /etc/groups and took 2 people out of that particular group and everything was working again with no problems. Obviously there is a limit to how many people can be in one group. What's the limit? Is there anyway around the group limit, without redoing the whole system? On this particular system we're running 2.2.5 Release. Any ideas out there?? ## Chris Dorr ## International Newspaper Network ## 800-579-6397 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 12: 6: 2 1999 Delivered-To: freebsd-questions@freebsd.org Received: from iaces.com (horton.iaces.com [204.147.87.98]) by hub.freebsd.org (Postfix) with ESMTP id 60BB1154FB for ; Mon, 16 Aug 1999 12:05:45 -0700 (PDT) (envelope-from proot@iaces.com) Received: (from proot@localhost) by iaces.com (8.9.3/8.9.3) id NAA19184; Mon, 16 Aug 1999 13:58:02 -0500 (CDT) From: "Paul T. Root" Message-Id: <199908161858.NAA19184@iaces.com> Subject: Re: Printing problem In-Reply-To: <99081614333800.00301@myname.my.domain> from "Steven C. Shaw" at "Aug 16, 99 02:21:00 pm" To: scshaw@mail.javanet.com (Steven C. Shaw) Date: Mon, 16 Aug 1999 13:58:01 -0500 (CDT) Cc: questions@FreeBSD.ORG X-Organization: USWEST !nterprise Networking - ACES X-Phone: (612) 664-3385 X-Fax: (612) 664-4779 X-Page: (800) SKY-PAGE PIN: 537-7270 X-Address: 600 Stinson Blvd, Fl 1S X-Address: Minneapolis, MN 55413 X-Mailer: ELM [version 2.4ME+ PL38 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG LPD is turned off by default. Did you enable it in /etc/rc.conf? In a previous message, Steven C. Shaw said: > Hello, > I've installed FreeBSD 3.2 and am having trouble printing. I've > installed KDE in X and when I print the printer queue comes up with the error > that "Warning: no daemon present" > The pinter configuration files are as follows: > > /etc/pintcap > lp|winwriter400|lexmark|line|Winwriter 400:\ > :sh:sd=/var/spool/output/winwriter:\ > :lp=/dev/lpt0:\ > :if=/usr/local/libexec/winwriter.filter: > > /usr/local/libexec/winwriter.filter > #!/bin/sh > printf "\033&k2G" && cat && printf "\033&10H" && exit 0 > exit 2 > > I have also created the /var/spool/output/winwriter directory > Tried it in the /var/spool/winwriter directory also with no luck > > Thanks > Steven C. Shaw > scshaw@mail.javanet.com > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > -- I think that the team that wins game five will win the series. Unless we lose game five. -- Charles Barkley To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 12:17:44 1999 Delivered-To: freebsd-questions@freebsd.org Received: from dt011n65.san.rr.com (dt011n65.san.rr.com [204.210.13.101]) by hub.freebsd.org (Postfix) with ESMTP id D4AAE14CAC for ; Mon, 16 Aug 1999 12:17:39 -0700 (PDT) (envelope-from Doug@gorean.org) Received: from localhost (doug@localhost) by dt011n65.san.rr.com (8.9.3/8.8.8) with ESMTP id MAA20589; Mon, 16 Aug 1999 12:16:52 -0700 (PDT) (envelope-from Doug@gorean.org) Date: Mon, 16 Aug 1999 12:16:52 -0700 (PDT) From: Doug X-Sender: doug@dt011n65.san.rr.com To: "Steven C. Shaw" Cc: questions@FreeBSD.ORG Subject: Re: Printing problem In-Reply-To: <99081614333800.00301@myname.my.domain> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, 16 Aug 1999, Steven C. Shaw wrote: > Hello, > I've installed FreeBSD 3.2 and am having trouble printing. I've > installed KDE in X and when I print the printer queue comes up with the error > that "Warning: no daemon present" You haven't started lpd. Please read the handbook pages on printing very carefully and follow ALL of the instructions there. :) Good luck, Doug -- On account of being a democracy and run by the people, we are the only nation in the world that has to keep a government four years, no matter what it does. -- Will Rogers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 13: 1:22 1999 Delivered-To: freebsd-questions@freebsd.org Received: from beowulf.utmb.edu (beowulf.utmb.edu [129.109.59.83]) by hub.freebsd.org (Postfix) with ESMTP id AD36B154F7 for ; Mon, 16 Aug 1999 13:01:17 -0700 (PDT) (envelope-from bdodson@beowulf.utmb.edu) Received: (from bdodson@localhost) by beowulf.utmb.edu (8.9.3/8.9.2) id OAA07056; Mon, 16 Aug 1999 14:59:01 -0500 (CDT) (envelope-from bdodson) Date: Mon, 16 Aug 1999 14:59:01 -0500 (CDT) Message-Id: <199908161959.OAA07056@beowulf.utmb.edu> From: "M. L. Dodson" MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: John Reynolds~ Cc: Doug , freebsd-questions@FreeBSD.ORG Subject: Re: hints on getting MouseMan+ "wheel" working? In-Reply-To: <14264.24554.415959.550737@hip186.ch.intel.com> References: <14264.14169.884729.877403@hip186.ch.intel.com> <14264.24554.415959.550737@hip186.ch.intel.com> X-Mailer: VM 6.34 under 19.16 "Lille" XEmacs Lucid Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG John Reynolds~ writes: > > [ On Monday, August 16, Doug wrote: ] > > > > My read on the relevant stuff from XFree and moused was that it's > > not possible given the current state of things. The only thing moused does > > for you is give you the option of cut and paste in a cons25 terminal > > window, so if you're using X anyway it's not necessary. If you sometimes > > need to use the terminal window then switch to X you can always turn > > moused on, then turn it off again when you have to start up X. > > > > It would be nice to have moused support wheels on PS/2 mice, but > > if you're only using X you're not missing anything anyway. > > Interesting. Thanks for the information. You're right--I'm in X 99.9999% of > the time anyway so I could probably just live without moused running and > just point my X config file to /dev/psm0 to have things "work". > Does anyone know whether if you just point the X config to /dev/ums0, protocol auto (or something else?), a usb wheeled mouse would "just work"? > Thanks! > > -Jr > > -- > =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= > | John Reynolds CEG, CCE, Next Generation Flows, HLA | > | Intel Corporation MS: CH6-210 Phone: 480-554-9092 pgr: 868-6512 | > | jreynold@sedona.ch.intel.com http://www-aec.ch.intel.com/~jreynold/ | > =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= > -- M. L. Dodson bdodson@scms.utmb.edu 409-772-2178 FAX: 409-772-1790 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 13: 9:33 1999 Delivered-To: freebsd-questions@freebsd.org Received: from elmer.designstein.com (elmer.designstein.com [206.150.198.2]) by hub.freebsd.org (Postfix) with ESMTP id AF52B14BDB for ; Mon, 16 Aug 1999 13:09:31 -0700 (PDT) (envelope-from rlinwood@designstein.com) Received: from designstein.com (kermit.designstein.com [206.150.198.134]) by elmer.designstein.com (8.9.1/8.9.1) with ESMTP id PAA02065 for ; Mon, 16 Aug 1999 15:09:26 -0500 (CDT) (envelope-from rlinwood@designstein.com) Message-ID: <37B870B4.252C3B3A@designstein.com> Date: Mon, 16 Aug 1999 15:12:36 -0500 From: Ryan Linwood X-Mailer: Mozilla 4.61 [en] (WinNT; I) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: / is full Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I am currently having a problem with our FreeBSD mailserver. I am constantly getting the message: /kernel: pid 1861 (imapd), uid 1004 on /: file system full when I perform a df, I receive: Filesystem 1K-blocks Used Avail Capacity Mounted on /dev/da0s1a 99183 97991 -6742 107% / /dev/da2s1e 4050755 555974 3170721 15% /http /dev/da1s1e 1785322 717859 924638 44% /home /dev/da0s1f 1338866 475043 756714 39% /usr /dev/da0s1e 347295 195084 124428 61% /usr/src /dev/da3s1e 4050755 1568564 2158131 42% /var /dev/fd0c 1319 1292 -78 106% /mnt/floppy procfs 4 4 0 100% /proc I have checked the / , /root , & /tmp directories and they are nearly empty. Also, /var is not part of my root directory. What am I missing? Any help would be greatly appreciated. Thanks, -Ryan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 13:11:11 1999 Delivered-To: freebsd-questions@freebsd.org Received: from m2.pp.htv.fi (m2ep.pp.htv.fi [212.90.64.98]) by hub.freebsd.org (Postfix) with ESMTP id 8475D14BDB for ; Mon, 16 Aug 1999 13:11:08 -0700 (PDT) (envelope-from greenie@mpoli.FI) Received: from m7.pp.htv.fi (m7.pp.htv.fi [212.90.64.22]) by m2.pp.htv.fi (8.8.6 (PHNE_14041)/8.8.6) with ESMTP id XAA02270; Mon, 16 Aug 1999 23:11:01 +0300 (EETDST) Received: from mpoli.FI (cs69016.pp.htv.fi [212.90.69.16]) by m7.pp.htv.fi (8.8.6 (PHNE_14041)/8.8.6) with ESMTP id XAA11826; Mon, 16 Aug 1999 23:12:04 +0300 (EETDST) Message-ID: <37B87082.A0B0E405@mpoli.FI> Date: Mon, 16 Aug 1999 23:11:46 +0300 From: Mikko =?iso-8859-1?Q?Gr=F6nroos?= Organization: Lemonsoda Organizing X-Mailer: Mozilla 4.5 [en] (Win98; I) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG, Doug@gorean.org Subject: Re: 2x3com NICs References: <37B699BF.28A547A8@mpoli.fi> <37B81F31.321C085E@mpoli.FI> <37B834F6.E4BAE0BE@gorean.org> Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Doug (This is also a reply tu Boris Crosby's msg.) wrote: > What did you put in your kernel config for them? > Please copy and paste the lines from that file. device ep0 at isa? port 0x300 net irq 11 device ep1 at isa? port 0x320 net irq 12 OK, so here are the lines, IRQ's or addresses are free for use (aka they don't belong to any other device). (I don't have an PS/2 mouse (usually it uses the IRQ 12) but I do have an PS/2 keyboard, but if I'm right, that shouldn't make things any different? Am I right? > Also, are you sure of the I/O and IRQ numbers, and > are they different for each card? Pretty sure, at least, that's what the "boot -c" - config says. -Mikko Grönroos -- _ _ _ _ |\ \ | \ _ _ _ \ >> Bring me flowers, godseyes and boxes of air. \ | | - CJ & Fish, another fine Berkeley release. \|_______| To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 13:22: 7 1999 Delivered-To: freebsd-questions@freebsd.org Received: from linum.cofc.edu (linum.cofc.edu [153.9.35.19]) by hub.freebsd.org (Postfix) with ESMTP id 9053614D1A for ; Mon, 16 Aug 1999 13:22:03 -0700 (PDT) (envelope-from astrand@linum.cofc.edu) Received: (from astrand@localhost) by linum.cofc.edu (8.9.3/8.9.2) id QAA00563; Mon, 16 Aug 1999 16:21:43 -0400 (EDT) (envelope-from astrand) To: freebsd-questions@freebsd.org Subject: installing wordperfect seemed to break linux emulation From: Allan Strand Date: 16 Aug 1999 16:21:43 -0400 Message-ID: <863dxjbhns.fsf@linum.cofc.edu> Lines: 21 User-Agent: Gnus/5.070084 (Pterodactyl Gnus v0.84) XEmacs/20.4 (Emerald) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi All, I am tracking 3.2 stable. I have been using linux emulation to run a spreadsheet and it has been working fine for a several upgrades. I just installed wordperfect 8 from the ports collection. When the installation was running, it reinstalled linux compatibility. The result of this installation is that I now can run programs under linux emulation only as root. They all seem to work fine including xwp. As a regular user, they all crash with a signal 11 segfault The fact that emulation is working under root leads me to believe that there is a permission problem, but I'm not sure where to look. Any ideas? A. -- Allan E. Strand stranda@cofc.edu, http://linum.cofc.edu Department of Biology Phone: (843) 953-8085 College of Charleston Fax: (843) 953-5453 Charleston, SC 29424 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 13:34: 8 1999 Delivered-To: freebsd-questions@freebsd.org Received: from ns.clientlogic.com (ns.clientlogic.com [207.51.66.75]) by hub.freebsd.org (Postfix) with ESMTP id 5BB0814D1A for ; Mon, 16 Aug 1999 13:34:06 -0700 (PDT) (envelope-from ChrisMic@clientlogic.com) Received: by site0s1 with Internet Mail Service (5.5.2448.0) id ; Mon, 16 Aug 1999 16:33:21 -0400 Message-ID: <6C37EE640B78D2118D2F00A0C90FCB4401105B8E@site2s1> From: Christopher Michaels To: "FreeBSD Questions (E-mail)" Subject: Is it possible to do the following with IPX? Date: Mon, 16 Aug 1999 16:35:53 -0400 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2448.0) Content-Type: text/plain Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, I would just like to know if this is possible to do the following. I will not be able to implement it right away, but want to know before I even try. I would like to know if it is possible to somehow make a private lan over the internet between two FreeBSD gateway machines, and have IPX routed over that connection (like it were one private lan). [LAN] -- [FBSD] --> ISP --> Internet <-- ISP <-- [FBSD] -- [LAN] IPX/TCP/etc ---------------------------------------------------- IPX/TCP/etc Any help anyone can give me would be greatly appreciated. Publications, web sites, faq's, advice, etc... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 13:45:51 1999 Delivered-To: freebsd-questions@freebsd.org Received: from ns.clientlogic.com (ns.clientlogic.com [207.51.66.75]) by hub.freebsd.org (Postfix) with ESMTP id 98F5914BE4 for ; Mon, 16 Aug 1999 13:45:49 -0700 (PDT) (envelope-from ChrisMic@clientlogic.com) Received: by site0s1 with Internet Mail Service (5.5.2448.0) id ; Mon, 16 Aug 1999 16:46:17 -0400 Message-ID: <6C37EE640B78D2118D2F00A0C90FCB4401105B8F@site2s1> From: Christopher Michaels To: Theodore Hope Cc: freebsd-questions@FreeBSD.ORG Subject: RE: where is identd on 3.2-Release? Date: Mon, 16 Aug 1999 16:48:48 -0400 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2448.0) Content-Type: text/plain Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Don't forget to add the entry to /etc/inetd.conf and killall -HUP inetd after you install it. -Chris > -----Original Message----- > From: Terry Warner [SMTP:keerf@www.netlabs.net] > Sent: Monday, August 16, 1999 1:52 PM > To: Theodore Hope > Cc: freebsd-questions@FreeBSD.ORG > Subject: Re: where is identd on 3.2-Release? > > Theodore, > > To install identd .. you need to do it from the ports .. the dir is > as follows: > > /usr/ports/security/pidentd > > just go in there and do a make and make install .. then you got identd :) > > > Terry Warner > keerf@netlabs.net > > ---------------------------------------------------------------------- > > > On Mon, 16 Aug 1999, Theodore Hope wrote: > > > Just installed 3.2-R (just development and kernel, not the whole thing) > > and realized that "identd" (/usr/local/sbin/identd) is not part of > > the distrib, and can't find it under ftp.freebsd.org's tree. > > > > (I'm not physically where the 3.2 box is, and don't have the CD > > with me now, either :-() > > > > Where can I download the "identd" source and install it? > > Sorry for the newbie question.. > > > > Thanks, -T.H. > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 13:53: 2 1999 Delivered-To: freebsd-questions@freebsd.org Received: from camel.ethereal.net (camel.ethereal.net [209.228.7.140]) by hub.freebsd.org (Postfix) with ESMTP id 0D9FC1551D for ; Mon, 16 Aug 1999 13:52:58 -0700 (PDT) (envelope-from mistwolf@camel.ethereal.net) Received: (from mistwolf@localhost) by camel.ethereal.net (8.9.3/8.9.1) id NAA24631; Mon, 16 Aug 1999 13:19:54 -0700 (PDT) Date: Mon, 16 Aug 1999 13:19:54 -0700 From: Jamie Norwood To: usselmann.m@icg-online.de Cc: nugundam@best.com, freebsd-questions@FreeBSD.ORG Subject: Re: Question about the mascot Message-ID: <19990816131954.A23619@ethereal.net> References: <37A89381.A85AC8D2@saipan.com> <19990811015024.A16596@la.best.com> <37B13C02.476C8C43@icg-online.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii User-Agent: Mutt/0.96.2i In-Reply-To: <37B13C02.476C8C43@icg-online.de>; from usselmann.m@icg-online.de on Wed, Aug 11, 1999 at 11:01:55AM +0200 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, Aug 11, 1999 at 11:01:55AM +0200, usselmann.m@icg-online.de wrote: > http://www.freebsdmall.com/ > > "Joseph T. Lee" wrote: I really wish there were somewhere better to buy these... Much as I like FreeBSD Mall, even buying 5 plates means I am paying as much for shipping as the products; $5.00 for something that came in an envelope with a $.29 postage reading on it was less than pleasant for the ones I bought last week. :/ Jamie To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 13:55: 1 1999 Delivered-To: freebsd-questions@freebsd.org Received: from swan.prod.itd.earthlink.net (swan.prod.itd.earthlink.net [207.217.120.123]) by hub.freebsd.org (Postfix) with ESMTP id 8F5B31550C for ; Mon, 16 Aug 1999 13:54:54 -0700 (PDT) (envelope-from ekkensj@earthlink.net) Received: from w-hollandj (pool0902.cvx29-bradley.dialup.earthlink.net [209.179.137.137]) by swan.prod.itd.earthlink.net (8.9.3/8.9.3) with SMTP id NAA26594 for ; Mon, 16 Aug 1999 13:55:16 -0700 (PDT) Message-Id: <3.0.5.32.19990816135717.0093a450@mail.earthlink.net> X-Sender: ekkensj@mail.earthlink.net X-Mailer: QUALCOMM Windows Eudora Light Version 3.0.5 (32) Date: Mon, 16 Aug 1999 13:57:17 -0700 To: freebsd-questions@FreeBSD.ORG From: John Holland Subject: Howtos Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I installed the Howto-1.0 package. How do I run or view the Howtos? FreeBSD 3.2 Stable John Holland hollandj@mminternet.com http://www.mminternet.com/holland/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 14: 0:23 1999 Delivered-To: freebsd-questions@freebsd.org Received: from iguana.internexo.co.cr (iguana.internexo.co.cr [196.40.17.2]) by hub.freebsd.org (Postfix) with ESMTP id B5E3A1550C for ; Mon, 16 Aug 1999 13:59:58 -0700 (PDT) (envelope-from freebsd@iguana.internexo.co.cr) Received: (from freebsd@localhost) by iguana.internexo.co.cr (8.9.3/8.9.3) id OAA28050 for freebsd-questions@FreeBSD.ORG; Mon, 16 Aug 1999 14:59:09 -0600 (CST) From: Theodore Hope Message-Id: <199908162059.OAA28050@iguana.internexo.co.cr> Subject: trouble installing mrtg To: freebsd-questions@FreeBSD.ORG Date: Mon, 16 Aug 1999 14:59:09 -0600 (CST) X-Mailer: ELM [version 2.4 PL25] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I just built mrtg 2.8.6 on freebsd 3.2-R and when I run it I get the following: ---------------------------------------------------------------------- Bareword "public" not allowed while "strict subs" in use at (eval 24) line 1. Array found where operator expected at (eval 24) line 1, at end of line Global symbol "@gw" requires explicit package name at (eval 24) line 1. Bareword "incae" not allowed while "strict subs" in use at (eval 24) line 1. Bareword "ac" not allowed while "strict subs" in use at (eval 24) line 1. Bareword "crOptions" not allowed while "strict subs" in use at (eval 24) line 1. Bareword "gw" not allowed while "strict subs" in use at (eval 24) line 1. Bareword "incae" not allowed while "strict subs" in use at (eval 24) line 1. Bareword "ac" not allowed while "strict subs" in use at (eval 24) line 1. Bareword "cr" not allowed while "strict subs" in use at (eval 24) line 1. Bareword "bits" not allowed while "strict subs" in use at (eval 24) line 1. Bareword "growright" not allowed while "strict subs" in use at (eval 24) line 2. * Problem with '1:public@gw.incae.ac.crOptions[gw.incae.ac.cr.1]: bits,growright': syntax error at (eval 24) line 1, near "1:" ---------------------------------------------------------------------- Before digging any deeper, is this a problem with mrtg requiring an older perl5? (Fbsd 3.2 comes with perl 5.005_03) Or am I missing some of the p5-* ports packages? Thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 14:35:47 1999 Delivered-To: freebsd-questions@freebsd.org Received: from unix.megared.net.mx (megared.net.mx [207.249.162.252]) by hub.freebsd.org (Postfix) with ESMTP id 2847B14BF9 for ; Mon, 16 Aug 1999 14:35:36 -0700 (PDT) (envelope-from ales@megared.net.mx) Received: from ales (ales.megared.net.mx [207.249.163.252]) by unix.megared.net.mx (8.9.3/8.9.3) with SMTP id QAA73468; Mon, 16 Aug 1999 16:34:05 -0500 (CDT) (envelope-from ales@megared.net.mx) Message-ID: <00a801bee82f$1206e020$fca3f9cf@megared.net.mx> From: "Alejandro Ramirez" To: "Christopher Michaels" , "FreeBSD Questions (E-mail)" References: <6C37EE640B78D2118D2F00A0C90FCB4401105B8E@site2s1> Subject: RE: Is it possible to do the following with IPX? Date: Mon, 16 Aug 1999 16:34:07 -0500 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-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, Check out this page: http://www.butya.kz/~bp/ Ales ----- Original Message ----- From: Christopher Michaels To: FreeBSD Questions (E-mail) Sent: Monday, August 16, 1999 3:35 PM Subject: Is it possible to do the following with IPX? > Hi, > I would just like to know if this is possible to do the following. I will > not be able to implement it right away, but want to know before I even try. > > I would like to know if it is possible to somehow make a private lan over > the internet between two FreeBSD gateway machines, and have IPX routed over > that connection (like it were one private lan). > > [LAN] -- [FBSD] --> ISP --> Internet <-- ISP <-- [FBSD] -- [LAN] > > IPX/TCP/etc ---------------------------------------------------- > IPX/TCP/etc > > Any help anyone can give me would be greatly appreciated. Publications, web > sites, faq's, advice, etc... > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 14:43:55 1999 Delivered-To: freebsd-questions@freebsd.org Received: from inet.chip-web.com (c1003518-a.plstn1.sfba.home.com [24.1.82.47]) by hub.freebsd.org (Postfix) with SMTP id 0026114C46 for ; Mon, 16 Aug 1999 14:43:51 -0700 (PDT) (envelope-from ludwigp@bigfoot.com) Received: (qmail 4905 invoked from network); 16 Aug 1999 21:44:34 -0000 Received: from furball.chip-web.com (HELO bigfoot.com) (172.16.1.29) by inet.chip-web.com with SMTP; 16 Aug 1999 21:44:34 -0000 Message-ID: <37B8862F.2BE7B659@bigfoot.com> Date: Mon, 16 Aug 1999 14:44:15 -0700 From: Ludwig Pummer X-Mailer: Mozilla 4.6 [en] (X11; I; FreeBSD 3.2-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: Ryan Linwood Cc: freebsd-questions@freebsd.org Subject: Re: / is full References: <37B870B4.252C3B3A@designstein.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Ryan Linwood wrote: > /kernel: pid 1861 (imapd), uid 1004 on /: file system full > > when I perform a df, I receive: > > Filesystem 1K-blocks Used Avail Capacity Mounted on > /dev/da0s1a 99183 97991 -6742 107% / > /dev/da2s1e 4050755 555974 3170721 15% /http > /dev/da1s1e 1785322 717859 924638 44% /home > /dev/da0s1f 1338866 475043 756714 39% /usr > /dev/da0s1e 347295 195084 124428 61% /usr/src > /dev/da3s1e 4050755 1568564 2158131 42% /var > /dev/fd0c 1319 1292 -78 106% /mnt/floppy > procfs 4 4 0 100% /proc > > I have checked the / , /root , & /tmp directories and they are nearly empty. 'df' seems to show otherwise. > Also, /var is not part of my root directory. What am I missing? Any help would > be greatly appreciated. Space used by files that are opened by one program and then deleted by another program is not freed up until that second program closes the file. So you may have to kill some daemons. Try to do a 'du -x /' just to make sure that you don't have much stuff on your / partition. You should move /tmp over to /usr/tmp and symlink it back. --Ludwig Pummer To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 14:50:53 1999 Delivered-To: freebsd-questions@freebsd.org Received: from pebkac.owp.csus.edu (pebkac.owp.csus.edu [130.86.232.245]) by hub.freebsd.org (Postfix) with ESMTP id 1C16114C46 for ; Mon, 16 Aug 1999 14:50:44 -0700 (PDT) (envelope-from joseph.scott@owp.csus.edu) Received: from owp.csus.edu (mothra.ecs.csus.edu [130.86.76.220]) by pebkac.owp.csus.edu (8.9.3/8.9.3) with ESMTP id NAA24857; Mon, 16 Aug 1999 13:37:11 -0700 (PDT) Message-ID: <37B87690.2F9470BB@owp.csus.edu> Date: Mon, 16 Aug 1999 13:37:36 -0700 From: Joseph Scott X-Mailer: Mozilla 4.61 [en] (WinNT; I) X-Accept-Language: en MIME-Version: 1.0 To: Chris Dorr Cc: freebsd-questions@FreeBSD.ORG Subject: Re: /etc/groups References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Chris Dorr wrote: > > So I went into /etc/groups and took 2 people out of that particular group > and everything was working again with no problems. > > Obviously there is a limit to how many people can be in one group. What's > the limit? Is there anyway around the group limit, without redoing the > whole system? > > On this particular system we're running 2.2.5 Release. > On my 3.2R system, >man group 5 . LIMITS . In older implementations, a group cannot have more than 200 members. The maximum line length of /etc/group is 1024 characters. Longer lines will be skipped. This limitation disappeared in FreeBSD 3.0. Older binaries that are statically linked, depend on old shared libraries, or non-FreeB- SD binaries in compatibility mode may still have this limits. So the answer looks like yes, there are two limitations on 2.2.5R, a group can not have more than 200 members, and any one line can not be greater than 1024 characters. I guess my question would be now, what are the limits for FreeBSD > 3.0 ? -- Joseph Scott joseph.scott@owp.csus.edu CSU Sacramento - Office Of Water Programs To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 14:59: 5 1999 Delivered-To: freebsd-questions@freebsd.org Received: from uclink4.berkeley.edu (uclink4.Berkeley.EDU [128.32.25.39]) by hub.freebsd.org (Postfix) with ESMTP id 11E4414C46 for ; Mon, 16 Aug 1999 14:59:03 -0700 (PDT) (envelope-from omsscf@uclink4.berkeley.edu) Received: from dwin-127-8 (dwin-127-8.Media.Berkeley.EDU [128.32.79.150]) by uclink4.berkeley.edu (8.8.8/8.8.8) with SMTP id OAA27184 for ; Mon, 16 Aug 1999 14:59:09 -0700 (PDT) Message-Id: <4.1.19990816142259.00c7fae0@uclink4.berkeley.edu> X-Sender: omsscf@uclink4.berkeley.edu X-Mailer: QUALCOMM Windows Eudora Pro Version 4.1 Date: Mon, 16 Aug 1999 14:59:01 -0700 To: freebsd-questions@FreeBSD.ORG From: Sergio Feria Subject: Help: Network conn shuts down... In-Reply-To: <199908162059.OAA28050@iguana.internexo.co.cr> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I have an odd problem with the network connection on my 3.1-Release box: I've had the system up and running fine for some months now with no problems that I couldn't solve, but this one stumps me. Every day or two now for the last week, the connection to the net just drops unceremoniously (I have a premanent ethernet connection on an SMC9432TX ethernet card [tx0] at 10Mbps). When the connection drops, I can't even ping in or out. I don't get anything showing up on the system's logs, and I don't know how to get it back up without restarting which always works. Where should I look? Here are the specs of the system hoping that ths'll help diagnose: ASUS P2B-DS Motherboard w/ 2 450Mhz PIIs SMC EtherPower II 10/100 PCI 256MB Ram, U2W SCSI HD. The machine is primarily used as a web server and web development machine, and I'm using SaMBa for some minor filesharing. Please advise, and Thanks in advance! -sergio ________________ Sergio Feria Technical Resource Specialist Office of Media Services, UC Berkeley sergio@media.berkeley.edu (510) 643-8635 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 15:20:10 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mailhost.pii.com (mailhost.pii.com [192.77.209.1]) by hub.freebsd.org (Postfix) with ESMTP id 8E1BD14F03; Mon, 16 Aug 1999 15:19:55 -0700 (PDT) (envelope-from Ed.Baxter@pii.com) Received: from serv1.pii.com (serv1.pii.com [198.46.2.1]) by mailhost.pii.com (8.9.1/8.9.1/Praegitzer-antispam) with SMTP id PAA02315; Mon, 16 Aug 1999 15:19:58 -0700 (PDT) Received: from redhat by serv1.pii.com (SMI-8.6/SMI-SVR4) id PAA16645; Mon, 16 Aug 1999 15:19:17 -0700 From: Ed Baxter To: freebsd-questions@freebsd.org, freebsd-stable@freebsd.org Subject: how to stop route redirects Date: Mon, 16 Aug 1999 15:15:28 -0700 X-Mailer: KMail [version 1.0.21] Content-Type: text/plain MIME-Version: 1.0 Message-Id: <9908161526560P.13614@redhat> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG How can I force freebsd 2.2.5 stable to ignore route redirects? Routed is turned off and I tried specifying these routes as static routes but one of our routers sends redirects when there is a WAN hiccup and internal traffic gets routed out to the internet (default for the router). The static routes also get over ridden by the redirects. The redirect would be fine except that when the WAN is back up the freebsd machine never changes back. The Corp WAN guy has turned RIP off for the entire WAN so I think my only option is to get the Freebsd machine to ignore the redirects. I noticed that even without routed my route table contains "learned" routes and keeps growing. Is it possible to turn this behavior off (would probably solve my redirect problem). We have Sun Solaris machines that without routed contain only a couple routes in their route table and it never changes. I would prefer this behavior. Thanks for any help you can give... Ed Baxter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 15:21:56 1999 Delivered-To: freebsd-questions@freebsd.org Received: from onondaga.gate.net (onondaga.gate.net [198.206.134.31]) by hub.freebsd.org (Postfix) with ESMTP id 293B61591D for ; Mon, 16 Aug 1999 15:21:14 -0700 (PDT) (envelope-from garciacj@gate.net) Received: from garciacj (tshlw1-58.gate.net [199.227.148.58]) by onondaga.gate.net (8.8.6/8.6.12) with SMTP id SAA248948 for ; Mon, 16 Aug 1999 18:19:55 -0400 Message-ID: <000501bee836$528860e0$3a94e3c7@gate.net> From: "Carlos J Garcia" To: Subject: Install help needed. Date: Mon, 16 Aug 1999 18:26:00 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit 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-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I am trying to install FreeBSD on my computer but it can not find my CD-ROM. My computer is a HP 4440 with an AMD-K6-2/333 with 64 Mb of RAM. I partitioned the hard drive with Partition Commander and then tried to install FreeBSD 3.2 from the cd. I turned off the computer with the FreeBSD cd in the cd-rom drive. I then turn on the computer and it boots from the cd. When it probes the computer it cant find the cd drive. It will show all the menus until I chose cd at the install medium menu then I get C.D.-ROOM drive not found. I already opened the computer the C.D. is connected to master . The C.D. drive is made by LG Electronics in Korea model CRD 8322B it came installed with the computer . THANKS IN ADVANCE. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 15:40:23 1999 Delivered-To: freebsd-questions@freebsd.org Received: from amukta.gci.net (amukta.gci.net [208.138.130.216]) by hub.freebsd.org (Postfix) with ESMTP id 253A814CAC for ; Mon, 16 Aug 1999 15:40:20 -0700 (PDT) (envelope-from irisinc@gci.net) Received: from gci.net ([209.165.142.67]) by amukta.gci.net (Netscape Messaging Server 4.04 Jul 21 1999 18:33:18) with ESMTP id FGKXKN03.0DP for ; Mon, 16 Aug 1999 14:38:47 -0800 Message-ID: <37B7EA9D.B89E8E4F@gci.net> Date: Mon, 16 Aug 1999 02:40:29 -0800 From: Charlie Root X-Mailer: Mozilla 4.51 [en] (X11; I; FreeBSD 3.2-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: Printing-apsfilter-a2ps & magicfilter?? Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello! I am used to using linux so the printing set up on FreeBSD is at best new to me. I read the manual and the FreeBSD Handbook, which by the way was the most informative publication on printing I have yet to read. Would someone please be so kind as to point out to me where I can find the information necessary to link apsfilter, a2ps and or magicfilter to my /etc/printcap file. Linux programs accomplish this through a program using a GUI for setup information. The handbook mentions these programs but does not give any instructions for how to enable or link them. Thanks in advance. Rusty To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 15:41:44 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail.rdc1.az.home.com (ha1.rdc1.az.home.com [24.1.240.66]) by hub.freebsd.org (Postfix) with ESMTP id 417461553E for ; Mon, 16 Aug 1999 15:41:42 -0700 (PDT) (envelope-from elgreen@iname.com) Received: from ehome.local.net ([24.9.114.169]) by mail.rdc1.az.home.com (InterMail v4.01.01.00 201-229-111) with SMTP id <19990816224208.KHZW27077.mail.rdc1.az.home.com@ehome.local.net> for ; Mon, 16 Aug 1999 15:42:08 -0700 From: Eric Lee Green Organization: Myself @ Home To: freebsd-questions@freebsd.org Subject: FreeBSD not Y2K compliant? Date: Mon, 16 Aug 1999 15:35:06 -0700 X-Mailer: KMail [version 1.0.21] Content-Type: text/plain MIME-Version: 1.0 Message-Id: <99081615412000.35190@ehome.local.net> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG The below prints "99" instead of "1999" :-(. AGH! I thought I left that behind with Xenix! #include #include #include int main (int argc,char **argv) { struct *tm t; time_t today; today=time(NULL); t=localtime(&today); printf("Year = %s\n",t->tm_year); } -- Eric Lee Green http://members.tripod.com/e_l_green mail: e_l_green@hotmail.com ^^^^^^^ Burdening Microsoft with SPAM! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 15:46: 8 1999 Delivered-To: freebsd-questions@freebsd.org Received: from devsys.jaguNET.com (devsys.jaguNET.com [206.156.208.6]) by hub.freebsd.org (Postfix) with ESMTP id 9422F154DE for ; Mon, 16 Aug 1999 15:46:05 -0700 (PDT) (envelope-from jim@jaguNET.com) Received: (from jim@localhost) by devsys.jaguNET.com (8.9.3/jag-2.6) id SAA21886; Mon, 16 Aug 1999 18:45:26 -0400 (EDT) From: Jim Jagielski Message-Id: <199908162245.SAA21886@devsys.jaguNET.com> Subject: Re: FreeBSD not Y2K compliant? To: elgreen@iname.com (Eric Lee Green) Date: Mon, 16 Aug 1999 18:45:26 -0400 (EDT) Cc: freebsd-questions@FreeBSD.ORG Reply-To: jim@jaguNET.com In-Reply-To: <99081615412000.35190@ehome.local.net> from "Eric Lee Green" at Aug 16, 99 03:35:06 pm X-Mailer: ELM [version 2.4 PL25] Content-Type: text Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG int tm_year; /* year - 1900 */ It's supposed to do that. Eric Lee Green wrote: > > The below prints "99" instead of "1999" :-(. AGH! I thought I left that behind > with Xenix! > > #include > #include > #include > int main (int argc,char **argv) { > struct *tm t; > time_t today; > today=time(NULL); > t=localtime(&today); > printf("Year = %s\n",t->tm_year); > } > > > -- > Eric Lee Green http://members.tripod.com/e_l_green > mail: e_l_green@hotmail.com > ^^^^^^^ Burdening Microsoft with SPAM! > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > -- =========================================================================== Jim Jagielski ||| jim@jaguNET.com ||| http://www.jaguNET.com/ "That's no ordinary rabbit... that's the most foul, cruel and bad-tempered rodent you ever laid eyes on" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 15:53:33 1999 Delivered-To: freebsd-questions@freebsd.org Received: from spruce.ucs.uwplatt.edu (spruce.ucs.uwplatt.edu [137.104.128.3]) by hub.freebsd.org (Postfix) with ESMTP id BDA0315582 for ; Mon, 16 Aug 1999 15:53:19 -0700 (PDT) (envelope-from tennies@uwplatt.edu) Received: from mypc ("port 1257"@227-151.netwurx.net [206.54.227.151]) by uwplatt.edu (PMDF V5.2-32 #31523) with SMTP id <01JEUDYN2CN4AYKSHR@uwplatt.edu> for freebsd-questions@FreeBSD.ORG; Mon, 16 Aug 1999 17:48:08 CDT Date: Mon, 16 Aug 1999 17:56:13 -0500 From: Fro Joe Subject: PPP nothing happens!!! To: freebsd-questions@FreeBSD.ORG Message-id: <000c01bee83a$8cfeab40$97e336ce@mypc.myhost.com> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V4.72.3612.1700 X-Mailer: Microsoft Outlook Express 4.72.3612.1700 Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 7BIT X-Priority: 3 X-MSMail-priority: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I even enter the terminal mode and it is always like one character BEHIND what I type... if I typed "ATDT" it would only show ATD... then if I pressed space it'd be ATDT... my modem is a real modem... a 3Com/USR Fax Modem (Akita OEM)... the kernel finds it and nothing happens in PPP... so thanks to this and not enough help to be easily found... I switched over to Linux for my proxy because they have the how-to's to get you going... I know I'll lose like 30% on my multi-PPP connection, but at least I can find the help w/o having to wait for a response... if anyone can help me with this I will consider reinstalling FreeBSD 3.2... but a big recommendation I have is get some better how-to's and such for help... Please send a copy of responses to me @ tennies@uwplatt.edu Joe Tennies... an unpleased customer To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 15:58: 6 1999 Delivered-To: freebsd-questions@freebsd.org Received: from broccoli.graphics.cornell.edu (broccoli.graphics.cornell.edu [128.84.247.53]) by hub.freebsd.org (Postfix) with ESMTP id 9B88415332 for ; Mon, 16 Aug 1999 15:57:55 -0700 (PDT) (envelope-from mkc@Graphics.Cornell.EDU) Received: from graphics.cornell.edu (localhost.graphics.cornell.edu) by broccoli.graphics.cornell.edu with ESMTP (1.37.109.16/16.2) id AA084434248; Mon, 16 Aug 1999 18:57:29 -0400 Message-Id: <199908162257.AA084434248@broccoli.graphics.cornell.edu> X-Mailer: exmh version 2.0zeta 7/24/97 To: Jamie Norwood Cc: support@junglenote.com, freebsd-questions@FreeBSD.ORG Subject: Re: dhcpd In-Reply-To: Your message of "Mon, 16 Aug 1999 15:15:14 PDT." <19990816151513.C23619@ethereal.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 16 Aug 1999 18:57:28 -0400 From: Mitch Collinsworth Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG >> >I'm looking for a dhcp solution where the server denies address-lease >> renewal >> >and forces the >> >client to request a lease for another. In other words the main idea is that > >> th >> >e client address >> >changes with every renewal period. Is it possible and if so how? >> >> I'm not sure why you would want to do this. I can only imagine one >> possibility: an attempt to prevent your users from setting up servers >> on dhcp clients. >> >> I don't think you've fully thought this through. What do you expect to >> happen to open sessions when the IP address suddenly changes underneath >> them? Your users will want your head if you do this to them. You >> really need to think of a different solution. >> >> -Mitch > >That is a very broad and sweeping thing to say. I think you are likely >right about servers, Yes it is, but keep reading. He confirmed my guess about wanting it to prevent servers. Really all it does to people who want to run a server is annoy them. Meanwhile it annoys your friendly non-abusing users as well. Not what I would consider a good idea. Not long ago I met a guy who was running a web server on a machine using dhcp. He had a friend running his DNS service and every time his IP address changed he just sent the new address to his friend who updated his DNS and he was back in business. Of course this works best if both you and your friend spend all your time on the net... >but also, it is a good tool for keeping people >from trying to keep 24/7 connections open; the behaviour you list as >something that should make that comletely useless is, in fact, the >behaviour looked for. On a hardwired non-dialin network, why would you care about 24/7 connections? For a network the scarce resource is bandwidth, not how long the connection stays open. In the modem world the scarce resource is phone lines, so modem camping is discouraged, but not with dhcp. -Mitch To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 16:17:20 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mailout1.nyroc.rr.com (mailout1-1.nyroc.rr.com [24.92.226.146]) by hub.freebsd.org (Postfix) with ESMTP id DD84C15975 for ; Mon, 16 Aug 1999 16:17:14 -0700 (PDT) (envelope-from reichman@twcny.rr.com) Received: from mail1.twcny.rr.com ([24.92.226.74]) by mailout1.nyroc.rr.com (Post.Office MTA v3.5.3 release 223 ID# 0-59787U250000L250000S0V35) with ESMTP id com; Mon, 16 Aug 1999 19:16:25 -0400 Received: from twcny.rr.com ([24.95.188.113]) by mail1.twcny.rr.com (Post.Office MTA v3.5.2 release 221 ID# 0-53939U80000L80000S0V35) with ESMTP id com; Mon, 16 Aug 1999 19:16:23 -0400 Message-ID: <37B89DFA.4176AF81@twcny.rr.com> Date: Mon, 16 Aug 1999 19:25:46 -0400 From: "Mark S. Reichman" X-Mailer: Mozilla 4.61 [en] (X11; I; FreeBSD 3.2-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: jim@jaguNET.com Cc: Eric Lee Green , freebsd-questions@FreeBSD.ORG Subject: Re: FreeBSD not Y2K compliant? References: <199908162245.SAA21886@devsys.jaguNET.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Yep.. Jim seems to be correct. tm_year is the years since 1900. /usr/src/include/time.h struct tm { int tm_sec; /* seconds after the minute [0-60] */ int tm_min; /* minutes after the hour [0-59] */ int tm_hour; /* hours since midnight [0-23] */ int tm_mday; /* day of the month [1-31] */ int tm_mon; /* months since January [0-11] */ int tm_year; /* years since 1900 */ int tm_wday; /* days since Sunday [0-6] */ int tm_yday; /* days since January 1 [0-365] */ int tm_isdst; /* Daylight Savings Time flag */ long tm_gmtoff; /* offset from CUT in seconds */ char *tm_zone; /* timezone abbreviation */ }; Jim Jagielski wrote: > > int tm_year; /* year - 1900 */ > > It's supposed to do that. > > Eric Lee Green wrote: > > > > The below prints "99" instead of "1999" :-(. AGH! I thought I left that behind > > with Xenix! > > > > #include > > #include > > #include > > int main (int argc,char **argv) { > > struct *tm t; > > time_t today; > > today=time(NULL); > > t=localtime(&today); > > printf("Year = %s\n",t->tm_year); > > } > > > > > > -- > > Eric Lee Green http://members.tripod.com/e_l_green > > mail: e_l_green@hotmail.com > > ^^^^^^^ Burdening Microsoft with SPAM! > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > > > -- > =========================================================================== > Jim Jagielski ||| jim@jaguNET.com ||| http://www.jaguNET.com/ > "That's no ordinary rabbit... that's the most foul, > cruel and bad-tempered rodent you ever laid eyes on" > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 16:17:24 1999 Delivered-To: freebsd-questions@freebsd.org Received: from shell.desolationrow.com (shell.desolationrow.com [209.20.241.132]) by hub.freebsd.org (Postfix) with ESMTP id 9FC4F1597E for ; Mon, 16 Aug 1999 16:17:17 -0700 (PDT) (envelope-from jayk@desolationrow.com) Received: from localhost (jayk@localhost) by shell.desolationrow.com (8.9.3/8.9.3) with ESMTP id QAA16114 for ; Mon, 16 Aug 1999 16:16:39 -0700 (PDT) (envelope-from jayk@desolationrow.com) X-Authentication-Warning: shell.desolationrow.com: jayk owned process doing -bs Date: Mon, 16 Aug 1999 16:16:39 -0700 (PDT) From: Jeremy Koski To: freebsd-questions@freebsd.org Subject: NATD / PPTP question. Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I need to enable PPTP for an entire network that is behind our NAT server. The syntax is: pptpalias Ok, no problem.. We added our entire subnet of 254 IPs, and it ended up breaking PPTP for everyone. We shortened it to 128, still didnt work. If we add just a couple of IPs, it works fine. My question is, is there some sort of static limit? Can this be raised? Or, Is there another way to add an entire subnet? Thanks. Jeremy To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 16:17:56 1999 Delivered-To: freebsd-questions@freebsd.org Received: from metrotel.net.co (metrotel.metrotel.net.co [200.30.54.1]) by hub.freebsd.org (Postfix) with ESMTP id 78AC315557 for ; Mon, 16 Aug 1999 16:17:44 -0700 (PDT) (envelope-from fmiranda@metrotel.net.co) Received: from metrotel.net.co (s098.metrotel.net.co [200.30.54.117]) by metrotel.net.co (8.8.8+Sun/8.8.8) with ESMTP id SAA12960 for ; Mon, 16 Aug 1999 18:20:50 +0500 (GMT) Message-ID: <37B89CEC.2AC6C641@metrotel.net.co> Date: Mon, 16 Aug 1999 18:21:16 -0500 From: Fabio Andres Miranda X-Mailer: Mozilla 4.07 [en] (X11; I; Linux 2.0.36 i686) MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: Intranet address web hosting ? Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, I am from Colombia, South america and i have found in FreeBSD a powerfull o.s. to my intranet. FreeBSD documentation in spanish is well translated and helpfull. I think FreeBSD is the best open source chooice to spanish users. Now, i have a problem with this: My company has a intranet under Windows NT 4.0, The server there, has one IP address and the clients (ethernet) has normal intranet address. I live near the company, i have connection to the server with a thelephone cable with a US. robotic corurier (aislated pair), and i obtain a ethernet address when i boot my computer (DHCP) and can use internet without problems. Now, i want to set up a httpd in MY machine, my ethernet address is 172.16.0.5, how can i set up the httpd ? i thank any comment or link to web site where i can obtain information.. thanks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 16:18: 1 1999 Delivered-To: freebsd-questions@freebsd.org Received: from dt011n65.san.rr.com (dt011n65.san.rr.com [204.210.13.101]) by hub.freebsd.org (Postfix) with ESMTP id 348B015582 for ; Mon, 16 Aug 1999 16:17:49 -0700 (PDT) (envelope-from Doug@gorean.org) Received: from localhost (doug@localhost) by dt011n65.san.rr.com (8.9.3/8.8.8) with ESMTP id QAA23114; Mon, 16 Aug 1999 16:18:09 -0700 (PDT) (envelope-from Doug@gorean.org) Date: Mon, 16 Aug 1999 16:18:09 -0700 (PDT) From: Doug X-Sender: doug@dt011n65.san.rr.com To: Mikko =?iso-8859-1?Q?Gr=F6nroos?= Cc: freebsd-questions@FreeBSD.ORG Subject: Re: 2x3com NICs In-Reply-To: <37B87082.A0B0E405@mpoli.FI> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=X-UNKNOWN Content-Transfer-Encoding: QUOTED-PRINTABLE Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, 16 Aug 1999, Mikko [iso-8859-1] Gr=F6nroos wrote: > Doug (This is also a reply tu Boris Crosby's msg.) wrote: >=20 > > What did you put in your kernel config for them? > > Please copy and paste the lines from that file. >=20 > > device ep0 at isa? port 0x300 net irq 11 > device ep1 at isa? port 0x320 net irq 12 > =09That looks good, if the numbers are right.=20 > > Also, are you sure of the I/O and IRQ numbers, and > > are they different for each card? >=20 > Pretty sure, at least, that's what the "boot -c" - config > says. =09The kernel only tells you what you have set, it has no way to know what is "right." If they are plug and play cards make sure that you have PnP enabled in your kernel. In any case you should use the DOS utility that comes with the cards to double check the assignments for both cards.= =20 Good luck, Doug --=20 On account of being a democracy and run by the people, we are the only nation in the world that has to keep a government four years, no matter what it does. -- Will Rogers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 16:30: 5 1999 Delivered-To: freebsd-questions@freebsd.org Received: from fellspt.charm.net (fellspt.charm.net [199.0.70.29]) by hub.freebsd.org (Postfix) with ESMTP id BA81914E06 for ; Mon, 16 Aug 1999 16:29:51 -0700 (PDT) (envelope-from dutch@charm.net) Received: from charm.net (coretel-115-156.charm.net [209.143.115.156]) by fellspt.charm.net (8.9.3/8.9.3) with ESMTP id LAA21401; Fri, 13 Aug 1999 11:26:10 -0400 (EDT) Message-ID: <37B438EB.B96F976D@charm.net> Date: Fri, 13 Aug 1999 11:25:31 -0400 From: Dutch Collins X-Mailer: Mozilla 4.61 [en] (Win98; I) X-Accept-Language: en MIME-Version: 1.0 To: williamdwoods@etrademail.com Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Kinda a freebsd question........ References: <19990813151254.28553.cpmta@c008.sfo.cp.net> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG williamdwoods@etrademail.com wrote: > > This is sort-of-related to FreeBSD. Back when I was ultra-security-paranoid and running FreeBSD on an older system, I set a bios password on my box. Months later, I need to go into bios to turn on PNP bacause I am giving the system to a charity ( I got a bigger better system), but I seem to have forgotten the BIOS password :(.... > > Any ideas around this? > > William > > ********************************************************* > Our funds have Star Power. Explore our site and share your > investment ideas and real-life experiences. > Find the Transamerica Premier Fund that's right for you. Visit > . > ************************************************************ > > It's time for E*TRADE (SM) > Get your free @etrademail.com address at http://www.etrade.com > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message My mother board has a 2 pin header. That header with the block on it clears the BIOS to factory defaults. It is a Shuttle / AMI BIOS board. Some other boards may have the same feature. Check the boards manufacture's web site. -d To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 16:30:50 1999 Delivered-To: freebsd-questions@freebsd.org Received: from fellspt.charm.net (fellspt.charm.net [199.0.70.29]) by hub.freebsd.org (Postfix) with ESMTP id F2DFF15688 for ; Mon, 16 Aug 1999 16:29:51 -0700 (PDT) (envelope-from dutch@charm.net) Received: from charm.net (coretel-115-050.charm.net [209.143.115.50]) by fellspt.charm.net (8.9.3/8.9.3) with ESMTP id VAA08600; Thu, 12 Aug 1999 21:52:48 -0400 (EDT) Message-ID: <37B37A70.A6A2F40E@charm.net> Date: Thu, 12 Aug 1999 21:52:48 -0400 From: Dutch Collins X-Mailer: Mozilla 4.61 [en] (X11; I; FreeBSD 3.2-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: Zhihui Zhang Cc: Oscar Bonilla , Robert Sowders , freebsd-questions@FreeBSD.ORG, yurtesen@ispro.net.tr Subject: Re: processes cant be killed? References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Zhihui Zhang wrote: > > On Wed, 11 Aug 1999, Oscar Bonilla wrote: > > > > > kill -9 won't work. Zombie processes cannot be killed. Their address > > spaces have been deallocated so they can't get any signals. > > > > You shouldn't worry about zombies. They are harmless and the only > > bothersome thing is that they appear on the output from ps. > > They'll go away when you reboot. > > > Do they occupy the proc structures? If so, they may prevent us from > creating new processes. > > -Zhihui > Try ps -gaxl look for the parent process. If the parent is not important, your choice, killing the parent gets rid the zombie. Works for me. -d To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 16:32:12 1999 Delivered-To: freebsd-questions@freebsd.org Received: from fellspt.charm.net (fellspt.charm.net [199.0.70.29]) by hub.freebsd.org (Postfix) with ESMTP id 87D1014C4B for ; Mon, 16 Aug 1999 16:29:51 -0700 (PDT) (envelope-from dutch@charm.net) Received: from charm.net (coretel-116-061.charm.net [209.143.116.61]) by fellspt.charm.net (8.9.3/8.9.3) with ESMTP id OAA06845; Thu, 12 Aug 1999 14:05:00 -0400 (EDT) Message-ID: <37B30CC9.3E01F13A@charm.net> Date: Thu, 12 Aug 1999 14:04:57 -0400 From: Charlie Root X-Mailer: Mozilla 4.61 [en] (X11; I; FreeBSD 3.2-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: Joe Cc: freebsd-questions@FreeBSD.ORG Subject: Re: DOS/Windows telnet program References: <2.2.32.19990812173549.00915430@netmail.home.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Joe wrote: > > Hi, > I know this isn't directly related to FreeBSD, > but maybe someone can help anyway. > I have my FreeBSD machine sitting next to > my windoze PC and that takes up too much table space. > So I'll slide the FreeBSD machine under the printer, > lose the monitor and keyboard, use the PC serial port > and Procomm for the console. > Then telnet in on my local network for work sessions. > > So my question is, can anyone recommend a public (free) version > of telnet that runs on the Windows95 PC? > > Thanks, > Joe > I have used EasyTerm on win95/8 machines. The telnet that Micro$oft ships is a dog. http://www.davecentral.com is a good place to look. Watch out, dave has Linux software too. Lots of free stuff, EasyTerm was free the last time I dwnld it. Yep, the andover.net gorilla. -d To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 16:32:19 1999 Delivered-To: freebsd-questions@freebsd.org Received: from fellspt.charm.net (fellspt.charm.net [199.0.70.29]) by hub.freebsd.org (Postfix) with ESMTP id 86BF615618 for ; Mon, 16 Aug 1999 16:29:51 -0700 (PDT) (envelope-from dutch@charm.net) Received: from charm.net (coretel-116-061.charm.net [209.143.116.61]) by fellspt.charm.net (8.9.3/8.9.3) with ESMTP id NAA01090; Thu, 12 Aug 1999 13:33:15 -0400 (EDT) Message-ID: <37B30556.5C61CBD7@charm.net> Date: Thu, 12 Aug 1999 13:33:10 -0400 From: Charlie Root X-Mailer: Mozilla 4.61 [en] (X11; I; FreeBSD 3.2-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: Roy Bettle Cc: Doug , Thomas Good , freebsd-questions@FreeBSD.ORG Subject: Re: Question about the mascot References: <37B2EFAE.8F64DF5@gorean.org> <37B2F37A.64916371@criterion-group.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Roy Bettle wrote: > > PEOPLE!! Have we nothing better to do than bitch-and-moan about the f***ing logo? You > don't like the logo? USE WINDOWS NT!! > > Take your pick: > > FreeBSD - offensive logo (to some anyway), awesome reliability > Windows NT - offensive reliability, awesome logo (to some anyway) > > Take your pick and then shut the hell up so the rest of us trying to learn FreeBSD don't > have to wade through 300,000,000 messages about how your amazingly inflexible brain > can't reconcile the differences between a daemon and a demon! > > Just my $0.02. > > RAB Cool. CNBC - Red Hat IPO starting at 14 $US is now 72$US and looks good. Take the profts fri and go to the beach. The RH Spy Lookin Logo worked. Back to the mail filter. -d 'why does SAM v2 poke me in the back, today?' To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 16:33:40 1999 Delivered-To: freebsd-questions@freebsd.org Received: from fellspt.charm.net (fellspt.charm.net [199.0.70.29]) by hub.freebsd.org (Postfix) with ESMTP id 3393D156BE for ; Mon, 16 Aug 1999 16:29:51 -0700 (PDT) (envelope-from dutch@charm.net) Received: from charm.net (coretel-116-116.charm.net [209.143.116.116]) by fellspt.charm.net (8.9.3/8.9.3) with ESMTP id HAA14795 for ; Thu, 12 Aug 1999 07:58:14 -0400 (EDT) Message-ID: <37B2B6CC.8CE368C0@charm.net> Date: Thu, 12 Aug 1999 07:58:04 -0400 From: Dutch Collins X-Mailer: Mozilla 4.61 [en] (X11; I; FreeBSD 3.2-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: XFree86 install forgot mkfontdir - I think Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Second Try: unsent from mailer message, never made it -d ------------------- begin org msg -- 1) I installed X86 and KDE using the graphical interface. 2) The Walnut Creek CD is the source for install. 3.2 June 1999 2) Problem: In some areas of communicator 4.51 & 4.61 interface the text is about 1/10 (or smaller) of an inch (couple of MM?). All changes using Preferences had no effect. 4) oops! the vtty has a lot of messages. So, startx >&xlog.001 and lets see. 5) Nice message about this December 29 1998 XFree86 should be updated if 6 months or more old. And, all the font directories have a warning. Warning: 'fonts.dir' not found (or not valid) in */usr/X11R6/lib/X11/fonts/100dpi/*. Entry deleted from font path. (Run 'mkfontdir' on */usr/X11R6/lib/X11/fonts/100dpi/*. repeat same message for, Type1 Speedo 100dpi (again) the next line sets the font path to misc and unscaled 75dpi (**) FontPath set to */usr/X11R6/lib/X11/fonts/misc/,/usr/X11R6/lib/X11/fonts/75dpi/: unscaled,/usr/X11R6/lib/X11/fonts/75dpi/* I WRAPPED the above line, it is really all on one line. 6) So I did what the warning said and the really small text is fixed. Some of netscape's scaling is a little wierd but what the ... I am not sure this is an install error made by sysinstall or by X11 when it configs. What I do know is I didn't make any changes or edit any config files. If this is a bug, ok, if not, any ideas? Last: I will update X86. -d [sig went to the car race.] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 16:33:53 1999 Delivered-To: freebsd-questions@freebsd.org Received: from fellspt.charm.net (fellspt.charm.net [199.0.70.29]) by hub.freebsd.org (Postfix) with ESMTP id 9A00815523 for ; Mon, 16 Aug 1999 16:29:51 -0700 (PDT) (envelope-from dutch@charm.net) Received: from charm.net (coretel-115-072.charm.net [209.143.115.72]) by fellspt.charm.net (8.9.3/8.9.3) with ESMTP id WAA14946 for ; Wed, 11 Aug 1999 22:32:55 -0400 (EDT) Message-ID: <37B23244.5DA591AC@charm.net> Date: Wed, 11 Aug 1999 22:32:36 -0400 From: Dutch Collins X-Mailer: Mozilla 4.61 [en] (X11; I; FreeBSD 3.2-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: XFree86 install forgot mkfontdir - I think Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG 1) I installed X86 and KDE using the graphical interface. 2) The Walnut Creek CD is the source for install. 3.2 June 1999 2) Problem: In some areas of communicator 4.51 & 4.61 interface the text is about 1/10 (or smaller) of an inch (couple of MM?). All changes using Preferences had no effect. 4) oops! the vtty has a lot of messages. So, startx >&xlog.001 and lets see. 5) Nice message about this December 29 1998 XFree86 should be updated if 6 months or more old. And, all the font directories have a warning. Warning: 'fonts.dir' not found (or not valid) in */usr/X11R6/lib/X11/fonts/100dpi/*. Entry deleted from font path. (Run 'mkfontdir' on */usr/X11R6/lib/X11/fonts/100dpi/*. repeat same message for, Type1 Speedo 100dpi (again) the next line sets the font path to misc and unscaled 75dpi (**) FontPath set to */usr/X11R6/lib/X11/fonts/misc/,/usr/X11R6/lib/X11/fonts/75dpi/: unscaled,/usr/X11R6/lib/X11/fonts/75dpi/* I WRAPPED the above line, it is really all on one line. 6) So I did what the warning said and the really small text is fixed. Some of netscape's scaling is a little wierd but what the ... I am not sure this is an install error made by sysinstall or by X11 when it configs. What I do know is I didn't make any changes or edit any config files. If this is a bug, ok, if not, any ideas? Last: I will update X86. -d [sig went to the car race.] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 16:34: 1 1999 Delivered-To: freebsd-questions@freebsd.org Received: from fellspt.charm.net (fellspt.charm.net [199.0.70.29]) by hub.freebsd.org (Postfix) with ESMTP id 7D3D914E06 for ; Mon, 16 Aug 1999 16:29:51 -0700 (PDT) (envelope-from dutch@charm.net) Received: from charm.net (coretel-115-069.charm.net [209.143.115.69]) by fellspt.charm.net (8.9.3/8.9.3) with ESMTP id VAA08113; Wed, 11 Aug 1999 21:31:39 -0400 (EDT) Message-ID: <37B223E7.9B64944@charm.net> Date: Wed, 11 Aug 1999 21:31:19 -0400 From: Dutch Collins X-Mailer: Mozilla 4.61 [en] (X11; I; FreeBSD 3.2-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: Gary Kline Cc: Doug , Thomas Good , Mitch Collinsworth , freebsd-questions@FreeBSD.ORG Subject: Re: Question about the mascot References: <37B21484.E48CF5A3@gorean.org> <19990811180548.A14450@athena.tera.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Gary Kline wrote: > > Did you hear what happened in the state of Kansas? --Anyone > using Free|Net|OpenBSD in Kansas had better white-out Chuckie! > > gary I'll bite. Chuckie???? -d 'who should be writing up an odd problem/fix to X from the wc CD' [the micro sized text in netscape fix ('fo me)] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 16:38:11 1999 Delivered-To: freebsd-questions@freebsd.org Received: from camel.ethereal.net (camel.ethereal.net [209.228.7.140]) by hub.freebsd.org (Postfix) with ESMTP id 7790C156CD for ; Mon, 16 Aug 1999 16:38:05 -0700 (PDT) (envelope-from mistwolf@camel.ethereal.net) Received: (from mistwolf@localhost) by camel.ethereal.net (8.9.3/8.9.1) id PAA26532; Mon, 16 Aug 1999 15:15:14 -0700 (PDT) Date: Mon, 16 Aug 1999 15:15:14 -0700 From: Jamie Norwood To: Mitch Collinsworth Cc: support@junglenote.com, "[FreeBSD-Questions-List] (E-post)" Subject: Re: dhcpd Message-ID: <19990816151513.C23619@ethereal.net> References: <01BEE57E.591E98D0.support@junglenote.com> <199908131356.AA024672593@broccoli.graphics.cornell.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii User-Agent: Mutt/0.96.2i In-Reply-To: <199908131356.AA024672593@broccoli.graphics.cornell.edu>; from Mitch Collinsworth on Fri, Aug 13, 1999 at 09:56:33AM -0400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, Aug 13, 1999 at 09:56:33AM -0400, Mitch Collinsworth wrote: > > >I'm looking for a dhcp solution where the server denies address-lease > renewal > >and forces the > >client to request a lease for another. In other words the main idea is that > th > >e client address > >changes with every renewal period. Is it possible and if so how? > > I'm not sure why you would want to do this. I can only imagine one > possibility: an attempt to prevent your users from setting up servers > on dhcp clients. > > I don't think you've fully thought this through. What do you expect to > happen to open sessions when the IP address suddenly changes underneath > them? Your users will want your head if you do this to them. You > really need to think of a different solution. > > -Mitch That is a very broad and sweeping thing to say. I think you are likely right about servers, but also, it is a good tool for keeping people from trying to keep 24/7 connections open; the behaviour you list as something that should make that comletely useless is, in fact, the behaviour looked for. Jamie To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 16:47:11 1999 Delivered-To: freebsd-questions@freebsd.org Received: from qui.uc.pt (qui.uc.pt [192.84.13.26]) by hub.freebsd.org (Postfix) with ESMTP id 9285E14DB5 for ; Mon, 16 Aug 1999 16:47:06 -0700 (PDT) (envelope-from jpedras@qui.uc.pt) Received: from qui.uc.pt (qui.uc.pt [192.84.13.26]) by qui.uc.pt (8.9.3/8.9.3) with ESMTP id AAA00993 for ; Tue, 17 Aug 1999 00:47:24 +0100 (BST) (envelope-from jpedras@qui.uc.pt) Date: Tue, 17 Aug 1999 00:47:24 +0100 (BST) From: Joao Pedras To: freebsd-questions@freebsd.org Subject: hard disk failure ? Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello all In the last few hours a machine I have is giving some strange errors with the bonus that the hard disk heads sound changed a little bit. Please tell me what you make out of this : Aug 17 00:12:28 qui /kernel: wd0: interrupt timeout (status 58 error 4) Aug 17 00:12:29 qui /kernel: wd0: wdtimeout() DMA status 4 Aug 17 00:15:02 qui /kernel: wd0: Last time I say: interrupt timeout. Probably a portable PC. (status 58 error 4) Aug 17 00:15:02 qui /kernel: wd0: wdtimeout() DMA status 4 Aug 17 00:39:57 qui /kernel: wd0s1g: wdintr: read error detected late reading fsbn 1231648 of 1231648-1231663 (wd0s1 bn 2460448; cn 153 tn 39 sn 46) (status 50 error 4) By the way, this is not a portable : ) Thanks for your help Joao To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 17: 9:53 1999 Delivered-To: freebsd-questions@freebsd.org Received: from lemon.theshop.net (lemon.theshop.net [208.128.7.10]) by hub.freebsd.org (Postfix) with ESMTP id A75BE14DB5 for ; Mon, 16 Aug 1999 17:09:48 -0700 (PDT) (envelope-from prpetitt@theshop.net) Received: from getsmart (rasberry36.theshop.net [208.128.7.104]) by lemon.theshop.net (8.9.1/8.9.0) with ESMTP id TAA28273; Mon, 16 Aug 1999 19:10:46 -0500 (CDT) Message-Id: <4.2.0.58.19990816190743.00a3a3a0@mail.theshop.net> X-Sender: prpetitt@mail.theshop.net X-Mailer: QUALCOMM Windows Eudora Pro Version 4.2.0.58 Date: Mon, 16 Aug 1999 19:08:28 -0500 To: Jon Hamilton From: "Paul R. Petitt" Subject: Re: Where are the PPP config files? Cc: "David B. Aas" , freebsd-questions@FreeBSD.ORG In-Reply-To: <19990816033622.12BDB20A@woodstock.monkey.net> References: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG try /usr/share/examples At 10:36 PM 8/15/99 -0500, Jon Hamilton wrote: >In message <004801bee795$f8ffa740$0fc8a8c0@dave.ciminot.com>, "David B. >Aas" wr >ote: >} I installed FBSD 3.2 with an FTP install. I did a user (non-X) install. >} >} Now I want to set up PPP, so I go to my trusty "The Complete FreeBSD" book, >} and Greg says that the sample config files are under /etc/ppp. Except that I >} only have 2 files in the directory. Where are the rest? >} >} I looked in the Ports Collection index, to look for "User PPP", and didn't >} see anything to install. >} >} I also checked the MAN page. Nothing there. > >Oh please. The man page is more than 2700 lines of almost nothing _but_ >describing options and their usage. > >} Where else can I look to install these files? > >Which files? ppp.conf is really all you should need. > >} Thanks for your help. > >You'll get more useful assistance if you describe what you are trying to >do, what you did, and what the results were, and what surprised you about >the results. The question you asked is so vague it's hard to even know >where to start. > >http://www.freebsd.org/tutorials/ppp/ppp.html will likely be of considerable >help as well; if you are still having problems after reading through that >and the man page, come back and ask some specific questions. > >-- > Jon Hamilton > hamilton@pobox.com > > > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 17:19:51 1999 Delivered-To: freebsd-questions@freebsd.org Received: from redbox.venux.net (redbox.venux.net [216.47.238.10]) by hub.freebsd.org (Postfix) with ESMTP id CF32D14BF8 for ; Mon, 16 Aug 1999 17:19:49 -0700 (PDT) (envelope-from matthew@venux.net) Received: from thunder (net177138.hcv.com [209.153.177.138]) by redbox.venux.net (Postfix) with SMTP for id 878392E20E; Mon, 16 Aug 1999 20:17:52 -0400 (EDT) Message-Id: <4.1.19990816200020.00a164d0@mail.venux.net> X-Sender: mhagerty@mail.venux.net X-Mailer: QUALCOMM Windows Eudora Pro Version 4.1 Date: Mon, 16 Aug 1999 20:18:50 -0400 To: freebsd-questions@freebsd.org From: Matthew Hagerty Subject: 3Com 3C589 PCMCIA problem. Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Greetings, I am delving into FreeBSD on a laptop for the first time and I am having trouble with network connectivity. I finally got my hands on a PCMCIA NIC that freebsd will recognize (3Com 3C589), and it does find it just fine, but I can't get any packets out. Here is part of an ifconfig -a zp0: flags=1843 mtu 1500 inet 10.0.0.35 netmask 0xffffff00 broadcast 10.0.0.255 ether 00:a0:24:a8:18:87 I have never seen the LINK0 before. On my other FreeBSD boxes the LINK0 is MULTICAST. I can't find much info on PCMCIA NICs anywhere. A ping to my server give me this: # ping 10.0.0.1 PING 10.0.0.1 (10.0.0.1): 56 data bytes ping: sendto: Host is down ping: sendto: Host is down ping: sendto: Host is down I have green lights on both the NIC and my hub and the cable is known good. The NIC works under Windoz too. Any insight as to what is going on would be greatly appreciated. Oh, FreeBSD-3.2-RELEASE installed off WC-CDROM. Thank you, Matthew Hagerty To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 17:50:39 1999 Delivered-To: freebsd-questions@freebsd.org Received: from juno.dsj.net (sylvester.dsj.net [208.148.155.228]) by hub.freebsd.org (Postfix) with ESMTP id 8C4C115599 for ; Mon, 16 Aug 1999 17:50:30 -0700 (PDT) (envelope-from dsj@juno.dsj.net) Received: (from dsj@localhost) by juno.dsj.net (8.9.2/8.9.2) id UAA49041 for freebsd-questions@freebsd.org; Mon, 16 Aug 1999 20:50:39 -0400 (EDT) (envelope-from dsj) Date: Mon, 16 Aug 1999 20:50:39 -0400 From: "David S. Jackson" To: freebsd-questions@freebsd.org Subject: segment, subnet Message-ID: <19990816205039.E44880@juno.dsj.net> Reply-To: "David S. Jackson" Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.3i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG What's the difference between a subnet and a network segment? -- David S. Jackson http://www.dsj.net =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= Out ed0, through the firewall, over the analog line, into usr1, past another firewall, through the gateway, out the T-3, off core2 in Atlanta . . . nothin' but Net. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 18:21:27 1999 Delivered-To: freebsd-questions@freebsd.org Received: from bingnet2.cc.binghamton.edu (bingnet2.cc.binghamton.edu [128.226.1.18]) by hub.freebsd.org (Postfix) with ESMTP id DD68B15599 for ; Mon, 16 Aug 1999 18:21:21 -0700 (PDT) (envelope-from zzhang@cs.binghamton.edu) Received: from sol.cs.binghamton.edu (cs1-gw.cs.binghamton.edu [128.226.171.72]) by bingnet2.cc.binghamton.edu (8.9.3/8.9.3) with SMTP id VAA04916; Mon, 16 Aug 1999 21:21:15 -0400 (EDT) Date: Mon, 16 Aug 1999 21:07:57 -0400 (EDT) From: Zhihui Zhang To: Danaii Maziar Cc: freebsd-questions@FreeBSD.ORG Subject: Re: FIFO -- Device not configured In-Reply-To: <14264.9594.118127.306139@golem.easynet.fr> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, 16 Aug 1999, Danaii Maziar wrote: > > > Hi, > > I've created a fifo (with mkfifo) and every time I try to open it I > get -- Device not configured -- As I know Fifo is standard part of > kernel and there is no need to add options. > > Any suggestion. > > Thanks. > > # uname -a > 2.2.8-STABLE FreeBSD 2.2.8-STABLE > > # ls -l > prw-rw-rw- 1 root wheel 0 Aug 16 16:25 radfifo > > # cat xx.c > #include > #include > > main() > { > int pokefd; > pokefd=open("radfifo", O_WRONLY|O_NONBLOCK); > if (pokefd < 0) { > perror("open:"); > exit(1); > } > close(pokefd); > } > > # kdump > > # kdump > 5343 ktrace RET ktrace 0 > 5343 ktrace CALL execve(0xefbfdcfb,0xefbfdc90,0xefbfdc98) > 5343 ktrace NAMI "/tmp/xx" > 5343 xx RET execve 0 > 5343 xx CALL open(0x10c0,0x5,0) > 5343 xx NAMI "radfifo" > 5343 xx RET open -1 errno 6 Device not configured > 5343 xx CALL writev(0x2,0xefbfdc44,0x4) > 5343 xx GIO fd 2 wrote 29 bytes > "open:: Device not configured > " > 5343 xx RET writev 29/0x1d > 5343 xx CALL exit(0x1) > > -- > Easynet France > 33 1.44.54.70.32 > From "Advanced Programming in the Unix Environment" by W. Richard Stevens, "If O_NONBLOCK is specified, an open for read-only returns immediately. But an open for write-only returns an error with an errno of ENXIO if no process has the FIFO open for reading" -- page 446. -Zhihui To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 18:22:50 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail.greatbasin.net (mail.greatbasin.net [207.228.35.39]) by hub.freebsd.org (Postfix) with ESMTP id 049521546F for ; Mon, 16 Aug 1999 18:22:47 -0700 (PDT) (envelope-from dan@jgl.reno.nv.us) Received: from pandora.home (rno-max4-36.gbis.net [207.228.61.36]) by mail.greatbasin.net (8.9.3/8.9.3) with ESMTP id SAA03027; Mon, 16 Aug 1999 18:23:09 -0700 (PDT) Received: from danco (danco.home [10.0.0.2]) by pandora.home (8.9.3/8.9.2) with SMTP id SAA02649; Mon, 16 Aug 1999 18:22:35 -0700 (PDT) (envelope-from dan@jgl.reno.nv.us) Message-ID: <007d01bee84f$0f777520$0200000a@home> From: "Dan O'Connor" To: , "Eric Lee Green" Cc: References: <199908162245.SAA21886@devsys.jaguNET.com> Subject: Re: FreeBSD not Y2K compliant? Date: Mon, 16 Aug 1999 18:22:34 -0700 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit 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-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This brings up a side issue... Scripts that simply display the value from tm_year are going to show '100' in 2000. Anyone out their who has written scripts like this (it's common in Perl for CGI's) should check them. I've seen more than one script print out "1999" by doing this: printf("Year = 19%s\n",t->tm_year); which, come next January will read "19100". The better way to do it is: printf("Year = %s\n",1900 + t->tm_year); (Or something similar; my C is a bit rusty :-) --Dan ** The thing I like most about Windows 98 is... ** You can download FreeBSD with it! ----- Original Message ----- From: Jim Jagielski To: Eric Lee Green Cc: Sent: Monday, August 16, 1999 3:45 PM Subject: Re: FreeBSD not Y2K compliant? > int tm_year; /* year - 1900 */ > > It's supposed to do that. > > Eric Lee Green wrote: > > > > The below prints "99" instead of "1999" :-(. AGH! I thought I left that behind > > with Xenix! > > > > #include > > #include > > #include > > int main (int argc,char **argv) { > > struct *tm t; > > time_t today; > > today=time(NULL); > > t=localtime(&today); > > printf("Year = %s\n",t->tm_year); > > } > > > > > > -- > > Eric Lee Green http://members.tripod.com/e_l_green > > mail: e_l_green@hotmail.com > > ^^^^^^^ Burdening Microsoft with SPAM! > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > > > > -- > =========================================================================== > Jim Jagielski ||| jim@jaguNET.com ||| http://www.jaguNET.com/ > "That's no ordinary rabbit... that's the most foul, > cruel and bad-tempered rodent you ever laid eyes on" > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 18:54:37 1999 Delivered-To: freebsd-questions@freebsd.org Received: from devsys.jaguNET.com (devsys.jaguNET.com [206.156.208.6]) by hub.freebsd.org (Postfix) with ESMTP id 63DF915528 for ; Mon, 16 Aug 1999 18:54:32 -0700 (PDT) (envelope-from jim@jaguNET.com) Received: (from jim@localhost) by devsys.jaguNET.com (8.9.3/jag-2.6) id VAA23152; Mon, 16 Aug 1999 21:54:29 -0400 (EDT) From: Jim Jagielski Message-Id: <199908170154.VAA23152@devsys.jaguNET.com> Subject: Re: FreeBSD not Y2K compliant? To: dan@jgl.reno.nv.us (Dan O'Connor) Date: Mon, 16 Aug 1999 21:54:29 -0400 (EDT) Cc: jim@jaguNET.com, elgreen@iname.com, freebsd-questions@FreeBSD.ORG Reply-To: jim@jaguNET.com In-Reply-To: <007d01bee84f$0f777520$0200000a@home> from "Dan O'Connor" at Aug 16, 99 06:22:34 pm X-Mailer: ELM [version 2.4 PL25] Content-Type: text Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Dan O'Connor wrote: > > This brings up a side issue... > > Scripts that simply display the value from tm_year are going to show '100' > in 2000. > > Anyone out their who has written scripts like this (it's common in Perl for > CGI's) should check them. I've seen more than one script print out "1999" by > doing this: > > printf("Year = 19%s\n",t->tm_year); > > which, come next January will read "19100". The better way to do it is: > > printf("Year = %s\n",1900 + t->tm_year); > That's right. FreeBSD has been scanned (and fixed) for those programs that did the former instead of the latter, but custom or local programs may still have that. PS: That '%s' should be '%d' :) :) -- =========================================================================== Jim Jagielski ||| jim@jaguNET.com ||| http://www.jaguNET.com/ "That's no ordinary rabbit... that's the most foul, cruel and bad-tempered rodent you ever laid eyes on" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 18:58:36 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail.chorus.net (mail.chorus.net [209.83.0.135]) by hub.freebsd.org (Postfix) with ESMTP id 78BCE15528 for ; Mon, 16 Aug 1999 18:58:33 -0700 (PDT) (envelope-from trustno1@itis.com) Received: from reddwarf (a38-16.chorus.net [208.135.139.80]) by mail.chorus.net (8.9.3/8.8.8) with SMTP id UAA12974 for ; Mon, 16 Aug 1999 20:57:47 -0500 (CDT) Message-Id: X-Sender: trustno1@mail.itis.com X-Mailer: QUALCOMM Windows Eudora Pro Version 4.0 Date: Mon, 16 Aug 1999 20:57:23 -0500 To: freebsd-questions@FreeBSD.ORG From: craig Subject: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 18:58:39 1999 Delivered-To: freebsd-questions@freebsd.org Received: from osage.gate.net (osage.gate.net [198.206.134.25]) by hub.freebsd.org (Postfix) with ESMTP id A330F1553D for ; Mon, 16 Aug 1999 18:58:35 -0700 (PDT) (envelope-from wjm@gate.net) Received: from inca.gate.net (wjm@inca.gate.net [199.227.0.11]) by osage.gate.net (8.8.6/8.6.12) with ESMTP id VAA514330 for ; Mon, 16 Aug 1999 21:57:22 -0400 Received: from localhost (wjm@localhost) by inca.gate.net (8.8.6/8.6.9) with ESMTP id VAA60324 for ; Mon, 16 Aug 1999 21:58:12 -0400 X-Authentication-Warning: inca.gate.net: wjm owned process doing -bs Date: Mon, 16 Aug 1999 21:58:12 -0400 (EDT) From: William Melanson To: freebsd-questions@FreeBSD.ORG Subject: Crontab entry question... In-Reply-To: <007d01bee84f$0f777520$0200000a@home> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is the current crontab enrty I have to fire up a simple shell script: #Run at 8:30pm, Monday August 16th 30 20 16 8 mon /usr/home/user1/script.sh My question is how do I (would you) modify this entry to run this script every 10mins (open ended) starting at say... 8:30pm same day and month? - thanxs in advance To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 19:19:18 1999 Delivered-To: freebsd-questions@freebsd.org Received: from cc942873-a.ewndsr1.nj.home.com (cc942873-a.ewndsr1.nj.home.com [24.2.89.207]) by hub.freebsd.org (Postfix) with ESMTP id BB8D215543 for ; Mon, 16 Aug 1999 19:19:12 -0700 (PDT) (envelope-from cjc@cc942873-a.ewndsr1.nj.home.com) Received: (from cjc@localhost) by cc942873-a.ewndsr1.nj.home.com (8.8.8/8.8.8) id WAA09363; Mon, 16 Aug 1999 22:19:17 -0400 (EDT) (envelope-from cjc) From: "Crist J. Clark" Message-Id: <199908170219.WAA09363@cc942873-a.ewndsr1.nj.home.com> Subject: Re: segment, subnet In-Reply-To: <19990816205039.E44880@juno.dsj.net> from "David S. Jackson" at "Aug 16, 99 08:50:39 pm" To: dsj@sylvester.dsj.net Date: Mon, 16 Aug 1999 22:19:16 -0400 (EDT) Cc: freebsd-questions@FreeBSD.ORG Reply-To: cjclark@home.com 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-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG David S. Jackson wrote, > What's the difference between a subnet and a network segment? A 'segment' almost always refers to a physical partitioning of a network. Typically, on an Ethernet network, a segment is any portion separated from another by a brigde, router, hub, switch, etc. The term 'subnet' is a bit more nebulous. Someone may refer to a physical segment as a subnet, but I would say it is more proper to speak of subnets only when you are discussing routing. That is, whereas several segments of an Ethernet might be connected in a switch, they must be one subnet since there is no routing. Or in other words, segments are how you breakup an Ethernet, subnets are how you breakup an IP network. My $0.02 -- Crist J. Clark cjclark@home.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 19:28:57 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail.greatbasin.net (mail.greatbasin.net [207.228.35.39]) by hub.freebsd.org (Postfix) with ESMTP id 5CECB14D15 for ; Mon, 16 Aug 1999 19:28:55 -0700 (PDT) (envelope-from dan@jgl.reno.nv.us) Received: from pandora.home (rno-max1-37.gbis.net [207.228.60.101]) by mail.greatbasin.net (8.9.3/8.9.3) with ESMTP id TAA00532; Mon, 16 Aug 1999 19:28:50 -0700 (PDT) Received: from danco (danco.home [10.0.0.2]) by pandora.home (8.9.3/8.9.2) with SMTP id TAA02757; Mon, 16 Aug 1999 19:27:35 -0700 (PDT) (envelope-from dan@jgl.reno.nv.us) Message-ID: <008301bee858$2d126960$0200000a@home> From: "Dan O'Connor" To: "Dutch Collins" , "Gary Kline" Cc: References: <37B21484.E48CF5A3@gorean.org> <19990811180548.A14450@athena.tera.com> <37B223E7.9B64944@charm.net> Subject: Re: Question about the mascot Date: Mon, 16 Aug 1999 19:27:35 -0700 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit 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-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > >Did you hear what happened in the state of Kansas? --Anyone > >using Free|Net|OpenBSD in Kansas had better white-out Chuckie! So what happened in Kansas? > I'll bite. Chuckie???? Chuckie is the unofficial name of the daemon mascot... --Dan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 19:29:29 1999 Delivered-To: freebsd-questions@freebsd.org Received: from firewall.thycon.com.au (firewall.thycon.com.au [203.36.209.19]) by hub.freebsd.org (Postfix) with SMTP id D24C815503 for ; Mon, 16 Aug 1999 19:29:20 -0700 (PDT) (envelope-from roberth@thycon.com.au) Received: (qmail 50705 invoked from network); 17 Aug 1999 02:29:28 -0000 Received: from unknown (HELO thycon01.internal.thycon.com.au) (10.0.0.2) by 10.0.0.1 with SMTP; 17 Aug 1999 02:29:28 -0000 Received: by thycon01.internal.thycon.com.au with Internet Mail Service (5.5.2448.0) id ; Tue, 17 Aug 1999 12:32:43 +1000 Message-ID: <0943E979FAF5D2118D5E0090274ED2002E73@thycon01.internal.thycon.com.au> From: Robert Heezeman To: "'freebsd-questions@FreeBSD.ORG'" Subject: "Out of file descriptors" Date: Tue, 17 Aug 1999 12:32:42 +1000 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2448.0) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG during the boot process the system prematurely stops and comes up with the following error and then the # prompt... "Out of file descriptors" How can I fix this To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 19:33: 6 1999 Delivered-To: freebsd-questions@freebsd.org Received: from cc942873-a.ewndsr1.nj.home.com (cc942873-a.ewndsr1.nj.home.com [24.2.89.207]) by hub.freebsd.org (Postfix) with ESMTP id B3F7D14EE9 for ; Mon, 16 Aug 1999 19:33:01 -0700 (PDT) (envelope-from cjc@cc942873-a.ewndsr1.nj.home.com) Received: (from cjc@localhost) by cc942873-a.ewndsr1.nj.home.com (8.8.8/8.8.8) id WAA09458; Mon, 16 Aug 1999 22:33:36 -0400 (EDT) (envelope-from cjc) From: "Crist J. Clark" Message-Id: <199908170233.WAA09458@cc942873-a.ewndsr1.nj.home.com> Subject: Re: Crontab entry question... In-Reply-To: from William Melanson at "Aug 16, 99 09:58:12 pm" To: wjm@gate.net (William Melanson) Date: Mon, 16 Aug 1999 22:33:36 -0400 (EDT) Cc: freebsd-questions@FreeBSD.ORG Reply-To: cjclark@home.com 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-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG William Melanson wrote, > > This is the current crontab enrty I have to fire up a simple shell > script: > > #Run at 8:30pm, Monday August 16th > 30 20 16 8 mon /usr/home/user1/script.sh > > My question is how do I (would you) modify this entry to run this > script every 10mins (open ended) starting at say... 8:30pm same day > and month? It depends on just how 'open ended' you mean. Do you want it to run the rest of the day, every ten minutes? 30,40,50 20 16 8 /usr/home/user1/script.sh 0-59/10 20-23 16 8 /usr/home/user1/script.sh Or do you _really_ want to run this once and just keep looping? Maybe you are better off using at(1), % at 2030 8/16 while :; do /usr/home/user1/script.sh sleep 600 done -- Crist J. Clark cjclark@home.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 20: 8:44 1999 Delivered-To: freebsd-questions@freebsd.org Received: from po4.wam.umd.edu (po4.wam.umd.edu [128.8.10.166]) by hub.freebsd.org (Postfix) with ESMTP id 2FBD815562 for ; Mon, 16 Aug 1999 20:08:41 -0700 (PDT) (envelope-from culverk@wam.umd.edu) Received: from rac1.wam.umd.edu (root@rac1.wam.umd.edu [128.8.10.141]) by po4.wam.umd.edu (8.9.3/8.9.3) with ESMTP id XAA19152 for ; Mon, 16 Aug 1999 23:08:48 -0400 (EDT) Received: from rac1.wam.umd.edu (sendmail@localhost [127.0.0.1]) by rac1.wam.umd.edu (8.9.3/8.9.3) with SMTP id XAA06360 for ; Mon, 16 Aug 1999 23:08:46 -0400 (EDT) Received: from localhost (culverk@localhost) by rac1.wam.umd.edu (8.9.3/8.9.3) with ESMTP id XAA06356 for ; Mon, 16 Aug 1999 23:08:46 -0400 (EDT) X-Authentication-Warning: rac1.wam.umd.edu: culverk owned process doing -bs Date: Mon, 16 Aug 1999 23:08:46 -0400 (EDT) From: Kenneth Wayne Culver To: freebsd-questions@freebsd.org Subject: DHCP config Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I was just wondering.. I have FreeBSD 4.0-CURRENT, and I noticed in /etc/defaults/rc.conf these lines: dhcp_program="/sbin/dhclient" # Path to dhcp client program. dhcp_flags="" # Additional flags to pass to dhcp client. I was wondering... how do I make rc.conf run dhcp... there is no dhcp_enable="YES" or anything like that? Kenneth Culver Computer Science Major at the University of Maryland, College Park. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 20:26:41 1999 Delivered-To: freebsd-questions@freebsd.org Received: from web1001.mail.yahoo.com (web1001.mail.yahoo.com [128.11.23.91]) by hub.freebsd.org (Postfix) with SMTP id 727D714E6A for ; Mon, 16 Aug 1999 20:26:38 -0700 (PDT) (envelope-from bvmcg@yahoo.com) Message-ID: <19990817032551.28535.rocketmail@web1001.mail.yahoo.com> Received: from [24.29.199.43] by web1001.mail.yahoo.com; Mon, 16 Aug 1999 20:25:51 PDT Date: Mon, 16 Aug 1999 20:25:51 -0700 (PDT) From: Brian McGroarty Reply-To: brian@pobox.com Subject: Re: DHCP config To: Kenneth Wayne Culver , freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG When you upgrade your source, note changes in /usr/src/etc ... In rc.network, you'll find: if [ -n "${ifconfig_args}" ] ; then # See if we are using DHCP if [ X"${ifconfig_args}" = X"DHCP" ]; then ${dhcp_program} ${dhcp_flags} ${ifn} else ifconfig ${ifn} ${ifconfig_args} fi in the network configuration section. Try configuring an interface with "DHCP" in your rc.conf. --- Kenneth Wayne Culver wrote: > I was just wondering.. I have FreeBSD 4.0-CURRENT, and I > noticed in > /etc/defaults/rc.conf these lines: > > dhcp_program="/sbin/dhclient" # Path to dhcp client program. > dhcp_flags="" # Additional flags to pass to > dhcp client. > > I was wondering... how do I make rc.conf run dhcp... there is > no > dhcp_enable="YES" or anything like that? > > > > Kenneth Culver > Computer Science Major at the University of Maryland, College > Park. > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the > message > > _________________________________________________________ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 20:53:20 1999 Delivered-To: freebsd-questions@freebsd.org Received: from garnet.acns.fsu.edu (gmhub.acns.fsu.edu [146.201.2.30]) by hub.freebsd.org (Postfix) with ESMTP id 4CE34155BC for ; Mon, 16 Aug 1999 20:53:15 -0700 (PDT) (envelope-from bcc9746@garnet.acns.fsu.edu) Received: from garnet1.acns.fsu.edu (garnet1-fi.acns.fsu.edu [192.168.197.1]) by garnet.acns.fsu.edu (8.9.1/8.9.1) with ESMTP id XAA26210; Mon, 16 Aug 1999 23:51:55 -0400 Received: from s1o3q0 (dial947.acns.fsu.edu [146.201.36.83]) by garnet1.acns.fsu.edu (8.9.1/8.9.1) with SMTP id XAA41496; Mon, 16 Aug 1999 23:51:54 -0400 Message-ID: <000c01bee863$daaf9920$5324c992@s1o3q0> From: "Brett G. Castleberry" To: "Konrad Heuer" , "Olaf Stoyke" Cc: References: Subject: Re: Looking for *BSD Insight... Date: Mon, 16 Aug 1999 23:51:56 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit 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-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG You might want to read: The return of BSD What are the BSD flavors and why might you use them? By Greg Lehey http://www.sunworld.com/sunworldonline/swol-01-1999/swol-01-bsd.html Brett G. Castleberry bcc9746@garnet.acns.fsu.edu Tallahassee, Florida To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 21: 0:41 1999 Delivered-To: freebsd-questions@freebsd.org Received: from inet.chip-web.com (c1003518-a.plstn1.sfba.home.com [24.1.82.47]) by hub.freebsd.org (Postfix) with SMTP id B797B14E10 for ; Mon, 16 Aug 1999 21:00:38 -0700 (PDT) (envelope-from ludwigp@bigfoot.com) Received: (qmail 6401 invoked from network); 17 Aug 1999 04:01:25 -0000 Received: from furball.chip-web.com (HELO bigfoot.com) (172.16.1.29) by inet.chip-web.com with SMTP; 17 Aug 1999 04:01:25 -0000 Message-ID: <37B8DE82.3E27BF@bigfoot.com> Date: Mon, 16 Aug 1999 21:01:06 -0700 From: Ludwig Pummer X-Mailer: Mozilla 4.6 [en] (X11; I; FreeBSD 3.2-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: Robert Heezeman Cc: "'freebsd-questions@FreeBSD.ORG'" Subject: Re: "Out of file descriptors" References: <0943E979FAF5D2118D5E0090274ED2002E73@thycon01.internal.thycon.com.au> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Robert Heezeman wrote: > > during the boot process the system prematurely stops and comes up with the > following error and then the # prompt... > > "Out of file descriptors" > > How can I fix this There's apparently something running as part of your rc.* scripts that's eating up all of your file descriptors. If memory serves me right, this happened to quite a few people after they upgraded their FreeBSD but didn't update their /etc properly, or just copied /etc/defaults/rc.conf to /etc/rc.conf. /etc/rc.conf would keep calling itself over and over again. The quick solution was to remove the line in /etc/rc.conf that called itself --Ludwig Pummer To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 21: 5:40 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mtiwmhc04.worldnet.att.net (mtiwmhc04.worldnet.att.net [204.127.131.39]) by hub.freebsd.org (Postfix) with ESMTP id 9FF7714E10 for ; Mon, 16 Aug 1999 21:05:38 -0700 (PDT) (envelope-from skipjackssn@worldnet.att.net) Received: from default ([12.75.96.88]) by mtiwmhc04.worldnet.att.net (InterMail v03.02.07.07 118-134) with SMTP id <19990817040354.RWSF5874@default> for ; Tue, 17 Aug 1999 04:03:54 +0000 Message-ID: <000201bee83a$c50d8f60$58604b0c@default> From: "Kevin Schmolze" To: Subject: compadability Date: Sun, 25 Jul 1999 20:07:46 -0000 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit 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-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I currently have win 98 and would like to switch to sco unix is their anything I can do to still use my other programs I have 2 drives c 6.8 gig and d 1.7 gig. but a program that I would like to use will only work with sco unix,aix,solaris 1.1 and 2.x HP-UX any solutions? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 22:40: 2 1999 Delivered-To: freebsd-questions@freebsd.org Received: from amukta.gci.net (amukta.gci.net [208.138.130.216]) by hub.freebsd.org (Postfix) with ESMTP id E773315558 for ; Mon, 16 Aug 1999 22:39:54 -0700 (PDT) (envelope-from irisinc@gci.net) Received: from gci.net ([209.165.137.201]) by amukta.gci.net (Netscape Messaging Server 4.04 Jul 21 1999 18:33:18) with ESMTP id FGLGZ500.FGJ for ; Mon, 16 Aug 1999 21:37:53 -0800 Message-ID: <37B84CDB.80DA37CD@gci.net> Date: Mon, 16 Aug 1999 09:39:39 -0800 From: Charlie Root X-Mailer: Mozilla 4.51 [en] (X11; I; FreeBSD 3.2-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: Apsfilter, magicfilter & etc. Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello! I am used to using linux so the printing set up on FreeBSD is at best new to me. I read the manual and the FreeBSD Handbook, which by the way was the most informative publication on printing I have yet to read. Would someone please be so kind as to point out to me where I can find the information necessary to link apsfilter, a2ps and or magicfilter to my /etc/printcap file. Linux programs accomplish this through a program using a GUI for setup information. The handbook mentions these filters but does not give any instructions for how to enable or link them. Thanks in advance. Rusty To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 22:43:10 1999 Delivered-To: freebsd-questions@freebsd.org Received: from fingers.shocking.com (shocking.com [216.111.111.11]) by hub.freebsd.org (Postfix) with ESMTP id 59C2B14C15 for ; Mon, 16 Aug 1999 22:42:59 -0700 (PDT) (envelope-from doemill@shocking.com) Received: from shocking.com (doemill@shocking.com [216.111.111.11]) by fingers.shocking.com (8.9.0/8.9.0) with ESMTP id WAA10087 for ; Mon, 16 Aug 1999 22:39:55 -0700 (PDT) Date: Mon, 16 Aug 1999 22:39:55 -0700 (PDT) From: Doug To: freebsd-questions@freebsd.org Subject: domain ; ipnat ; single ip != redirections? Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ive got a domain, and serveral boxen on the network, but one static ip. Im doubting ipnat can redirect, say, telnet connections to "ns.unix9.org" to go to the nameserver, and so forth? Im sure this goes deeper then ipnat, just a shotint he d4rk though.. | Doug | unix9.org admin | shocking.com/~doemill/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Mon Aug 16 23:11:13 1999 Delivered-To: freebsd-questions@freebsd.org Received: from storm.digital-rain.com (storm.digital-rain.com [204.244.71.70]) by hub.freebsd.org (Postfix) with ESMTP id 94A9A14CA5 for ; Mon, 16 Aug 1999 23:11:05 -0700 (PDT) (envelope-from tim@storm.digital-rain.com) Received: from agamemnon.melonville.net (dial-line60.digital-rain.com [204.244.94.60]) by storm.digital-rain.com (8.9.1/8.9.1) with SMTP id XAA16086; Mon, 16 Aug 1999 23:08:49 -0700 (PDT) Message-Id: <3.0.2.32.19990816230848.007dbb80@storm.digital-rain.com> X-Sender: tim@storm.digital-rain.com X-Mailer: QUALCOMM Windows Eudora Pro Version 3.0.2 (32) Date: Mon, 16 Aug 1999 23:08:48 -0700 To: "David S. Jackson" From: Tim Baird Subject: Re: segment, subnet Cc: freebsd-questions@freebsd.org In-Reply-To: <19990816205039.E44880@juno.dsj.net> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG At 08:50 PM 16/08/99 -0400, you wrote: >What's the difference between a subnet and a network segment? A subnet is a higher level concept than a segment. A subnet is implemented by partitioning the 32 bit IP address space in such a way as to isolate IP brodcast areas. All hosts with the same net ID (marked by the bit postions in the subnet mask containing a "1") are part of the same subnet - each host must have a unique host ID (marked by the bit positions in the subnet mask containing a "0"). A single host ID is set aside as a broadcast address...usually the host ID that is all '1's. A segment is a lower level concept - down at the physical level. A segment describes a common physical communication channel. With ethernet, a segment is understood as a common collision area...in other words, if a frame from one interface can collide with a frame from another interface, those two interfaces share the same segment. On a vanilla 10Base2 (thin net) setup, the cable is understood as the "segment". With 10BaseT (twisted pair) with a "repeating" hub, each wire attached to the hub combine to form a single segment. On a intelligent/switched hub, you may have the option of isolating ports into separate segments to minimize collisions. Bridges are devices which translate signals from one physical signalling system to another and typically divide the differing physical topologies into segments. You may have multiple segments under one subnet....this is often avoided though You may have multiple subnets on a given segment....this is not typical either. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 0:20:41 1999 Delivered-To: freebsd-questions@freebsd.org Received: from cronus.medianetwork.se (cronus.medianetwork.se [193.14.204.1]) by hub.freebsd.org (Postfix) with ESMTP id 0B6A614E79 for ; Tue, 17 Aug 1999 00:20:36 -0700 (PDT) (envelope-from support@junglenote.com) Received: from junglenote.com (digital03.medianetwork.se [193.14.204.221]) by cronus.medianetwork.se (8.9.3/8.7) with ESMTP id JAA26535 for ; Tue, 17 Aug 1999 09:19:45 +0200 Received: from enigmatic [127.0.0.1] by junglenote.com [localhost] with SMTP (MDaemon.v2.84.R) for ; Tue, 17 Aug 1999 09:27:29 +0200 Received: by localhost with Microsoft MAPI; Tue, 17 Aug 1999 09:27:26 +0200 Message-ID: <01BEE892.B844D2E0.support@junglenote.com> From: Dan Larsson To: "'mkc@Graphics.Cornell.EDU'" Cc: Jamie Norwood , "freebsd-questions@FreeBSD.ORG" Subject: SV: dhcpd Date: Tue, 17 Aug 1999 09:27:25 +0200 Organization: Portabla Datorer AB X-Mailer: Microsoft Internet-e-post/MAPI - 8.0.0.4211 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-MDaemon-Deliver-To: freebsd-questions@FreeBSD.ORG X-Return-Path: support@junglenote.com Reply-To: support@junglenote.com Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > Yes it is, but keep reading. He confirmed my guess about wanting it to > prevent servers. Really all it does to people who want to run a server > is annoy them. Meanwhile it annoys your friendly non-abusing users as > well. Not what I would consider a good idea. Not long ago I met a guy > who was running a web server on a machine using dhcp. He had a friend > running his DNS service and every time his IP address changed he just > sent the new address to his friend who updated his DNS and he was back > in business. Of course this works best if both you and your friend > spend all your time on the net... How does this bother the 'friendly non-abusing user'? I've never seen, even m$ boxes included, die from having their ip address changed with or without dhcp. You must mean something else, right? And as I mentioned earlier, from the clients point of view it's much easier just to apply for a static address. The other solution would be to deny access to all and punch holes in the fw for every client allowed. This works. I know. But the rules table for the firewall grows to monolithic proportions, understandably due to the myriad of available software applications. A second alternative which is similar to the above. And it's setting bandwidth rules for every ip in the scope. Which also works, but sets the problem out of focus. The most desireable solution from my point of view would be to deny regular ip datatypes (http-data etc) from the internet to the clients. e.g. to deny a request from the internet to access any ip resource on the client side. And from there punch holes to allow access to certain ips to be accessed from the internet. This I do not know how to do. If someone does please let me know. /D To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 3: 5:37 1999 Delivered-To: freebsd-questions@freebsd.org Received: from Bespin.worldnet.net (bespin.worldnet.net [195.3.3.4]) by hub.freebsd.org (Postfix) with ESMTP id B631B15753 for ; Tue, 17 Aug 1999 03:05:25 -0700 (PDT) (envelope-from pcasidy@worldnet.fr) Received: from greatoak.home (p14-037.province.worldnet.fr [195.3.14.37]) by Bespin.worldnet.net (8.8.8/8.8.8) with ESMTP id MAA01179; Tue, 17 Aug 1999 12:01:38 +0200 (CEST) Received: (from pcasidy@localhost) by greatoak.home (8.9.3/8.9.3) id LAA01911; Tue, 17 Aug 1999 11:42:46 +0200 (CEST) (envelope-from pcasidy) Message-Id: <199908170942.LAA01911@greatoak.home> Date: Tue, 17 Aug 1999 11:42:46 +0200 (CEST) From: Philippe CASIDY Subject: Re: [HELP] Unrecognize IDE hard disk To: dan@jgl.reno.nv.us Cc: freebsd-questions@FreeBSD.ORG In-Reply-To: <050801bee7ee$dee16a20$0200000a@home> MIME-Version: 1.0 Content-Type: TEXT/plain; CHARSET=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On 16 Aug, Dan O'Connor wrote: > Hmmm...That's a strange one. > > Are you sure the jumpers on each drive are set properly for master and > slave? Yes they are. > You might also try removing the CDROM and sticking the 850MB drive on the > other IDE controller to see if it works there (make sure the jumpers are > correct for a single drive). In the old days (when Conner was still around), > there were some drives that just didn't get along well if you mixed > manufacturers on the same bus. The drive works fine under Win98. I was able to format, to copy some data on it. But unable to mount the drive as an msdos filesytem under 3.2-RELEASE. > If it works alone on the other controller, it's one of those "unfriendly" > drive situations. I have move the drive as a slave of the CDRom and it works fine with 3.2-RELEASE :-) > If it doesn't work, then there's something else amiss, and hopefully, > someone else out there has a better idea. Thanks for your idea. I am half happy with it now. I am happy it works but that means there cases that FreeBSD cannot deal with ;-( > Good luck, > > --Dan > > ** The thing I like most about Windows 98 is... > ** You can download FreeBSD with it! It recognizes more hardware ;-( Thanks you very much Dan, Phil. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 3:16:34 1999 Delivered-To: freebsd-questions@freebsd.org Received: from relay.cs.tcd.ie (relay.cs.tcd.ie [134.226.32.56]) by hub.freebsd.org (Postfix) with ESMTP id BEC1515851 for ; Tue, 17 Aug 1999 03:16:28 -0700 (PDT) (envelope-from william.leeson@cs.tcd.ie) Received: from cs.tcd.ie (pc458.cs.tcd.ie [134.226.38.181]) by relay.cs.tcd.ie (8.9.1a/8.9.1) with ESMTP id LAA17916 for ; Tue, 17 Aug 1999 11:15:41 +0100 (BST) Message-ID: <37B9367B.8E03DC33@cs.tcd.ie> Date: Tue, 17 Aug 1999 11:16:28 +0100 From: Willy Organization: Trinity College Dublin X-Mailer: Mozilla 4.61 [en] (X11; I; FreeBSD 3.0-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: "freebsd-questions@FreeBSD.ORG" Subject: Re: Shared object "libkrb.so.3" not found References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Khetan Gajjar wrote: > Around Today, "Willy" wrote : > > W> /usr/home/leesonw>ghostview > W> /usr/libexec/ld-elf.so.1: Shared object "libkrb.so.3" not found > W> /usr/home/leesonw> > > This doesn't sound strictly like a Kerberos problem, but rather a linked > library problem. > > Try a ldconfig -R /usr/lib /usr/local/lib /usr/X11R6/lib > and any other location(s) that you might have shared libraries. > > Might also be worth trying a > ldconfig -aout -R /usr/lib/aout /usr/local/lib/aout /usr/X11R6/lib/aout > > W> don't seem to have it even in the sources it's blank. I guess this is > W> because of the export restrictions and me not being a US or Canadian > W> citizen and all that. Now I don't care one way or the other if I have > > I'm not a US/Canadian citizen, and have never installed Kerberos on my > home PC, and it works a treat. When I have, it makes little difference > to most userland apps; anything requiring authentication is different, > obviously. > > --- > Khetan Gajjar (!kg1779) * khetan@os.org.za > http://khetan.os.org.za/ * Talk/Finger khetan@khetan.os.org.za > FreeBSD enthusiast * http://www2.za.freebsd.org/ > Stupidest quote heard : Who is this BSD, and why should we free him ? > > Reference : <37AE83DC.48A0D5F1@cs.tcd.ie> > Date : Aug 9, 1999, 8:31am > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message I have tried all this and still I have the same problem got any more ideas as to what might be the problem? I was originaly using FreeBSD 3 Release however now I have upgraded to 3.2 Stable using CTM but the problem still persists. Thanks Willy :^( To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 3:23:37 1999 Delivered-To: freebsd-questions@freebsd.org Received: from zeus.dnt.md (zeus.dnt.md [195.138.124.37]) by hub.freebsd.org (Postfix) with ESMTP id DF5ED157BB for ; Tue, 17 Aug 1999 03:23:18 -0700 (PDT) (envelope-from sl@zeus.dnt.md) Received: from localhost (sl@localhost) by zeus.dnt.md (8.9.3/8.9.3) with ESMTP id NAA35376 for ; Tue, 17 Aug 1999 13:19:02 GMT Date: Tue, 17 Aug 1999 13:19:02 +0000 (GMT) From: slava To: freebsd-questions@freebsd.org Subject: xntpd and 3.1R problem Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG hello Is there a problem with xntpd in 3.1release? I keep getting this error and the deamon dies afterwards: Aug 17 11:33:43 zeus xntpd[29849]: time error -10616.253729 is way too large (set clock manually) In my /etc/ntp.conf file I have just one line: server iris.dnt.md and I start it as: xntpd -c /etc/ntp.conf xntpd works fine with the same config on 3.1stables and 3.2r. Any ideas? Thank you. slava To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 3:36:54 1999 Delivered-To: freebsd-questions@freebsd.org Received: from marithe.recluse.net (marithe.recluse.net [216.200.139.86]) by hub.freebsd.org (Postfix) with ESMTP id B429514EC6 for ; Tue, 17 Aug 1999 03:36:51 -0700 (PDT) (envelope-from brandon@recluse.net) Received: by marithe.recluse.net (Postfix, from userid 2000) id 3ED2C5837; Tue, 17 Aug 1999 03:41:56 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by marithe.recluse.net (Postfix) with ESMTP id 2E80273; Tue, 17 Aug 1999 03:41:56 -0700 (PDT) Date: Tue, 17 Aug 1999 03:41:55 -0700 (PDT) From: Brandon Huey To: slava Cc: freebsd-questions@freebsd.org Subject: Re: xntpd and 3.1R problem In-Reply-To: Message-ID: X-Copyright: (C)1999 Brandon Huey; Forwarding prohibited MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG try using ntpdate(8) first. xntpd won't adjust for gross drift. On Tue, 17 Aug 1999, slava wrote: > > hello > > Is there a problem with xntpd in 3.1release? I keep > getting this error and the deamon dies afterwards: > > Aug 17 11:33:43 zeus xntpd[29849]: time error -10616.253729 is way too large > (set clock manually) > > In my /etc/ntp.conf file I have just one line: > server iris.dnt.md > > and I start it as: xntpd -c /etc/ntp.conf > > xntpd works fine with the same config on 3.1stables and 3.2r. > > Any ideas? > > Thank you. > slava > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 3:41:47 1999 Delivered-To: freebsd-questions@freebsd.org Received: from www.freegaypix.com (www.freegaypix.com [216.65.3.226]) by hub.freebsd.org (Postfix) with ESMTP id B421814DBE for ; Tue, 17 Aug 1999 03:41:40 -0700 (PDT) (envelope-from webmaster@jmsinternet.com) Received: from jason-s-pc (we-24-30-100-143.we.mediaone.net [24.30.100.143]) by www.freegaypix.com (8.9.3/8.9.2) with SMTP id DAA80870 for ; Tue, 17 Aug 1999 03:37:09 -0700 (PDT) (envelope-from webmaster@jmsinternet.com) Message-Id: <4.1.19990817032736.01a37c30@mail.sirius.com> X-Sender: jms@mail.jmsinternet.com X-Mailer: QUALCOMM Windows Eudora Pro Version 4.1 Date: Tue, 17 Aug 1999 03:40:37 -0700 To: freebsd-questions@FreeBSD.ORG From: JMS Internet Subject: Tape Backup Devices Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I'm currently looking for a tape or other type of backup that I could use with FreeBSD.. I'm using version 3.2. I have ran across the following drives and I would like to find out if anyone has or is currently using them successfully: 1. Onstream 30 gig Parallel Port device (also available in IDE, and SCSI) Non-traditional tape drive, files can be executed from the device could possibly only be used with windows software, but I'm not sure. 2. Sony SuperStation 6.6/10 gig Parallel port (also available in IDE) As far as I can tell this is a normal tape drive 3. There are also Colorado tape drives available in my town, but I was told they are not supported. If anyone could suggest what types of drives are supported, or have a reference to how to setup and run these devices, I would greatly appreciate it... Thanks guys... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 3:48:38 1999 Delivered-To: freebsd-questions@freebsd.org Received: from dialup124.zpr.uni-koeln.de (1-106.K.dial.o-tel-o.net [212.144.1.106]) by hub.freebsd.org (Postfix) with ESMTP id 9D73D14DBE; Tue, 17 Aug 1999 03:48:33 -0700 (PDT) (envelope-from se@zpr.uni-koeln.de) Received: by dialup124.zpr.uni-koeln.de (Postfix, from userid 200) id 600DFD56; Tue, 17 Aug 1999 11:38:30 +0200 (CEST) Date: Tue, 17 Aug 1999 11:38:27 +0200 From: Stefan Esser To: Ed Baxter Cc: freebsd-questions@FreeBSD.ORG, freebsd-stable@FreeBSD.ORG, Stefan Esser Subject: Re: how to stop route redirects Message-ID: <19990817113827.A530@dialup124.zpr.uni-koeln.de> Reply-To: se@freebsd.org References: <9908161526560P.13614@redhat> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.6i In-Reply-To: <9908161526560P.13614@redhat>; from Ed Baxter on Mon, Aug 16, 1999 at 03:15:28PM -0700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On 1999-08-16 15:15 -0700, Ed Baxter wrote: Route redirect is based on ICMP. See "man ipfw" (or "man ipf") and referred man-pages for the packet filter extensions that allow blocking of all or specific ICMP redirect messages. If you are running a recent -current (After August 10th), then you can control how the kernel reacts on ICMP redirect packets: net.inet.icmp.log_redirect: 0 net.inet.icmp.drop_redirect: 0 Use "sysctl -w net.inet.icmp.drop_redirect=1" to ignore all ICMP redirects (possibly after prior logging, if "log_riderects" == 1. (You may want to merge that code into -stable, else: cd /sys/netinet cvs up -kk -j 1.35 ip_icmp.c Or apply the patch at the end of this file to just add the "drop" feature to -stable ...) Regards, STefan Index: ip_icmp.c =================================================================== RCS file: /usr/cvs/src/sys/netinet/ip_icmp.c,v retrieving revision 1.33.2.1 diff -u -2 -r1.33.2.1 ip_icmp.c --- ip_icmp.c 1999/03/06 23:11:41 1.33.2.1 +++ ip_icmp.c 1999/08/17 09:36:45 @@ -70,4 +70,8 @@ &icmpmaskrepl, 0, ""); +static int drop_redirect = 0; +SYSCTL_INT(_net_inet_icmp, OID_AUTO, drop_redirect, CTLFLAG_RW, + &drop_redirect, 0, ""); + #ifdef ICMP_BANDLIM @@ -463,4 +467,6 @@ case ICMP_REDIRECT: + if (drop_redirect) + break; if (code > 3) goto badcode; To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 4: 0:33 1999 Delivered-To: freebsd-questions@freebsd.org Received: from purgatory.openport.com (bob.openport.com [208.219.70.3]) by hub.freebsd.org (Postfix) with ESMTP id E92E8156E6 for ; Tue, 17 Aug 1999 04:00:22 -0700 (PDT) (envelope-from bcarrino@openport.com) Received: from openport.com (IDENT:bcarrino@dulcinea.cs.openport.com [192.168.125.3]) by purgatory.openport.com (Pro-8.9.3/Pro-8.9.3) with ESMTP id GAA11878; Tue, 17 Aug 1999 06:00:47 -0500 (CDT) Message-ID: <37B9413F.18B00F61@openport.com> Date: Tue, 17 Aug 1999 06:02:23 -0500 From: "Bradley J. Carrino" X-Mailer: Mozilla 4.6 [en] (X11; I; Linux 2.2.10-ac5 i686) X-Accept-Language: en MIME-Version: 1.0 To: Charlie Root Cc: freebsd-questions@FreeBSD.ORG Subject: using Root References: <37B7EA9D.B89E8E4F@gci.net> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Please use another email account, rather than root, when sending to the mailing list.... My workstation grabs email from 'Charlie Root' and formats it into a report. Aside from my issue, it is better to only 'su -' to root when working on administrative tasks and avoid any unwanted actions. -Thadius To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 4:23:17 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mailb.telia.com (mailb.telia.com [194.22.194.6]) by hub.freebsd.org (Postfix) with ESMTP id 4412214F7F for ; Tue, 17 Aug 1999 04:23:09 -0700 (PDT) (envelope-from girgen@partitur.se) Received: from stordatan.telia.com (t2o62p31.telia.com [195.198.198.91]) by mailb.telia.com (8.8.8/8.8.8) with ESMTP id NAA12395 for ; Tue, 17 Aug 1999 13:23:39 +0200 (CEST) Received: from partitur.se (localhost [127.0.0.1]) by stordatan.telia.com (8.9.3/8.9.1) with ESMTP id NAA41505 for ; Tue, 17 Aug 1999 13:23:27 +0200 (CEST) (envelope-from girgen@partitur.se) Message-ID: <37B9462F.252A986A@partitur.se> Date: Tue, 17 Aug 1999 13:23:27 +0200 From: Palle Girgensohn Organization: Partitur X-Mailer: Mozilla 4.61 [en] (X11; U; FreeBSD 3.2-STABLE i386) X-Accept-Language: sv, en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: How get apache to dump CGI program's core? Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi! I'm running apache 1.3.6 on FreeBSD 3.2-stable. I'm doing some CGI development, and need to get core dumps when the programs fail. Since apache does setuid, the programs are not allowed to dump core. Even running apache with -X doesn't help; they sig 11 but no core dump. :( Any ideas? There's some info on the apache site, but it doesn't say how to fix it: http://www.apache.org/docs/misc/FAQ-D.html#wheres-the-dump Thanks! /Palle To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 4:52: 8 1999 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (f24.hotmail.com [207.82.250.234]) by hub.freebsd.org (Postfix) with SMTP id C637714F7F for ; Tue, 17 Aug 1999 04:52:06 -0700 (PDT) (envelope-from andre_doro@hotmail.com) Received: (qmail 73210 invoked by uid 0); 17 Aug 1999 11:49:56 -0000 Message-ID: <19990817114956.73209.qmail@hotmail.com> Received: from 200.252.124.15 by www.hotmail.com with HTTP; Tue, 17 Aug 1999 04:49:56 PDT X-Originating-IP: [200.252.124.15] From: "Andre Doro" To: freebsd-questions@FreeBSD.ORG Subject: RAID 5 Date: Tue, 17 Aug 1999 04:49:56 PDT Mime-Version: 1.0 Content-Type: text/plain; format=flowed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Dears, I need know if FreeBSD support a Mylex RAID-5 card, ´cause I have a server machine with Mylex RAID 5 and I would like install FreeBSD. Do you know ?! Best regards, doro@zaz.com.br ______________________________________________________ Get Your Private, Free Email at http://www.hotmail.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 4:52:54 1999 Delivered-To: freebsd-questions@freebsd.org Received: from brainbow.ailab.sztaki.hu (brainbow.ailab.sztaki.hu [193.225.86.248]) by hub.freebsd.org (Postfix) with ESMTP id 2AB1815688 for ; Tue, 17 Aug 1999 04:52:45 -0700 (PDT) (envelope-from stefan@brainbow.ailab.sztaki.hu) Received: from localhost (stefan@localhost) by brainbow.ailab.sztaki.hu (8.9.3/8.9.3) with ESMTP id LAA19795 for ; Tue, 17 Aug 1999 11:18:15 +0200 (CEST) (envelope-from stefan@brainbow.ailab.sztaki.hu) Date: Tue, 17 Aug 1999 11:18:15 +0200 (CEST) From: Stefan Peter To: freebsd-questions@freebsd.org Subject: netscape Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Dear Answerers, I was in e-mail contact with you several weeks ago. Perhaps some of you may remember to me. I'm running a newly-installed FreeBSD system on Pentium-MMX. Several weeks ago I had difficulties with setting up the X11-server. This difficulty, due to your kind help, is no longer a problem, the X11 works almost perfectly. Unfortunately almost, because a new promlem have been encountered: the netscape. The netscape application does not work properly. After successful installations higher versions stop requiring some library-functions. The netscape 3.4 and 3.4 gold work, but in some cases they stop catching singal 11 and the xdm starts-up again giving the login-password screen. I tried to use the netscape of other machines diverting the DISPLAY variable and running the netscape from another macihne but the result was the same. Can you give me some issues to fix the problem? Cheers, Peter Stefan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 4:54:54 1999 Delivered-To: freebsd-questions@freebsd.org Received: from dns02.arpa-canada.net (dns02.arpa-canada.net [209.104.118.66]) by hub.freebsd.org (Postfix) with SMTP id 3338E15606 for ; Tue, 17 Aug 1999 04:54:39 -0700 (PDT) (envelope-from matt@MLINK.NET) Received: (qmail 99608 invoked by uid 1000); 17 Aug 1999 11:55:09 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 17 Aug 1999 11:55:09 -0000 Date: Tue, 17 Aug 1999 07:55:09 -0400 (EDT) From: matt X-Sender: matt@dns02.arpa-canada.net To: questions@FreeBSD.ORG Subject: Quotas. Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Greetings, I have two questions, testing some theories with an odd problem of mine; A) Is it possible that quota would mishandle a 9.3 GB partition? B) Is it possible that a minor/major problem with a hard drive would cause quota but nothing else to 'freak out'? For reference, the machine is FreeBSD 3.2-Stable as of August 6th, the hard drive is a 13 GB Quantum Fireball, IDE. (Apologies for those on the -stable list that already have seen this email, cross-posted to -questions after absolutly no responses on -stable) Thanks, Matt -- matt@MLINK.NET To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 5: 5:20 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail.pchost.com (pchost.com [203.24.253.109]) by hub.freebsd.org (Postfix) with SMTP id B284014CA3 for ; Tue, 17 Aug 1999 05:05:13 -0700 (PDT) (envelope-from kyle@pchost.com) Received: (qmail 76551 invoked from network); 17 Aug 1999 12:17:37 -0000 Received: from bob.pchost.com (HELO pchost.com) (203.24.253.107) by pchost.com with SMTP; 17 Aug 1999 12:17:37 -0000 Message-ID: <37B950DD.74F27113@pchost.com> Date: Tue, 17 Aug 1999 22:09:01 +1000 From: Kyle Buttress X-Mailer: Mozilla 4.6 [en] (X11; I; Linux 2.0.36 i386) X-Accept-Language: en MIME-Version: 1.0 To: FreeBSD Questions List Subject: Apsfilter Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, I have been trying to install apsfilter but have a problem when I try and install transfig it returns the following error. ===> Configuring for transfig-3.2.1 xmkmf: not found *** Error code 127 Anyone know how to fix this problem kyle -- Gauls! We have nothing to fear; except perhaps that the sky may fall on our heads tomorrow. But as we all know, tomorrow never comes!! -- Adventures of Asterix. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 5:12:32 1999 Delivered-To: freebsd-questions@freebsd.org Received: from Bespin.worldnet.net (bespin.worldnet.net [195.3.3.4]) by hub.freebsd.org (Postfix) with ESMTP id BFC3E14DC4 for ; Tue, 17 Aug 1999 05:12:21 -0700 (PDT) (envelope-from pcasidy@worldnet.fr) Received: from greatoak.home (p14-054.province.worldnet.fr [195.3.14.54]) by Bespin.worldnet.net (8.8.8/8.8.8) with ESMTP id OAA06925 for ; Tue, 17 Aug 1999 14:08:00 +0200 (CEST) Received: (from pcasidy@localhost) by greatoak.home (8.9.3/8.9.3) id OAA05662 for freebsd-questions@freebsd.org; Tue, 17 Aug 1999 14:12:40 +0200 (CEST) (envelope-from pcasidy) Message-Id: <199908171212.OAA05662@greatoak.home> Date: Tue, 17 Aug 1999 14:12:40 +0200 (CEST) From: Philippe CASIDY Subject: Adaptec 1505 To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: TEXT/plain; CHARSET=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi! Does someone is working on a driver for this controller or do I have to fallback to 2.2.8-RELEASE? Thanks Phil. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 5:23:51 1999 Delivered-To: freebsd-questions@freebsd.org Received: from ares.maths.adelaide.edu.au (Ares.maths.adelaide.edu.au [129.127.44.147]) by hub.freebsd.org (Postfix) with ESMTP id 27981155C2 for ; Tue, 17 Aug 1999 05:23:46 -0700 (PDT) (envelope-from glewis@ares.maths.adelaide.edu.au) Received: (from glewis@localhost) by ares.maths.adelaide.edu.au (8.9.3/8.9.3) id VAA05695; Tue, 17 Aug 1999 21:54:36 +0930 (CST) (envelope-from glewis) From: Greg Lewis Message-Id: <199908171224.VAA05695@ares.maths.adelaide.edu.au> Subject: Re: Apsfilter In-Reply-To: <37B950DD.74F27113@pchost.com> from Kyle Buttress at "Aug 17, 1999 10:09:01 pm" To: Kyle Buttress Date: Tue, 17 Aug 1999 21:54:36 +0930 (CST) Cc: FreeBSD Questions List X-Mailer: ELM [version 2.4ME+ PL56 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > I have been trying to install apsfilter but have a problem when I try and install transfig > > it returns the following error. > > ===> Configuring for transfig-3.2.1 > xmkmf: not found > *** Error code 127 > > Anyone know how to fix this problem Sounds like X is either not installed or not in your path. -- Greg Lewis glewis@trc.adelaide.edu.au Computing Officer +61 8 8303 5083 Teletraffic Research Centre To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 5:35:11 1999 Delivered-To: freebsd-questions@freebsd.org Received: from ares.maths.adelaide.edu.au (Ares.maths.adelaide.edu.au [129.127.44.147]) by hub.freebsd.org (Postfix) with ESMTP id 28B59155D9 for ; Tue, 17 Aug 1999 05:35:06 -0700 (PDT) (envelope-from glewis@ares.maths.adelaide.edu.au) Received: (from glewis@localhost) by ares.maths.adelaide.edu.au (8.9.3/8.9.3) id WAA05786; Tue, 17 Aug 1999 22:06:18 +0930 (CST) (envelope-from glewis) From: Greg Lewis Message-Id: <199908171236.WAA05786@ares.maths.adelaide.edu.au> Subject: Re: Crontab entry question... In-Reply-To: from William Melanson at "Aug 16, 1999 09:58:12 pm" To: William Melanson Date: Tue, 17 Aug 1999 22:06:18 +0930 (CST) Cc: freebsd-questions@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL56 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > This is the current crontab enrty I have to fire up a simple shell > script: > > #Run at 8:30pm, Monday August 16th > 30 20 16 8 mon /usr/home/user1/script.sh > > My question is how do I (would you) modify this entry to run this > script every 10mins (open ended) starting at say... 8:30pm same day > and month? You can run it every ten minutes with an entry like this: 0,10,20,30,40,50 * * * * /usr/home/user1/script.sh If you want it to start running every ten minutes at a given time you'll need to do something like setting up an earlier cron entry that adds the above line to the crontab at the appropriate time. But since its past August 16th you prolly don't care when it starts... -- Greg Lewis glewis@trc.adelaide.edu.au Computing Officer +61 8 8303 5083 Teletraffic Research Centre To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 5:41:53 1999 Delivered-To: freebsd-questions@freebsd.org Received: from ares.maths.adelaide.edu.au (Ares.maths.adelaide.edu.au [129.127.44.147]) by hub.freebsd.org (Postfix) with ESMTP id 85DC9155D9 for ; Tue, 17 Aug 1999 05:41:49 -0700 (PDT) (envelope-from glewis@ares.maths.adelaide.edu.au) Received: (from glewis@localhost) by ares.maths.adelaide.edu.au (8.9.3/8.9.3) id WAA05816; Tue, 17 Aug 1999 22:15:22 +0930 (CST) (envelope-from glewis) From: Greg Lewis Message-Id: <199908171245.WAA05816@ares.maths.adelaide.edu.au> Subject: Re: Quotas. In-Reply-To: from matt at "Aug 17, 1999 07:55:09 am" To: matt Date: Tue, 17 Aug 1999 22:15:22 +0930 (CST) Cc: questions@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL56 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > I have two questions, testing some theories with an odd problem of > mine; A) Is it possible that quota would mishandle a 9.3 GB partition? Can't be certain, but I have two partitions around that size (2 9Gb drives) and it handles them fine. > B) Is it possible that a minor/major problem with a hard drive would cause > quota but nothing else to 'freak out'? For reference, the machine is > FreeBSD 3.2-Stable as of August 6th, the hard drive is a 13 GB Quantum > Fireball, IDE. (Apologies for those on the -stable list that already > have seen this email, cross-posted to -questions after absolutly no > responses on -stable) I'm guessing that if the actual quota data (quota.user or quota.group) got corrupted it may make things unhappy. It could be a recent problem in -stable but I've seen no previous postings to that effect. -- Greg Lewis glewis@trc.adelaide.edu.au Computing Officer +61 8 8303 5083 Teletraffic Research Centre To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 5:58:52 1999 Delivered-To: freebsd-questions@freebsd.org Received: from POSTAL.CSELT.IT (postal.cselt.it [163.162.4.5]) by hub.freebsd.org (Postfix) with ESMTP id 306A114DC4 for ; Tue, 17 Aug 1999 05:58:47 -0700 (PDT) (envelope-from Fabrizio.Invernizzi@CSELT.IT) Received: from satchmo (satchmo.cselt.it) by POSTAL.CSELT.IT (PMDF V4.2-15 #4385) id <01JEVMB8EGHS0079AQ@POSTAL.CSELT.IT>; Tue, 17 Aug 1999 14:57:18 MET Date: Tue, 17 Aug 1999 14:55:57 +0200 (MET DST) From: Fabrizio Invernizzi Subject: Upgrading Freebsd3.1 to 3.2 To: FreeBSD QUESTIONS Cc: Guardini Ivano Message-id: MIME-version: 1.0 Content-type: TEXT/PLAIN; charset=US-ASCII Content-transfer-encoding: 7BIT Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Can anyone suggest me a "painless" procedure to upgrade a FreeBSD3.1 workstation to 3.2? Fabrizio Invernizzi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 6:14: 1 1999 Delivered-To: freebsd-questions@freebsd.org Received: from dns.ie-online.it (dns.ie-online.it [194.133.148.8]) by hub.freebsd.org (Postfix) with ESMTP id 4C90014DC4 for ; Tue, 17 Aug 1999 06:13:57 -0700 (PDT) (envelope-from sriva@alice.it) Received: from dns.ie-interna.it (host-ie-trezzano.ie-online.it [194.133.148.44]) by dns.ie-online.it (8.8.8/8.8.8) with ESMTP id PAA28529; Tue, 17 Aug 1999 15:13:03 +0200 (CEST) (envelope-from sriva@alice.it) Received: from stefano (stefano.ie-interna.it [192.168.0.33]) by dns.ie-interna.it (8.8.8/8.8.8) with SMTP id PAA24405; Tue, 17 Aug 1999 15:13:02 +0200 (CEST) (envelope-from sriva@alice.it) Message-Id: <3.0.5.32.19990817151302.02f56550@relay.alice.it> X-Sender: riva@relay.alice.it X-Mailer: QUALCOMM Windows Eudora Pro Version 3.0.5 (32) Date: Tue, 17 Aug 1999 15:13:02 +0200 To: JMS Internet From: Stefano Riva Subject: Re: Tape Backup Devices Cc: freebsd-questions@FreeBSD.ORG In-Reply-To: <4.1.19990817032736.01a37c30@mail.sirius.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG At 03.40 17/08/99 -0700, you wrote: >If anyone could suggest what types of drives are supported, or have a >reference to how to setup and run these devices, I would greatly appreciate >it... I'm using an HP SureStore T4 (Travan) SCSI and it works very well. I'm also using three HP DATs SCSI (DDS-1 and DDS-3 tapes) without problems. As for setup, if it's SCSI just connect the drive and boot FreeBSD... You should see the drive and the device (check with dmesg(8) or look in /var/log/messages if you miss it). You don't need any configuration. Plug and play... :-) As for running, I'm using tar(1) and dump(8)/restore(8). I'd like to try Amanda from the ports, but I never find the time. Look at the ports for other applications. --- Stefano Riva Software Engineer - Systems Administrator Informazioni Editoriali I.E. Srl Voice +39-02283151, Fax +39-0228315900 Email sriva@alice.it To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 6:14:36 1999 Delivered-To: freebsd-questions@freebsd.org Received: from dns02.arpa-canada.net (dns02.arpa-canada.net [209.104.118.66]) by hub.freebsd.org (Postfix) with SMTP id 4058014DC4 for ; Tue, 17 Aug 1999 06:14:32 -0700 (PDT) (envelope-from matt@MLINK.NET) Received: (qmail 2097 invoked by uid 1000); 17 Aug 1999 13:15:00 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 17 Aug 1999 13:15:00 -0000 Date: Tue, 17 Aug 1999 09:15:00 -0400 (EDT) From: matt X-Sender: matt@dns02.arpa-canada.net To: Greg Lewis Cc: questions@FreeBSD.ORG Subject: Re: Quotas. In-Reply-To: <199908171245.WAA05816@ares.maths.adelaide.edu.au> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, 17 Aug 1999, Greg Lewis wrote: [...] : I'm guessing that if the actual quota data (quota.user or quota.group) got : corrupted it may make things unhappy. It could be a recent problem in : -stable but I've seen no previous postings to that effect. That's possible, Though I can't say for 100% certain that the quota.user data did not get corrupted, I find it odd that it would corrupt 100% of the time on only one machine. Also, if this were a problem with -stable, it would be well over a month old, which is when I first encountered it, the only thing holding back a post, was my lack of willingness to jump the gun saying it's a software problem when I do not believe it is, as I have another machine of the same configuration and date of release that quota works fine on. (8.3G western digital with ~3Gb partitions) : -- : Greg Lewis glewis@trc.adelaide.edu.au : Computing Officer +61 8 8303 5083 : Teletraffic Research Centre Matt -- matt@MLINK.NET To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 6:21:54 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail.tucows.com (mail.tucows.com [208.229.216.23]) by hub.freebsd.org (Postfix) with ESMTP id 6B8D915643 for ; Tue, 17 Aug 1999 06:21:26 -0700 (PDT) (envelope-from arthur@tucows.com) Received: from Arthur.Linuxberg (starwars.linuxberg.org [208.229.216.41]) by mail.tucows.com (8.9.3/8.9.1) with ESMTP id JAA29658; Tue, 17 Aug 1999 09:18:33 -0400 Received: from localhost (arthur@localhost) by Arthur.Linuxberg (8.9.3/8.9.3) with ESMTP id JAA67741; Tue, 17 Aug 1999 09:18:40 -0400 (EDT) X-Authentication-Warning: Arthur.Linuxberg: arthur owned process doing -bs Date: Tue, 17 Aug 1999 09:18:39 -0400 (EDT) From: "Arthur H. Johnson II" X-Sender: arthur@Arthur.Linuxberg To: Carlos J Garcia Cc: FreeBSD-questions@FreeBSD.ORG Subject: Re: Install help needed. In-Reply-To: <000501bee836$528860e0$3a94e3c7@gate.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG You could try moving the CD-ROM to slave. Arthur H. Johnson II http://www.linuxberg.com Linuxberg Manager arthur@tucows.com On Mon, 16 Aug 1999, Carlos J Garcia wrote: > I am trying to install FreeBSD on my computer but it can not find my CD-ROM. > My computer is a HP 4440 with an AMD-K6-2/333 with 64 Mb of RAM. > I partitioned the hard drive with Partition Commander and then tried to > install > FreeBSD 3.2 from the cd. I turned off the computer with the FreeBSD cd in > the cd-rom drive. I then turn on the computer and it boots from the cd. > When it probes the computer it cant find the cd drive. It will show all the > menus > until I chose cd at the install medium menu then I get C.D.-ROOM drive not > found. > I already opened the computer the C.D. is connected to master . The C.D. > drive > is made by LG Electronics in Korea model CRD 8322B it came installed > with the computer . > > THANKS IN ADVANCE. > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 6:22: 9 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail.tucows.com (mail.tucows.com [208.229.216.23]) by hub.freebsd.org (Postfix) with ESMTP id 13F3714E24 for ; Tue, 17 Aug 1999 06:22:06 -0700 (PDT) (envelope-from arthur@tucows.com) Received: from Arthur.Linuxberg (starwars.linuxberg.org [208.229.216.41]) by mail.tucows.com (8.9.3/8.9.1) with ESMTP id JAA29727; Tue, 17 Aug 1999 09:21:16 -0400 Received: from localhost (arthur@localhost) by Arthur.Linuxberg (8.9.3/8.9.3) with ESMTP id JAA68068; Tue, 17 Aug 1999 09:21:23 -0400 (EDT) X-Authentication-Warning: Arthur.Linuxberg: arthur owned process doing -bs Date: Tue, 17 Aug 1999 09:21:22 -0400 (EDT) From: "Arthur H. Johnson II" X-Sender: arthur@Arthur.Linuxberg To: Fro Joe Cc: freebsd-questions@FreeBSD.ORG Subject: Re: PPP nothing happens!!! In-Reply-To: <000c01bee83a$8cfeab40$97e336ce@mypc.myhost.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Are you using user ppp or kernel ppp? I set up PPP the same way under FreeBSD that I used to set it up in Linux and it works great but I am using Kernel PPP. Arthur H. Johnson II http://www.linuxberg.com Linuxberg Manager arthur@tucows.com On Mon, 16 Aug 1999, Fro Joe wrote: > I even enter the terminal mode and it is always like one character BEHIND > what I type... if I typed "ATDT" it would only show ATD... then if I pressed > space it'd be ATDT... my modem is a real modem... a 3Com/USR Fax Modem > (Akita OEM)... > > the kernel finds it and nothing happens in PPP... so thanks to this and not > enough help to be easily found... I switched over to Linux for my proxy > because they have the how-to's to get you going... I know I'll lose like 30% > on my multi-PPP connection, but at least I can find the help w/o having to > wait for a response... if anyone can help me with this I will consider > reinstalling FreeBSD 3.2... but a big recommendation I have is get some > better how-to's and such for help... > > Please send a copy of responses to me @ tennies@uwplatt.edu > > Joe Tennies... an unpleased customer > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 6:22:58 1999 Delivered-To: freebsd-questions@freebsd.org Received: from dns.ie-online.it (dns.ie-online.it [194.133.148.8]) by hub.freebsd.org (Postfix) with ESMTP id BA83015665 for ; Tue, 17 Aug 1999 06:22:54 -0700 (PDT) (envelope-from sriva@alice.it) Received: from dns.ie-interna.it (host-ie-trezzano.ie-online.it [194.133.148.44]) by dns.ie-online.it (8.8.8/8.8.8) with ESMTP id PAA28811; Tue, 17 Aug 1999 15:23:24 +0200 (CEST) (envelope-from sriva@alice.it) Received: from stefano (stefano.ie-interna.it [192.168.0.33]) by dns.ie-interna.it (8.8.8/8.8.8) with SMTP id PAA24460; Tue, 17 Aug 1999 15:23:24 +0200 (CEST) (envelope-from sriva@alice.it) Message-Id: <3.0.5.32.19990817152324.00c0b5e0@relay.alice.it> X-Sender: riva@relay.alice.it X-Mailer: QUALCOMM Windows Eudora Pro Version 3.0.5 (32) Date: Tue, 17 Aug 1999 15:23:24 +0200 To: Fabrizio Invernizzi From: Stefano Riva Subject: Re: Upgrading Freebsd3.1 to 3.2 Cc: freebsd-questions@FreeBSD.ORG In-Reply-To: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG At 14.55 17/08/99 +0200, you wrote: >Can anyone suggest me a "painless" procedure to upgrade a FreeBSD3.1 >workstation to 3.2? Link the -stable tree: http://www.freebsd.org/handbook/synching.html http://www.freebsd.org/handbook/stable.html It isn't really "painless", but it's easier to do it than to explain it. If you need further assistance (in Italian, maybe... :-)) contact me by mail. --- Stefano Riva Software Engineer - Systems Administrator Informazioni Editoriali I.E. Srl Voice +39-02283151, Fax +39-0228315900 Email sriva@alice.it To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 6:23:33 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail.tucows.com (mail.tucows.com [208.229.216.23]) by hub.freebsd.org (Postfix) with ESMTP id 87236156AB for ; Tue, 17 Aug 1999 06:23:30 -0700 (PDT) (envelope-from arthur@tucows.com) Received: from Arthur.Linuxberg (starwars.linuxberg.org [208.229.216.41]) by mail.tucows.com (8.9.3/8.9.1) with ESMTP id JAA29819; Tue, 17 Aug 1999 09:23:59 -0400 Received: from localhost (arthur@localhost) by Arthur.Linuxberg (8.9.3/8.9.3) with ESMTP id JAA68540; Tue, 17 Aug 1999 09:24:06 -0400 (EDT) X-Authentication-Warning: Arthur.Linuxberg: arthur owned process doing -bs Date: Tue, 17 Aug 1999 09:24:06 -0400 (EDT) From: "Arthur H. Johnson II" X-Sender: arthur@Arthur.Linuxberg To: Charlie Root Cc: Roy Bettle , Doug , Thomas Good , freebsd-questions@FreeBSD.ORG Subject: Re: Question about the mascot In-Reply-To: <37B30556.5C61CBD7@charm.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Okay, my 2c, I really can't see how anyone can find the Berkely Mascot offensive, he is just too cute. Arthur H. Johnson II http://www.linuxberg.com Linuxberg Manager arthur@tucows.com On Thu, 12 Aug 1999, Charlie Root wrote: > Roy Bettle wrote: > > > > PEOPLE!! Have we nothing better to do than bitch-and-moan about the f***ing logo? You > > don't like the logo? USE WINDOWS NT!! > > > > Take your pick: > > > > FreeBSD - offensive logo (to some anyway), awesome reliability > > Windows NT - offensive reliability, awesome logo (to some anyway) > > > > Take your pick and then shut the hell up so the rest of us trying to learn FreeBSD don't > > have to wade through 300,000,000 messages about how your amazingly inflexible brain > > can't reconcile the differences between a daemon and a demon! > > > > Just my $0.02. > > > > RAB > > Cool. CNBC - Red Hat IPO starting at 14 $US is now 72$US and looks good. > Take the profts fri and go to the beach. The RH Spy Lookin Logo worked. > Back to the mail filter. > > -d 'why does SAM v2 poke me in the back, today?' > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 6:28:35 1999 Delivered-To: freebsd-questions@freebsd.org Received: from dns.ie-online.it (dns.ie-online.it [194.133.148.8]) by hub.freebsd.org (Postfix) with ESMTP id E6EE714E24 for ; Tue, 17 Aug 1999 06:28:30 -0700 (PDT) (envelope-from sriva@alice.it) Received: from dns.ie-interna.it (host-ie-trezzano.ie-online.it [194.133.148.44]) by dns.ie-online.it (8.8.8/8.8.8) with ESMTP id PAA28907; Tue, 17 Aug 1999 15:27:47 +0200 (CEST) (envelope-from sriva@alice.it) Received: from stefano (stefano.ie-interna.it [192.168.0.33]) by dns.ie-interna.it (8.8.8/8.8.8) with SMTP id PAA24486; Tue, 17 Aug 1999 15:27:46 +0200 (CEST) (envelope-from sriva@alice.it) Message-Id: <3.0.5.32.19990817152746.00c9f450@relay.alice.it> X-Sender: riva@relay.alice.it X-Mailer: QUALCOMM Windows Eudora Pro Version 3.0.5 (32) Date: Tue, 17 Aug 1999 15:27:46 +0200 To: "Andre Doro" From: Stefano Riva Subject: Re: RAID 5 Cc: freebsd-questions@FreeBSD.ORG In-Reply-To: <19990817114956.73209.qmail@hotmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG At 04.49 17/08/99 PDT, you wrote: > I need know if FreeBSD support a Mylex RAID-5 card, =B4cause I have a= =20 >server machine with Mylex RAID 5 and I would like install FreeBSD. Do you= =20 >know ?! FreeBSD works with Mylex's SCSI-to-SCSI RAID controllers. If your controller isn't SCSI-to-SCSI (if it's a PCI adapter, I mean) I know someone is working on a driver, but to my knowledge it hasn't been "released" yet. --- Stefano Riva Software Engineer - Systems Administrator Informazioni Editoriali I.E. Srl Voice +39-02283151, Fax +39-0228315900 Email sriva@alice.it To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 6:31:36 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail.tucows.com (mail.tucows.com [208.229.216.23]) by hub.freebsd.org (Postfix) with ESMTP id A261F14E24 for ; Tue, 17 Aug 1999 06:31:34 -0700 (PDT) (envelope-from arthur@tucows.com) Received: from Arthur.Linuxberg (starwars.linuxberg.org [208.229.216.41]) by mail.tucows.com (8.9.3/8.9.1) with ESMTP id JAA30047; Tue, 17 Aug 1999 09:31:25 -0400 Received: from localhost (arthur@localhost) by Arthur.Linuxberg (8.9.3/8.9.3) with ESMTP id JAA68764; Tue, 17 Aug 1999 09:31:31 -0400 (EDT) X-Authentication-Warning: Arthur.Linuxberg: arthur owned process doing -bs Date: Tue, 17 Aug 1999 09:31:31 -0400 (EDT) From: "Arthur H. Johnson II" X-Sender: arthur@Arthur.Linuxberg To: JMS Internet Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Tape Backup Devices In-Reply-To: <4.1.19990817032736.01a37c30@mail.sirius.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I do believe there is a QIC-80 driver in the kernel. Arthur H. Johnson II http://www.linuxberg.com Linuxberg Manager arthur@tucows.com On Tue, 17 Aug 1999, JMS Internet wrote: > I'm currently looking for a tape or other type of backup that I could use > with FreeBSD.. I'm using version 3.2. I have ran across the following > drives and I would like to find out if anyone has or is currently using > them successfully: > 1. Onstream 30 gig Parallel Port device (also available in IDE, and SCSI) > Non-traditional tape drive, files can be executed from the device could > possibly only be used with windows software, but I'm not sure. > 2. Sony SuperStation 6.6/10 gig Parallel port (also available in IDE) > As far as I can tell this is a normal tape drive > 3. There are also Colorado tape drives available in my town, but I was told > they are not supported. > > If anyone could suggest what types of drives are supported, or have a > reference to how to setup and run these devices, I would greatly appreciate > it... > > Thanks guys... > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 6:33:30 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail.tucows.com (mail.tucows.com [208.229.216.23]) by hub.freebsd.org (Postfix) with ESMTP id AFE08155C2 for ; Tue, 17 Aug 1999 06:33:28 -0700 (PDT) (envelope-from arthur@tucows.com) Received: from Arthur.Linuxberg (starwars.linuxberg.org [208.229.216.41]) by mail.tucows.com (8.9.3/8.9.1) with ESMTP id JAA30125; Tue, 17 Aug 1999 09:33:28 -0400 Received: from localhost (arthur@localhost) by Arthur.Linuxberg (8.9.3/8.9.3) with ESMTP id JAA68786; Tue, 17 Aug 1999 09:33:35 -0400 (EDT) X-Authentication-Warning: Arthur.Linuxberg: arthur owned process doing -bs Date: Tue, 17 Aug 1999 09:33:35 -0400 (EDT) From: "Arthur H. Johnson II" X-Sender: arthur@Arthur.Linuxberg To: Kyle Buttress Cc: FreeBSD Questions List Subject: Re: Apsfilter In-Reply-To: <37B950DD.74F27113@pchost.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I don't know how to fix it, but it looks like a version of make is missing from your system. I have no idea which package xmkmf (a kind of make for X) comes in, but you might want to try make and gmake. Arthur H. Johnson II http://www.linuxberg.com Linuxberg Manager arthur@tucows.com On Tue, 17 Aug 1999, Kyle Buttress wrote: > Hi, > > I have been trying to install apsfilter but have a problem when I try and install transfig > > it returns the following error. > > ===> Configuring for transfig-3.2.1 > xmkmf: not found > *** Error code 127 > > Anyone know how to fix this problem > > kyle > > -- > Gauls! We have nothing to fear; except perhaps that the sky may fall > on our heads tomorrow. But as we all know, tomorrow never comes!! > -- Adventures of Asterix. > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 6:55:12 1999 Delivered-To: freebsd-questions@freebsd.org Received: from dart.sr.se (dart.SR.SE [193.12.91.98]) by hub.freebsd.org (Postfix) with ESMTP id BF779156B0 for ; Tue, 17 Aug 1999 06:54:56 -0700 (PDT) (envelope-from gunnar@pluto.sr.se) Received: from honken.sr.se ([134.25.128.27]) by dart.sr.se (8.9.3/8.9.3) with ESMTP id PAA09350; Tue, 17 Aug 1999 15:54:07 +0200 (MET DST) Received: from pluto.sr.se (pluto.SR.SE [134.25.193.91]) by honken.sr.se (8.7.5/8.7.3) with ESMTP id PAA05083; Tue, 17 Aug 1999 15:54:06 +0200 (MET DST) Received: (from gunnar@localhost) by pluto.sr.se (8.9.3/8.9.1) id PAA01462; Tue, 17 Aug 1999 15:54:06 +0200 (CEST) (envelope-from gunnar) Date: Tue, 17 Aug 1999 15:54:06 +0200 From: Gunnar Flygt To: Fabrizio Invernizzi Cc: FreeBSD Questions Subject: Re: Upgrading Freebsd3.1 to 3.2 Message-ID: <19990817155406.A1436@sr.se> Reply-To: Gunnar Flygt References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.6i In-Reply-To: ; from Fabrizio Invernizzi on Tue, Aug 17, 1999 at 02:55:57PM +0200 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, Aug 17, 1999 at 02:55:57PM +0200, Fabrizio Invernizzi wrote: > > Can anyone suggest me a "painless" procedure to upgrade a FreeBSD3.1 > workstation to 3.2? I used the CD! And choose upgrade in sysinstall. Works like a breeze -- __o regards, Gunnar ---_ \<,_ email: flygt@sr.se ---- (_)/ (_) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 7: 0:25 1999 Delivered-To: freebsd-questions@freebsd.org Received: from dart.sr.se (dart.SR.SE [193.12.91.98]) by hub.freebsd.org (Postfix) with ESMTP id 64C8215018 for ; Tue, 17 Aug 1999 07:00:13 -0700 (PDT) (envelope-from gunnar@pluto.sr.se) Received: from honken.sr.se ([134.25.128.27]) by dart.sr.se (8.9.3/8.9.3) with ESMTP id PAA09680; Tue, 17 Aug 1999 15:59:29 +0200 (MET DST) Received: from pluto.sr.se (pluto.SR.SE [134.25.193.91]) by honken.sr.se (8.7.5/8.7.3) with ESMTP id PAA05364; Tue, 17 Aug 1999 15:59:28 +0200 (MET DST) Received: (from gunnar@localhost) by pluto.sr.se (8.9.3/8.9.1) id PAA01535; Tue, 17 Aug 1999 15:59:28 +0200 (CEST) (envelope-from gunnar) Date: Tue, 17 Aug 1999 15:59:28 +0200 From: Gunnar Flygt To: "Arthur H. Johnson II" Cc: FreeBSD Questions Subject: Re: Apsfilter Message-ID: <19990817155928.B1436@sr.se> Reply-To: Gunnar Flygt References: <37B950DD.74F27113@pchost.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.6i In-Reply-To: ; from Arthur H. Johnson II on Tue, Aug 17, 1999 at 09:33:35AM -0400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, Aug 17, 1999 at 09:33:35AM -0400, Arthur H. Johnson II wrote: > I don't know how to fix it, but it looks like a version of make is missing > from your system. I have no idea which package xmkmf (a kind of make for > X) comes in, but you might want to try make and gmake. No, this is wrong! xmkmf makes Makefiles out of Imake files Read the man xmkmf. I'm almost absolutely sure that it comes with the X11R6 distribution, since I've never installed it. The errors I've seen when trying to install where the installation wants xmkmf is that the file is not found, and that only due to that /usr/X11R6/bin is not by default in root's PATH. The file is in /usr/X11R6/bin/ It's ususally X11 apps that want to use xmkmf, but only to create a real Makefile so that make can continue it's work. > > Hi, > > > > I have been trying to install apsfilter but have a problem when I try and install transfig > > > > it returns the following error. > > > > ===> Configuring for transfig-3.2.1 > > xmkmf: not found > > *** Error code 127 > > > > Anyone know how to fix this problem > > > > kyle > > > > -- > > Gauls! We have nothing to fear; except perhaps that the sky may fall > > on our heads tomorrow. But as we all know, tomorrow never comes!! > > -- Adventures of Asterix. > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- __o regards, Gunnar ---_ \<,_ email: flygt@sr.se ---- (_)/ (_) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 7: 4:26 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail.tucows.com (mail.tucows.com [208.229.216.23]) by hub.freebsd.org (Postfix) with ESMTP id E0CC815696 for ; Tue, 17 Aug 1999 07:04:15 -0700 (PDT) (envelope-from arthur@tucows.com) Received: from Arthur.Linuxberg (starwars.linuxberg.org [208.229.216.41]) by mail.tucows.com (8.9.3/8.9.1) with ESMTP id KAA31194; Tue, 17 Aug 1999 10:04:45 -0400 Received: from localhost (arthur@localhost) by Arthur.Linuxberg (8.9.3/8.9.3) with ESMTP id KAA00470; Tue, 17 Aug 1999 10:04:27 -0400 (EDT) X-Authentication-Warning: Arthur.Linuxberg: arthur owned process doing -bs Date: Tue, 17 Aug 1999 10:04:26 -0400 (EDT) From: "Arthur H. Johnson II" X-Sender: arthur@Arthur.Linuxberg To: Gunnar Flygt Cc: FreeBSD Questions Subject: Re: Apsfilter In-Reply-To: <19990817155928.B1436@sr.se> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Okay. I didn't know. I just thought it came with Make. Ive never had it missing before! But then again, ive never ran a system without X or Make. Arthur H. Johnson II http://www.linuxberg.com Linuxberg Manager arthur@tucows.com On Tue, 17 Aug 1999, Gunnar Flygt wrote: > On Tue, Aug 17, 1999 at 09:33:35AM -0400, Arthur H. Johnson II wrote: > > I don't know how to fix it, but it looks like a version of make is missing > > from your system. I have no idea which package xmkmf (a kind of make for > > X) comes in, but you might want to try make and gmake. > > No, this is wrong! xmkmf makes Makefiles out of Imake files Read the man > xmkmf. I'm almost absolutely sure that it comes with the X11R6 > distribution, since I've never installed it. The errors I've seen when > trying to install where the installation wants xmkmf is that the file is > not found, and that only due to that /usr/X11R6/bin is not by default in > root's PATH. The file is in /usr/X11R6/bin/ > > It's ususally X11 apps that want to use xmkmf, but only to create a real > Makefile so that make can continue it's work. > > > > Hi, > > > > > > I have been trying to install apsfilter but have a problem when I try and install transfig > > > > > > it returns the following error. > > > > > > ===> Configuring for transfig-3.2.1 > > > xmkmf: not found > > > *** Error code 127 > > > > > > Anyone know how to fix this problem > > > > > > kyle > > > > > > -- > > > Gauls! We have nothing to fear; except perhaps that the sky may fall > > > on our heads tomorrow. But as we all know, tomorrow never comes!! > > > -- Adventures of Asterix. > > > > > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > with "unsubscribe freebsd-questions" in the body of the message > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > -- > __o > regards, Gunnar ---_ \<,_ > email: flygt@sr.se ---- (_)/ (_) > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 7:15:13 1999 Delivered-To: freebsd-questions@freebsd.org Received: from server1.cctinc.net (colocation-cybercom2.citywalk.net [209.118.223.2]) by hub.freebsd.org (Postfix) with ESMTP id 14ACE156A4 for ; Tue, 17 Aug 1999 07:15:07 -0700 (PDT) (envelope-from hostmaster@cctinc.net) Received: from cctinc.net ([209.118.223.149]) by server1.cctinc.net (8.8.7/8.8.7) with ESMTP id KAA25566 for ; Tue, 17 Aug 1999 10:13:53 -0400 (EDT) (envelope-from hostmaster@cctinc.net) Message-ID: <37B96E4D.CB903198@cctinc.net> Date: Tue, 17 Aug 1999 10:14:38 -0400 From: Mike Alich Organization: Web Hosting Technologies, Inc. X-Mailer: Mozilla 4.51 [en] (Win98; I) X-Accept-Language: en MIME-Version: 1.0 To: questions@freebsd.org Subject: Font Page 2000 Extentions Content-Type: multipart/mixed; boundary="------------6B359DDC05CC8BF878535200" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. --------------6B359DDC05CC8BF878535200 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Can anyone tell me where I can get either the Apache with SSL and FP2000 extentions or just the FP2000 ext. for FreeBSD? This is a nightmare trying to find these extentions. Thanks in advanced! -Mike -- Web Hosting Technologies, Inc. Tel: 561.841.2669 / Toll Free: 877.841.2669 http://www.whtech.net Mike Alich mike@whtech.net Web Hosting and Internet Solutions. Virtual Web Hosting $19.95 per month Reseller Program Available --------------6B359DDC05CC8BF878535200 Content-Type: text/x-vcard; charset=us-ascii; name="hostmaster.vcf" Content-Transfer-Encoding: 7bit Content-Description: Card for Mike Alich Content-Disposition: attachment; filename="hostmaster.vcf" begin:vcard n:Alich;Mike tel;pager:561.885.6315 tel;work:561.841.2669 x-mozilla-html:FALSE url:http://www.whtech.net org:Web Hosting Technologies, Inc. adr:;;13221 Crisa Drive;Palm Beach Gardens;Florida;33410;US version:2.1 email;internet:mike@whtech.net fn:Mike Alich end:vcard --------------6B359DDC05CC8BF878535200-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 7:15:29 1999 Delivered-To: freebsd-questions@freebsd.org Received: from POSTAL.CSELT.IT (postal.cselt.it [163.162.4.5]) by hub.freebsd.org (Postfix) with ESMTP id B6A00156A4 for ; Tue, 17 Aug 1999 07:15:18 -0700 (PDT) (envelope-from Fabrizio.Invernizzi@CSELT.IT) Received: from satchmo (satchmo.cselt.it) by POSTAL.CSELT.IT (PMDF V4.2-15 #4385) id <01JEVOYM068G007MVJ@POSTAL.CSELT.IT>; Tue, 17 Aug 1999 16:13:25 MET Date: Tue, 17 Aug 1999 16:12:04 +0200 (MET DST) From: Fabrizio Invernizzi Subject: Re: Upgrading Freebsd3.1 to 3.2 In-reply-to: <19990817155406.A1436@sr.se> To: Gunnar Flygt Cc: FreeBSD Questions Message-id: MIME-version: 1.0 Content-type: TEXT/PLAIN; charset=US-ASCII Content-transfer-encoding: 7BIT Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, 17 Aug 1999, Gunnar Flygt wrote: > On Tue, Aug 17, 1999 at 02:55:57PM +0200, Fabrizio Invernizzi wrote: > > > > Can anyone suggest me a "painless" procedure to upgrade a FreeBSD3.1 > > workstation to 3.2? > > I used the CD! And choose upgrade in sysinstall. Works like a breeze > > -- > __o > regards, Gunnar ---_ \<,_ > email: flygt@sr.se ---- (_)/ (_) > And didn't lose any data or configurations ? Fabrizio To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 7:41:13 1999 Delivered-To: freebsd-questions@freebsd.org Received: from web1304.mail.yahoo.com (web1304.mail.yahoo.com [128.11.23.154]) by hub.freebsd.org (Postfix) with SMTP id 3D30C14D3D for ; Tue, 17 Aug 1999 07:41:09 -0700 (PDT) (envelope-from g_tarnowski@yahoo.com) Message-ID: <19990817144349.26024.rocketmail@web1304.mail.yahoo.com> Received: from [198.138.218.2] by web1304.mail.yahoo.com; Tue, 17 Aug 1999 07:43:49 PDT Date: Tue, 17 Aug 1999 07:43:49 -0700 (PDT) From: Gregory Tarnowski Subject: One large file for FreeBSD To: freebsd-questions@FreeBSD.ORG MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, I heard about FreeBSD from one of my instructors and wanted to give it a try. I see that there are a lot of different files and directories on the FTP site and am unsure of what I need. I would prefer to download one large .ZIP or compressed file containing the entire distribution. Do you have such a file for downloading. I have a fractional T1 and would prefer to get the whole set of files in one download. Any info would be appreciated. Thanks in advance. Greg Tarnowski g_tarnowski@yahoo.com _________________________________________________________ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 7:47:40 1999 Delivered-To: freebsd-questions@freebsd.org Received: from srv4inet.mymail.com.br (srv4inet.tba.com.br [200.202.37.5]) by hub.freebsd.org (Postfix) with SMTP id 5243814C95 for ; Tue, 17 Aug 1999 07:46:33 -0700 (PDT) (envelope-from fsc@mymail.com.br) Received: from livdial10.vetorialnet.com.br (livdial10.vetorialnet.com.br [200.248.179.106]) by srv4inet.mymail.com.br (NTMail 3.03.0017/1.ahjw) with ESMTP id la084407 for ; Tue, 17 Aug 1999 11:43:38 -0300 Message-Id: <1.5.4.32.19990817144814.0097ff10@mymail.com.br> X-Sender: fsc@mymail.com.br X-Mailer: Windows Eudora Light Version 1.5.4 (32) Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Date: Tue, 17 Aug 1999 11:48:14 -0300 To: freebsd-questions@FreeBSD.ORG From: Fabio da Silva Cunha Subject: Mail routing on the Intranet / Internet - FreeBSD Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi Friends! I have a litle problem:=20 I have a small intranet (3 Sites conected by leased lines with routers) and i need to connect it=20 to the internet to send and receive e-mail.=20 All Sites have one FreeBSD 2.2.8 Mail Server with Sendmail 8.8.8, and uses private address. The Head Office uses a FreeBSD 2.2.8 (Sendmail 8.8.8) with two network interfaces: one private=20 conected to the intranet, and one public, conected to the internet by the firewall (FreeBSD 3.2). =20 My network: |---------------| loc1.domain.com.br | | ---------------------- 10.1.1.x | Head Office | | mail server 1 |-------------| | ---------------------- | | | | loc2.domain.com.br | domain.com.br | ---------------------- 10.1.2.x | | 200.x.x.x [--------] | mail server 2 |-------------| Mail |------------[FIREWALL]--> INTERNET ---------------------- | Server4 | [--------] | | loc3.domain.com.br | | ---------------------- 10.1.3.x | | | mail server 3 |-------------| | ---------------------- |---------------| The problem: How to route mail beetwen these 3 locations and the internet through the Mail Server4 in Head Office. Any ideas? Thanks in advance! Regards, F=E1bio da Silva Cunha To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 7:47:56 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail.tucows.com (mail.tucows.com [208.229.216.23]) by hub.freebsd.org (Postfix) with ESMTP id CD66A15657 for ; Tue, 17 Aug 1999 07:47:51 -0700 (PDT) (envelope-from arthur@tucows.com) Received: from Arthur.Linuxberg (starwars.linuxberg.org [208.229.216.41]) by mail.tucows.com (8.9.3/8.9.1) with ESMTP id KAA00421; Tue, 17 Aug 1999 10:48:21 -0400 Received: from localhost (arthur@localhost) by Arthur.Linuxberg (8.9.3/8.9.3) with ESMTP id KAA00393; Tue, 17 Aug 1999 10:48:03 -0400 (EDT) X-Authentication-Warning: Arthur.Linuxberg: arthur owned process doing -bs Date: Tue, 17 Aug 1999 10:48:03 -0400 (EDT) From: "Arthur H. Johnson II" X-Sender: arthur@Arthur.Linuxberg To: Gregory Tarnowski Cc: freebsd-questions@FreeBSD.ORG Subject: Re: One large file for FreeBSD In-Reply-To: <19990817144349.26024.rocketmail@web1304.mail.yahoo.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG There is an ISO image of the development version of FreeBSD. The URL is ftp://current.freebsd.org/pub/FreeBSD/ISO/i386/4.0-19990705-CURRENT. I have been using it on three different workstations and have had absolutely no problems. Its as stable as any Linux Distro ;) Arthur H. Johnson II http://www.linuxberg.com Linuxberg Manager arthur@tucows.com On Tue, 17 Aug 1999, Gregory Tarnowski wrote: > Hi, > > I heard about FreeBSD from one of my instructors and wanted to give it > a try. I see that there are a lot of different files and directories > on the FTP site and am unsure of what I need. I would prefer to > download one large .ZIP or compressed file containing the entire > distribution. Do you have such a file for downloading. I have a > fractional T1 and would prefer to get the whole set of files in one > download. > > Any info would be appreciated. Thanks in advance. > > Greg Tarnowski > g_tarnowski@yahoo.com > > > _________________________________________________________ > Do You Yahoo!? > Get your free @yahoo.com address at http://mail.yahoo.com > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 7:56:11 1999 Delivered-To: freebsd-questions@freebsd.org Received: from ns.clientlogic.com (ns.clientlogic.com [207.51.66.75]) by hub.freebsd.org (Postfix) with ESMTP id E21EA14C95 for ; Tue, 17 Aug 1999 07:56:07 -0700 (PDT) (envelope-from ChrisMic@clientlogic.com) Received: by site0s1 with Internet Mail Service (5.5.2448.0) id ; Tue, 17 Aug 1999 10:55:06 -0400 Message-ID: <6C37EE640B78D2118D2F00A0C90FCB4401105B92@site2s1> From: Christopher Michaels To: "'support@junglenote.com'" , "'mkc@Graphics.Cornell.EDU'" Cc: Jamie Norwood , freebsd-questions@FreeBSD.ORG Subject: RE: dhcpd Date: Tue, 17 Aug 1999 10:57:37 -0400 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2448.0) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Ok, I have to chime in on this one. see below. > -----Original Message----- > From: Dan Larsson [SMTP:support@junglenote.com] > Sent: Tuesday, August 17, 1999 3:27 AM > To: 'mkc@Graphics.Cornell.EDU' > Cc: Jamie Norwood; freebsd-questions@FreeBSD.ORG > Subject: SV: dhcpd > > > Yes it is, but keep reading. He confirmed my guess about wanting it to > > prevent servers. Really all it does to people who want to run a server > > is annoy them. Meanwhile it annoys your friendly non-abusing users as > > well. Not what I would consider a good idea. Not long ago I met a guy > > who was running a web server on a machine using dhcp. He had a friend > > running his DNS service and every time his IP address changed he just > > sent the new address to his friend who updated his DNS and he was back > > in business. Of course this works best if both you and your friend > > spend all your time on the net... > > How does this bother the 'friendly non-abusing user'? I've never seen, > even m$ > boxes included, die from having their ip address changed with or without > dhcp. > You must mean something else, right? > I believe what is meant is that any active connections will just stop responding when the IP address is changed from under them. I can see it now, I'm downloading the new service pack to my crappy WordPerfect 9, it gets through 20MB of the 36MB patch, and *BOOM*, IP address changes and the connection drops, forcing me back to square 1. That's an extreem example, what if someone's on ICQ, or playing an online game, etc, etc.. This would end up alienating your 'good' customers more than it would the 'bad' ones. I know I would switch isp's in a heartbeat (if this is an isp we're dealing with), unreliable service is unacceptable when that service is being paid for, and from a customer's point of view, this would be un-reliable service. On the same tolken, what kind of a lease time are we talking about? 2hrs, 12hrs, 24hrs? > And as I mentioned earlier, from the clients point of view it's much > easier just to > apply for a static address. > The other solution would be to deny access to all and punch holes in the > fw for > every client allowed. This works. I know. But the rules table for the > firewall grows > to monolithic proportions, understandably due to the myriad of available > software > applications. > This has it's down sides as well. You'd have to put SO many holes in this firewall it'd be crazy. My current internet connection is through a local university, and they block ALL incomming connections except on port 113 (ident). I can't tell you how much trouble this causes me. ICQ doesn't work right, I can't play most online games, simple things like a DCC chat on IRC doesn't work, netmeeting doesn't work, the list goes on. I understand what you are trying to do, stop people from abusing the system and putting up static servers on a dynamic connection. Even the idea of blocking well known ports would be undesirable because the people you want to stop are, for the most part, smart enough to not use a standard port. Personally I am against any solution that punishes the good users to stop the few bad users. I personally feel the best solution would be to keep logs of connection time and bandwidth, and have something alert you to problem users, people with long uptimes and alot of outgoing bandwidth. But then again, this is only my opinion. > A second alternative which is similar to the above. And it's setting > bandwidth > rules for every ip in the scope. Which also works, but sets the problem > out of > focus. > The most desireable solution from my point of view would be to deny > regular > ip datatypes (http-data etc) from the internet to the clients. e.g. to > deny a request > from the internet to access any ip resource on the client side. And from > there > punch holes to allow access to certain ips to be accessed from the > internet. > This I do not know how to do. If someone does please let me know. > > /D > As I said earlier, this is more trouble than it's worth, there are a good number of programs that use random/dynamic port numbers. Granted some can be restricted, such as ICQ and mIRC, but others cannot (netmeeting). And again, let's say you open up ports 4000-5000 for ICQ users, what's to stop your "bad" user from just putting a server on that port. Another viable option would be to do regular port scans on your users, but anyone using a *NIX based system will easily be able to detect and block those (unless you use a utility such as nmap, and use it's stealth mode). This is getting rather complicated tho. One last thing, since most of the original posting was chopped off, I'm going on some assumptions. I am assuming that this is in an ISP situation where you have dialup users with dynamically assigned IP addresses. If this is in a corporate situation, then you can throw most of what I said out the window. In a corporate situation I'm all for the restrictive firewall, I still thing changing the IP out from under them is a bad idea. We have applications in the company where I work, that run over the network, if my IP were to change mid-stream that would greatly reduce my productivity. -Chris To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 7:59:18 1999 Delivered-To: freebsd-questions@freebsd.org Received: from awfulhak.org (dynamic-107.max1-du-ws.dialnetwork.pavilion.co.uk [212.74.8.107]) by hub.freebsd.org (Postfix) with ESMTP id 739EA14E54 for ; Tue, 17 Aug 1999 07:59:10 -0700 (PDT) (envelope-from brian@Awfulhak.org) Received: from keep.lan.Awfulhak.org (root@keep.lan.Awfulhak.org [172.16.0.8]) by awfulhak.org (8.9.3/8.9.3) with ESMTP id PAA04454; Tue, 17 Aug 1999 15:52:35 +0100 (BST) (envelope-from brian@lan.awfulhak.org) Received: from keep.lan.Awfulhak.org (brian@localhost.lan.Awfulhak.org [127.0.0.1]) by keep.lan.Awfulhak.org (8.9.3/8.9.3) with ESMTP id PAA01025; Tue, 17 Aug 1999 15:55:08 +0100 (BST) (envelope-from brian@keep.lan.Awfulhak.org) Message-Id: <199908171455.PAA01025@keep.lan.Awfulhak.org> X-Mailer: exmh version 2.0.2 2/24/98 To: sanjay@packetstream.com Cc: freebsd-questions@FreeBSD.ORG Subject: Re: ipnat clarification In-reply-to: Your message of "Mon, 16 Aug 1999 09:37:29 PDT." <37B83E49.8E8716C7@packetstream.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 17 Aug 1999 15:55:08 +0100 From: Brian Somers Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > hello, > > I am trying to use the nat functionality of freebsd. I am in a phase > of browsing the IPnat.c and IPnat.h code. But After installation of the > natd demon,i found in the source directory has the file > ip_input.c . This file contains a function ip_nat_init. I am not able to > > trace the function in the whole source code tree. Could anybody help me > out regarding this. natd(8) has nothing to do with the ipnat stuff. It uses libalias(3) and divert(4) instead - same as ppp(8). > regards > sanjay -- Brian Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 7:59:22 1999 Delivered-To: freebsd-questions@freebsd.org Received: from awfulhak.org (dynamic-107.max1-du-ws.dialnetwork.pavilion.co.uk [212.74.8.107]) by hub.freebsd.org (Postfix) with ESMTP id C5A7F14FAB for ; Tue, 17 Aug 1999 07:59:18 -0700 (PDT) (envelope-from brian@Awfulhak.org) Received: from keep.lan.Awfulhak.org (root@keep.lan.Awfulhak.org [172.16.0.8]) by awfulhak.org (8.9.3/8.9.3) with ESMTP id PAA04464; Tue, 17 Aug 1999 15:57:50 +0100 (BST) (envelope-from brian@lan.awfulhak.org) Received: from keep.lan.Awfulhak.org (brian@localhost.lan.Awfulhak.org [127.0.0.1]) by keep.lan.Awfulhak.org (8.9.3/8.9.3) with ESMTP id QAA01071; Tue, 17 Aug 1999 16:00:23 +0100 (BST) (envelope-from brian@keep.lan.Awfulhak.org) Message-Id: <199908171500.QAA01071@keep.lan.Awfulhak.org> X-Mailer: exmh version 2.0.2 2/24/98 To: Jeremy Koski Cc: freebsd-questions@FreeBSD.ORG Subject: Re: NATD / PPTP question. In-reply-to: Your message of "Mon, 16 Aug 1999 16:16:39 PDT." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 17 Aug 1999 16:00:23 +0100 From: Brian Somers Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG AFAIK, libalias only supports a single client pptp machine. > I need to enable PPTP for an entire network that is behind our NAT server. > The syntax is: > > pptpalias > > Ok, no problem.. We added our entire subnet of 254 IPs, and it ended up > breaking PPTP for everyone. We shortened it to 128, still didnt work. If > we add just a couple of IPs, it works fine. > > My question is, is there some sort of static limit? Can this be raised? > Or, Is there another way to add an entire subnet? > > > Thanks. > > Jeremy -- Brian Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 7:59:28 1999 Delivered-To: freebsd-questions@freebsd.org Received: from awfulhak.org (dynamic-107.max1-du-ws.dialnetwork.pavilion.co.uk [212.74.8.107]) by hub.freebsd.org (Postfix) with ESMTP id 3A40714FAB for ; Tue, 17 Aug 1999 07:59:24 -0700 (PDT) (envelope-from brian@Awfulhak.org) Received: from keep.lan.Awfulhak.org (root@keep.lan.Awfulhak.org [172.16.0.8]) by awfulhak.org (8.9.3/8.9.3) with ESMTP id PAA04471; Tue, 17 Aug 1999 15:59:20 +0100 (BST) (envelope-from brian@lan.awfulhak.org) Received: from keep.lan.Awfulhak.org (brian@localhost.lan.Awfulhak.org [127.0.0.1]) by keep.lan.Awfulhak.org (8.9.3/8.9.3) with ESMTP id QAA01086; Tue, 17 Aug 1999 16:01:53 +0100 (BST) (envelope-from brian@keep.lan.Awfulhak.org) Message-Id: <199908171501.QAA01086@keep.lan.Awfulhak.org> X-Mailer: exmh version 2.0.2 2/24/98 To: Doug Cc: freebsd-questions@FreeBSD.ORG Subject: Re: domain ; ipnat ; single ip != redirections? In-reply-to: Your message of "Mon, 16 Aug 1999 22:39:55 PDT." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 17 Aug 1999 16:01:53 +0100 From: Brian Somers Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > ive got a domain, and serveral boxen on the network, but one static ip. Im > doubting ipnat can redirect, say, telnet connections to "ns.unix9.org" to > go to the nameserver, and so forth? Im sure this goes deeper then ipnat, > just a shotint he d4rk though.. Shouldn't be a problem - libalias(3), natd(8) and ppp(8) are your friends. > | Doug > | unix9.org admin > | shocking.com/~doemill/ -- Brian Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 7:59:54 1999 Delivered-To: freebsd-questions@freebsd.org Received: from awfulhak.org (dynamic-107.max1-du-ws.dialnetwork.pavilion.co.uk [212.74.8.107]) by hub.freebsd.org (Postfix) with ESMTP id 536F014F82 for ; Tue, 17 Aug 1999 07:59:48 -0700 (PDT) (envelope-from brian@Awfulhak.org) Received: from keep.lan.Awfulhak.org (root@keep.lan.Awfulhak.org [172.16.0.8]) by awfulhak.org (8.9.3/8.9.3) with ESMTP id PAA03820; Tue, 17 Aug 1999 15:28:30 +0100 (BST) (envelope-from brian@lan.awfulhak.org) Received: from keep.lan.Awfulhak.org (brian@localhost.lan.Awfulhak.org [127.0.0.1]) by keep.lan.Awfulhak.org (8.9.3/8.9.3) with ESMTP id PAA00921; Tue, 17 Aug 1999 15:31:03 +0100 (BST) (envelope-from brian@keep.lan.Awfulhak.org) Message-Id: <199908171431.PAA00921@keep.lan.Awfulhak.org> X-Mailer: exmh version 2.0.2 2/24/98 To: john holland Cc: freebsd-questions@FreeBSD.ORG Subject: Re: routing table/natd problem upon ISP disconnect In-reply-to: Your message of "Sat, 14 Aug 1999 21:37:28 PDT." <19990815043728.11909.rocketmail@web1105.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 17 Aug 1999 15:31:03 +0100 From: Brian Somers Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Are you using the -dynamic switch to natd ? It's supposed to deal with this. > Hello - > I found when setting up natd to "IP masquerade" a > local net to the internet through a modem that, when > the modem link went down and I brought it back up, the > routing table acted strangely and I ended up having to > reboot. > > the symptoms were: > > netstat -r would hang with just the header - > if I deleted the default route to the Internet through > tun0, netstat -r worked fine > > I couldn't ping the ISP successfully, let alone a host > on the Net. I could see that it was trying to though > as the transmit light on the modem was blinking with > the pings. > > the internal 192.168 net was fine through all of this. > _________________________________________________________ > Do You Yahoo!? > Get your free @yahoo.com address at http://mail.yahoo.com -- Brian Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 8: 0:24 1999 Delivered-To: freebsd-questions@freebsd.org Received: from awfulhak.org (dynamic-107.max1-du-ws.dialnetwork.pavilion.co.uk [212.74.8.107]) by hub.freebsd.org (Postfix) with ESMTP id C9ECD14F7F for ; Tue, 17 Aug 1999 07:59:48 -0700 (PDT) (envelope-from brian@Awfulhak.org) Received: from keep.lan.Awfulhak.org (root@keep.lan.Awfulhak.org [172.16.0.8]) by awfulhak.org (8.9.3/8.9.3) with ESMTP id PAA04419; Tue, 17 Aug 1999 15:48:37 +0100 (BST) (envelope-from brian@lan.awfulhak.org) Received: from keep.lan.Awfulhak.org (brian@localhost.lan.Awfulhak.org [127.0.0.1]) by keep.lan.Awfulhak.org (8.9.3/8.9.3) with ESMTP id PAA00997; Tue, 17 Aug 1999 15:51:10 +0100 (BST) (envelope-from brian@keep.lan.Awfulhak.org) Message-Id: <199908171451.PAA00997@keep.lan.Awfulhak.org> X-Mailer: exmh version 2.0.2 2/24/98 To: David May Cc: freebsd-questions@FreeBSD.ORG Subject: Re: [Q] Problem setting up user PPP over SSH. In-reply-to: Your message of "Mon, 16 Aug 1999 21:57:23 +0800." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 17 Aug 1999 15:51:10 +0100 From: Brian Somers Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Upgrade to the latest version of ppp and it should work ok. You may also want to ``set openmode passive'' on the client side to allow for the potentially long delay in establishing the ssh connection. > I am trying to get a VPN going by running user PPP over SSH > as per the example in /etc/ppp/ppp.conf.sample > but it does not seem to be working. It is failing > in the PPP LCP negotiation phase. Can anybody provide more > detailed example setup than is given in the default example > configuration? > > I have no problems using either ssh nor ppp separately. > > One side is set to openmode active (the caller). It sends several > LCP config requests but does not seem to get any responses. Then it > quits due to "Exception detected on descriptor 2". > The other side is set to openmode passive (the callee). It seems > to be receiving and sending LCP config requests. > > My setup is > FreeBSD 2.2.8 on one box > FreeBSD 3.1 on the other box > SSH 1.2.27 (not from Ports) on both > Link is an Ethernet LAN > > I am getting a bit desparate at this stage. > Any suggestions welcome. -- Brian Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 8: 0:45 1999 Delivered-To: freebsd-questions@freebsd.org Received: from awfulhak.org (dynamic-107.max1-du-ws.dialnetwork.pavilion.co.uk [212.74.8.107]) by hub.freebsd.org (Postfix) with ESMTP id 43B3C1575C for ; Tue, 17 Aug 1999 07:59:48 -0700 (PDT) (envelope-from brian@Awfulhak.org) Received: from keep.lan.Awfulhak.org (root@keep.lan.Awfulhak.org [172.16.0.8]) by awfulhak.org (8.9.3/8.9.3) with ESMTP id PAA04462; Tue, 17 Aug 1999 15:56:43 +0100 (BST) (envelope-from brian@lan.awfulhak.org) Received: from keep.lan.Awfulhak.org (brian@localhost.lan.Awfulhak.org [127.0.0.1]) by keep.lan.Awfulhak.org (8.9.3/8.9.3) with ESMTP id PAA01049; Tue, 17 Aug 1999 15:59:16 +0100 (BST) (envelope-from brian@keep.lan.Awfulhak.org) Message-Id: <199908171459.PAA01049@keep.lan.Awfulhak.org> X-Mailer: exmh version 2.0.2 2/24/98 To: Fro Joe Cc: freebsd-questions@FreeBSD.ORG Subject: Re: PPP nothing happens!!! In-reply-to: Your message of "Mon, 16 Aug 1999 17:56:13 CDT." <000c01bee83a$8cfeab40$97e336ce@mypc.myhost.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 17 Aug 1999 15:59:16 +0100 From: Brian Somers Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Was your modem probed correctly ? This sort of thing happens when the IRQ is wrong - ie, the os doesn't know that there's a character waiting 'till you send one (at which point it has a quick look at the receive port). > I even enter the terminal mode and it is always like one character BEHIND > what I type... if I typed "ATDT" it would only show ATD... then if I pressed > space it'd be ATDT... my modem is a real modem... a 3Com/USR Fax Modem > (Akita OEM)... > > the kernel finds it and nothing happens in PPP... so thanks to this and not > enough help to be easily found... I switched over to Linux for my proxy > because they have the how-to's to get you going... I know I'll lose like 30% > on my multi-PPP connection, but at least I can find the help w/o having to > wait for a response... if anyone can help me with this I will consider > reinstalling FreeBSD 3.2... but a big recommendation I have is get some > better how-to's and such for help... > > Please send a copy of responses to me @ tennies@uwplatt.edu > > Joe Tennies... an unpleased customer I think you need to be a bit more thick-skinned. Sometimes support is fast & furious, sometimes it takes time, sometimes you need to rephrase the question to get people interested in answering.... -- Brian Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 8: 0:51 1999 Delivered-To: freebsd-questions@freebsd.org Received: from awfulhak.org (dynamic-107.max1-du-ws.dialnetwork.pavilion.co.uk [212.74.8.107]) by hub.freebsd.org (Postfix) with ESMTP id B3098156AF for ; Tue, 17 Aug 1999 07:59:48 -0700 (PDT) (envelope-from brian@Awfulhak.org) Received: from keep.lan.Awfulhak.org (root@keep.lan.Awfulhak.org [172.16.0.8]) by awfulhak.org (8.9.3/8.9.3) with ESMTP id OAA03104; Tue, 17 Aug 1999 14:58:43 +0100 (BST) (envelope-from brian@lan.awfulhak.org) Received: from keep.lan.Awfulhak.org (brian@localhost.lan.Awfulhak.org [127.0.0.1]) by keep.lan.Awfulhak.org (8.9.3/8.9.3) with ESMTP id PAA00823; Tue, 17 Aug 1999 15:01:16 +0100 (BST) (envelope-from brian@keep.lan.Awfulhak.org) Message-Id: <199908171401.PAA00823@keep.lan.Awfulhak.org> X-Mailer: exmh version 2.0.2 2/24/98 To: "Jonathan D. Proulx" Cc: FreeBSD Questions Subject: Re: Modem not responding at install In-reply-to: Your message of "Sat, 14 Aug 1999 11:05:40 EDT." <19990814110540.A1619@amergin..ids.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 17 Aug 1999 15:01:15 +0100 From: Brian Somers Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > On Wed, Aug 11, 1999 at 09:53:55AM -0400, Bill A. K. wrote: > > do you really need to use PAP? > > can't you just use login style authentication (e.g. just type in your user > > name and password at the prompts and when the other side starts sending PPP, > > just press SHIFT + ~ and then press P)? > > let me know what happens. > > Two things... > > First the screen (in ppp terminal mode) seems one character behind > the responses from the process (local or remote) don't show up > untill after I type the next character (which itself doesn't > show up untill after the second character etc) > > This is bothersome since the prompts don't show-up untill > after I start typing the response...it's a very simple > standard login so this is surmountable. Sounds like you've got an IRQ problem. Are you sure your UART is probing correctly (``dmesg | fgrep sio'', or pressing SCROLL LOCK and a few PGUPs after booting) ? > Second the connection won't stay up. I get assigned my IP address > packets start coming and going. I switch back to tty1 hit OK > and I sais it can't resolve ftp.freebsd.org. I switch back to > tty3 and the connection is down. I've tried specifying both > my primary and secondary DNS servers as "Domain Name Server" > for "Gateway" I've tried both blank and 127.0.0.1 (this is a > home computer with dynamic IP dial-up) This is probably the same problem - your port doesn't work. > -- > Email: jon@osfn.org Resume: > jdp@efn.org http://users.ids.net/~tuan/resume -- Brian Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 8: 4:59 1999 Delivered-To: freebsd-questions@freebsd.org Received: from voyager.fisicc-ufm.edu (ip-46-094.guate.net [200.12.46.94]) by hub.freebsd.org (Postfix) with ESMTP id 8E11114F7F for ; Tue, 17 Aug 1999 08:04:36 -0700 (PDT) (envelope-from obonilla@voyager.fisicc-ufm.edu) Received: (from obonilla@localhost) by voyager.fisicc-ufm.edu (8.9.3/8.9.3) id IAA01967; Tue, 17 Aug 1999 08:58:44 -0600 (CST) (envelope-from obonilla) Date: Tue, 17 Aug 1999 08:58:42 -0600 From: Oscar Bonilla To: "Arthur H. Johnson II" Cc: Charlie Root , Roy Bettle , Doug , Thomas Good , freebsd-questions@FreeBSD.ORG Subject: Re: Question about the mascot Message-ID: <19990817085842.A1949@fisicc-ufm.edu> References: <37B30556.5C61CBD7@charm.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.6i In-Reply-To: ; from Arthur H. Johnson II on Tue, Aug 17, 1999 at 09:24:06AM -0400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG how much money would the freebsd project have if everyone who has posted his "2 cents" to this thread had actually given the 2 cents to the project? :) regards, -Oscar -- For PGP Public Key: finger obonilla@fisicc-ufm.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 8: 5:14 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mu.egroups.com (mu.egroups.com [207.138.41.151]) by hub.freebsd.org (Postfix) with SMTP id AE7D414F1C for ; Tue, 17 Aug 1999 08:04:58 -0700 (PDT) (envelope-from dave@netcarrier.com) Received: from [10.1.2.24] by mu.egroups.com with NNFMP; 17 Aug 1999 16:05:11 -0000 Date: Tue, 17 Aug 1999 08:05:03 -0700 From: dave@netcarrier.com To: freebsd-questions@freebsd.org Subject: Micro-adjusting system clock? Message-ID: <7pbtmv$efsa@eGroups.com> User-Agent: eGroups-EW/0.76 Content-Length: 417 X-Mailer: www.eGroups.com Message Poster Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG System V variants of Unix have a handy feature in "date" that will make a series of micro-adjustments to your system clock over a period of time, to save you the risk of "wrinkles" in time that you might get by doing one, big adjustment. But the FreeBSD (3.0) that we're running doesn't appear to have such an option. Is there a way to do this in FreeBSD? How do other people accomplish this safely? Thanks! Dave To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 8: 9: 9 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail.tucows.com (mail.tucows.com [208.229.216.23]) by hub.freebsd.org (Postfix) with ESMTP id 674F714F1C for ; Tue, 17 Aug 1999 08:09:03 -0700 (PDT) (envelope-from arthur@tucows.com) Received: from Arthur.Linuxberg (starwars.linuxberg.org [208.229.216.41]) by mail.tucows.com (8.9.3/8.9.1) with ESMTP id LAA01279; Tue, 17 Aug 1999 11:08:23 -0400 Received: from localhost (arthur@localhost) by Arthur.Linuxberg (8.9.3/8.9.3) with ESMTP id LAA00554; Tue, 17 Aug 1999 11:08:06 -0400 (EDT) X-Authentication-Warning: Arthur.Linuxberg: arthur owned process doing -bs Date: Tue, 17 Aug 1999 11:08:06 -0400 (EDT) From: "Arthur H. Johnson II" X-Sender: arthur@Arthur.Linuxberg To: Oscar Bonilla Cc: Charlie Root , Roy Bettle , Doug , Thomas Good , freebsd-questions@FreeBSD.ORG Subject: Re: Question about the mascot In-Reply-To: <19990817085842.A1949@fisicc-ufm.edu> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I gave 75 bucks to the project when I bought Complete FreeBSD. That takes care of what... 3750 people? Arthur H. Johnson II http://www.linuxberg.com Linuxberg Manager arthur@tucows.com On Tue, 17 Aug 1999, Oscar Bonilla wrote: > how much money would the freebsd project have if > everyone who has posted his "2 cents" to this thread > had actually given the 2 cents to the project? :) > > regards, > > -Oscar > > -- > For PGP Public Key: finger obonilla@fisicc-ufm.edu > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 8:23:13 1999 Delivered-To: freebsd-questions@freebsd.org Received: from dan.emsphone.com (dan.emsphone.com [199.67.51.101]) by hub.freebsd.org (Postfix) with ESMTP id CAD611503B for ; Tue, 17 Aug 1999 08:23:09 -0700 (PDT) (envelope-from dan@dan.emsphone.com) Received: (from dan@localhost) by dan.emsphone.com (8.9.3/8.9.3) id KAA66900; Tue, 17 Aug 1999 10:22:00 -0500 (CDT) (envelope-from dan) Date: Tue, 17 Aug 1999 10:21:59 -0500 From: Dan Nelson To: dave@netcarrier.com Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Micro-adjusting system clock? Message-ID: <19990817102159.A66341@dan.emsphone.com> References: <7pbtmv$efsa@eGroups.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.6i In-Reply-To: <7pbtmv$efsa@eGroups.com>; from "dave@netcarrier.com" on Tue Aug 17 08:05:03 GMT 1999 X-OS: FreeBSD 4.0-CURRENT Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In the last episode (Aug 17), dave@netcarrier.com said: > System V variants of Unix have a handy feature in "date" that will make > a series of micro-adjustments to your system clock over a period of > time, to save you the risk of "wrinkles" in time that you might get by > doing one, big adjustment. > > But the FreeBSD (3.0) that we're running doesn't appear to have such an > option. Is there a way to do this in FreeBSD? How do other people > accomplish this safely? xntpd is the preferred way to synch clocks; Have one machine pull time from your ISP's ntp server (most have one), and have the rest synch to that box. -- Dan Nelson dnelson@emsphone.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 8:54:19 1999 Delivered-To: freebsd-questions@freebsd.org Received: from cx559415-a.ftwal1.fl.home.com (cx559415-a.ftwal1.fl.home.com [24.6.55.158]) by hub.freebsd.org (Postfix) with ESMTP id B5DEA14DB5 for ; Tue, 17 Aug 1999 08:54:16 -0700 (PDT) (envelope-from mark@cx559415-a.ftwal1.fl.home.com) Received: from camelot (camelot.cmr.net [10.1.1.2]) by cx559415-a.ftwal1.fl.home.com (8.9.3/8.9.3) with SMTP id KAA00733 for ; Tue, 17 Aug 1999 10:58:12 -0500 (CDT) (envelope-from mark@cx559415-a.ftwal1.fl.home.com) Reply-To: From: "Mark Einreinhof" To: "Freebsd-Questions" Subject: Certificate Howto Date: Tue, 17 Aug 1999 10:50:40 -0500 Message-ID: <000001bee8c8$41f17900$0201010a@cmr.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 IMO, Build 9.0.2416 (9.0.2910.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Is there a Howto/FAQ that explains "make certificate type=*" ? I just want to create a cert that contains my info so I know when I pointed my browser to my server to go secure, I got my server and no longer get the SnakeOil cert. I don't need all the fancy Verisign, etc. stuff. ********************************************** The box said "requires Win95 or better"... So I installed it on FreeBSD;-) 'Anonymous' ********************************************** To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 9:21:43 1999 Delivered-To: freebsd-questions@freebsd.org Received: from drawbridge.ascend.com (drawbridge.ascend.com [198.4.92.1]) by hub.freebsd.org (Postfix) with ESMTP id 809E615655 for ; Tue, 17 Aug 1999 09:21:32 -0700 (PDT) (envelope-from mcwong@ascend.com) Received: from fw-ext.ascend.com (fw-ext [198.4.92.5]) by drawbridge.ascend.com (8.9.1a/8.9.1) with SMTP id JAA11862 for ; Tue, 17 Aug 1999 09:17:27 -0700 (PDT) From: mcwong@ascend.com Received: from russet.ascend.com by fw-ext.ascend.com via smtpd (for drawbridge.ascend.com [198.4.92.1]) with SMTP; 17 Aug 1999 16:22:03 UT Received: from colton.ascend.com (colton.ascend.com [192.207.23.40]) by russet.ascend.com (8.9.1a/8.9.1) with SMTP id JAA21032 for ; Tue, 17 Aug 1999 09:22:02 -0700 (PDT) Received: by colton.ascend.com(Lotus SMTP MTA Internal build v4.6.2 (651.2 6-10-1998)) id 882567D0.0059DC11 ; Tue, 17 Aug 1999 09:21:30 -0700 X-Lotus-FromDomain: ASCEND To: questions@freebsd.org Message-ID: <882567D0.0045C726.00@colton.ascend.com> Date: Tue, 17 Aug 1999 22:45:14 +1000 Subject: Safe upgrade from 2.2.5 --> 3.2 ? Mime-Version: 1.0 Content-type: text/plain; charset=us-ascii Content-Disposition: inline Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, Is there any safe and reliable way of ugrading from 2.2.5 to 3.2 ? Is there any upgrade utility/script available which has been tested with success ? TIA MCW To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 9:27: 2 1999 Delivered-To: freebsd-questions@freebsd.org Received: from houston.matchlogic.com (houston.matchlogic.com [205.216.147.127]) by hub.freebsd.org (Postfix) with ESMTP id EF99C15655 for ; Tue, 17 Aug 1999 09:26:52 -0700 (PDT) (envelope-from crandall@matchlogic.com) Received: by houston.matchlogic.com with Internet Mail Service (5.5.2448.0) id ; Tue, 17 Aug 1999 10:27:03 -0600 Message-ID: <64003B21ECCAD11185C500805F31EC0303786D44@houston.matchlogic.com> From: Charles Randall To: "Arthur H. Johnson II" , Gregory Tarnowski Cc: freebsd-questions@FreeBSD.ORG Subject: RE: One large file for FreeBSD Date: Tue, 17 Aug 1999 10:26:56 -0600 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2448.0) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG One warning, -current probably isn't for someone wanting to give FreeBSD "a try". http://www.freebsd.org/handbook/cutting-edge.html If you've got a good network connection, I'd suggest an FTP install of 3.2-Release instead. Just download the two floppies and you're set. Charles -----Original Message----- From: Arthur H. Johnson II [mailto:arthur@tucows.com] Sent: Tuesday, August 17, 1999 8:48 AM To: Gregory Tarnowski Cc: freebsd-questions@FreeBSD.ORG Subject: Re: One large file for FreeBSD There is an ISO image of the development version of FreeBSD. The URL is ftp://current.freebsd.org/pub/FreeBSD/ISO/i386/4.0-19990705-CURRENT. I have been using it on three different workstations and have had absolutely no problems. Its as stable as any Linux Distro ;) Arthur H. Johnson II http://www.linuxberg.com Linuxberg Manager arthur@tucows.com On Tue, 17 Aug 1999, Gregory Tarnowski wrote: > Hi, > > I heard about FreeBSD from one of my instructors and wanted to give it > a try. I see that there are a lot of different files and directories > on the FTP site and am unsure of what I need. I would prefer to > download one large .ZIP or compressed file containing the entire > distribution. Do you have such a file for downloading. I have a > fractional T1 and would prefer to get the whole set of files in one > download. > > Any info would be appreciated. Thanks in advance. > > Greg Tarnowski > g_tarnowski@yahoo.com > > > _________________________________________________________ > Do You Yahoo!? > Get your free @yahoo.com address at http://mail.yahoo.com > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 9:34:21 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail.tucows.com (mail.tucows.com [208.229.216.23]) by hub.freebsd.org (Postfix) with ESMTP id 4AA5415742 for ; Tue, 17 Aug 1999 09:34:17 -0700 (PDT) (envelope-from arthur@tucows.com) Received: from Arthur.Linuxberg (starwars.linuxberg.org [208.229.216.41]) by mail.tucows.com (8.9.3/8.9.1) with ESMTP id MAA04398; Tue, 17 Aug 1999 12:34:47 -0400 Received: from localhost (arthur@localhost) by Arthur.Linuxberg (8.9.3/8.9.3) with ESMTP id MAA00822; Tue, 17 Aug 1999 12:34:30 -0400 (EDT) X-Authentication-Warning: Arthur.Linuxberg: arthur owned process doing -bs Date: Tue, 17 Aug 1999 12:34:30 -0400 (EDT) From: "Arthur H. Johnson II" X-Sender: arthur@Arthur.Linuxberg To: Charles Randall Cc: Gregory Tarnowski , freebsd-questions@FreeBSD.ORG Subject: RE: One large file for FreeBSD In-Reply-To: <64003B21ECCAD11185C500805F31EC0303786D44@houston.matchlogic.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I was just "trying out" FreeBSD when I downloaded the current ISO. Then again I am sortof a Linux expert, so your right ;) Arthur H. Johnson II http://www.linuxberg.com Linuxberg Manager arthur@tucows.com On Tue, 17 Aug 1999, Charles Randall wrote: > One warning, -current probably isn't for someone wanting to give FreeBSD "a > try". > > http://www.freebsd.org/handbook/cutting-edge.html > > If you've got a good network connection, I'd suggest an FTP install of > 3.2-Release instead. Just download the two floppies and you're set. > > Charles > > -----Original Message----- > From: Arthur H. Johnson II [mailto:arthur@tucows.com] > Sent: Tuesday, August 17, 1999 8:48 AM > To: Gregory Tarnowski > Cc: freebsd-questions@FreeBSD.ORG > Subject: Re: One large file for FreeBSD > > > There is an ISO image of the development version of FreeBSD. The URL is > ftp://current.freebsd.org/pub/FreeBSD/ISO/i386/4.0-19990705-CURRENT. I > have been using it on three different workstations and have had absolutely > no problems. Its as stable as any Linux Distro ;) > > Arthur H. Johnson II > http://www.linuxberg.com > Linuxberg Manager > arthur@tucows.com > > On Tue, 17 Aug 1999, Gregory Tarnowski wrote: > > > Hi, > > > > I heard about FreeBSD from one of my instructors and wanted to give it > > a try. I see that there are a lot of different files and directories > > on the FTP site and am unsure of what I need. I would prefer to > > download one large .ZIP or compressed file containing the entire > > distribution. Do you have such a file for downloading. I have a > > fractional T1 and would prefer to get the whole set of files in one > > download. > > > > Any info would be appreciated. Thanks in advance. > > > > Greg Tarnowski > > g_tarnowski@yahoo.com > > > > > > _________________________________________________________ > > Do You Yahoo!? > > Get your free @yahoo.com address at http://mail.yahoo.com > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 10: 3:58 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mu.egroups.com (mu.egroups.com [207.138.41.151]) by hub.freebsd.org (Postfix) with SMTP id 0C96C14F32 for ; Tue, 17 Aug 1999 10:03:46 -0700 (PDT) (envelope-from dave@netcarrier.com) Received: from [10.1.2.24] by mu.egroups.com with NNFMP; 17 Aug 1999 18:01:57 -0000 Date: Tue, 17 Aug 1999 10:01:49 -0700 From: dave@netcarrier.com To: freebsd-questions@freebsd.org Subject: Re: Micro-adjusting system clock? Message-ID: <7pc4ht$99hb@eGroups.com> In-Reply-To: <19990817102159.A66341@dan.emsphone.com> User-Agent: eGroups-EW/0.76 Content-Length: 528 X-Mailer: www.eGroups.com Message Poster Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > xntpd is the preferred way to synch clocks; Have one machine pull time > from your ISP's ntp server (most have one), and have the rest synch to > that box. Wow, thanks. xntpd is quite a beast, and the man page reads like War and Peace. Here are a few follow-up questions: - when xntpd synchronizes with another host, does it do micro-adjustments to prevent time wrinkles (even the first time), or does is do one big adjustment? - is there a way to run it "standalone", ie, to adjust a clock on an unnetworked server? Dave To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 10:34:22 1999 Delivered-To: freebsd-questions@freebsd.org Received: from bingnet2.cc.binghamton.edu (bingnet2.cc.binghamton.edu [128.226.1.18]) by hub.freebsd.org (Postfix) with ESMTP id ADC38157A0 for ; Tue, 17 Aug 1999 10:34:16 -0700 (PDT) (envelope-from zzhang@cs.binghamton.edu) Received: from sol.cs.binghamton.edu (cs1-gw.cs.binghamton.edu [128.226.171.72]) by bingnet2.cc.binghamton.edu (8.9.3/8.9.3) with SMTP id NAA16038 for ; Tue, 17 Aug 1999 13:34:11 -0400 (EDT) Date: Tue, 17 Aug 1999 13:20:54 -0400 (EDT) From: Zhihui Zhang To: freebsd-questions@freebsd.org Subject: Explain the output of ls Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Could anyone tell me why the total number given by ls is 13 instead of 12? > ls -al total 13 drwxr-xr-x 6 zzhang wheel 512 Aug 18 11:44 . drwxr-xr-x 5 zzhang wheel 512 Aug 18 12:50 .. -rwxr-xr-x 1 zzhang wheel 4361 Aug 18 11:44 a.out -rw-r--r-- 1 zzhang wheel 0 Aug 18 09:48 emptyfile6 drwxr-xr-x 2 zzhang wheel 512 Aug 18 09:46 file1 drwxr-xr-x 2 zzhang wheel 512 Aug 18 09:46 file4 prwxr-xr-x 2 zzhang wheel 0 Aug 18 09:46 file5 prwxr-xr-x 2 zzhang wheel 0 Aug 18 09:46 file5link lrwxr-xr-x 1 zzhang wheel 16 Aug 18 09:47 homedir -> /usr/home/zzhang drwxr-xr-x 2 zzhang wheel 512 Aug 18 09:46 newfile3 drwxr-xr-x 2 zzhang wheel 512 Aug 18 09:47 newlongerfile2 -rw-r--r-- 1 zzhang wheel 1613 Aug 18 11:44 opendir.c Thanks. -------------------------------------------------- Zhihui Zhang. Please visit http://www.freebsd.org -------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 10:47: 5 1999 Delivered-To: freebsd-questions@freebsd.org Received: from gvinpin.grad.kiev.ua (KievglavArhit-UTC.ukrtel.net [195.5.25.54]) by hub.freebsd.org (Postfix) with ESMTP id BA15E156F7 for ; Tue, 17 Aug 1999 10:46:54 -0700 (PDT) (envelope-from Ruslan@Shevchenko.Kiev.UA) Received: from Shevchenko.Kiev.UA (kulshedra [10.0.1.99]) by gvinpin.grad.kiev.ua (8.8.7/8.8.7) with ESMTP id UAA29650; Tue, 17 Aug 1999 20:43:22 +0300 Message-ID: <37B9A12E.AFB05A35@Shevchenko.Kiev.UA> Date: Tue, 17 Aug 1999 20:51:42 +0300 From: Ruslan Shevchenko Reply-To: rssh@grad.kiev.ua X-Mailer: Mozilla 4.07 [en] (X11; I; FreeBSD 3.0-CURRENT i386) MIME-Version: 1.0 To: Zhihui Zhang Cc: freebsd-questions@freebsd.org Subject: Re: Explain the output of ls References: Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Zhihui Zhang wrote: > > Could anyone tell me why the total number given by ls is 13 instead of 12? > total is number of blocks, not number of files. > > ls -al > total 13 > drwxr-xr-x 6 zzhang wheel 512 Aug 18 11:44 . > drwxr-xr-x 5 zzhang wheel 512 Aug 18 12:50 .. > -rwxr-xr-x 1 zzhang wheel 4361 Aug 18 11:44 a.out > -rw-r--r-- 1 zzhang wheel 0 Aug 18 09:48 emptyfile6 > drwxr-xr-x 2 zzhang wheel 512 Aug 18 09:46 file1 > drwxr-xr-x 2 zzhang wheel 512 Aug 18 09:46 file4 > prwxr-xr-x 2 zzhang wheel 0 Aug 18 09:46 file5 > prwxr-xr-x 2 zzhang wheel 0 Aug 18 09:46 file5link > lrwxr-xr-x 1 zzhang wheel 16 Aug 18 09:47 homedir -> /usr/home/zzhang > drwxr-xr-x 2 zzhang wheel 512 Aug 18 09:46 newfile3 > drwxr-xr-x 2 zzhang wheel 512 Aug 18 09:47 newlongerfile2 > -rw-r--r-- 1 zzhang wheel 1613 Aug 18 11:44 opendir.c > > Thanks. > > -------------------------------------------------- > Zhihui Zhang. Please visit http://www.freebsd.org > -------------------------------------------------- > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 10:47:11 1999 Delivered-To: freebsd-questions@freebsd.org Received: from hog.critters.itserealm.com (hog.critters.itserealm.com [38.182.239.34]) by hub.freebsd.org (Postfix) with ESMTP id 1B511156F7 for ; Tue, 17 Aug 1999 10:47:02 -0700 (PDT) (envelope-from rptoren@critters.itserealm.com) Received: from critters.itserealm.com (oinker.critters.itserealm.com [38.182.239.41]) by hog.critters.itserealm.com (8.8.7/8.8.7) with ESMTP id MAA01602 for ; Tue, 17 Aug 1999 12:54:16 -0400 Message-ID: <37B9A08F.C20C5F42@critters.itserealm.com> Date: Tue, 17 Aug 1999 13:49:03 -0400 From: Rip Toren X-Mailer: Mozilla 4.61 [en] (WinNT; U) X-Accept-Language: en MIME-Version: 1.0 To: questions@freebsd.org Subject: ELF loading problem Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Gents/Ladies; I am receiving an error message when attempting to run some applications. "/usr/libexec/ld-elf.so.1: /usr/tmp/xf86_334/extract: shared object has no run-time symbol table" This is typical, I get the same trying to run Xwrapper. Obviously X is not running yet. A 'file' on the file shows it as the expected ELF executable. Fbsd 3.2R (from subscription) Fresh install 2 days ago Simple network configuration Everything else is stock. Platform: Dell Inspiron 7000 laptop I need to find patched X what will work with this ATI Rage Pro LT video card. I was looking at a commercial product (Xag Accellerated-X) until I saw the comment that the FreeBSD Core team had advised against porting to 3.X; so they stopped at 2.2.8. Is this a library problem To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 10:47:44 1999 Delivered-To: freebsd-questions@freebsd.org Received: from dfw-ix6.ix.netcom.com (dfw-ix6.ix.netcom.com [206.214.98.6]) by hub.freebsd.org (Postfix) with ESMTP id 62014156F7 for ; Tue, 17 Aug 1999 10:47:41 -0700 (PDT) (envelope-from sverzunov@netscaler.com) Received: (from smap@localhost) by dfw-ix6.ix.netcom.com (8.8.4/8.8.4) id MAA15641 for ; Tue, 17 Aug 1999 12:48:07 -0500 (CDT) Received: from sji-ca10-65.ix.netcom.com(205.186.214.65) by dfw-ix6.ix.netcom.com via smap (V1.3) id rma015355; Tue Aug 17 12:46:04 1999 Message-ID: <37B99F75.CA95294F@netscaler.com> Date: Tue, 17 Aug 1999 10:44:21 -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-questions@FreeBSD.ORG Subject: Serial line console and kernel debugger Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi. I use serial line console and Windows 9x HyperTerminal program as a terminal emulator. How can enter kernel debugger in this case? Handbook says that there should be BREAK condition on the serial line (with BREAK_TO_DEBUGGER kernel configuration option), but, unfortunately I could not get this condition. What are suggestions? Thanks a lot. Best regards. -- ------------------------------------- Sergey Verzunov Netscaler, Inc 4800 Great America Pkwy, Santa Clara, CA 95054 Tel: (408) 330-9200 x117 Fax: (408) 330-9209 sverzunov@netscaler.com --------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 11: 2: 5 1999 Delivered-To: freebsd-questions@freebsd.org Received: from forrie.net (forrie.net [216.67.12.69]) by hub.freebsd.org (Postfix) with ESMTP id 6904314EBB for ; Tue, 17 Aug 1999 11:02:01 -0700 (PDT) (envelope-from forrie@forrie.com) Received: from boomer (boomer.navinet.net [216.67.12.90]) by forrie.net (8.9.3/8.9.3) with ESMTP id OAA69991 for ; Tue, 17 Aug 1999 14:02:33 -0400 (EDT) Message-Id: <4.2.0.58.19990817140100.00ada6f0@216.67.12.69> X-Sender: forrie@216.67.12.69 X-Mailer: QUALCOMM Windows Eudora Pro Version 4.2.0.58 Date: Tue, 17 Aug 1999 14:01:43 -0400 To: freebsd-questions@freebsd.org From: Forrest Aldrich Subject: DELL servers and FreeBSD Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Just as a pre-emptive question: has anyone run into problems running FreeBSD on any DELL servers? Namely, the PowerEdge 6350's. Thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 11: 5: 6 1999 Delivered-To: freebsd-questions@freebsd.org Received: from cs.rpi.edu (mumble.cs.rpi.edu [128.213.8.16]) by hub.freebsd.org (Postfix) with ESMTP id 94A5E14D10 for ; Tue, 17 Aug 1999 11:05:03 -0700 (PDT) (envelope-from crossd@cs.rpi.edu) Received: from cs.rpi.edu (monica.cs.rpi.edu [128.213.7.2]) by cs.rpi.edu (8.9.3/8.9.3) with ESMTP id OAA57107; Tue, 17 Aug 1999 14:04:24 -0400 (EDT) Message-Id: <199908171804.OAA57107@cs.rpi.edu> To: Forrest Aldrich Cc: freebsd-questions@FreeBSD.ORG, crossd@cs.rpi.edu Subject: Re: DELL servers and FreeBSD In-Reply-To: Message from Forrest Aldrich of "Tue, 17 Aug 1999 14:01:43 EDT." <4.2.0.58.19990817140100.00ada6f0@216.67.12.69> Date: Tue, 17 Aug 1999 14:04:24 -0400 From: "David E. Cross" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Never had any problems at all on our 6300s. Good Luck. -- David Cross | email: crossd@cs.rpi.edu Systems Administrator/Research Programmer | Web: http://www.cs.rpi.edu/~crossd Rensselaer Polytechnic Institute, | Ph: 518.276.2860 Department of Computer Science | Fax: 518.276.4033 I speak only for myself. | WinNT:Linux::Linux:FreeBSD To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 11:17:36 1999 Delivered-To: freebsd-questions@freebsd.org Received: from bingnet2.cc.binghamton.edu (bingnet2.cc.binghamton.edu [128.226.1.18]) by hub.freebsd.org (Postfix) with ESMTP id 256F215712 for ; Tue, 17 Aug 1999 11:17:32 -0700 (PDT) (envelope-from zzhang@cs.binghamton.edu) Received: from sol.cs.binghamton.edu (cs1-gw.cs.binghamton.edu [128.226.171.72]) by bingnet2.cc.binghamton.edu (8.9.3/8.9.3) with SMTP id OAA28074; Tue, 17 Aug 1999 14:17:55 -0400 (EDT) Date: Tue, 17 Aug 1999 14:04:37 -0400 (EDT) From: Zhihui Zhang To: rssh@grad.kiev.ua Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Explain the output of ls In-Reply-To: <37B9A12E.AFB05A35@Shevchenko.Kiev.UA> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, 17 Aug 1999, Ruslan Shevchenko wrote: > Zhihui Zhang wrote: > > > > Could anyone tell me why the total number given by ls is 13 instead of 12? > > > > total is number of blocks, not number of files. > > > > ls -al > > total 13 > > drwxr-xr-x 6 zzhang wheel 512 Aug 18 11:44 . > > drwxr-xr-x 5 zzhang wheel 512 Aug 18 12:50 .. > > -rwxr-xr-x 1 zzhang wheel 4361 Aug 18 11:44 a.out > > -rw-r--r-- 1 zzhang wheel 0 Aug 18 09:48 emptyfile6 > > drwxr-xr-x 2 zzhang wheel 512 Aug 18 09:46 file1 > > drwxr-xr-x 2 zzhang wheel 512 Aug 18 09:46 file4 > > prwxr-xr-x 2 zzhang wheel 0 Aug 18 09:46 file5 > > prwxr-xr-x 2 zzhang wheel 0 Aug 18 09:46 file5link > > lrwxr-xr-x 1 zzhang wheel 16 Aug 18 09:47 homedir -> /usr/home/zzhang > > drwxr-xr-x 2 zzhang wheel 512 Aug 18 09:46 newfile3 > > drwxr-xr-x 2 zzhang wheel 512 Aug 18 09:47 newlongerfile2 > > -rw-r--r-- 1 zzhang wheel 1613 Aug 18 11:44 opendir.c > > The manual of ls(1) says it is the number of 512-byte blocks. Actually, it is the number of 1024-byte blocks. -Zhihui To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 11:19: 1 1999 Delivered-To: freebsd-questions@freebsd.org Received: from ux1.ibb.net (ibb0005.ibb.uu.nl [131.211.124.5]) by hub.freebsd.org (Postfix) with ESMTP id 53743157BB for ; Tue, 17 Aug 1999 11:18:51 -0700 (PDT) (envelope-from Reinoud.Koornstra@ibbnet.nl) Received: from localhost (reinoud@localhost) by ux1.ibb.net (8.8.7/8.8.5/TT) with SMTP id UAA05517 for ; Tue, 17 Aug 1999 20:18:21 +0200 Date: Tue, 17 Aug 1999 20:18:21 +0200 (MET DST) From: Reinoud Koornstra X-Sender: reinoud@ux1.ibb.net To: freebsd-questions@FreeBSD.ORG Subject: bug wich crashes freebsd 3.2 Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, I run into a annoying bug in the freebsd 3.2 Maybe it is known to you, but freebsd 3.1 also crashes on this point. It's simple, take a i386 machine with freebsd 3.2 installed on it. Put an 1.44 inch disk in the drive wich is formatted with the ms dos fs. then mount_msdos /dev/fd0 /mnt then cd /mnt then ls I tryed to copy a file from my hd to the disk, but the disk was write protected, so it didnt work. I had one file on the floppy and tryed to remove it, but i got an error cause the disk was write protected. Then i took the floppy out and remove the write protection and put the floppy in again and typed ls again. On that moment freebsd 3.2 hangs. I tryed this 3 times and everytime i had the same result. Do you know this bug? Is this fixed in 4.0? Sincerely, Reinoud. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 11:28:16 1999 Delivered-To: freebsd-questions@freebsd.org Received: from wopr.caltech.edu (wopr.caltech.edu [131.215.240.222]) by hub.freebsd.org (Postfix) with ESMTP id E2E3D15765 for ; Tue, 17 Aug 1999 11:28:13 -0700 (PDT) (envelope-from mph@wopr.caltech.edu) Received: (from mph@localhost) by wopr.caltech.edu (8.9.3/8.9.1) id LAA17274; Tue, 17 Aug 1999 11:28:14 -0700 (PDT) (envelope-from mph) Date: Tue, 17 Aug 1999 11:28:13 -0700 From: Matthew Hunt To: Zhihui Zhang Cc: rssh@grad.kiev.ua, freebsd-questions@FreeBSD.ORG Subject: Re: Explain the output of ls Message-ID: <19990817112813.A17198@wopr.caltech.edu> References: <37B9A12E.AFB05A35@Shevchenko.Kiev.UA> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: ; from Zhihui Zhang on Tue, Aug 17, 1999 at 02:04:37PM -0400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, Aug 17, 1999 at 02:04:37PM -0400, Zhihui Zhang wrote: > The manual of ls(1) says it is the number of 512-byte blocks. Actually, > it is the number of 1024-byte blocks. Maybe you have BLOCKSIZE=K in your environment? -- Matthew Hunt * Stay close to the Vorlon. http://www.pobox.com/~mph/ * To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 11:33:54 1999 Delivered-To: freebsd-questions@freebsd.org Received: from bingnet2.cc.binghamton.edu (bingnet2.cc.binghamton.edu [128.226.1.18]) by hub.freebsd.org (Postfix) with ESMTP id 2AB9114CD3 for ; Tue, 17 Aug 1999 11:33:51 -0700 (PDT) (envelope-from zzhang@cs.binghamton.edu) Received: from sol.cs.binghamton.edu (cs1-gw.cs.binghamton.edu [128.226.171.72]) by bingnet2.cc.binghamton.edu (8.9.3/8.9.3) with SMTP id OAA02034; Tue, 17 Aug 1999 14:32:15 -0400 (EDT) Date: Tue, 17 Aug 1999 14:18:56 -0400 (EDT) From: Zhihui Zhang To: Matthew Hunt Cc: rssh@grad.kiev.ua, freebsd-questions@FreeBSD.ORG Subject: Re: Explain the output of ls In-Reply-To: <19990817112813.A17198@wopr.caltech.edu> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, 17 Aug 1999, Matthew Hunt wrote: > On Tue, Aug 17, 1999 at 02:04:37PM -0400, Zhihui Zhang wrote: > > > The manual of ls(1) says it is the number of 512-byte blocks. Actually, > > it is the number of 1024-byte blocks. > > Maybe you have BLOCKSIZE=K in your environment? Yes. I tried "setenv BLOCKSIZE=512" without success (I am using tcsh). -Zhihui To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 11:34:29 1999 Delivered-To: freebsd-questions@freebsd.org Received: from wopr.caltech.edu (wopr.caltech.edu [131.215.240.222]) by hub.freebsd.org (Postfix) with ESMTP id 4A47114CD3 for ; Tue, 17 Aug 1999 11:34:25 -0700 (PDT) (envelope-from mph@wopr.caltech.edu) Received: (from mph@localhost) by wopr.caltech.edu (8.9.3/8.9.1) id LAA17417; Tue, 17 Aug 1999 11:34:08 -0700 (PDT) (envelope-from mph) Date: Tue, 17 Aug 1999 11:34:07 -0700 From: Matthew Hunt To: Zhihui Zhang Cc: rssh@grad.kiev.ua, freebsd-questions@freebsd.org Subject: Re: Explain the output of ls Message-ID: <19990817113407.A17364@wopr.caltech.edu> References: <19990817112813.A17198@wopr.caltech.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: ; from Zhihui Zhang on Tue, Aug 17, 1999 at 02:18:56PM -0400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, Aug 17, 1999 at 02:18:56PM -0400, Zhihui Zhang wrote: > > Maybe you have BLOCKSIZE=K in your environment? > > Yes. I tried "setenv BLOCKSIZE=512" without success (I am using tcsh). The syntax for csh and tcsh does not have the equals sign. Try "setenv BLOCKSIZE 512". I have confirmed that ls(1) reports 512-blocks when BLOCKSIZE is unset or set to 512, and 1k-blocks when BLOCKSIZE is set to K. -- Matthew Hunt * UNIX is a lever for the http://www.pobox.com/~mph/ * intellect. -J.R. Mashey To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 11:39:28 1999 Delivered-To: freebsd-questions@freebsd.org Received: from camomila.ruraltech.com.br (camomila.ruraltech.com.br [200.252.123.132]) by hub.freebsd.org (Postfix) with ESMTP id 1D29B15012 for ; Tue, 17 Aug 1999 11:39:07 -0700 (PDT) (envelope-from kevison@ruraltech.com.br) Received: from ruraltech.com.br (assa-peixe.ruraltech.com.br [200.252.123.129]) by camomila.ruraltech.com.br (8.9.1a/8.9.1) with ESMTP id PAA02674 for ; Tue, 17 Aug 1999 15:57:44 -0300 Message-ID: <37B9AB62.412BD28@ruraltech.com.br> Date: Tue, 17 Aug 1999 15:35:14 -0300 From: Kevison Dennys Carrilho Bentes X-Mailer: Mozilla 4.6 [en] (Win95; I) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: mylex 960 PG and RAId five Content-Type: multipart/mixed; boundary="------------753F2044882241CFD7185750" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. --------------753F2044882241CFD7185750 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Dear Support, I have one scsi card pci mylex 960 PG and five hard disks IBM of 18 gigabytes. My pc server is Intel Pentium III. I need install freebsd release 3.2 in this server with raid five. It=B4s possible? Do you have a driver for myles 960 pg with raid five for freebsd? I wait your response. Thanks, kevison@ruraltech.com.br --------------753F2044882241CFD7185750 Content-Type: text/x-vcard; charset=us-ascii; name="kevison.vcf" Content-Transfer-Encoding: 7bit Content-Description: Card for Kevison Dennys Carrilho Bentes Content-Disposition: attachment; filename="kevison.vcf" begin:vcard n:Bentes;Kevison Dennys Carrilho Bentes tel;fax:55 61 225-4558 tel;work:55 61 313-8002 x-mozilla-html:FALSE org:Branet adr:;;SCS Quadra 3 Bloco A Edificio Bratur 2º andar;Brasilia ;DF;70300-500;Brazil version:2.1 email;internet:kevison@ruraltech.com.br title:Administrador de Rede x-mozilla-cpt:;8128 fn:Kevison Dennys Carrilho Bentes end:vcard --------------753F2044882241CFD7185750-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 11:39:38 1999 Delivered-To: freebsd-questions@freebsd.org Received: from dt011n65.san.rr.com (dt011n65.san.rr.com [204.210.13.101]) by hub.freebsd.org (Postfix) with ESMTP id B7B3E14CD3 for ; Tue, 17 Aug 1999 11:39:28 -0700 (PDT) (envelope-from Doug@gorean.org) Received: from localhost (doug@localhost) by dt011n65.san.rr.com (8.9.3/8.8.8) with ESMTP id LAA30709; Tue, 17 Aug 1999 11:37:53 -0700 (PDT) (envelope-from Doug@gorean.org) Date: Tue, 17 Aug 1999 11:37:53 -0700 (PDT) From: Doug X-Sender: doug@dt011n65.san.rr.com To: Kevin Schmolze Cc: freebsd-questions@FreeBSD.ORG Subject: Re: compadability In-Reply-To: <000201bee83a$c50d8f60$58604b0c@default> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG A) Either the date on your computer is wrong or your mail delivery is reeeeaaalllyyy sssslllooowwww B) You're asking the wrong list. Good luck, Doug On Sun, 25 Jul 1999, Kevin Schmolze wrote: > I currently have win 98 and would like to switch to sco unix is their > anything I can do to still use my other programs I have 2 drives c 6.8 gig > and d 1.7 gig. but a program that I would like to use will only work with > sco unix,aix,solaris 1.1 and 2.x HP-UX any solutions? -- On account of being a democracy and run by the people, we are the only nation in the world that has to keep a government four years, no matter what it does. -- Will Rogers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 11:40:47 1999 Delivered-To: freebsd-questions@freebsd.org Received: from dt011n65.san.rr.com (dt011n65.san.rr.com [204.210.13.101]) by hub.freebsd.org (Postfix) with ESMTP id 0174515749 for ; Tue, 17 Aug 1999 11:40:43 -0700 (PDT) (envelope-from Doug@gorean.org) Received: from localhost (doug@localhost) by dt011n65.san.rr.com (8.9.3/8.8.8) with ESMTP id LAA30713; Tue, 17 Aug 1999 11:39:31 -0700 (PDT) (envelope-from Doug@gorean.org) Date: Tue, 17 Aug 1999 11:39:31 -0700 (PDT) From: Doug X-Sender: doug@dt011n65.san.rr.com To: Charlie Root Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Apsfilter, magicfilter & etc. In-Reply-To: <37B84CDB.80DA37CD@gci.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, 16 Aug 1999, Charlie Root wrote: > The handbook mentions these filters but does not give any instructions > for how to enable or link them. All you have to do is install apsfilter from the ports. It will install all the programs you need for printing and fix up /etc/printcap for you. Good luck, Doug -- On account of being a democracy and run by the people, we are the only nation in the world that has to keep a government four years, no matter what it does. -- Will Rogers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 11:40:48 1999 Delivered-To: freebsd-questions@freebsd.org Received: from dan.emsphone.com (dan.emsphone.com [199.67.51.101]) by hub.freebsd.org (Postfix) with ESMTP id 33E721577F for ; Tue, 17 Aug 1999 11:40:43 -0700 (PDT) (envelope-from dan@dan.emsphone.com) Received: (from dan@localhost) by dan.emsphone.com (8.9.3/8.9.3) id NAA71662; Tue, 17 Aug 1999 13:39:38 -0500 (CDT) (envelope-from dan) Date: Tue, 17 Aug 1999 13:39:37 -0500 From: Dan Nelson To: dave@netcarrier.com Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Micro-adjusting system clock? Message-ID: <19990817133937.A70800@dan.emsphone.com> References: <19990817102159.A66341@dan.emsphone.com> <7pc4ht$99hb@eGroups.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.6i In-Reply-To: <7pc4ht$99hb@eGroups.com>; from "dave@netcarrier.com" on Tue Aug 17 10:01:49 GMT 1999 X-OS: FreeBSD 4.0-CURRENT Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In the last episode (Aug 17), dave@netcarrier.com said: > Wow, thanks. xntpd is quite a beast, and the man page reads like War > and Peace. Here are a few follow-up questions: > > - when xntpd synchronizes with another host, does it do > micro-adjustments to prevent time wrinkles (even the first time), or > does is do one big adjustment? It slews if the difference if under 128 msecs, and steps otherwise. It will not step if the clock is more than 1000 seconds off. > - is there a way to run it "standalone", ie, to adjust a clock on an > unnetworked server? You can have it use the internal clock as a time source. I usually do this in my ntp.conf: peer mypeer.host.com server 127.127.1.0 fudge 127.127.1.0 stratum 10 That tells ntp that it has two time sources; mypeer.host.com and 127.127.1.0 (which is a codename for the internal clock). The internal clock is set to a stratum of 10, which makes it very low priority. when your net connection is up it will sync to mypeer.host.com. For the rest of the time it will free-run on its own clock. see http://www.eecis.udel.edu/~ntp/ for more information. -- Dan Nelson dnelson@emsphone.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 11:45:16 1999 Delivered-To: freebsd-questions@freebsd.org Received: from cs.rice.edu (cs.rice.edu [128.42.1.30]) by hub.freebsd.org (Postfix) with ESMTP id 714C215755 for ; Tue, 17 Aug 1999 11:45:09 -0700 (PDT) (envelope-from aron@cs.rice.edu) Received: (from aron@localhost) by cs.rice.edu (8.9.0/8.9.0) id NAA28562 for freebsd-questions@freebsd.org; Tue, 17 Aug 1999 13:44:24 -0500 (CDT) Date: Tue, 17 Aug 1999 13:44:24 -0500 (CDT) From: Mohit Aron Message-Id: <199908171844.NAA28562@cs.rice.edu> To: freebsd-questions@freebsd.org Subject: ext2fs filesystem Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, I want to compile my kernel with support for the ext2fs filesystem. Can someone tell me how to do this. Thanks, - Mohit To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 11:54:10 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail.iso-ne.com (mail.iso-ne.com [208.132.134.39]) by hub.freebsd.org (Postfix) with SMTP id 6BA7615602 for ; Tue, 17 Aug 1999 11:54:07 -0700 (PDT) (envelope-from msoffen@iso-ne.com) Received: (qmail 26501 invoked from network); 17 Aug 1999 18:40:50 -0000 Received: from unknown (HELO exchange?ser.iso-ne.com) (208.132.134.66) by mail.iso-ne.com with SMTP; 17 Aug 1999 18:40:50 -0000 Received: by msexchange.iso-ne.com with Internet Mail Service (5.0.1458.49) id ; Tue, 17 Aug 1999 14:57:05 -0400 Message-ID: From: "Soffen, Matthew" To: freebsd-questions@FreeBSD.ORG Subject: PERL Net::SSLeay support for OpenSSL Date: Tue, 17 Aug 1999 14:57:01 -0400 X-Priority: 3 X-Mailer: Internet Mail Service (5.0.1458.49) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Has anyone ported Net::SSLeay to Net::OpenSSL ? I have tried, but I am not familiar enough with Net::SSLeay to do it. (although I DID convert the openssl 0.9.3a port to openssl 0.9.4). Matt Soffen Applications Developer http://www.iso-ne.com/ ============================================== Boss - "My boss says we need some eunuch programmers." Dilbert - "I think he means UNIX and I already know UNIX." Boss - "Well, if the company nurse comes by, tell her I said never mind." - Dilbert - ============================================== To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 11:55: 7 1999 Delivered-To: freebsd-questions@freebsd.org Received: from bingnet2.cc.binghamton.edu (bingnet2.cc.binghamton.edu [128.226.1.18]) by hub.freebsd.org (Postfix) with ESMTP id 44992156E1 for ; Tue, 17 Aug 1999 11:54:56 -0700 (PDT) (envelope-from zzhang@cs.binghamton.edu) Received: from sol.cs.binghamton.edu (cs1-gw.cs.binghamton.edu [128.226.171.72]) by bingnet2.cc.binghamton.edu (8.9.3/8.9.3) with SMTP id OAA08265; Tue, 17 Aug 1999 14:55:17 -0400 (EDT) Date: Tue, 17 Aug 1999 14:41:59 -0400 (EDT) From: Zhihui Zhang To: Matthew Hunt Cc: rssh@grad.kiev.ua, freebsd-questions@FreeBSD.ORG Subject: Re: Explain the output of ls In-Reply-To: <19990817113407.A17364@wopr.caltech.edu> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, 17 Aug 1999, Matthew Hunt wrote: > On Tue, Aug 17, 1999 at 02:18:56PM -0400, Zhihui Zhang wrote: > > > > Maybe you have BLOCKSIZE=K in your environment? > > > > Yes. I tried "setenv BLOCKSIZE=512" without success (I am using tcsh). > > The syntax for csh and tcsh does not have the equals sign. Try > "setenv BLOCKSIZE 512". > > I have confirmed that ls(1) reports 512-blocks when BLOCKSIZE is > unset or set to 512, and 1k-blocks when BLOCKSIZE is set to K. > Thanks. You are right. -Zhihui To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 11:55:20 1999 Delivered-To: freebsd-questions@freebsd.org Received: from caxton.correionet.com.br (caxton.correionet.com.br [200.246.35.7]) by hub.freebsd.org (Postfix) with ESMTP id 5736214E0D for ; Tue, 17 Aug 1999 11:54:35 -0700 (PDT) (envelope-from morte@correionet.com.br) Received: from caxton.correionet.com.br (caxton.correionet.com.br [200.246.35.7]) by caxton.correionet.com.br (8.9.3/8.9.3) with ESMTP id PAA75578 for ; Tue, 17 Aug 1999 15:54:09 -0300 (EST) Date: Tue, 17 Aug 1999 15:54:09 -0300 (EST) From: Luiz Morte da Costa Junior To: freebsd-questions@FreeBSD.ORG Subject: Motherboard Intel Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello, I have a L440GX+ Server Board, dual processor (pentium III 450Mhz), 512M RAM, running FreeBSD. My problem is when I run a process with many disk access. The machine doesn't response anything. My machine is down. Any ideia? []s, Luiz Morte da Costa Junior Analista de Redes E-mail: morte@correionet.com.br Telefone: +55 19 754-2532 Fax: +55 19 255-7576 CorreioNet - Correio Popular Campinas - SP - Brazil To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 12: 0: 8 1999 Delivered-To: freebsd-questions@freebsd.org Received: from bingnet2.cc.binghamton.edu (bingnet2.cc.binghamton.edu [128.226.1.18]) by hub.freebsd.org (Postfix) with ESMTP id D2E9815701 for ; Tue, 17 Aug 1999 12:00:01 -0700 (PDT) (envelope-from zzhang@cs.binghamton.edu) Received: from sol.cs.binghamton.edu (cs1-gw.cs.binghamton.edu [128.226.171.72]) by bingnet2.cc.binghamton.edu (8.9.3/8.9.3) with SMTP id OAA09307 for ; Tue, 17 Aug 1999 14:59:09 -0400 (EDT) Date: Tue, 17 Aug 1999 14:45:50 -0400 (EDT) From: Zhihui Zhang To: freebsd-questions@freebsd.org Subject: Clean up the output of script command Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I use script command frequently to record the commands I issued and their outputs. The file "typescript" always contains some characters like ^H, ^K, ^[. How can I get rid of these annoying characters? Thanks for any help. -------------------------------------------------- Zhihui Zhang. Please visit http://www.freebsd.org -------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 12: 1:19 1999 Delivered-To: freebsd-questions@freebsd.org Received: from dt011n65.san.rr.com (dt011n65.san.rr.com [204.210.13.101]) by hub.freebsd.org (Postfix) with ESMTP id 4AEAD156B9 for ; Tue, 17 Aug 1999 12:01:13 -0700 (PDT) (envelope-from Doug@gorean.org) Received: from localhost (doug@localhost) by dt011n65.san.rr.com (8.9.3/8.8.8) with ESMTP id MAA30800; Tue, 17 Aug 1999 12:01:34 -0700 (PDT) (envelope-from Doug@gorean.org) Date: Tue, 17 Aug 1999 12:01:34 -0700 (PDT) From: Doug X-Sender: doug@dt011n65.san.rr.com To: mcwong@ascend.com Cc: questions@freebsd.org Subject: Re: Safe upgrade from 2.2.5 --> 3.2 ? In-Reply-To: <882567D0.0045C726.00@colton.ascend.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, 17 Aug 1999 mcwong@ascend.com wrote: > Is there any safe and reliable way of ugrading from 2.2.5 to 3.2 ? > Is there any upgrade utility/script available which has been tested > with success ? Yes. Take a look at http://freebsd.simplenet.com/make-upgrade.html Good luck, Doug To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 12: 6:17 1999 Delivered-To: freebsd-questions@freebsd.org Received: from dt011n65.san.rr.com (dt011n65.san.rr.com [204.210.13.101]) by hub.freebsd.org (Postfix) with ESMTP id CF3EF156B9 for ; Tue, 17 Aug 1999 12:06:11 -0700 (PDT) (envelope-from Doug@gorean.org) Received: from localhost (doug@localhost) by dt011n65.san.rr.com (8.9.3/8.8.8) with ESMTP id MAA30808; Tue, 17 Aug 1999 12:05:30 -0700 (PDT) (envelope-from Doug@gorean.org) Date: Tue, 17 Aug 1999 12:05:29 -0700 (PDT) From: Doug X-Sender: doug@dt011n65.san.rr.com To: slava Cc: freebsd-questions@freebsd.org Subject: Re: xntpd and 3.1R problem In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, 17 Aug 1999, slava wrote: > Is there a problem with xntpd in 3.1release? I keep > getting this error and the deamon dies afterwards: > > Aug 17 11:33:43 zeus xntpd[29849]: time error -10616.253729 is way too large > (set clock manually) Did you actually read that error message? The whole thing? Especialy the last 3 words? Somehow your system clock has gotten very far out of whack. Like, almost 3 hours out of whack. Use ntpdate to synch your clock manually to the preferred server from your ntp.conf file, then start xntpd. It's a good idea to do that every time anyway to avoid this exact situation. Good luck, Doug -- On account of being a democracy and run by the people, we are the only nation in the world that has to keep a government four years, no matter what it does. -- Will Rogers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 12: 7: 6 1999 Delivered-To: freebsd-questions@freebsd.org Received: from revolution.3-cities.com (revolution.3-cities.com [204.203.224.155]) by hub.freebsd.org (Postfix) with ESMTP id 9DABA1576A for ; Tue, 17 Aug 1999 12:06:55 -0700 (PDT) (envelope-from kstewart@3-cities.com) Received: from OPAL (kenn1104.bossig.com [208.26.241.104]) by revolution.3-cities.com (8.9.3/8.9.3) with SMTP id MAA08005; Tue, 17 Aug 1999 12:07:15 -0700 (PDT) Message-ID: <008f01bee8e3$c7965150$0500fea9@OPAL> From: "Kent Stewart" To: "Reinoud Koornstra" , References: Subject: Re: bug wich crashes freebsd 3.2 Date: Tue, 17 Aug 1999 12:07:40 -0700 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2918.2701 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2918.2701 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ----- Original Message ----- From: Reinoud Koornstra To: Sent: Tuesday, August 17, 1999 11:18 AM Subject: bug wich crashes freebsd 3.2 > Hi, > > I run into a annoying bug in the freebsd 3.2 > Maybe it is known to you, but freebsd 3.1 also crashes on this point. > > It's simple, take a i386 machine with freebsd 3.2 installed on it. > Put an 1.44 inch disk in the drive wich is formatted with the ms dos fs. > then mount_msdos /dev/fd0 /mnt > then cd /mnt > then ls > I tryed to copy a file from my hd to the disk, but the disk was write > protected, so it didnt work. > I had one file on the floppy and tryed to remove it, but i got an error > cause the disk was write protected. > Then i took the floppy out and remove the write protection and put the > floppy in again and typed ls again. > On that moment freebsd 3.2 hangs. > I tryed this 3 times and everytime i had the same result. It probably shouldn't have hung but you shouldn't have removed the floppy before you umounted it. Kent > Do you know this bug? > Is this fixed in 4.0? > Sincerely, > > Reinoud. > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 12:14: 6 1999 Delivered-To: freebsd-questions@freebsd.org Received: from dt011n65.san.rr.com (dt011n65.san.rr.com [204.210.13.101]) by hub.freebsd.org (Postfix) with ESMTP id 3121C15749 for ; Tue, 17 Aug 1999 12:14:02 -0700 (PDT) (envelope-from Doug@gorean.org) Received: from localhost (doug@localhost) by dt011n65.san.rr.com (8.9.3/8.8.8) with ESMTP id MAA30833; Tue, 17 Aug 1999 12:14:25 -0700 (PDT) (envelope-from Doug@gorean.org) Date: Tue, 17 Aug 1999 12:14:25 -0700 (PDT) From: Doug X-Sender: doug@dt011n65.san.rr.com To: Forrest Aldrich Cc: freebsd-questions@freebsd.org Subject: Re: DELL servers and FreeBSD In-Reply-To: <4.2.0.58.19990817140100.00ada6f0@216.67.12.69> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, 17 Aug 1999, Forrest Aldrich wrote: > Just as a pre-emptive question: has anyone run into problems running > FreeBSD on any DELL servers? Not at all. I've had versions of Freebsd from 2.1.5 through 3.2-Stable running on a dell server for years and never had a lick of trouble. They build good boxes with standard components and provide excellent support. In fact, I like dell so much I bought the company! (Ok, just some stock, but I do own a chunk. :) Doug -- On account of being a democracy and run by the people, we are the only nation in the world that has to keep a government four years, no matter what it does. -- Will Rogers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 12:17:27 1999 Delivered-To: freebsd-questions@freebsd.org Received: from dt011n65.san.rr.com (dt011n65.san.rr.com [204.210.13.101]) by hub.freebsd.org (Postfix) with ESMTP id 96D5815749 for ; Tue, 17 Aug 1999 12:17:22 -0700 (PDT) (envelope-from Doug@gorean.org) Received: from localhost (doug@localhost) by dt011n65.san.rr.com (8.9.3/8.8.8) with ESMTP id MAA30854; Tue, 17 Aug 1999 12:16:36 -0700 (PDT) (envelope-from Doug@gorean.org) Date: Tue, 17 Aug 1999 12:16:36 -0700 (PDT) From: Doug X-Sender: doug@dt011n65.san.rr.com To: Reinoud Koornstra Cc: freebsd-questions@FreeBSD.ORG Subject: Re: bug wich crashes freebsd 3.2 In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, 17 Aug 1999, Reinoud Koornstra wrote: > Then i took the floppy out and remove the write protection and put the > floppy in again and typed ls again. > On that moment freebsd 3.2 hangs. > I tryed this 3 times and everytime i had the same result. > Do you know this bug? Did you unmount the fs before removing the floppy? If not that would explain what you're seeing, which would not be a bug. If you did umount it first, I'd say this is a bug and you should use send-pr to report it. Doug To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 12:19:40 1999 Delivered-To: freebsd-questions@freebsd.org Received: from cs.rpi.edu (mumble.cs.rpi.edu [128.213.8.16]) by hub.freebsd.org (Postfix) with ESMTP id DCE2B15749 for ; Tue, 17 Aug 1999 12:19:32 -0700 (PDT) (envelope-from maniattb@cs.rpi.edu) Received: from cs.rpi.edu (maniattb@dishwasher.cs.rpi.edu [128.213.8.31]) by cs.rpi.edu (8.9.3/8.9.3) with ESMTP id PAA58400 for ; Tue, 17 Aug 1999 15:20:03 -0400 (EDT) Message-Id: <199908171920.PAA58400@cs.rpi.edu> X-Mailer: exmh version 2.0.1 12/23/97 To: freebsd-questions@FreeBSD.ORG Subject: FreeBSD printing hardware Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 17 Aug 1999 15:20:00 -0400 From: Bill Maniatty Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I am shopping for a system, and want to make sure that I get a printer configuration which works fairly well with FreeBSD and hopefully ghostscript. I was thinking of getting 2 printers (one color inkjet and one monochrome laser jet). My questions become: 1) I would like to get high resolution color output on the inkjet, do people have specific printer recommendations (I was considering an Epson Stylus 850). Are there any good inkjets with native postscript support (I'd be willing to pay a bit more for it I guess). 2) Is there any recommendations regarding PCI cards providing an extra parallel port that I should be aware of (one vendor here is pushing SIIG cards)? 3) For the printer suggested in (1) how can I get the best output quality if I must use a software driver (e.g. ghostscript installation hints and options). 4) For a monochrome laser, is an HP1100 or HP2100 (if I feel rich :-) a good choice? Regards: Bill Maniatty To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 12:19:49 1999 Delivered-To: freebsd-questions@freebsd.org Received: from ux1.ibb.net (ibb0005.ibb.uu.nl [131.211.124.5]) by hub.freebsd.org (Postfix) with ESMTP id 2A36615749 for ; Tue, 17 Aug 1999 12:19:39 -0700 (PDT) (envelope-from Reinoud.Koornstra@ibbnet.nl) Received: from localhost (reinoud@localhost) by ux1.ibb.net (8.8.7/8.8.5/TT) with SMTP id VAA05702; Tue, 17 Aug 1999 21:20:03 +0200 Date: Tue, 17 Aug 1999 21:20:03 +0200 (MET DST) From: Reinoud Koornstra X-Sender: reinoud@ux1.ibb.net To: Doug Cc: Reinoud Koornstra , freebsd-questions@FreeBSD.ORG Subject: Re: bug wich crashes freebsd 3.2 In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG No i didnt umount the disk first. But i didnt umount it on purpose to see. And what if a user forgets to umount it before removing? A whole os cant just hang by a user mistake now can it? Bye, Reinoud. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 12:32:11 1999 Delivered-To: freebsd-questions@freebsd.org Received: from sparkie.gnofn.org (sparkie.gnofn.org [206.27.168.35]) by hub.freebsd.org (Postfix) with ESMTP id 23805157B9 for ; Tue, 17 Aug 1999 12:31:01 -0700 (PDT) (envelope-from ado01@gnofn.org) Received: from sparkie.gnofn.org (sparkie.gnofn.org [216.116.72.35]) by sparkie.gnofn.org (8.8.8/8.8.8) with SMTP id OAA29809; Tue, 17 Aug 1999 14:30:15 -0500 (CDT) Date: Tue, 17 Aug 1999 14:30:15 -0500 (CDT) From: "Agoro (S.) D Ombaka (Agoro-Ombaka)" Reply-To: "Agoro (S.) D Ombaka (Agoro-Ombaka)" To: freebsd-questions@freebsd.org Cc: "Agoro (S.) D Ombaka (Agoro-Ombaka)" Subject: FreeBSD & LINUX OS comparison Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG __________________________________________________________________________ I was impressed by the extent of the FAQ library on FreeBSD. However, I would like to see a comparison between LINUX Red Hat and FreeBSD, in order to decide from the start, which system to install & use. Could you please detail which features would make FreeBSD a better choice than LINUX Red Hat. (So far, the only mention in found in the FAQ, regarding comparative features, was that FreeBSD uses more swap space than LINUX.) -- Thanks in anticipation for your reply -- -- Agoro -- __________________________________________________________________________ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 12:36:22 1999 Delivered-To: freebsd-questions@freebsd.org Received: from ux1.ibb.net (ibb0005.ibb.uu.nl [131.211.124.5]) by hub.freebsd.org (Postfix) with ESMTP id 075E3155EE for ; Tue, 17 Aug 1999 12:36:13 -0700 (PDT) (envelope-from Reinoud.Koornstra@ibbnet.nl) Received: from localhost (reinoud@localhost) by ux1.ibb.net (8.8.7/8.8.5/TT) with SMTP id VAA05758; Tue, 17 Aug 1999 21:35:08 +0200 Date: Tue, 17 Aug 1999 21:35:08 +0200 (MET DST) From: Reinoud Koornstra X-Sender: reinoud@ux1.ibb.net To: Kent Stewart Cc: Reinoud Koornstra , freebsd-questions@FreeBSD.ORG Subject: gnome in bsd In-Reply-To: <008f01bee8e3$c7965150$0500fea9@OPAL> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Dear Folks, I used sysinstall to install xwindows on my system. At the end he asked what desktop environment to use. I choose gnome and as window manager he used automaticly afterstep. Now can i upgrade gnome with the ports or would i have to deinstall the current gnome i am running? If so, how can i do that? Can i just install enlightment and make it run under gnome? Sincerely, Reinoud. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 12:37:59 1999 Delivered-To: freebsd-questions@freebsd.org Received: from dt011n65.san.rr.com (dt011n65.san.rr.com [204.210.13.101]) by hub.freebsd.org (Postfix) with ESMTP id 4472915787 for ; Tue, 17 Aug 1999 12:37:51 -0700 (PDT) (envelope-from Doug@gorean.org) Received: from localhost (doug@localhost) by dt011n65.san.rr.com (8.9.3/8.8.8) with ESMTP id MAA31134; Tue, 17 Aug 1999 12:38:11 -0700 (PDT) (envelope-from Doug@gorean.org) Date: Tue, 17 Aug 1999 12:38:11 -0700 (PDT) From: Doug X-Sender: doug@dt011n65.san.rr.com To: Reinoud Koornstra Cc: Doug , freebsd-questions@FreeBSD.ORG Subject: Re: bug wich crashes freebsd 3.2 In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, 17 Aug 1999, Reinoud Koornstra wrote: > A whole os cant just hang by a user mistake now can it? Obviously it can. :) Whether it should or not is a whole other question. Doug -- On account of being a democracy and run by the people, we are the only nation in the world that has to keep a government four years, no matter what it does. -- Will Rogers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 12:46:29 1999 Delivered-To: freebsd-questions@freebsd.org Received: from nisser.com (n2000039.telekabel.chello.nl [212.187.0.39]) by hub.freebsd.org (Postfix) with ESMTP id 60DD114EA8 for ; Tue, 17 Aug 1999 12:46:26 -0700 (PDT) (envelope-from roelof@nisser.com) Received: from nisser.com (roelof [10.0.0.2]) by nisser.com (8.9.2/8.9.2) with ESMTP id VAA09347; Tue, 17 Aug 1999 21:44:57 +0200 (CEST) (envelope-from roelof@nisser.com) Message-ID: <37B9BBA6.AC80624F@nisser.com> Date: Tue, 17 Aug 1999 21:44:38 +0200 From: Roelof Osinga Organization: eboa - engineering buro Office Automation X-Mailer: Mozilla 4.6 [en] (WinNT; I) X-Accept-Language: en MIME-Version: 1.0 To: big-sky@altavista.net Cc: Freebsd-Questions Subject: Re: Certificate Howto References: <000001bee8c8$41f17900$0201010a@cmr.net> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Mark Einreinhof wrote: > > Is there a Howto/FAQ that explains "make certificate type=*" ? I just want > to create a cert that contains my info so I know when I pointed my browser > to my server to go secure, I got my server and no longer get the SnakeOil > cert. I don't need all the fancy Verisign, etc. stuff. The SSLeay docs describe how to do that. Can't easily tell you since it's been over a year since I did it. But it wasn't that hard. Basically you first generate a CA certificate and then use that to certify your own certificate. Most browser will allow you to add such a self signed certificate. Roelof PS also noticed that the O'Reilly apache book has a chapter about SSL including making certificates. But I just bought it and haven't had time to do more than browse it. -- Home is where the (@) http://eboa.com/ is. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 12:49:33 1999 Delivered-To: freebsd-questions@freebsd.org Received: from osage.gate.net (osage.gate.net [198.206.134.25]) by hub.freebsd.org (Postfix) with ESMTP id 8A85C15711 for ; Tue, 17 Aug 1999 12:49:23 -0700 (PDT) (envelope-from wjm@gate.net) Received: from navajo.gate.net (wjm@navajo.gate.net [199.227.0.15]) by osage.gate.net (8.8.6/8.6.12) with ESMTP id PAA35312 for ; Tue, 17 Aug 1999 15:46:49 -0400 Received: from localhost (wjm@localhost) by navajo.gate.net (8.8.6/8.7.3) with ESMTP id PAA39366 for ; Tue, 17 Aug 1999 15:48:51 -0400 X-Authentication-Warning: navajo.gate.net: wjm owned process doing -bs Date: Tue, 17 Aug 1999 15:48:51 -0400 (EDT) From: William Melanson To: freebsd-questions@FreeBSD.ORG Subject: Re: compadability In-Reply-To: <000201bee83a$c50d8f60$58604b0c@default> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, 25 Jul 1999, Kevin Schmolze wrote: % % I currently have win 98 and would like to switch to sco unix is their % anything I can do to still use my other programs I have 2 drives c 6.8 gig % and d 1.7 gig. but a program that I would like to use will only work with % sco unix,aix,solaris 1.1 and 2.x HP-UX any solutions? % And the bsd platform fits into this question.....? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 12:54:53 1999 Delivered-To: freebsd-questions@freebsd.org Received: from revolution.3-cities.com (revolution.3-cities.com [204.203.224.155]) by hub.freebsd.org (Postfix) with ESMTP id DD99214EA8 for ; Tue, 17 Aug 1999 12:54:48 -0700 (PDT) (envelope-from kstewart@3-cities.com) Received: from 3-cities.com (kenn1104.bossig.com [208.26.241.104]) by revolution.3-cities.com (8.9.3/8.9.3) with ESMTP id MAA15572; Tue, 17 Aug 1999 12:53:35 -0700 (PDT) Message-ID: <37B9BDD8.F86A2B29@3-cities.com> Date: Tue, 17 Aug 1999 12:54:00 -0700 From: Kent Stewart Organization: BOSSig X-Mailer: Mozilla 4.61 [en] (WinNT; U) X-Accept-Language: en MIME-Version: 1.0 To: Bill Maniatty Cc: freebsd-questions@FreeBSD.ORG Subject: Re: FreeBSD printing hardware References: <199908171920.PAA58400@cs.rpi.edu> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Bill Maniatty wrote: > > I am shopping for a system, and want to make sure that I get a printer > configuration which works fairly well with FreeBSD and hopefully ghostscript. > I was thinking of getting 2 printers (one color inkjet and one monochrome > laser jet). My questions become: > > 1) I would like to get high resolution color output on the inkjet, > do people have specific printer recommendations (I was > considering an Epson Stylus 850). Are there any > good inkjets with native postscript support (I'd > be willing to pay a bit more for it I guess). The Epson was postscript by drivers and the drivers at one point were only for WIndows or a MAC. I looked up what printers supported postscript and, at that time, there was a Xerox, a Lexmark OPTRA, and an HP2500CM. The Xerox was the only one supporting PS 3. Some of them come with 10/100 NIC's built in and I like that flexibility. I have two injets and an old Brother HL8e laser that is on a printserver. Less trouble interacting with both Windows and FreeBSD. I haven't been printing color from FreeBSD and those printers are on parallel ports. All of my Adobe stuff is Windows based and running on NT right now. None of them have PS. I could add it to my HP 1600C but that would be throwing $500 US away in my book. > 2) Is there any recommendations regarding PCI cards providing an > extra parallel port that I should be aware of (one vendor > here is pushing SIIG cards)? I've use SIIG cards for the com ports. It wasn't a problem other than you have to use their cables. > 3) For the printer suggested in (1) how can I get the best > output quality if I must use a software driver > (e.g. ghostscript installation hints and options). I tried ghostscript and none of the interfaces did 1200dpi color. They also did a number of things poorly such as fills. Why emulate when you can use the real thing. > 4) For a monochrome laser, is an HP1100 or HP2100 (if I feel rich :-) > a good choice? The HP 4050 is a much better choice because it comes with PS 2 and for $300 you can add a duplexer if it becomes important. The HP 2100 would be my only other choice because for $100+ you can add postscript to it. The local Office Depot has a TN model for $999, which means networking and postscript, but you can buy a 4050 for $982 at buy.com and get a lot more printer. The 1100 looks like a personal printer and I don't trust them for duty cycle. Kent > > Regards: > > Bill Maniatty > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- Kent Stewart Richland, WA mailto:kstewart@3-cities.com http://www.3-cities.com/~kstewart/index.html SETI (Search for Extraterrestrial Intelligence) @ Home http://setiathome.ssl.berkeley.edu/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 13: 1:27 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mobil.surnet.ru (mobil.surnet.ru [195.54.2.7]) by hub.freebsd.org (Postfix) with ESMTP id 0639514D3E for ; Tue, 17 Aug 1999 13:00:19 -0700 (PDT) (envelope-from ilia@cgilh.chel.su) Received: (from uucgilh@localhost) by mobil.surnet.ru (8.9.1a/8.9.1) with UUCP id BAA02215; Wed, 18 Aug 1999 01:56:18 +0600 (UDT) Received: (from uucp@localhost) by cgilh.chel.su (8.8.7/8.8.7) with UUCP id BAA01326; Wed, 18 Aug 1999 01:25:55 +0600 Received: from localhost (ilia@localhost) by localhost.cgu.chel.su (8.9.2/8.9.2) with ESMTP id BAA01645; Wed, 18 Aug 1999 01:18:42 +0600 (ESS) (envelope-from ilia@cgilh.chel.su) X-Authentication-Warning: localhost.cgu.chel.su: ilia owned process doing -bs Date: Wed, 18 Aug 1999 01:18:39 +0600 (ESS) From: Ilia Chipitsine X-Sender: ilia@localhost.cgu.chel.su To: Fabio da Silva Cunha Cc: questions@FreeBSD.ORG Subject: Re: Mail routing on the Intranet / Internet - FreeBSD In-Reply-To: <1.5.4.32.19990817144814.0097ff10@mymail.com.br> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=koi8-r Content-Transfer-Encoding: 8BIT Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG here go few ideas. well, I stick to UUCP, because I'm using it. the goal: ===================================================================== to have actually 4 domains (domain.com.br, locX.domain.com.br where X=1,2,3). site domain.com.br is online 24hours. sites locX.domain.com.br could be offline, all mail will be collected at domain.com.br anyway the all 4 domains are administered independently (local roots can add new users at locX.domain.com.br without anybody knowing). ===================================================================== I hope 'domain.com.br' is registered domain. 1. ask you provider (or did it youself) to add MX entries for locX.domain.com.br (like it's done for cgilh.chel.su or for jane.cgu.chel.su, just type "$ host cgilh.chel.su"). 2. on machines locX.domain.com.br add the following line to /etc/mailertable ------------------------------------------------------------- .domain.com.br uucp-dom:domain domain.com.br uucp-dom:domain . uucp-dom:domain ------------------------------------------------------------- do not forget to !! "makemap hash /etc/mailertable.db < /etc/mailertable" 3. on machines locX.domain.com.br adjust /etc/uucp/* to 'call' goes ------------------------------ domain UlocX locX-passwd ------------------------------ domain - UUCP-name of domain.com.br UlocX - UUCP-account at domain.com.br (I'll tell you later) locX-passwd - clear-text password for that account to 'config' goes ------------------------------- uuname locX ------------------------------- where locX - is UUCP-name of locX machine to sys goes ------------------------------- # # domain.com.br system domain called-login * time Any port type TCP address domain.com.br chat ogin: \L word: \P ------------------------------- 4. on machines locX.domain.com.br also adjust sendmail configuration, make domain.com.br as SMART_HOST (just adding DSdomain.com.br to /etc/sendmail.cf should be enough) now I'll try to describe setup at domain.com.br, it's more tricky cause I'm not running the server :-) 5. you should create UUCP-accounts for each machine, something like (/etc/passwd) UlocX:*:2014:66:UUCP account for locX machine:/tmp:/usr/libexec/uucp/uucico one UID, GID should be enough, do not forget to set those passwords (from /etc/uucp/call on locX) 6. /etc/mailertable on domain.com.br ----------------------------------- .locX.domain.com.br uucp-dom:locX locX.domain.com.br uucp-dom:locX ------------------------------- 7. probably you need to adjust /etc/uucp/passwd on domain.com.br, but I'm pretty sure we didn't do it. 8. since all the mail is to be collected at domain.com.br, you need to 'fetch' it to locX.domain.com.br, do it with (on locX.domain.com.br) $ /usr/libexec/uucp/uucico -S domain 9. all the messages about errors you can find at /var/log/messages and at /var/spool/uucp/Log 10. let me know how it worked for you ! make sure your sendmails understand /etc/mailertable ! did I miss anything ?! anybody, correct me. Regards, (îÁÉÌÕÞÛÉÅ ÐÏÖÅÌÁÎÉÑ) Ilia Chipitsine (éÌØÑ ûÉÐÉÃÉÎ) On Tue, 17 Aug 1999, Fabio da Silva Cunha wrote: > > Hi Friends! > > I have a litle problem: > > I have a small intranet (3 Sites conected by leased lines with > routers) and i need to connect it > to the internet to send and receive e-mail. > > All Sites have one FreeBSD 2.2.8 Mail Server with Sendmail 8.8.8, > and uses private address. > > The Head Office uses a FreeBSD 2.2.8 (Sendmail 8.8.8) with two > network interfaces: one private > conected to the intranet, and one public, conected to the internet by the > firewall (FreeBSD 3.2). > > > My network: > |---------------| > loc1.domain.com.br | | > ---------------------- 10.1.1.x | Head Office | > | mail server 1 |-------------| | > ---------------------- | | > | | > loc2.domain.com.br | domain.com.br | > ---------------------- 10.1.2.x | | 200.x.x.x > [--------] > | mail server 2 |-------------| Mail > |------------[FIREWALL]--> INTERNET > ---------------------- | Server4 | > [--------] > | | > loc3.domain.com.br | | > ---------------------- 10.1.3.x | | > | mail server 3 |-------------| | > ---------------------- |---------------| > > The problem: > > How to route mail beetwen these 3 locations and the internet through > the Mail Server4 in Head Office. > > Any ideas? > > Thanks in advance! > > Regards, > > Fábio da Silva Cunha > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 13: 3:26 1999 Delivered-To: freebsd-questions@freebsd.org Received: from pima.gate.net (pima.gate.net [198.206.134.30]) by hub.freebsd.org (Postfix) with ESMTP id 365A414D80 for ; Tue, 17 Aug 1999 13:02:24 -0700 (PDT) (envelope-from wjm@gate.net) Received: from navajo.gate.net (wjm@navajo.gate.net [199.227.0.15]) by pima.gate.net (8.8.6/8.6.12) with ESMTP id QAA66674 for ; Tue, 17 Aug 1999 16:02:33 -0400 Received: from localhost (wjm@localhost) by navajo.gate.net (8.8.6/8.7.3) with ESMTP id QAA61886 for ; Tue, 17 Aug 1999 16:04:20 -0400 X-Authentication-Warning: navajo.gate.net: wjm owned process doing -bs Date: Tue, 17 Aug 1999 16:04:20 -0400 (EDT) From: William Melanson To: freebsd-questions@FreeBSD.ORG Subject: Re:Re:Re:Re: Question about the mascot In-Reply-To: <19990817085842.A1949@fisicc-ufm.edu> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, 17 Aug 1999, Oscar Bonilla wrote: % how much money would the freebsd project have if % everyone who has posted his "2 cents" to this thread % had actually given the 2 cents to the project? :) A fortune well beyond our (their) wildest dreams.... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 13:14:30 1999 Delivered-To: freebsd-questions@freebsd.org Received: from revolution.3-cities.com (revolution.3-cities.com [204.203.224.155]) by hub.freebsd.org (Postfix) with ESMTP id 8B2C714DC1 for ; Tue, 17 Aug 1999 13:14:18 -0700 (PDT) (envelope-from kstewart@3-cities.com) Received: from 3-cities.com (kenn1104.bossig.com [208.26.241.104]) by revolution.3-cities.com (8.9.3/8.9.3) with ESMTP id NAA18631; Tue, 17 Aug 1999 13:13:18 -0700 (PDT) Message-ID: <37B9C276.DA4C9F1A@3-cities.com> Date: Tue, 17 Aug 1999 13:13:42 -0700 From: Kent Stewart Organization: BOSSig X-Mailer: Mozilla 4.61 [en] (WinNT; U) X-Accept-Language: en MIME-Version: 1.0 To: "Agoro (S.) D Ombaka (Agoro-Ombaka)" Cc: freebsd-questions@FreeBSD.ORG Subject: Re: FreeBSD & LINUX OS comparison References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG "Agoro (S.) D Ombaka (Agoro-Ombaka)" wrote: > > __________________________________________________________________________ > > I was impressed by the extent of the FAQ library on FreeBSD. > However, I would like to see a comparison between LINUX Red Hat and > FreeBSD, in order to decide from the start, which system to install & > use. Could you please detail which features would make FreeBSD a better choice > than LINUX Red Hat. (So far, the only mention in found in the FAQ, > regarding comparative features, was that FreeBSD uses more swap space than > LINUX.) There is a comparison in the FreeBSDzine at http://www.daemonnews.org/199908/d-advocate.html It depends on what your needs are. No system rates 10's across the board in my book. The problem is whether the 2's interfere. If they do, you made a bad choice. I think FreeBSD is a more mature system and has better control in the committment process. Anyone can suggest a change but "the" expert has to make the change. I think that is very important. Kent > > -- Thanks in anticipation for your reply -- > -- Agoro -- > > __________________________________________________________________________ > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- Kent Stewart Richland, WA mailto:kstewart@3-cities.com http://www.3-cities.com/~kstewart/index.html SETI (Search for Extraterrestrial Intelligence) @ Home http://setiathome.ssl.berkeley.edu/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 13:28:34 1999 Delivered-To: freebsd-questions@freebsd.org Received: from jbsd.ktu.edu.tr (jbsd.ktu.edu.tr [193.140.168.51]) by hub.freebsd.org (Postfix) with ESMTP id DCF15157A3 for ; Tue, 17 Aug 1999 13:27:44 -0700 (PDT) (envelope-from kinay@jbsd.ktu.edu.tr) Received: from jbsd.ktu.edu.tr ([193.140.170.190]) by jbsd.ktu.edu.tr (8.9.1/8.8.8) with ESMTP id XAA02054 for ; Mon, 16 Aug 1999 23:38:52 +0300 (EEST) (envelope-from kinay@jbsd.ktu.edu.tr) Message-ID: <37B9C90E.F91BC5E8@jbsd.ktu.edu.tr> Date: Tue, 17 Aug 1999 23:41:50 +0300 From: Bilal KINAY X-Mailer: Mozilla 4.61 [en] (Win98; I) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: slip problem...! Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Dear Sir, I configure everything. But not working slip server. error code sliplogin[779]: ioctl (TIOCSCTTY): Operation not permitted How I can this problem. Bilal. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 13:32:22 1999 Delivered-To: freebsd-questions@freebsd.org Received: from alpha.netvision.net.il (alpha.netvision.net.il [194.90.1.13]) by hub.freebsd.org (Postfix) with ESMTP id D19DC157D3 for ; Tue, 17 Aug 1999 13:32:15 -0700 (PDT) (envelope-from spud@i.am) Received: from Tomer.Home.Org (RAS1-p72.hfa.netvision.net.il [62.0.145.72]) by alpha.netvision.net.il (8.9.3/8.8.6) with SMTP id XAA08908 for ; Tue, 17 Aug 1999 23:30:25 +0300 (IDT) From: Tomer Weller To: questions@FreeBSD.org Subject: hard reset Date: Tue, 17 Aug 1999 23:29:22 +0300 X-Mailer: KMail [version 1.0.21] Content-Type: text/plain MIME-Version: 1.0 Message-Id: <99081723302100.00453@Tomer.Home.Org> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Does FreeBSD do a hard reset or a soft reset ? (sorry for the newbie question) If it soft resets, how can I change that to hard ? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 13:35:32 1999 Delivered-To: freebsd-questions@freebsd.org Received: from sand5.global.net.uk (sand5.global.net.uk [194.126.80.249]) by hub.freebsd.org (Postfix) with ESMTP id 4B4911577F for ; Tue, 17 Aug 1999 13:34:53 -0700 (PDT) (envelope-from marko@globalnet.co.uk) Received: from pd1s10a06.client.global.net.uk ([195.147.218.210] helo=marder-1.) by sand5.global.net.uk with esmtp (Exim 2.05 #1) id 11Gpwz-0000gy-00; Tue, 17 Aug 1999 21:35:18 +0100 Received: (from marko@localhost) by marder-1. (8.9.2/8.8.8) id VAA00433; Tue, 17 Aug 1999 21:25:33 +0100 (BST) (envelope-from marko) Date: Tue, 17 Aug 1999 21:25:33 +0100 From: Mark Ovens To: Mohit Aron Cc: freebsd-questions@freebsd.org Subject: Re: ext2fs filesystem Message-ID: <19990817212533.B269@marder-1> References: <199908171844.NAA28562@cs.rice.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.3i In-Reply-To: <199908171844.NAA28562@cs.rice.edu>; from Mohit Aron on Tue, Aug 17, 1999 at 01:44:24PM -0500 Organization: Total lack of Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, Aug 17, 1999 at 01:44:24PM -0500, Mohit Aron wrote: > Hi, > I want to compile my kernel with support for the ext2fs filesystem. > Can someone tell me how to do this. Thanks, > Make sure you have options "EXT2FS" in your kernel config file. > > > - Mohit > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > -- FreeBSD - The Power To Serve http://www.freebsd.org My Webpage http://http://ukug.uk.freebsd.org/~mark/ _______________________________________________________________ Mark Ovens, CNC Apps Engineer, Radan Computational Ltd. Bath UK CAD/CAM solutions for Sheetmetal Working Industry mailto:mark@ukug.uk.freebsd.org http://www.radan.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 13:38:27 1999 Delivered-To: freebsd-questions@freebsd.org Received: from inet.chip-web.com (c1003518-a.plstn1.sfba.home.com [24.1.82.47]) by hub.freebsd.org (Postfix) with SMTP id 78752157B3 for ; Tue, 17 Aug 1999 13:37:00 -0700 (PDT) (envelope-from ludwigp@bigfoot.com) Received: (qmail 10397 invoked from network); 17 Aug 1999 20:37:51 -0000 Received: from speedy.chip-web.com (HELO speedy) (172.16.1.1) by inet.chip-web.com with SMTP; 17 Aug 1999 20:37:51 -0000 Message-Id: <4.2.0.58.19990817133520.00983f00@toy> X-Sender: ludwigp@toy (Unverified) X-Mailer: QUALCOMM Windows Eudora Pro Version 4.2.0.58 Date: Tue, 17 Aug 1999 13:36:20 -0700 To: Dan Nelson From: Ludwig Pummer Subject: Re: Micro-adjusting system clock? Cc: dave@netcarrier.com, freebsd-questions@FreeBSD.ORG In-Reply-To: <19990817133937.A70800@dan.emsphone.com> References: <7pc4ht$99hb@eGroups.com> <19990817102159.A66341@dan.emsphone.com> <7pc4ht$99hb@eGroups.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG At 01:39 PM 8/17/1999 -0500, Dan Nelson wrote: > > - is there a way to run it "standalone", ie, to adjust a clock on an > > unnetworked server? > >You can have it use the internal clock as a time source. I usually do xntpd can also keep a 'driftfile' which it uses to predict and correct for how much your clock normally drifts on its own. --Ludwig Pummer To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 13:38:31 1999 Delivered-To: freebsd-questions@freebsd.org Received: from inet.chip-web.com (c1003518-a.plstn1.sfba.home.com [24.1.82.47]) by hub.freebsd.org (Postfix) with SMTP id 473C1157A8 for ; Tue, 17 Aug 1999 13:37:00 -0700 (PDT) (envelope-from ludwigp@bigfoot.com) Received: (qmail 10396 invoked from network); 17 Aug 1999 20:37:50 -0000 Received: from speedy.chip-web.com (HELO speedy) (172.16.1.1) by inet.chip-web.com with SMTP; 17 Aug 1999 20:37:50 -0000 Message-Id: <4.2.0.58.19990817133350.00afdbf0@toy> X-Sender: ludwigp@toy (Unverified) X-Mailer: QUALCOMM Windows Eudora Pro Version 4.2.0.58 Date: Tue, 17 Aug 1999 13:35:11 -0700 To: Reinoud Koornstra From: Ludwig Pummer Subject: Re: bug wich crashes freebsd 3.2 Cc: Doug , Reinoud Koornstra , freebsd-questions@FreeBSD.ORG In-Reply-To: References: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG At 09:20 PM 8/17/1999 +0200, Reinoud Koornstra wrote: >And what if a user forgets to umount it before removing? Users aren't allowed to mount and umount. Only root can. >A whole os cant just hang by a user mistake now can it? No, but it can hang if root makes a mistake. There are all sorts of ways root can hose a system. That's why people recommend that you normally use a user account. --Ludwig Pummer To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 13:42: 4 1999 Delivered-To: freebsd-questions@freebsd.org Received: from osage.gate.net (osage.gate.net [198.206.134.25]) by hub.freebsd.org (Postfix) with ESMTP id 969CA15799 for ; Tue, 17 Aug 1999 13:41:46 -0700 (PDT) (envelope-from wjm@gate.net) Received: from navajo.gate.net (wjm@navajo.gate.net [199.227.0.15]) by osage.gate.net (8.8.6/8.6.12) with ESMTP id QAA544040 for ; Tue, 17 Aug 1999 16:39:17 -0400 Received: from localhost (wjm@localhost) by navajo.gate.net (8.8.6/8.7.3) with ESMTP id QAA37362 for ; Tue, 17 Aug 1999 16:41:20 -0400 X-Authentication-Warning: navajo.gate.net: wjm owned process doing -bs Date: Tue, 17 Aug 1999 16:41:20 -0400 (EDT) From: William Melanson To: freebsd-questions@FreeBSD.ORG Subject: Re: bug wich crashes freebsd 3.2 (HA!) In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, 17 Aug 1999, Reinoud Koornstra wrote: % % No i didnt umount the disk first. % But i didnt umount it on purpose to see. % And what if a user forgets to umount it before removing? % A whole os cant just hang by a user mistake now can it? % Bye, % If you use the os improperly of course it can! Please tell me this is some type of practical (let's kill the os) joke. Where is that FreeBSD for Dummies book when ya need it? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 13:45:40 1999 Delivered-To: freebsd-questions@freebsd.org Received: from elmer.designstein.com (elmer.designstein.com [206.150.198.2]) by hub.freebsd.org (Postfix) with ESMTP id DB080157DA for ; Tue, 17 Aug 1999 13:43:24 -0700 (PDT) (envelope-from rlinwood@designstein.com) Received: from designstein.com (kermit.designstein.com [206.150.198.134]) by elmer.designstein.com (8.9.1/8.9.1) with ESMTP id PAA00877 for ; Tue, 17 Aug 1999 15:45:58 -0500 (CDT) (envelope-from rlinwood@designstein.com) Message-ID: <37B9CAC6.1C166384@designstein.com> Date: Tue, 17 Aug 1999 15:49:10 -0500 From: Ryan Linwood X-Mailer: Mozilla 4.61 [en] (WinNT; I) X-Accept-Language: en MIME-Version: 1.0 To: FreeBSD Subject: Mail locks Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, I am currently running IMAP sendmail and I am experiencing a strange problem. Mail is flowing properly but no one is able to delete mail. It is as though the mailboxes are in read-only mode. I have checked the file permissions on the mailboxes and they are correct. When I go into PINE, it says: "Can't open mailbox lock.Access is read-only". Any ideas? Thanks much, -Ryan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 13:48:30 1999 Delivered-To: freebsd-questions@freebsd.org Received: from smtprch1.nortel.com (smtprch1.nortelnetworks.com [192.135.215.14]) by hub.freebsd.org (Postfix) with ESMTP id EF986157A8 for ; Tue, 17 Aug 1999 13:48:28 -0700 (PDT) (envelope-from burtonr@nortelnetworks.com) Received: from zrtpd004.us.nortel.com (actually nrtpd004) by smtprch1.nortel.com; Tue, 17 Aug 1999 15:39:30 -0500 Received: by zrtpd004.us.nortel.com with Internet Mail Service (5.5.2448.0) id ; Tue, 17 Aug 1999 16:47:04 -0400 Message-ID: <99028E74E7CAD111B5E80000F806908A019E5605@zwnwd030.ca.nortel.com> From: "Richard Burton" To: "'freebsd-questions@FreeBSD.ORG'" Subject: Mac compatible? Date: Tue, 17 Aug 1999 16:46:50 -0400 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2448.0) Content-Type: text/plain X-Orig: Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG We have a PowerMac 7500/150 in our workgroup and I was wondering if freeBSD will run on it. Sincerely, Richard Burton W715 ESN 765-4843 Email: burtonr@nortelnetworks.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 14:12:37 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mailout1.nyroc.rr.com (mailout1-0.nyroc.rr.com [24.92.226.81]) by hub.freebsd.org (Postfix) with ESMTP id A9416156EE for ; Tue, 17 Aug 1999 14:12:28 -0700 (PDT) (envelope-from reichman@twcny.rr.com) Received: from mail1.twcny.rr.com ([24.92.226.74]) by mailout1.nyroc.rr.com (Post.Office MTA v3.5.3 release 223 ID# 0-59787U250000L250000S0V35) with ESMTP id com; Tue, 17 Aug 1999 17:13:05 -0400 Received: from twcny.rr.com ([24.95.188.113]) by mail1.twcny.rr.com (Post.Office MTA v3.5.2 release 221 ID# 0-53939U80000L80000S0V35) with ESMTP id com; Tue, 17 Aug 1999 17:13:02 -0400 Message-ID: <37B9D292.964AA2FD@twcny.rr.com> Date: Tue, 17 Aug 1999 17:22:26 -0400 From: "Mark S. Reichman" X-Mailer: Mozilla 4.61 [en] (X11; I; FreeBSD 3.2-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: Mohit Aron Cc: freebsd-questions@freebsd.org Subject: Re: ext2fs filesystem References: <199908171844.NAA28562@cs.rice.edu> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Add options "EXT2FS" to your kernel config after you read this page. http://www.freebsd.org/handbook/kernelconfig-building.html To mount it after you get it all compiled. Do.. mount -t ext2fs /dev/wd1s1 /linux or add something like this to your /etc/fstab and reboot... /dev/wd1s1 /linux ext2fs rw 0 0 /dev/wd1s5 /linux/usr ext2fs rw 0 0 Substitute your device and directories... These probably wont match yours... Mohit Aron wrote: > > Hi, > I want to compile my kernel with support for the ext2fs filesystem. > Can someone tell me how to do this. Thanks, > > - Mohit > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 14:13:25 1999 Delivered-To: freebsd-questions@freebsd.org Received: from revolution.3-cities.com (revolution.3-cities.com [204.203.224.155]) by hub.freebsd.org (Postfix) with ESMTP id EAF8714CC3 for ; Tue, 17 Aug 1999 14:13:13 -0700 (PDT) (envelope-from kstewart@3-cities.com) Received: from 3-cities.com (kenn1104.bossig.com [208.26.241.104]) by revolution.3-cities.com (8.9.3/8.9.3) with ESMTP id OAA27988; Tue, 17 Aug 1999 14:13:38 -0700 (PDT) Message-ID: <37B9D09B.3224B635@3-cities.com> Date: Tue, 17 Aug 1999 14:14:03 -0700 From: Kent Stewart Organization: BOSSig X-Mailer: Mozilla 4.61 [en] (WinNT; U) X-Accept-Language: en MIME-Version: 1.0 To: Tomer Weller Cc: questions@FreeBSD.ORG Subject: Re: hard reset References: <99081723302100.00453@Tomer.Home.Org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Tomer Weller wrote: > > Does FreeBSD do a hard reset or a soft reset ? (sorry for the newbie question) > If it soft resets, how can I change that to hard ? If you do anything short of a "shutdown -h now", you are putting your system at risk. How big a chance do you feel like taking. Is your system important? Kent > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- Kent Stewart Richland, WA mailto:kstewart@3-cities.com http://www.3-cities.com/~kstewart/index.html SETI (Search for Extraterrestrial Intelligence) @ Home http://setiathome.ssl.berkeley.edu/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 14:18:32 1999 Delivered-To: freebsd-questions@freebsd.org Received: from slip1.raccoon.com (slip1.raccoon.com [165.90.135.16]) by hub.freebsd.org (Postfix) with ESMTP id 582131505B for ; Tue, 17 Aug 1999 14:18:21 -0700 (PDT) (envelope-from johnl@raccoon.com) Received: from raccoon.com (dsl-ip145.networkiowa.com [165.90.140.145]) by slip1.raccoon.com (8.8.7/8.8.7) with ESMTP id QAA24469; Tue, 17 Aug 1999 16:08:42 -0500 Message-ID: <37B9C33A.7C21E8FC@raccoon.com> Date: Tue, 17 Aug 1999 15:16:58 -0500 From: John Lengeling X-Mailer: Mozilla 4.51 [en] (Win95; I) X-Accept-Language: en MIME-Version: 1.0 To: Forrest Aldrich Cc: freebsd-questions@FreeBSD.ORG Subject: Re: DELL servers and FreeBSD References: <4.2.0.58.19990817140100.00ada6f0@216.67.12.69> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I wish the other respondants were more accurate with their answers... FreeBSD will run the Dell PowerEdges, but... Here is my experience with PowerEdge 1300s. 1. Need at least FreeBSD 3.X to get support for the Adaptec onboard SCSI controller. AIC 7890. 6350s have the same onboard controller. 2. FreeBSD does not support the RAID controller that Dell sells. The PERC2 RAID controller. 3. I couldn't get the Sony CDROM drive to work under FreeBSD 3.1. I haven't tried it under 3.2. Most people just installed some other CDROM drive to get around the problem. Forrest Aldrich wrote: > > Just as a pre-emptive question: has anyone run into problems running > FreeBSD on any DELL servers? Namely, the PowerEdge 6350's. > > Thanks. > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 14:18:38 1999 Delivered-To: freebsd-questions@freebsd.org Received: from switch.unixfreak.org (cx828557-b.orng1.occa.home.com [24.5.152.21]) by hub.freebsd.org (Postfix) with ESMTP id 4C41714D02 for ; Tue, 17 Aug 1999 14:18:30 -0700 (PDT) (envelope-from dima@switch.unixfreak.org) Received: (from dima@localhost) by switch.unixfreak.org (8.9.3/8.9.3) id OAA09628 for freebsd-questions@freebsd.org; Tue, 17 Aug 1999 14:17:44 -0700 (PDT) Message-Id: <199908172117.OAA09628@switch.unixfreak.org> Subject: firewall/rate limiting To: freebsd-questions@freebsd.org Date: Tue, 17 Aug 1999 14:17:44 -0700 (PDT) From: Dima Dorfman 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-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG does freebsd's ip firewall have a rate limiting mechanism? --dima -- Dima Dorfman /-----------------------------------------------------\ | irc: eclipze@efnet/dalnet | whois: DD10140@internic | | email: dima@unixfreak.org | http: www.unixfreak.org | \-----------------------------------------------------/ finger dimad@unixfreak.org for public PGP key Windoze droolz. FreeBSD rulez. http://www.FreeBSD.org/ UNIX *IS* user friendly, it's just picky about its friends. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 14:49:39 1999 Delivered-To: freebsd-questions@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 758) id 14E5C1580C; Tue, 17 Aug 1999 14:47:52 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by hub.freebsd.org (Postfix) with ESMTP id 0040A1CD8A3; Tue, 17 Aug 1999 14:47:51 -0700 (PDT) (envelope-from kris@hub.freebsd.org) Date: Tue, 17 Aug 1999 14:47:51 -0700 (PDT) From: Kris Kennaway To: Andre Shimakawa Cc: freebsd-questions@freebsd.org Subject: Re: Printer shares.... In-Reply-To: <001301bee8ee$9e9b7040$8ebff1c8@cba.zaz.com.br> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, 17 Aug 1999, Andre Shimakawa wrote: > Sorry about my english :) > > Can I print from FreeBSD to a Windows shared printer? > I want to replace Linux for FreeBSD in my work, but I need to know how to do > this... > > Is there any doc about this? See /usr/ports/net/samba I've redirected this post to freebsd-questions, which was the appopriate list for the question. Kris To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 14:55:34 1999 Delivered-To: freebsd-questions@freebsd.org Received: from ntex.co.napa.ca.us (209-78-56-68.co.napa.ca.us [209.78.56.68]) by hub.freebsd.org (Postfix) with ESMTP id EAA0E15808 for ; Tue, 17 Aug 1999 14:54:16 -0700 (PDT) (envelope-from DBoune@co.napa.ca.us) Received: by 209-78-56-68.co.napa.ca.us with Internet Mail Service (5.0.1460.8) id ; Tue, 17 Aug 1999 14:57:28 -0700 Message-ID: From: "Boune, Damian" To: freebsd-questions@FreeBSD.ORG Subject: RE: bug wich crashes freebsd 3.2 (HA!) Date: Tue, 17 Aug 1999 14:57:25 -0700 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.0.1460.8) Content-Type: text/plain Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Our friend makes a good point. What Reinoud did is only "improper use" if the operating system does not provide some kind of catch in the case that someone does this. You can assume he came from the Microsoft world. In that horrid world, it is known that the USER is not supposed to be able to cause such a crash, though we all know better. In the unix world we assume that you are familiar with how unix does things and will pay attention to such details. Who would have thought, coming from the microsoft world, that one would have to "unmount" (whatever THAT is) a disk! It would have been possible for the designers of any particular flavor of unix to implement something that would prevent this. However actually doing it is another thing. We have a base "format" in which we "mount" media in general that has been around for a long time. If we change that, we risk incompatibility, and we also make our kernel quite a bit larger as we would have to have more than one base function (rather, set of 's) for making media available to the user. Anyway, it just isn't something anybody wants to waste time on, as we know how it works currently, and if you follow the directions, which happen to be posted all over the place, you won't get into too much trouble. Some os's actually "mount" and "unmount" some media, each time an action is taken upon it. This creates a high amount of overhead that us unix buffs don't want, but it does prevent the user from crashing the system. Under unix it is also assumed that the "user" will not be mounting and unmounting media, but that an experienced "Administrator" would be doing it. Well, the face of unix has changed, and now the pocket hacks are all running it. Most of us take on the challenge knowing we will have to learn how to play by the *nix rules. So to those who do not like it, please write some code to send to our good friends at the FreeBSD project that will fix this little annoyance :) (had to put my "2 cents" in.) -d > -----Original Message----- > From: William Melanson [mailto:wjm@gate.net] > Sent: Tuesday, August 17, 1999 1:41 PM > To: freebsd-questions@FreeBSD.ORG > Subject: Re: bug wich crashes freebsd 3.2 (HA!) > > > On Tue, 17 Aug 1999, Reinoud Koornstra wrote: > > % > % No i didnt umount the disk first. > % But i didnt umount it on purpose to see. > % And what if a user forgets to umount it before removing? > % A whole os cant just hang by a user mistake now can it? > % Bye, > % > > If you use the os improperly of course it can! Please tell me this > is some type of practical (let's kill the os) joke. Where is that > FreeBSD for Dummies book when ya need it? > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 15: 0: 5 1999 Delivered-To: freebsd-questions@freebsd.org Received: from nowcool.com (FX3-1-119.mgfairfax.rr.com [24.28.200.119]) by hub.freebsd.org (Postfix) with ESMTP id 10CFA1582B for ; Tue, 17 Aug 1999 14:59:24 -0700 (PDT) (envelope-from question@blink.dhs.org) Received: from localhost (question@localhost) by nowcool.com (8.9.3/8.9.3) with ESMTP id RAA01360; Tue, 17 Aug 1999 17:59:06 -0400 (EDT) (envelope-from question@blink.dhs.org) Date: Tue, 17 Aug 1999 17:59:05 -0400 (EDT) From: FreeBSD Question X-Sender: question@nowcool.com To: Jim Mock Cc: william woods , freebsd-questions@FreeBSD.ORG Subject: Re: StarOffice 5.1 In-Reply-To: <19990816163305.A31622@blues.ghis.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Ok, I made star office 5.1 work after reading the page. The only part that caused the problem was the library that is specified on the page below. Just replace it with older version that is also specified on the page. If you did network install(which is broken, but there is a way around by editing instdb.ini) make sure .sversionrc points to $HOME/Office51 NOT /usr/local/Office51. If you are running directly off /usr/local/Office51 or from your homedir as STANDALONE installation then you are fine. Good luck everyone On Mon, 16 Aug 1999, Jim Mock wrote: > On Mon, 16 Aug 1999 at 02:06:41 -0400, FreeBSD Question wrote: > > could you briefly write what exactly you did to make it work? > > I had the similar problem that you had..getting setup screen after > > installation.. > > Go read http://minnie.cs.adfa.edu.au/Misc/staroffice.html and follow > the instructions. > > -- > - Jim Mock - jim@blues.ghis.net - systems administrator - ghis.NET - > - work: http://www.ghis.net/ - personal: http://www.ghis.net/~jim/ - > - FreeBSD 'zine: http://www.freebsdzine.org/ - jim@freebsdzine.org - > - The FreeBSD Project -- http://www.FreeBSD.org/ - jim@FreeBSD.org - > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 15: 9:59 1999 Delivered-To: freebsd-questions@freebsd.org Received: from sense-sea-MegaSub-1-344.oz.net (sense-sea-MegaSub-1-344.oz.net [216.39.145.90]) by hub.freebsd.org (Postfix) with ESMTP id 890D7157DF for ; Tue, 17 Aug 1999 15:09:56 -0700 (PDT) (envelope-from al@sense-sea-MegaSub-1-344.oz.net) Received: from localhost (al@localhost) by sense-sea-MegaSub-1-344.oz.net (8.8.7/8.8.7) with ESMTP id PAA01468 for ; Tue, 17 Aug 1999 15:09:13 -0700 Date: Tue, 17 Aug 1999 22:09:13 +0000 ( ) From: Al Goldstein X-Sender: al@sense-sea-MegaSub-1-344.oz.net To: questions@FREEBSD.ORG Subject: problems Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG RELEASE FreeBSD 3.2-RELEASE #0 Tue Aug 17 14:14:51 GMT 1999 root@mynane.my. e myomain:/usr/src/sys/compole/MADKERNEL i386 Help! I can't get an ethernet interface up with my 3com 509 card. The card runs under solaris 2.5 using address 250 int 5 or 280 int 3. I tried both of these trying to create the device ep0 while making a new kernel. Device did not appear. I have the sol system as a second disk. It will not boot from the BSD boot manager. Says missing partition boot record. Solaris comes up if I remove the bsd disk and make the solaris disk the first drive. Also no tcsh with over 400megs of stuff most of which was not requested. Any help appreciated To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 15:11:44 1999 Delivered-To: freebsd-questions@freebsd.org Received: from nowcool.com (FX3-1-119.mgfairfax.rr.com [24.28.200.119]) by hub.freebsd.org (Postfix) with ESMTP id 2BAFC1582D for ; Tue, 17 Aug 1999 15:11:03 -0700 (PDT) (envelope-from question@blink.dhs.org) Received: from localhost (question@localhost) by nowcool.com (8.9.3/8.9.3) with ESMTP id SAA01447; Tue, 17 Aug 1999 18:10:27 -0400 (EDT) (envelope-from question@blink.dhs.org) Date: Tue, 17 Aug 1999 18:10:27 -0400 (EDT) From: FreeBSD Question X-Sender: question@nowcool.com To: Patrick Seal Cc: freebsd-questions@FreeBSD.ORG Subject: Re: ATAPI burning audio with burnaudio In-Reply-To: <19990812092738.A27689@hyperhost.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG You are wasting your CD if you keep using that burnaduio script. The script is wrong. If you RTFM'ed wormcontrol, you could've saved some bucks. Obviously, the last line of burnaudio says: wormcontrol -f $device fixate 1 onp Which is wrong. fixate type 1 is for "CDROM"(data) You have to change 1 to 0 which is to fixate audio CD's. I tried this, worked fine. If you want to play the cd's on other non-computer-cdrom-cd-players you need to take out onp(open next program area) and "close" the CD. Good luck. and be sure to read the MAN pages On Thu, 12 Aug 1999, Patrick Seal wrote: > I've used burndata and it works great, but burnaudio just ruins my cd's and > gives me a bunch of errors (I believe i/o errors, it's been a while). I don't > want to ruin any more CD's so I won't try it again (at least not If I don't > have to). Basically i made a bunch of waves, then tried to put them on the > CD. > > My 'finished' cds have a visible ring around the center that is proportional > to how long I let it burn while giving me errors (the longer I let it burn > the larger the ring). > > I have no idea what I'm doing wrong, Can someone tell me exactly what they > do to burn audio cds?? > > wdc1 at 0x170-0x177 irq 15 on isa > wdc1: unit 0 (atapi): , removable, dma, iordy > acd1: drive speed 344 - 1034KB/sec, 768KB cache > acd1: supported read types: CD-R, CD-RW, CD-DA, packet track > acd1: supported write types: CD-R, CD-RW, test write > acd1: Audio: play, 128 volume levels > acd1: Mechanism: ejectable tray > acd1: Medium: no/blank disc inside, unlocked, lock protected > > It's an HP. I think it's the 7200. > > -- > ------------------------------------ _____________________________________ > Patrick Seal |"Microsoft isn't evil, they just make > | really crappy operating systems." > Hyperhost - http://www.hyperhost.net| -Linus Torvalds > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 15:20:55 1999 Delivered-To: freebsd-questions@freebsd.org Received: from po4.wam.umd.edu (po4.wam.umd.edu [128.8.10.166]) by hub.freebsd.org (Postfix) with ESMTP id F3C6D15839 for ; Tue, 17 Aug 1999 15:20:39 -0700 (PDT) (envelope-from culverk@wam.umd.edu) Received: from rac1.wam.umd.edu (root@rac1.wam.umd.edu [128.8.10.141]) by po4.wam.umd.edu (8.9.3/8.9.3) with ESMTP id SAA25062; Tue, 17 Aug 1999 18:20:51 -0400 (EDT) Received: from rac1.wam.umd.edu (sendmail@localhost [127.0.0.1]) by rac1.wam.umd.edu (8.9.3/8.9.3) with SMTP id SAA23646; Tue, 17 Aug 1999 18:20:49 -0400 (EDT) Received: from localhost (culverk@localhost) by rac1.wam.umd.edu (8.9.3/8.9.3) with ESMTP id SAA23642; Tue, 17 Aug 1999 18:20:48 -0400 (EDT) X-Authentication-Warning: rac1.wam.umd.edu: culverk owned process doing -bs Date: Tue, 17 Aug 1999 18:20:48 -0400 (EDT) From: Kenneth Wayne Culver To: Richard Burton Cc: "'freebsd-questions@FreeBSD.ORG'" Subject: Re: Mac compatible? In-Reply-To: <99028E74E7CAD111B5E80000F806908A019E5605@zwnwd030.ca.nortel.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > We have a PowerMac 7500/150 in our workgroup and I was wondering if freeBSD > will run on it. > Nope, sorry, It won't run, I think NetBSD or OpenBSD should run. Kenneth Culver To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 15:38:43 1999 Delivered-To: freebsd-questions@freebsd.org Received: from xylan.com (postal.xylan.com [208.8.0.248]) by hub.freebsd.org (Postfix) with ESMTP id 3F75014E85 for ; Tue, 17 Aug 1999 15:38:35 -0700 (PDT) (envelope-from wes@softweyr.com) Received: from mailhub.xylan.com by xylan.com (8.8.7/SMI-SVR4 (xylan-mgw 2.2 [OUT])) id PAA13203; Tue, 17 Aug 1999 15:38:26 -0700 (PDT) Received: from utah.XYLAN.COM by mailhub.xylan.com (SMI-8.6/SMI-SVR4 (mailhub 2.1 [HUB])) id PAA13469; Tue, 17 Aug 1999 15:31:56 -0700 Received: from softweyr.com by utah.XYLAN.COM (SMI-8.6/SMI-SVR4 (xylan utah [SPOOL])) id QAA27747; Tue, 17 Aug 1999 16:37:53 -0600 Message-ID: <37B9E441.EFBAC619@softweyr.com> Date: Tue, 17 Aug 1999 16:37:53 -0600 From: Wes Peters Reply-To: freebsd-questions@freebsd.org Organization: Softweyr LLC X-Mailer: Mozilla 4.5 [en] (X11; U; FreeBSD 3.1-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: Andre Shimakawa Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Printer shares.... References: <001301bee8ee$9e9b7040$8ebff1c8@cba.zaz.com.br> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Andre Shimakawa wrote: > > Sorry about my english :) > > Can I print from FreeBSD to a Windows shared printer? > I want to replace Linux for FreeBSD in my work, but I need to know how to do > this... > > Is there any doc about this? The advocacy mailing list is not the proper place to ask such a question. The appropriately named FreeBSD-Questions mailing list is. You'll get fast responses to your questions there. I've forwarded your question to the -questions list, and directed replies to the list as well. The quick answer is yes, you can do this with samba and apsfilter. The long answer is it has been years since I did this and I don't remember how, but I'm certain the helpful people who answer questions about FreeBSD will be able to help you quite quickly. Best of luck. -- "Where am I, and what am I doing in this handbasket?" Wes Peters Softweyr LLC http://softweyr.com/ wes@softweyr.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 15:58:39 1999 Delivered-To: freebsd-questions@freebsd.org Received: from unix.megared.net.mx (megared.net.mx [207.249.162.252]) by hub.freebsd.org (Postfix) with ESMTP id E12D814CC7 for ; Tue, 17 Aug 1999 15:58:30 -0700 (PDT) (envelope-from ales@megared.net.mx) Received: from ales (ales.megared.net.mx [207.249.163.252]) by unix.megared.net.mx (8.9.3/8.9.3) with SMTP id RAA49585 for ; Tue, 17 Aug 1999 17:58:42 -0500 (CDT) (envelope-from ales@megared.net.mx) Message-ID: <015701bee904$0ad31820$fca3f9cf@megared.net.mx> From: "Alejandro Ramirez" To: "FreeBSD Questions" Subject: For the Files!!! Date: Tue, 17 Aug 1999 17:58:38 -0500 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-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG The smallest web server & TCP/IP Stack Implementation: http://www-ccs.cs.umass.edu/~shri/iPic.html Enjoy Ales To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 16: 8: 1 1999 Delivered-To: freebsd-questions@freebsd.org Received: from ds9.sci.fi (ds9.sci.fi [195.74.0.54]) by hub.freebsd.org (Postfix) with ESMTP id 33BC414E1D for ; Tue, 17 Aug 1999 16:07:51 -0700 (PDT) (envelope-from yurtesen@ispro.net.tr) Received: from ispro.net.tr (dyn-1-152.tku.netti.fi [195.16.222.153]) by ds9.sci.fi (8.9.1/8.9.1) with ESMTP id CAA28387; Wed, 18 Aug 1999 02:08:21 +0300 (EET DST) Message-ID: <37B9EB1A.A9BF87DB@ispro.net.tr> Date: Wed, 18 Aug 1999 02:07:06 +0300 From: Evren Yurtesen X-Mailer: Mozilla 4.51 [en] (Win98; I) X-Accept-Language: en MIME-Version: 1.0 To: Palle Girgensohn Cc: freebsd-questions@FreeBSD.ORG Subject: Re: How get apache to dump CGI program's core? References: <37B9462F.252A986A@partitur.se> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG what if you give temporary write access to the userid of the apache process? or if apache is switching to the userid of the file owner you may give write access for the file owner. I believe that this would not be a secure approach for a system though Evren Yurtesen Palle Girgensohn wrote: > > Hi! > > I'm running apache 1.3.6 on FreeBSD 3.2-stable. > > I'm doing some CGI development, and need to get core dumps when the > programs fail. Since apache does setuid, the programs are not allowed to > dump core. Even running apache with -X doesn't help; they sig 11 but no > core dump. :( > > Any ideas? > > There's some info on the apache site, but it doesn't say how to fix it: > http://www.apache.org/docs/misc/FAQ-D.html#wheres-the-dump > > Thanks! > > /Palle > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 16:10:38 1999 Delivered-To: freebsd-questions@freebsd.org Received: from ds9.sci.fi (ds9.sci.fi [195.74.0.54]) by hub.freebsd.org (Postfix) with ESMTP id 4B41414E1D for ; Tue, 17 Aug 1999 16:10:08 -0700 (PDT) (envelope-from yurtesen@ispro.net.tr) Received: from ispro.net.tr (dyn-1-152.tku.netti.fi [195.16.222.153]) by ds9.sci.fi (8.9.1/8.9.1) with ESMTP id CAA28409; Wed, 18 Aug 1999 02:10:04 +0300 (EET DST) Message-ID: <37B9EB82.BA97AEA0@ispro.net.tr> Date: Wed, 18 Aug 1999 02:08:50 +0300 From: Evren Yurtesen X-Mailer: Mozilla 4.51 [en] (Win98; I) X-Accept-Language: en MIME-Version: 1.0 To: Tomer Weller Cc: questions@FreeBSD.ORG Subject: Re: hard reset References: <99081723302100.00453@Tomer.Home.Org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I think that hard reset is when you poweroff your computer from the power button so it is called hard reset and soft reset is done by the software so it is called soft reset. Why do you want to make a hard reset? Evren Yurtesen Tomer Weller wrote: > > Does FreeBSD do a hard reset or a soft reset ? (sorry for the newbie question) > If it soft resets, how can I change that to hard ? > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 16:13:27 1999 Delivered-To: freebsd-questions@freebsd.org Received: from ds9.sci.fi (ds9.sci.fi [195.74.0.54]) by hub.freebsd.org (Postfix) with ESMTP id A42B714E1D for ; Tue, 17 Aug 1999 16:13:15 -0700 (PDT) (envelope-from yurtesen@ispro.net.tr) Received: from ispro.net.tr (dyn-1-152.tku.netti.fi [195.16.222.153]) by ds9.sci.fi (8.9.1/8.9.1) with ESMTP id CAA28428 for ; Wed, 18 Aug 1999 02:13:17 +0300 (EET DST) Message-ID: <37B9EC43.320441E0@ispro.net.tr> Date: Wed, 18 Aug 1999 02:12:03 +0300 From: Evren Yurtesen X-Mailer: Mozilla 4.51 [en] (Win98; I) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: make world question Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I have made a make world on my system but then I realized that the edquota program at /usr/obj/usr/src/usr.sbin/edquota is different size than /usr/sbin/edquota I thought it was supposed to be copied over the older one. What is wrong? And how can I understand if there is an error in the compilation? the compiler is giving some warning messages but I do not know which one is critical or important. Thanks! Evren Yurtesen yurtesen@ispro.net.tr reactor:/usr/obj/usr/src/usr.sbin/edquota#ls -la total 33 drwxr-xr-x 2 root wheel 512 Aug 17 01:22 . drwxr-xr-x 130 root wheel 2560 Aug 16 23:27 .. -rwxr-xr-x 1 root wheel 15112 Aug 17 01:22 edquota -rw-r--r-- 1 root wheel 2315 Aug 17 01:22 edquota.8.gz -rw-r--r-- 1 root wheel 10916 Aug 17 01:22 edquota.o reactor:/usr/obj/usr/src/usr.sbin/edquota#ls -la /usr/sbin/edquota -r-xr-xr-x 1 root wheel 12248 Aug 17 21:36 /usr/sbin/edquota reactor:/usr/obj/usr/src/usr.sbin/edquota# To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 16:21:57 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mailc.telia.com (mailc.telia.com [194.22.190.4]) by hub.freebsd.org (Postfix) with ESMTP id DF51715853 for ; Tue, 17 Aug 1999 16:21:46 -0700 (PDT) (envelope-from girgen@partitur.se) Received: from stordatan.telia.com (t3o62p16.telia.com [195.198.198.136]) by mailc.telia.com (8.8.8/8.8.8) with ESMTP id BAA24960; Wed, 18 Aug 1999 01:21:57 +0200 (CEST) Received: from partitur.se (localhost [127.0.0.1]) by stordatan.telia.com (8.9.3/8.9.1) with ESMTP id BAA42101; Wed, 18 Aug 1999 01:21:46 +0200 (CEST) (envelope-from girgen@partitur.se) Message-ID: <37B9EE8A.A0DA71BF@partitur.se> Date: Wed, 18 Aug 1999 01:21:46 +0200 From: Palle Girgensohn Organization: Partitur X-Mailer: Mozilla 4.61 [en] (X11; U; FreeBSD 3.2-STABLE i386) X-Accept-Language: sv, en MIME-Version: 1.0 To: Evren Yurtesen Cc: freebsd-questions@FreeBSD.ORG Subject: Re: How get apache to dump CGI program's core? References: <37B9462F.252A986A@partitur.se> <37B9EB1A.A9BF87DB@ispro.net.tr> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Evren Yurtesen wrote: > > what if you give temporary write access to the userid of the apache > process? > or if apache is switching to the userid of the file owner > you may give write access for the file owner. "nobody" has write access to the CoreDumpDirectory (/var/tmp) I believe that the problem is that the kernel won't allow cores to be dumped when the program has changed uid or similar (not sure exactly what the constraints are). > I believe that this would not be a secure approach for a system though > > Evren Yurtesen > > Palle Girgensohn wrote: > > > > Hi! > > > > I'm running apache 1.3.6 on FreeBSD 3.2-stable. > > > > I'm doing some CGI development, and need to get core dumps when the > > programs fail. Since apache does setuid, the programs are not allowed to > > dump core. Even running apache with -X doesn't help; they sig 11 but no > > core dump. :( > > > > Any ideas? > > > > There's some info on the apache site, but it doesn't say how to fix it: > > http://www.apache.org/docs/misc/FAQ-D.html#wheres-the-dump > > > > Thanks! > > > > /Palle > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 16:38:28 1999 Delivered-To: freebsd-questions@freebsd.org Received: from fellspt.charm.net (fellspt.charm.net [199.0.70.29]) by hub.freebsd.org (Postfix) with ESMTP id 74E4A14C83 for ; Tue, 17 Aug 1999 16:38:13 -0700 (PDT) (envelope-from dutch@charm.net) Received: from charm.net (coretel-116-009.charm.net [209.143.116.9]) by fellspt.charm.net (8.9.3/8.9.3) with ESMTP id TAA16024; Tue, 17 Aug 1999 19:38:02 -0400 (EDT) Message-ID: <37B9F237.522E5110@charm.net> Date: Tue, 17 Aug 1999 19:37:27 -0400 From: Dutch Collins X-Mailer: Mozilla 4.61 [en] (X11; I; FreeBSD 3.2-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: Kent Stewart Cc: Reinoud Koornstra , freebsd-questions@FreeBSD.ORG Subject: Re: bug wich crashes freebsd 3.2 References: <008f01bee8e3$c7965150$0500fea9@OPAL> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Kent Stewart wrote: > > ----- Original Message ----- > From: Reinoud Koornstra > To: > Sent: Tuesday, August 17, 1999 11:18 AM > Subject: bug wich crashes freebsd 3.2 > > > Hi, > > > > I run into a annoying bug in the freebsd 3.2 > > Maybe it is known to you, but freebsd 3.1 also crashes on this point. > > > > It's simple, take a i386 machine with freebsd 3.2 installed on it. > > Put an 1.44 inch disk in the drive wich is formatted with the ms dos fs. > > then mount_msdos /dev/fd0 /mnt > > then cd /mnt > > then ls > > I tryed to copy a file from my hd to the disk, but the disk was write > > protected, so it didnt work. > > I had one file on the floppy and tryed to remove it, but i got an error > > cause the disk was write protected. > > Then i took the floppy out and remove the write protection and put the > > floppy in again and typed ls again. > > On that moment freebsd 3.2 hangs. > > I tryed this 3 times and everytime i had the same result. > > It probably shouldn't have hung but you shouldn't have removed the floppy > before you umounted it. > > Kent > > > Do you know this bug? > > Is this fixed in 4.0? > > Sincerely, > > > > Reinoud. --- start dutch --- I tried to duplicate what you described as an user in KDE mounting a floppy [konsole: su to root, only root is allowed to mount here] and removing the floppy to flip the switch to R/W. Everything is fine on this machine, FreeBSD3.2-R, wd0, fd0, cdrom - all OK. 1) tried on both kinds of floppies, BSD and MDOS. 2) tried writing to empty floppy drive 3) tried writing to MSDOS mounted disk with a BSD File System disk in the drive. Result: No crash, I am not sure why I did not get a message that I was swapping floppies of different file systems when I wrote a file. steps: 1) mount_msdos /dev/fd0 /floppy 2) take out mounted floppy and put in the BSD disk 3) write the test text file to /floppy from /cdrom | . no diagnostic | . file was file, cool # Works fine. I guess I will find out why 'mount' or 'cp' did not tell me I swapped file systems in my, "check when I have nothing else to do" box. However, if I should have been told I would like to know. -d --- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 16:44:57 1999 Delivered-To: freebsd-questions@freebsd.org Received: from alicia.nttmcl.com (alicia.nttmcl.com [216.69.69.10]) by hub.freebsd.org (Postfix) with ESMTP id BE20E14C83 for ; Tue, 17 Aug 1999 16:44:43 -0700 (PDT) (envelope-from norman@nttmcl.com) Received: from localhost by alicia.nttmcl.com (8.8.5/3.5W(96/10/22)) id QAA27781 for ; Tue, 17 Aug 1999 16:44:54 -0700 (PDT) Date: Tue, 17 Aug 1999 16:44:54 -0700 (PDT) From: Norman Nie To: freebsd-questions@freebsd.org Subject: ipfw + bridging: fwd rule enacted but no effect Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello, I'm having problems with ipfw fwd + bridging. Please help! My setup is: [A]-----[fxp0:D:fxp1]-----[C] fxp2 ---- | | [B] D is the box that runs ipfw + bridging. My rule is very simple: 100 fwd B log all from A to C last rule allow from any to any Ideally , it should redirect any packets from A to C and emit them out on interface fxp2 (linked to B). And those packets are to be dropped dead on B. What happened is that logging messages indicate that rule 100 were envoked but with no effect. One can still ping from A to C. IPFW with no bridging (ie. machine B acting as a router) works fine. Bridging alone works fine. But when combining ipfw + bridging, the fwd command doesn't work. Any one has the same problem before? Also, I assume when doing bridging, I don't need to config the routing table in machine B. Is this correct? Any commets highly appreciated. Thanks a lot, Norman Nie To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 16:57:39 1999 Delivered-To: freebsd-questions@freebsd.org Received: from inet.chip-web.com (c1003518-a.plstn1.sfba.home.com [24.1.82.47]) by hub.freebsd.org (Postfix) with SMTP id 94ABC14D90 for ; Tue, 17 Aug 1999 16:57:28 -0700 (PDT) (envelope-from ludwigp@bigfoot.com) Received: (qmail 11163 invoked from network); 17 Aug 1999 23:58:01 -0000 Received: from speedy.chip-web.com (HELO speedy) (172.16.1.1) by inet.chip-web.com with SMTP; 17 Aug 1999 23:58:01 -0000 Message-Id: <4.2.0.58.19990817165418.00b02d00@toy> X-Sender: ludwigp@toy (Unverified) X-Mailer: QUALCOMM Windows Eudora Pro Version 4.2.0.58 Date: Tue, 17 Aug 1999 16:56:30 -0700 To: Palle Girgensohn From: Ludwig Pummer Subject: Re: How get apache to dump CGI program's core? Cc: freebsd-questions@FreeBSD.ORG In-Reply-To: <37B9EE8A.A0DA71BF@partitur.se> References: <37B9462F.252A986A@partitur.se> <37B9EB1A.A9BF87DB@ispro.net.tr> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG At 01:21 AM 8/18/1999 +0200, Palle Girgensohn wrote: >"nobody" has write access to the CoreDumpDirectory (/var/tmp) > >I believe that the problem is that the kernel won't allow cores to be >dumped when the program has changed uid or similar (not sure exactly >what the constraints are). And the whole reason for starting as root is to bind to port 80. Have you tried having the main Listen port be something above 1024 (or 1023?) and removing the setuid bit on httpd? (just a thought. I haven't tried this myself) --Ludwig Pummer To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 17: 1: 8 1999 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (law2-f144.hotmail.com [216.32.181.144]) by hub.freebsd.org (Postfix) with SMTP id 5120914D6D for ; Tue, 17 Aug 1999 17:00:51 -0700 (PDT) (envelope-from k4n@hotmail.com) Received: (qmail 80791 invoked by uid 0); 17 Aug 1999 23:37:34 -0000 Message-ID: <19990817233734.80790.qmail@hotmail.com> Received: from 132.15.225.50 by www.hotmail.com with HTTP; Tue, 17 Aug 1999 16:37:34 PDT X-Originating-IP: [132.15.225.50] From: "k4n _" To: freebsd-doc@FreeBSD.ORG, freebsd-questions@FreeBSD.ORG Subject: FreeBSD webdesign Date: Tue, 17 Aug 1999 16:37:34 PDT Mime-Version: 1.0 Content-Type: text/plain; format=flowed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I thought maybe you would be interested in a free website redesign(or something) so I downloaded the HTML for your site, and made a few changes. I made the background black, redid the FreeBSD logo slightly, and darkened the logos at the bottom to match the color scheme. If you are interested I can send you a copy, I think it looks pretty cool. See you later Patrick (i just realized how dumb this letter sounds, but hey its 8:30 in the morning what do you expect) ______________________________________________________ Get Your Private, Free Email at http://www.hotmail.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 17: 9: 0 1999 Delivered-To: freebsd-questions@freebsd.org Received: from wank.necropolis.org (wank.necropolis.org [207.246.128.93]) by hub.freebsd.org (Postfix) with ESMTP id 1DC1914CB0 for ; Tue, 17 Aug 1999 17:08:46 -0700 (PDT) (envelope-from todd@wank.necropolis.org) Received: from localhost (todd@localhost) by wank.necropolis.org (8.9.3/8.9.3) with ESMTP id RAA00366 for ; Tue, 17 Aug 1999 17:13:51 -0700 (PDT) (envelope-from todd@wank.necropolis.org) Date: Tue, 17 Aug 1999 17:13:51 -0700 (PDT) From: Todd Backman To: questions@freebsd.org Subject: Amanda and sidewinder 200 Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Greetings! Sorry to bother you but I am in a bind. I have been tasked with setting up a sidewinder 200 with FreeBSD 3.2R and am having a difficult time getting past the configure part (spending a lot of time *trying* to figure out the values I should input for my changer, etc...) I was wondering I you could give me some pointers in regards to setting up Amanda? my dmesg for the sidewinder: sa0 at ahc0 bus 0 target 5 lun 0 sa0: Removable Sequential Access SCSI-2 device sa0: 20.000MB/s transfers (10.000MHz, offset 8, 16bit) ch0 at ahc0 bus 0 target 5 lun 1 ch0: Removable Changer SCSI-2 device ch0: 20.000MB/s transfers (10.000MHz, offset 8, 16bit) ch0: 4 slots, 1 drive, 1 picker, 0 portals Questions: For: DEFAULT_CHANGER_DEVICE = ????? Should I input: chg-scsi or chg-chio (what relation does ch0 have to this?) or should this be /dev/ch0 ? DEFAULT_RAW_TAPE_DEVICE = /dev/null What should I input here? DEFAULT_TAPE_DEVICE = /dev/nrsa0 Is this correct? BTW...I have read the docs and am in an infinite loop ;^)...(drooling) Thanks for your time. - Todd To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 17:16:32 1999 Delivered-To: freebsd-questions@freebsd.org Received: from nospam.primenet.com (ip164.msp.primenet.com [206.165.50.164]) by hub.freebsd.org (Postfix) with ESMTP id 617BD14D87 for ; Tue, 17 Aug 1999 17:16:18 -0700 (PDT) (envelope-from godfreja@nospam.primenet.com) Received: (from godfreja@localhost) by nospam.primenet.com (8.9.3/8.8.8) id TAA02367; Tue, 17 Aug 1999 19:20:43 -0500 (CDT) (envelope-from godfreja) Date: Tue, 17 Aug 1999 19:20:12 -0500 From: Jason Godfrey To: Richard Burton Cc: freebsd-questions@freebsd.org Subject: Re: Mac compatible? Message-ID: <19990817192012.A2338@nospam.primenet.com> References: <99028E74E7CAD111B5E80000F806908A019E5605@zwnwd030.ca.nortel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii User-Agent: Mutt/0.96.1i In-Reply-To: <99028E74E7CAD111B5E80000F806908A019E5605@zwnwd030.ca.nortel.com>; from Richard Burton on Tue, Aug 17, 1999 at 04:46:50PM -0400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, Aug 17, 1999 at 04:46:50PM -0400, Richard Burton wrote: > We have a PowerMac 7500/150 in our workgroup and I was wondering if freeBSD > will run on it. Nope. FreeBSD only works on x86 machines and Alpha's. You should try NetBSD or OpenBSD though. They are both based on the same Berkely source that FreeBSD is. http://www.netbsd.org/ http://www.openbsd.org/ Basically NetBSD concentrates on supporting more platforms while OpenBSD concentrates on security. -- Jason To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 17:46:26 1999 Delivered-To: freebsd-questions@freebsd.org Received: from ns.kconline.com (ns.kconline.com [207.51.167.3]) by hub.freebsd.org (Postfix) with ESMTP id 5458114EA8 for ; Tue, 17 Aug 1999 17:46:19 -0700 (PDT) (envelope-from ghormann@ns.kconline.com) Received: from localhost (ghormann@localhost) by ns.kconline.com (8.9.3/8.8.5) with ESMTP id TAA06903 for ; Tue, 17 Aug 1999 19:45:54 -0500 (EST) Date: Tue, 17 Aug 1999 19:45:54 -0500 (EST) From: Greg Hormann To: questions@freebsd.org Subject: Errors from savecore/kvm_mkdb (one more try) Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Didn't get any responses the first time. ------ I have a 3.1R "play" box at home that panics about once a week. I decided to try and save a dump file, so I followed directions in Chapter 22 of the Handbook. (After 5 years of owning and working on a FreeBSD servers, I have *never* needed a dump file before. Gota love stability.) Specificly, I used "config -g", set dumpdev="/dev/wd1s1b" in rc.conf, compiled the kernel, saved a copy as /kernel.debug, stripped it with "strip -g kernel" then did a "make install." On boot, 2 error messages appeared which bothered me. Couldn't find an info in handbook, man pages, or mail archives. These anything to be worried about? savecore /kernel _dumpdev not in namelist ... kvmm_mkdb: /kernel stripped inappropriate file type or format Also top didn't work complaining that nlist wasn't defined. What did I do wrong? Thanks, Greg. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 17:49:24 1999 Delivered-To: freebsd-questions@freebsd.org Received: from www.webhighrise.com (www.webhighrise.com [207.126.117.32]) by hub.freebsd.org (Postfix) with ESMTP id EAE3614EA8 for ; Tue, 17 Aug 1999 17:49:18 -0700 (PDT) (envelope-from lance@costanzo.net) Received: from lance.advantinc.com ([170.1.4.130]) by www.webhighrise.com (8.8.8/8.8.8) with SMTP id RAA27788 for ; Tue, 17 Aug 1999 17:56:39 -0700 (PDT) (envelope-from lance@costanzo.net) Message-Id: <3.0.32.19990817174951.006a4728@costanzo.net> X-Sender: lance@costanzo.net X-Mailer: Windows Eudora Pro Version 3.0 (32) Date: Tue, 17 Aug 1999 17:49:51 -0700 To: freebsd-questions@freebsd.org From: Lance Costanzo Subject: syslogd message line splitting Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I get quite a few syslog messages split over 2 lines. Is there anyway to eliminate this behavior? Aug 13 01:34:59 firewall /kernel: ipfw: 9999 Deny Aug 13 01:34:59 firewall /kernel: TCP xxx.xxx.xxx.xxx:17991 xxx.xxx.xxx.xxx:143 in via xl0 Thanks, Lance. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 17:49:38 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail.rdc1.pa.home.com (ha1.rdc1.pa.home.com [24.2.5.66]) by hub.freebsd.org (Postfix) with ESMTP id F003714EA8 for ; Tue, 17 Aug 1999 17:49:31 -0700 (PDT) (envelope-from napalmski@home.com) Received: from home.com ([24.5.63.201]) by mail.rdc1.pa.home.com (InterMail v4.01.01.00 201-229-111) with ESMTP id <19990818005003.ZUYE24014.mail.rdc1.pa.home.com@home.com> for ; Tue, 17 Aug 1999 17:50:03 -0700 Message-ID: <37BA0225.86D4F6A3@home.com> Date: Tue, 17 Aug 1999 20:45:25 -0400 From: "James F. Young" X-Mailer: Mozilla 4.61 [en] (Win98; I) X-Accept-Language: en MIME-Version: 1.0 To: questions@FreeBSD.ORG Subject: minimum swap allocation References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG having 256mb of memory is it really necessary to have the default x2 swap? can I drop it down to 256? thanks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 18:12:42 1999 Delivered-To: freebsd-questions@freebsd.org Received: from cc942873-a.ewndsr1.nj.home.com (cc942873-a.ewndsr1.nj.home.com [24.2.89.207]) by hub.freebsd.org (Postfix) with ESMTP id 1EE851564E for ; Tue, 17 Aug 1999 18:12:37 -0700 (PDT) (envelope-from cjc@cc942873-a.ewndsr1.nj.home.com) Received: (from cjc@localhost) by cc942873-a.ewndsr1.nj.home.com (8.8.8/8.8.8) id VAA15665; Tue, 17 Aug 1999 21:14:18 -0400 (EDT) (envelope-from cjc) From: "Crist J. Clark" Message-Id: <199908180114.VAA15665@cc942873-a.ewndsr1.nj.home.com> Subject: Re: firewall/rate limiting In-Reply-To: <199908172117.OAA09628@switch.unixfreak.org> from Dima Dorfman at "Aug 17, 99 02:17:44 pm" To: dima@unixfreak.org (Dima Dorfman) Date: Tue, 17 Aug 1999 21:14:18 -0400 (EDT) Cc: freebsd-questions@FreeBSD.ORG Reply-To: cjclark@home.com 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-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Dima Dorfman wrote, > does freebsd's ip firewall have a rate limiting mechanism? See dummynet(4). -- Crist J. Clark cjclark@home.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 19: 1:28 1999 Delivered-To: freebsd-questions@freebsd.org Received: from MIT.EDU (SOUTH-STATION-ANNEX.MIT.EDU [18.72.1.2]) by hub.freebsd.org (Postfix) with SMTP id 37AEC15804 for ; Tue, 17 Aug 1999 19:01:25 -0700 (PDT) (envelope-from xela@MIT.EDU) Received: from ALL-NIGHT-TOOL.MIT.EDU by MIT.EDU with SMTP id AB13301; Tue, 17 Aug 99 22:00:58 EDT Received: by all-night-tool.mit.edu (8.8.7/4.7) id WAA21919; Tue, 17 Aug 1999 22:00:58 -0400 (EDT) Message-Id: <199908180200.WAA21919@all-night-tool.mit.edu> To: freebsd-questions@FreeBSD.ORG Subject: Kernel configuration nitty-gritty Date: Tue, 17 Aug 1999 22:00:58 EDT From: Alex Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi all--- I'm configuring my first FreeBSD kernel (having a fair amount of experience with NetBSD kernels). I'm finding the kernel configuration chapter of the FreeBSD handbook quite helpful, but not comprehensive (whereas the NetBSD options(4) man page is comprehensive but not helpful). For instance, it is not at all clear to me what options "CD9660_ROOT" #CD-ROM usable as root. "CD9660" req'ed means. I have some guesses, one of which is probably right, but.... And zgrepping through /usr/share/man/cat* for that string garners no hits at all.... Is there some other place I should be looking for documentation on this sort of thing, or is it time to read the source? ---Alex Carl Alexander ------------- MIT (where Alex hangs out): xela@mit.edu Course VI (sometime special student) SIPB (prospective) Mitgaard ("honorary mold") MITSFS LSC (night worker) http://www.mit.edu/~xela ------------- Work (where they call me 'Carl'): carl@terc.edu System Administrator & User Services Manager, TERC http://www.terc.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 19:10:40 1999 Delivered-To: freebsd-questions@freebsd.org Received: from hyperhost.net (ether.lightrealm.com [207.159.132.5]) by hub.freebsd.org (Postfix) with ESMTP id 2CB2F14C96 for ; Tue, 17 Aug 1999 19:10:37 -0700 (PDT) (envelope-from patseal@hyperhost.net) Received: from foobar.foobar.yi.org (p1.a8.du.radix.net [207.192.132.129]) by hyperhost.net (8.8.5/8.8.5) with ESMTP id WAA22549; Tue, 17 Aug 1999 22:10:42 -0400 (EDT) Received: by foobar.foobar.yi.org (Postfix, from userid 1000) id 4409D137F2F; Tue, 17 Aug 1999 22:05:24 -0400 (EDT) Date: Tue, 17 Aug 1999 22:05:24 -0400 From: Patrick Seal To: FreeBSD Question Cc: freebsd-questions@FreeBSD.ORG Subject: Re: ATAPI burning audio with burnaudio Message-ID: <19990817220524.A8937@hyperhost.net> References: <19990812092738.A27689@hyperhost.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.6i In-Reply-To: ; from FreeBSD Question on Tue, Aug 17, 1999 at 06:10:27PM -0400 X-Operating-System: FreeBSD foobar.foobar.yi.org 3.2-STABLE FreeBSD 3.2-STABLE Organization: Hyperhost Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I haven't tried it yet, but thank you. I did read the man page thoroughly and tried modifying the script myself. If there is a problem with the script why hasn't it been fixed? On Tue, Aug 17, 1999 at 06:10:27PM -0400i, FreeBSD Question wrote: > You are wasting your CD if you keep using that burnaduio script. > The script is wrong. If you RTFM'ed wormcontrol, you could've saved some > bucks. Obviously, the last line of burnaudio says: > > wormcontrol -f $device fixate 1 onp > > Which is wrong. fixate type 1 is for "CDROM"(data) > You have to change 1 to 0 which is to fixate audio CD's. > I tried this, worked fine. > > If you want to play the cd's on other non-computer-cdrom-cd-players you > need to take out onp(open next program area) and "close" the CD. > > Good luck. and be sure to read the MAN pages > > On Thu, 12 Aug 1999, Patrick Seal wrote: > > > I've used burndata and it works great, but burnaudio just ruins my cd's and > > gives me a bunch of errors (I believe i/o errors, it's been a while). I don't > > want to ruin any more CD's so I won't try it again (at least not If I don't > > have to). Basically i made a bunch of waves, then tried to put them on the > > CD. > > > > My 'finished' cds have a visible ring around the center that is proportional > > to how long I let it burn while giving me errors (the longer I let it burn > > the larger the ring). > > > > I have no idea what I'm doing wrong, Can someone tell me exactly what they > > do to burn audio cds?? > > > > wdc1 at 0x170-0x177 irq 15 on isa > > wdc1: unit 0 (atapi): , removable, dma, iordy > > acd1: drive speed 344 - 1034KB/sec, 768KB cache > > acd1: supported read types: CD-R, CD-RW, CD-DA, packet track > > acd1: supported write types: CD-R, CD-RW, test write > > acd1: Audio: play, 128 volume levels > > acd1: Mechanism: ejectable tray > > acd1: Medium: no/blank disc inside, unlocked, lock protected > > > > It's an HP. I think it's the 7200. > > ---end quoted text--- -- ------------------------------------ _____________________________________ Patrick Seal |"Microsoft isn't evil, they just make | really crappy operating systems." Hyperhost - http://www.hyperhost.net| -Linus Torvalds To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 19:12:30 1999 Delivered-To: freebsd-questions@freebsd.org Received: from cc942873-a.ewndsr1.nj.home.com (cc942873-a.ewndsr1.nj.home.com [24.2.89.207]) by hub.freebsd.org (Postfix) with ESMTP id 838A414C96 for ; Tue, 17 Aug 1999 19:12:18 -0700 (PDT) (envelope-from cjc@cc942873-a.ewndsr1.nj.home.com) Received: (from cjc@localhost) by cc942873-a.ewndsr1.nj.home.com (8.8.8/8.8.8) id WAA15947; Tue, 17 Aug 1999 22:13:05 -0400 (EDT) (envelope-from cjc) From: "Crist J. Clark" Message-Id: <199908180213.WAA15947@cc942873-a.ewndsr1.nj.home.com> Subject: Re: Kernel configuration nitty-gritty In-Reply-To: <199908180200.WAA21919@all-night-tool.mit.edu> from Alex at "Aug 17, 99 10:00:58 pm" To: xela@MIT.EDU (Alex) Date: Tue, 17 Aug 1999 22:13:05 -0400 (EDT) Cc: freebsd-questions@FreeBSD.ORG Reply-To: cjclark@home.com 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-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Alex wrote, > Hi all--- > > I'm configuring my first FreeBSD kernel (having a fair amount of > experience with NetBSD kernels). I'm finding the kernel configuration > chapter of the FreeBSD handbook quite helpful, but not comprehensive > (whereas the NetBSD options(4) man page is comprehensive but not > helpful). For instance, it is not at all clear to me what > > options "CD9660_ROOT" #CD-ROM usable as root. "CD9660" req'ed > > means. I have some guesses, one of which is probably right, but.... > And zgrepping through /usr/share/man/cat* for that string garners > no hits at all.... > > Is there some other place I should be looking for documentation on > this sort of thing, or is it time to read the source? See the 'LINT' kernel, /usr/src/sys/i386/conf/LINT In there, ##################################################################### # FILESYSTEM OPTIONS # # Only the root, /usr, and /tmp filesystems need be statically # compiled; everything else will be automatically loaded at mount # time. (Exception: the UFS family---FFS, and MFS --- cannot # currently be demand-loaded.) Some people still prefer to statically # compile other filesystems as well. -- Crist J. Clark cjclark@home.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 19:26:27 1999 Delivered-To: freebsd-questions@freebsd.org Received: from allegro.lemis.com (allegro.lemis.com [192.109.197.134]) by hub.freebsd.org (Postfix) with ESMTP id DB58E14C96 for ; Tue, 17 Aug 1999 19:26:18 -0700 (PDT) (envelope-from grog@freebie.lemis.com) Received: from freebie.lemis.com (freebie.lemis.com [192.109.197.137]) by allegro.lemis.com (8.9.1/8.9.0) with ESMTP id LAA14808; Wed, 18 Aug 1999 11:56:26 +0930 (CST) Received: (from grog@localhost) by freebie.lemis.com (8.9.3/8.9.0) id LAA14814; Wed, 18 Aug 1999 11:56:25 +0930 (CST) Date: Wed, 18 Aug 1999 11:56:25 +0930 From: Greg Lehey To: Greg Hormann Cc: questions@FreeBSD.ORG Subject: Re: Errors from savecore/kvm_mkdb (one more try) Message-ID: <19990818115624.V7187@freebie.lemis.com> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: ; from Greg Hormann on Tue, Aug 17, 1999 at 07:45:54PM -0500 WWW-Home-Page: http://www.lemis.com/~grog X-PGP-Fingerprint: 6B 7B C3 8C 61 CD 54 AF 13 24 52 F8 6D A4 95 EF Organization: LEMIS, PO Box 460, Echunga SA 5153, Australia Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-41-739-7062 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tuesday, 17 August 1999 at 19:45:54 -0500, Greg Hormann wrote: > > > Didn't get any responses the first time. > > ------ > > I have a 3.1R "play" box at home that panics about once a week. I decided > to try and save a dump file, so I followed directions in Chapter 22 of > the Handbook. (After 5 years of owning and working on a FreeBSD servers, > I have *never* needed a dump file before. Gota love stability.) > > Specificly, I used "config -g", set dumpdev="/dev/wd1s1b" in rc.conf, > compiled the kernel, saved a copy as /kernel.debug, stripped it with > "strip -g kernel" then did a "make install." > > On boot, 2 error messages appeared which bothered me. Couldn't find an > info in handbook, man pages, or mail archives. These anything to be > worried about? > > savecore /kernel _dumpdev not in namelist > ... > kvmm_mkdb: /kernel stripped inappropriate file type or format > > Also top didn't work complaining that nlist wasn't defined. > > What did I do wrong? I'd guess that you forgot the -g on the 'strip' command. Try this: $ nm /kernel|grep dumpdev kernel: no symbols If you get the 'no symbols' message, then you've accidentally stripped the kernel completely. In that case, go back and re-strip the kernel with -g and reinstall it. You don't need to reboot. You will need to reissue the 'dumpon' command (tell it the name of the dump device). Greg -- When replying to this message, please copy the original recipients. For more information, see http://www.lemis.com/questions.html See complete headers for address, home page and phone numbers finger grog@lemis.com for PGP public key To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 19:26:59 1999 Delivered-To: freebsd-questions@freebsd.org Received: from smtp4.erols.com (smtp4.erols.com [207.172.3.237]) by hub.freebsd.org (Postfix) with ESMTP id 3352814F1C for ; Tue, 17 Aug 1999 19:26:56 -0700 (PDT) (envelope-from dougc1@erols.com) Received: from doug (207-172-172-2.s65.as1.kgp.pa.dialup.rcn.com [207.172.172.2]) by smtp4.erols.com (8.8.8/smtp-v1) with ESMTP id WAA11754 for ; Tue, 17 Aug 1999 22:27:26 -0400 (EDT) Reply-To: From: "Doug" To: Subject: mod_sql Date: Tue, 17 Aug 1999 22:22:21 -0400 Message-ID: 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 IMO, Build 9.0.2416 (9.0.2910.0) X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Is there a mod_perl package or port? I haven't been able to find it if so... Thanks -Doug To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 20: 6:25 1999 Delivered-To: freebsd-questions@freebsd.org Received: from topsecret.net (gill.apk.net [207.54.148.62]) by hub.freebsd.org (Postfix) with SMTP id C0C1B14DC4 for ; Tue, 17 Aug 1999 20:06:21 -0700 (PDT) (envelope-from gill@topsecret.net) Received: from stumpy by topsecret.net with SMTP (MDaemon.v2.7.SP5.R) for ; Tue, 17 Aug 1999 23:02:58 -0400 From: "James Gill" To: "freebsd-questions@FreeBSD. ORG" Subject: pls examine my rc.natd Date: Tue, 17 Aug 1999 23:03:11 -0400 Message-ID: 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 IMO, Build 9.0.2416 (9.0.2910.0) X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 Importance: Normal X-MDaemon-Deliver-To: freebsd-questions@FreeBSD.ORG X-Return-Path: gill@topsecret.net Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG from what I can deduce from the handbook and from Lehy's book what I have here should work, but if it were I wouldn't be writing this. If someone would be kind enough to give this a look i'd be very appreciative. Here's my rc.conf: ============================================= # This file now contains just the overrides from /etc/defaults/rc.conf # please make all changes to this file. # revision 19990816 23:33 # revisor gill@topsecret.net hostname="{kludged_for_paranoia}" releaseName="{releaseName}" tcp_extensions="YES" ### FIREWALL AND NATD CONFIG ### firewall_enable="YES" firewall_type="open" natd_program="/sbin/natd" natd_enable="YES" #firewall_enable must also be set to yes # #and ipdivert must also be in kernel natd_interface="ed1" natd_flags="-f /etc/rc.natd" #named_enable="YES" #named is already working fine but the command to #start it should be moved here #named_program="{/path/to/named}" #default /usr/sbin/named #named_flags="" #syslogd_enable="yes" #i thought the system logger was already working?! ntpdate_enable="YES" ntpdate_flags="ncar.ucar.edu" network_interfaces="ed0 ed1 lo0" ifconfig_ed0="inet 10.101.101.2 netmask 255.255.255.192" ifconfig_ed1="inet 10.101.101.129 netmask 255.255.255.192" defaultrouter="10.101.101.1" gateway_enable="YES" #does this still need to be here? #static_routes="route_int route_ext" #list of static routes #route_int="-net 10.101.101.0 10.101.101.129" #route_ext="-net 10.101.101.128 10.101.101.2" ### CONSOLE ENVIRONMENT CONFIG ### saver="star" blanktime="300" ============================================= Here's my rc.natd: ============================================= #!/bin/sh # natd.conf # configuration file for network address translation program # version 0.3 # 1999/08/17 # gill@topsecret.net ################################################################### # specicify this file by using the commandline jargon: # natd -config /etc/natd.conf ################################################################### # turn on logging, might turn off once the system is running smoothly # logs to /var/log/alias.log and is truncated each time natd is started log yes # deny packets destined for the current IP number # that have no entry in the internal translation table #deny_incoming yes # log denied packets via syslog log_denied yes # see syslog.conf(5) for facility names #log_facility {facility_name} # from natd manpage: "Allocate a socket(2) in order to establish an # FTP data or IRC DCC send connection. This option uses more system # resources, but garuntees successful connections whe port numbers confilict. #use_sockets yes # from natd manpage: "Try to keep the same port number when altering outgoing # packets. With this option, protocols such as RPC will have a better chance # of working. If it is not possible to maintain the port number, it will be # silently changed as per normal. #same_ports yes # FOR DEBUGGING: stay attached to the controlling terminal # and display all packet output to the stdout #verbose yes # Only alter outgoing packets with a 10.0.0.0/8, 172.16.0.0/12, or a # 192.168.0.0/16 address #unregistered_only yes ### redirected ports ### # redirect_port proto tergetIP:targetPORT [aliasIP:]aliasPORT \ # [remoteIP[:remotePORT]] # example: redirect_port tcp inside1:telnet 6666 # means that tcp packets destines for port 6666 on this machine will be sent # to the telnet port on the inside1 machine #redirect_port redirect_port tcp 10.101.101.33:21 21 #ftp redirect_port tcp 10.101.101.131:23 23 #telnet redirect_port tcp 10.101.101.33:25 25 #smtp redirect_port tcp 10.101.101.33:80 80 #www-tcp redirect_port udp 10.101.101.33:80 80 #www-udp redirect_port tcp 10.101.101.33:110 110 #pop3-tcp redirect_port udp 10.101.101.33:110 110 #pop3-udp #redirect_port tcp 123 #ntp #anything below here is commented anyway, snipped for bandwidth... ============================================= To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 20: 8:14 1999 Delivered-To: freebsd-questions@freebsd.org Received: from spruce.ucs.uwplatt.edu (spruce.ucs.uwplatt.edu [137.104.128.3]) by hub.freebsd.org (Postfix) with ESMTP id EBEF71543A for ; Tue, 17 Aug 1999 20:08:10 -0700 (PDT) (envelope-from tennies@uwplatt.edu) Received: from mypc ("port 1541"@227-105.netwurx.net [206.54.227.105]) by uwplatt.edu (PMDF V5.2-32 #31523) with SMTP id <01JEW189Y59CAYKU46@uwplatt.edu> for freebsd-questions@FreeBSD.ORG; Tue, 17 Aug 1999 22:04:51 CDT Date: Tue, 17 Aug 1999 22:13:12 -0500 From: Fro Joe Subject: I'm glad I gave FreeBSD one last chance To: freebsd-questions@FreeBSD.ORG Message-id: <001001bee927$9d55e100$69e336ce@mypc.myhost.com> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V4.72.3612.1700 X-Mailer: Microsoft Outlook Express 4.72.3612.1700 Content-type: MULTIPART/ALTERNATIVE; BOUNDARY="Boundary_(ID_TQfStMaQyXS0HLsuCkFGbQ)" X-Priority: 3 X-MSMail-priority: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. --Boundary_(ID_TQfStMaQyXS0HLsuCkFGbQ) Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 7BIT I was a moron... thanks for the help my problem was my IRQ was set improperly... okay now I've got some more questions though... I am setting up a network on an ethernet... and I want to allow everyone access to the PPP connection I'd make via modem off one of hte computers running FreeBSD... but the querks are that I would like to link together 2 modems on the same copmuter connecting to the same ISP... and everyone on the network would like to use ICQ from their own computer... for the ICQ problem I thought a socks 5 server was the way to go, but I don't know if this will allow for multiple people using ICQ at once... and could I use MPPP for this and how do I use MPPP? --Boundary_(ID_TQfStMaQyXS0HLsuCkFGbQ) Content-type: text/html; charset=iso-8859-1 Content-transfer-encoding: 7BIT
I was a moron... thanks for the help my problem was my IRQ was set improperly... okay now I've got some more questions though... I am setting up a network on an ethernet... and I want to allow everyone access to the PPP connection I'd make via modem off one of hte computers running FreeBSD... but the querks are that I would like to link together 2 modems on the same copmuter connecting to the same ISP... and everyone on the network would like to use ICQ from their own computer... for the ICQ problem I thought a socks 5 server was the way to go, but I don't know if this will allow for multiple people using ICQ at once... and could I use MPPP for this and how do I use MPPP?
--Boundary_(ID_TQfStMaQyXS0HLsuCkFGbQ)-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 20:19:54 1999 Delivered-To: freebsd-questions@freebsd.org Received: from topsecret.net (gill.apk.net [207.54.148.62]) by hub.freebsd.org (Postfix) with SMTP id 234BE157D4 for ; Tue, 17 Aug 1999 20:19:28 -0700 (PDT) (envelope-from gill@topsecret.net) Received: from stumpy by topsecret.net with SMTP (MDaemon.v2.7.SP5.R) for ; Tue, 17 Aug 1999 23:18:16 -0400 From: "James Gill" To: "freebsd-questions@FreeBSD. ORG" Subject: RE: pls examine my rc.natd Date: Tue, 17 Aug 1999 23:18:29 -0400 Message-ID: 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 IMO, Build 9.0.2416 (9.0.2910.0) In-Reply-To: X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 Importance: Normal X-MDaemon-Deliver-To: freebsd-questions@FreeBSD.ORG X-Return-Path: gill@topsecret.net Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I guess I should mention that with this in place (and kernel lines added in per the book), packets directed to port 25 on the firewall do not get forwarded to .33:25 but instead wind up in the firewall. same thing with other ports. Also, I had set this up with natd interface as ed0, but then no traffic passed (?) tia > > from what I can deduce from the handbook and from Lehy's book what I > have here should work, but if it were I wouldn't be writing > this. If > someone would be kind enough to give this a look i'd be very > appreciative. > > Here's my rc.conf: > ============================================= > # This file now contains just the overrides from > /etc/defaults/rc.conf > # please make all changes to this file. > > # revision 19990816 23:33 > # revisor gill@topsecret.net > > hostname="{kludged_for_paranoia}" > releaseName="{releaseName}" > tcp_extensions="YES" > > ### FIREWALL AND NATD CONFIG ### > firewall_enable="YES" > firewall_type="open" > > natd_program="/sbin/natd" > natd_enable="YES" #firewall_enable must also be set to yes > # #and ipdivert must also be in kernel > natd_interface="ed1" > natd_flags="-f /etc/rc.natd" > > #named_enable="YES" #named is already working fine but > the command to > #start it should be moved here > #named_program="{/path/to/named}" #default /usr/sbin/named > #named_flags="" > > #syslogd_enable="yes" #i thought the system logger was already > working?! > > ntpdate_enable="YES" > ntpdate_flags="ncar.ucar.edu" > > network_interfaces="ed0 ed1 lo0" > ifconfig_ed0="inet 10.101.101.2 netmask 255.255.255.192" > ifconfig_ed1="inet 10.101.101.129 netmask 255.255.255.192" > defaultrouter="10.101.101.1" > > gateway_enable="YES" #does this still need to be here? > > #static_routes="route_int route_ext" #list of static routes > #route_int="-net 10.101.101.0 10.101.101.129" > #route_ext="-net 10.101.101.128 10.101.101.2" > > ### CONSOLE ENVIRONMENT CONFIG ### > saver="star" > blanktime="300" > ============================================= > > Here's my rc.natd: > ============================================= > #!/bin/sh > > # natd.conf > # configuration file for network address translation program > # version 0.3 > # 1999/08/17 > # gill@topsecret.net > ################################################################### > # specicify this file by using the commandline jargon: > # natd -config /etc/natd.conf > ################################################################### > > # turn on logging, might turn off once the system is > running smoothly > # logs to /var/log/alias.log and is truncated each time natd is > started > log yes > > # deny packets destined for the current IP number > # that have no entry in the internal translation table > #deny_incoming yes > > # log denied packets via syslog > log_denied yes > > # see syslog.conf(5) for facility names > #log_facility {facility_name} > > # from natd manpage: "Allocate a socket(2) in order to establish an > # FTP data or IRC DCC send connection. This option uses more system > # resources, but garuntees successful connections whe port numbers > confilict. > #use_sockets yes > > # from natd manpage: "Try to keep the same port number when altering > outgoing > # packets. With this option, protocols such as RPC will > have a better > chance > # of working. If it is not possible to maintain the port number, it > will be > # silently changed as per normal. > #same_ports yes > > # FOR DEBUGGING: stay attached to the controlling terminal > # and display all packet output to the stdout > #verbose yes > > # Only alter outgoing packets with a 10.0.0.0/8, 172.16.0.0/12, or a > # 192.168.0.0/16 address > #unregistered_only yes > > ### redirected ports ### > # redirect_port proto tergetIP:targetPORT [aliasIP:]aliasPORT \ > # [remoteIP[:remotePORT]] > # example: redirect_port tcp inside1:telnet 6666 > # means that tcp packets destines for port 6666 on this machine will > be sent > # to the telnet port on the inside1 machine > #redirect_port > redirect_port tcp 10.101.101.33:21 21 #ftp > redirect_port tcp 10.101.101.131:23 23 #telnet > redirect_port tcp 10.101.101.33:25 25 #smtp > redirect_port tcp 10.101.101.33:80 80 #www-tcp > redirect_port udp 10.101.101.33:80 80 #www-udp > redirect_port tcp 10.101.101.33:110 110 #pop3-tcp > redirect_port udp 10.101.101.33:110 110 #pop3-udp > #redirect_port tcp 123 #ntp > > > #anything below here is commented anyway, snipped for bandwidth... > > ============================================= To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 20:20:28 1999 Delivered-To: freebsd-questions@freebsd.org Received: from walnut.readington.com (walnut.readington.com [207.207.198.10]) by hub.freebsd.org (Postfix) with ESMTP id 0771015627 for ; Tue, 17 Aug 1999 20:20:16 -0700 (PDT) (envelope-from noc@stevetimkorules.com) Received: from localhost (noc@localhost) by walnut.readington.com (8.8.8/8.8.8) with ESMTP id XAA03842 for ; Tue, 17 Aug 1999 23:24:10 -0400 (EDT) (envelope-from noc@stevetimkorules.com) Date: Tue, 17 Aug 1999 23:24:10 -0400 (EDT) From: Network Ops X-Sender: noc@walnut.readington.com To: freebsd-questions@freebsd.org Subject: getting chat to work with pppd (ISDN) Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Right now I have this ppp-up script working: #!/bin/sh # /etc/ppp/ppp-up /usr/sbin/pppd /dev/cuaa1 115200 connect '/usr/bin/chat -v "" ATDT555-1212 CONNECT "" ' I need the phone number to be like 555-1212&2 since i have a motorola bit surf pro and they require a spechial init string and &digit in the phone number to connect dual channels. anybody? Thanks, -Steve noc@readington.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 20:44:24 1999 Delivered-To: freebsd-questions@freebsd.org Received: from dirty.research.bell-labs.com (dirty.research.bell-labs.com [204.178.16.6]) by hub.freebsd.org (Postfix) with SMTP id E4C45156A9 for ; Tue, 17 Aug 1999 20:44:20 -0700 (PDT) (envelope-from kwchen@dnrc.bell-labs.com) Received: from chair.dnrc.bell-labs.com ([135.180.161.201]) by dirty; Tue Aug 17 23:42:23 EDT 1999 Received: from blacktip.dnrc.bell-labs.com (blacktip [135.180.144.173]) by chair.dnrc.bell-labs.com (8.9.3/8.9.3) with ESMTP id XAA07957 for ; Tue, 17 Aug 1999 23:42:47 -0400 (EDT) From: Kuo Wei H Chen Received: (from kwchen@localhost) by blacktip.dnrc.bell-labs.com (8.9.3/8.9.3) id XAA15627 for freebsd-questions@freebsd.org; Tue, 17 Aug 1999 23:42:49 -0400 (EDT) Date: Tue, 17 Aug 1999 23:42:49 -0400 (EDT) Message-Id: <199908180342.XAA15627@blacktip.dnrc.bell-labs.com> To: freebsd-questions@freebsd.org Subject: how to enable kernel profiling? Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG To enable kernel profiling on FreeBSD Rel 3.2, I did the following, (according to a posting by Bruce Evans on 9/11/1996): config -p make clean depend make But I got link errors on several files: mcount.o: multiple def. of mcountprof_machdep.o: first defined here (????) device_if.o: many undefined reference to mcount exception.o: undefined reference to _btrap and _bintr i386-gdbstub.o: many undefined reference to mcount prof_machdep.o: undefined reference to mcount, __gmonparam psm.o: many undefined reference to mcount Did I miss any steps? Thanks for the help. K. Herman Chen To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 21:50:50 1999 Delivered-To: freebsd-questions@freebsd.org Received: from inet.chip-web.com (c1003518-a.plstn1.sfba.home.com [24.1.82.47]) by hub.freebsd.org (Postfix) with SMTP id C7E8D14D4B for ; Tue, 17 Aug 1999 21:50:47 -0700 (PDT) (envelope-from ludwigp@bigfoot.com) Received: (qmail 12399 invoked from network); 18 Aug 1999 04:51:30 -0000 Received: from furball.chip-web.com (HELO bigfoot.com) (172.16.1.29) by inet.chip-web.com with SMTP; 18 Aug 1999 04:51:30 -0000 Message-ID: <37BA3BBF.48718EE3@bigfoot.com> Date: Tue, 17 Aug 1999 21:51:11 -0700 From: Ludwig Pummer X-Mailer: Mozilla 4.6 [en] (X11; I; FreeBSD 3.2-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: Fro Joe Cc: freebsd-questions@FreeBSD.ORG Subject: Re: I'm glad I gave FreeBSD one last chance References: <001001bee927$9d55e100$69e336ce@mypc.myhost.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > Fro Joe wrote: > > I am > setting up a network on an ethernet... and I want to allow everyone > access to the PPP connection I'd make via modem off one of hte > computers running FreeBSD... When I set that up, I followed the instructions on http://www.freebsd.org/tutorials/ppp/ppp.html > but the querks are that I would like to > link together 2 modems on the same copmuter connecting to the same > ISP... Hrm. I don't know anything about that. > and everyone on the network would like to use ICQ from their > own computer... for the ICQ problem I thought a socks 5 server was the > way to go, but I don't know if this will allow for multiple people > using ICQ at once... Socks 5 will allow for multiple people using it at once. I have 2 people on at the some time here at home, using socks5 over a cable modem (but there's not real difference between this and your PPP connection). ICQ, on the other hand, doesn't always cooperate. Methinks the mirabilis folks don't quite know how to make a socks5 client (ICQ sometimes works, but other times I can't chat or do file transfers with someone else behind a firewall, even if they've also got a properly set-up socks5 proxy). > and could I use MPPP for this and how do I use > MPPP? This goes together with "Hrm. I don't know anything about that." --Ludwig Pummer To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 22: 2:18 1999 Delivered-To: freebsd-questions@freebsd.org Received: from garnet.acns.fsu.edu (gmhub.acns.fsu.edu [146.201.2.30]) by hub.freebsd.org (Postfix) with ESMTP id D2DFB14D05 for ; Tue, 17 Aug 1999 22:02:16 -0700 (PDT) (envelope-from bcc9746@garnet.acns.fsu.edu) Received: from garnet1.acns.fsu.edu (garnet1-fi.acns.fsu.edu [192.168.197.1]) by garnet.acns.fsu.edu (8.9.1/8.9.1) with ESMTP id BAA23028; Wed, 18 Aug 1999 01:00:36 -0400 Received: from s1o3q0 (dial1106.acns.fsu.edu [146.201.36.242]) by garnet1.acns.fsu.edu (8.9.1/8.9.1) with SMTP id BAA20996; Wed, 18 Aug 1999 01:00:35 -0400 Message-ID: <019701bee936$9f8127a0$f224c992@s1o3q0> From: "Brett G. Castleberry" To: "Agoro (S.) D Ombaka (Agoro-Ombaka)" , Cc: "Agoro (S.) D Ombaka (Agoro-Ombaka)" References: Subject: Re: FreeBSD & LINUX OS comparison Date: Wed, 18 Aug 1999 01:00:40 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit 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-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Agoro, If you explain exactly what you want to do with your system, maybe one of the experienced "answerers" will respond. Much of the discussion here has to do with networking and servers. You might want FreeBSD if you will require assistance in these areas. Linux newsgroups such as alt.os.linux and comp.os.linux.misc, on the other hand, often dwell on problems with the setup of stand-alone systems such as desktop and ppp setup. It appears to me that Red Hat may support more PC hardware than FreeBSD. My inexpensive Canon BJC-250 printer works with Red Hat 6.0, and I don't know whether it will work with FreeBSD. Don't think that your choice will be "written in stone." Once you are comfortable with the process of installing, it is relatively easy to delete your partitions and try another os if you aren't satisfied with your first choice, which is what I'm doing right now, having wiped Red Hat and cracked my FreeBSD book to get ready to install it this weekend. Red Hat definitely is easy for a beginner with little knowledge of Unix to install, but as soon as you start to work with it you have to learn the same things that you must know to use FreeBSD. For myself, as a home user, I think it will be a long time before I test the limitations either of Red Hat or FreeBSD. The limits I struggle with are my own. Again, if this is no help to you, be more specific about what you want to do with your system if you want advice from the professionals. Good luck to you, Brett G. Castleberry bcc9746@garnet.acns.fsu.edu Tallahassee, Florida To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 22:10:31 1999 Delivered-To: freebsd-questions@freebsd.org Received: from bunyip.flash.net (bunyip.flash.net [209.30.6.15]) by hub.freebsd.org (Postfix) with ESMTP id 5DE7414F42 for ; Tue, 17 Aug 1999 22:10:28 -0700 (PDT) (envelope-from alexf@flash.net) Received: from default (p236-18.atnt2.dialup.ftw1.flash.net [209.30.236.18]) by bunyip.flash.net (8.9.3/Pro-8.9.3) with SMTP id AAA20958 for ; Wed, 18 Aug 1999 00:10:53 -0500 (CDT) Message-ID: <000f01bee937$b40ee260$12ec1ed1@default> Reply-To: "Alex" From: "Alex" To: Subject: Probing Devices... Computer Freeze Date: Wed, 18 Aug 1999 00:08:16 -0500 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_000A_01BEE90D.C5861CE0" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 4.72.3612.1700 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3612.1700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_000A_01BEE90D.C5861CE0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable When I try to install freeBSD ver 3.2 my computer freezes when = the message "Probing Devices..." appears on the screen. I've been to the = freebsd.org web sight and I've tried disabling some of my devices but I = still get stuck at the same place. =20 HELP! Thanks, Alex (new to FreeBSD)=20 ------=_NextPart_000_000A_01BEE90D.C5861CE0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
 
          When I=20 try to install freeBSD ver 3.2 my computer freezes when the message=20 "Probing Devices..." appears on the screen. I've been to the=20 freebsd.org web sight and I've tried disabling some of my devices but I = still=20 get stuck at the same place.
 
          &nbs= p;   
          &nbs= p;            = ;            =   =20 HELP!
          &nbs= p;            = ;            =    =20 Thanks,
          &nbs= p;            = ;            =         =20 Alex (new to FreeBSD) 
------=_NextPart_000_000A_01BEE90D.C5861CE0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 22:35:38 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail.rdc1.pa.home.com (ha1.rdc1.pa.home.com [24.2.5.66]) by hub.freebsd.org (Postfix) with ESMTP id 15D9C14CC3 for ; Tue, 17 Aug 1999 22:35:36 -0700 (PDT) (envelope-from napalmski@home.com) Received: from home.com ([24.5.63.201]) by mail.rdc1.pa.home.com (InterMail v4.01.01.00 201-229-111) with ESMTP id <19990818053606.BWLK24014.mail.rdc1.pa.home.com@home.com>; Tue, 17 Aug 1999 22:36:06 -0700 Message-ID: <37BA4530.5F4DF72F@home.com> Date: Wed, 18 Aug 1999 01:31:28 -0400 From: "James F. Young" X-Mailer: Mozilla 4.61 [en] (Win98; I) X-Accept-Language: en MIME-Version: 1.0 To: Alex Cc: questions@FreeBSD.ORG Subject: Re: Probing Devices... Computer Freeze References: <000f01bee937$b40ee260$12ec1ed1@default> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Alex, I am in a similar situation with one of my machines (the one which I had in mind to house bsd permanently) Since this is my first install of bsd, I am temporarily going to do this on a different machine altogether. Once I am clear on what I need to ftp from the net I will be attempting what I am about to suggest to you. One of the easiest ways to approach this might be to strip the machine to its bare essentials, pulling your sound card, nic and anything else you don't need and try again. (my blind guess *not knowing your system* is that it may be a nic and something else) Try booting again and if you get past the "probing" stage then you have at least narrowed down the possibilites of where the conflict may be coming from. (it still freezes consult your bios and diable any serial ports your not actively using, if that doesnt work then you may have seriouse hardware issues) Replace the components you pulled one at a time until if freezes again and then you will have one of the devices that is having a conflict identified. Determine address and irq of that device and then figure out what else is trying to use the same resources. hope that helps jim Alex wrote: > When I try to install freeBSD ver 3.2 my computer freezes > when the message "Probing Devices..." appears on the screen. I've been > to the freebsd.org web sight and I've tried disabling some of my > devices but I still get stuck at the same > place. > HELP! > Thanks, Alex (new to > FreeBSD) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 22:57:59 1999 Delivered-To: freebsd-questions@freebsd.org Received: from nowcool.com (FX3-1-119.mgfairfax.rr.com [24.28.200.119]) by hub.freebsd.org (Postfix) with ESMTP id A4B6A15666 for ; Tue, 17 Aug 1999 22:57:28 -0700 (PDT) (envelope-from question@blink.dhs.org) Received: from localhost (question@localhost) by nowcool.com (8.9.3/8.9.3) with ESMTP id BAA02482; Wed, 18 Aug 1999 01:56:28 -0400 (EDT) (envelope-from question@blink.dhs.org) Date: Wed, 18 Aug 1999 01:56:28 -0400 (EDT) From: FreeBSD Question X-Sender: question@nowcool.com To: Kent Stewart Cc: Reinoud Koornstra , freebsd-questions@FreeBSD.ORG Subject: Re: bug wich crashes freebsd 3.2 In-Reply-To: <008f01bee8e3$c7965150$0500fea9@OPAL> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Yes, there is a way that user can mount the file systems(of course in a way that root configured). If a system uses "amd" and if it mounts fd's automatically(like my system) then that user can seriously harm the computer. I tried the exact same thing whoever wrote below and it DID freeze the machine, had to reboot it by pressing "reset" button. I am using 4.0 so the bug(?) is not fixed. Obviously, I haven't had ANY problems like this for over 5-6 years eversince I first started using FreeBSD.. and the user has to be "pretty dumb" to make mistakes like that anyway. However, I feel bad that there is this kind of problem which FreeBSD can't handle well or as normal. This should definitely be fixed in the near future even though it doesn't happen frequently or never happen to somebody. Bug is a bug and should be fixed. Even if there is a bug that is not normally caused by anyone, it's still a bug. Byung On Tue, 17 Aug 1999, Kent Stewart wrote: > > ----- Original Message ----- > From: Reinoud Koornstra > To: > Sent: Tuesday, August 17, 1999 11:18 AM > Subject: bug wich crashes freebsd 3.2 > > > > Hi, > > > > I run into a annoying bug in the freebsd 3.2 > > Maybe it is known to you, but freebsd 3.1 also crashes on this point. > > > > It's simple, take a i386 machine with freebsd 3.2 installed on it. > > Put an 1.44 inch disk in the drive wich is formatted with the ms dos fs. > > then mount_msdos /dev/fd0 /mnt > > then cd /mnt > > then ls > > I tryed to copy a file from my hd to the disk, but the disk was write > > protected, so it didnt work. > > I had one file on the floppy and tryed to remove it, but i got an error > > cause the disk was write protected. > > Then i took the floppy out and remove the write protection and put the > > floppy in again and typed ls again. > > On that moment freebsd 3.2 hangs. > > I tryed this 3 times and everytime i had the same result. > > It probably shouldn't have hung but you shouldn't have removed the floppy > before you umounted it. > > Kent > > > Do you know this bug? > > Is this fixed in 4.0? > > Sincerely, > > > > Reinoud. > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 23: 8:33 1999 Delivered-To: freebsd-questions@freebsd.org Received: from styx.uwa.edu.au (styx.uwa.edu.au [130.95.128.6]) by hub.freebsd.org (Postfix) with ESMTP id 32B6B14A0B for ; Tue, 17 Aug 1999 23:08:26 -0700 (PDT) (envelope-from mayd@cygnus.uwa.edu.au) Received: from cygnus.uwa.edu.au (mayd@cygnusl.uwa.edu.au [130.95.128.5]) by styx.uwa.edu.au (8.9.3/8.9.3/Debian/GNU) with ESMTP id OAA19230 for ; Wed, 18 Aug 1999 14:08:51 +0800 Received: from localhost (mayd@localhost) by cygnus.uwa.edu.au (8.8.8/8.8.5) with SMTP id OAA20007 for ; Wed, 18 Aug 1999 14:08:49 +0800 (WST) Date: Wed, 18 Aug 1999 14:08:49 +0800 (WST) From: David May To: freebsd-questions@FreeBSD.ORG Subject: [Q] How to write a chat script for dialback modem for "cu"? Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I have set up cu to provide dialout lines to a number of sites and this is working very satisfactorily. However, I need to add support for a site which has a dialback modem. So far I have not been able to find any examples of chat scripts for such a scenario. The remote modem is a US Robotics Sportster. It prompts for a password then hangs up and calls back. Can anybody point me to a suitable example ? By the way, are there any better packages than cu around? I am particulary interested in something that provides better logging and accounting information for telephone line usage. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 23:39:39 1999 Delivered-To: freebsd-questions@freebsd.org Received: from smtp05.wxs.nl (smtp05.wxs.nl [195.121.6.57]) by hub.freebsd.org (Postfix) with ESMTP id 4FF081579F for ; Tue, 17 Aug 1999 23:39:34 -0700 (PDT) (envelope-from asmodai@wxs.nl) Received: from daemon.ninth-circle.org ([195.121.196.209]) by smtp05.wxs.nl (Netscape Messaging Server 3.61) with ESMTP id AAB555; Wed, 18 Aug 1999 08:40:07 +0200 Received: (from asmodai@localhost) by daemon.ninth-circle.org (8.9.3/8.9.3) id IAA46558; Wed, 18 Aug 1999 08:21:22 +0200 (CEST) (envelope-from asmodai) Date: Wed, 18 Aug 1999 08:21:22 +0200 From: Jeroen Ruigrok/Asmodai To: Luiz Morte da Costa Junior Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Motherboard Intel Message-ID: <19990818082122.E46414@daemon.ninth-circle.org> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii User-Agent: Mutt/0.96.3i In-Reply-To: ; from Luiz Morte da Costa Junior on Tue, Aug 17, 1999 at 03:54:09PM -0300 Organisation: Ninth-Circle Enterprises Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * Luiz Morte da Costa Junior (morte@correionet.com.br) [990817 21:28]: > >Hello, > >I have a L440GX+ Server Board, dual processor (pentium III 450Mhz), 512M >RAM, running FreeBSD. My problem is when I run a process with many disk >access. The machine doesn't response anything. My machine is down. Please provide additional information, such as IDE or SCSI disks, whether the machine is overclocked, type of memory, dmesg output, kernel config file, fstab contents, other worthy information. We ain't psychic =P -- Jeroen Ruigrok van der Werven asmodai(at)wxs.nl The BSD Programmer's Documentation Project Network/Security Specialist BSD: Technical excellence at its best If you're fighting to live, It's ok to die! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 23:39:42 1999 Delivered-To: freebsd-questions@freebsd.org Received: from smtp05.wxs.nl (smtp05.wxs.nl [195.121.6.57]) by hub.freebsd.org (Postfix) with ESMTP id E9B8B157FD for ; Tue, 17 Aug 1999 23:39:36 -0700 (PDT) (envelope-from asmodai@wxs.nl) Received: from daemon.ninth-circle.org ([195.121.196.209]) by smtp05.wxs.nl (Netscape Messaging Server 3.61) with ESMTP id AAD555; Wed, 18 Aug 1999 08:40:09 +0200 Received: (from asmodai@localhost) by daemon.ninth-circle.org (8.9.3/8.9.3) id IAA46549; Wed, 18 Aug 1999 08:19:15 +0200 (CEST) (envelope-from asmodai) Date: Wed, 18 Aug 1999 08:19:15 +0200 From: Jeroen Ruigrok/Asmodai To: Al Goldstein Cc: questions@FREEBSD.ORG Subject: Re: problems Message-ID: <19990818081915.D46414@daemon.ninth-circle.org> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii User-Agent: Mutt/0.96.3i In-Reply-To: ; from Al Goldstein on Tue, Aug 17, 1999 at 10:09:13PM +0000 Organisation: Ninth-Circle Enterprises Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * Al Goldstein (al@sense-sea-MegaSub-1-344.oz.net) [990818 00:40]: >RELEASE FreeBSD 3.2-RELEASE #0 Tue Aug 17 14:14:51 GMT 1999 root@mynane.my. >e myomain:/usr/src/sys/compole/MADKERNEL i386 > >Help! I can't get an ethernet interface up with my 3com 509 card. >The card runs under solaris 2.5 using address 250 int 5 or 280 int 3. >I tried both of these trying to create the device ep0 while making >a new kernel. Device did not appear. > >I have the sol system as a second disk. It will not boot from the BSD >boot manager. Says missing partition boot record. Solaris comes up >if I remove the bsd disk and make the solaris disk the first drive. > >Also no tcsh with over 400megs of stuff most of which was not requested. You appear to have a number of problems at the same time. I will try to give some hints in their general direction, please search in the archives of the mailinglists and read some parts of the FAQ and handbook as they provide background information. And don't forget `man'. Anyways, the ep0 driver specifies an attach to isa? with some irq and iomem values. Look at your line in your kernel file, do they match the setting of the card? No? try to change the value of the card with 3c5x9cfg.exe or change the setting within the kernel config file. Did you try a boot with boot: set_verbose boot: boot yet? It might yield additional information. tcsh? usr/ports/shells/tcsh Not requested? That depends on what you choose on install, the FreeBSD install is as sutomisable as you want provided you chose expert instead of novice install... HTH, HAND, -- Jeroen Ruigrok van der Werven asmodai(at)wxs.nl The BSD Programmer's Documentation Project Network/Security Specialist BSD: Technical excellence at its best Let us eat and drink; for tomorrow we shall die. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Tue Aug 17 23:39:41 1999 Delivered-To: freebsd-questions@freebsd.org Received: from smtp05.wxs.nl (smtp05.wxs.nl [195.121.6.57]) by hub.freebsd.org (Postfix) with ESMTP id 0EC58157B9 for ; Tue, 17 Aug 1999 23:39:35 -0700 (PDT) (envelope-from asmodai@wxs.nl) Received: from daemon.ninth-circle.org ([195.121.196.209]) by smtp05.wxs.nl (Netscape Messaging Server 3.61) with ESMTP id AAC555; Wed, 18 Aug 1999 08:40:08 +0200 Received: (from asmodai@localhost) by daemon.ninth-circle.org (8.9.3/8.9.3) id IAA46536; Wed, 18 Aug 1999 08:14:19 +0200 (CEST) (envelope-from asmodai) Date: Wed, 18 Aug 1999 08:14:19 +0200 From: Jeroen Ruigrok/Asmodai To: Evren Yurtesen Cc: freebsd-questions@freebsd.org Subject: Re: make world question Message-ID: <19990818081419.C46414@daemon.ninth-circle.org> References: <37B9EC43.320441E0@ispro.net.tr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii User-Agent: Mutt/0.96.3i In-Reply-To: <37B9EC43.320441E0@ispro.net.tr>; from Evren Yurtesen on Wed, Aug 18, 1999 at 02:12:03AM +0300 Organisation: Ninth-Circle Enterprises Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * Evren Yurtesen (yurtesen@ispro.net.tr) [990818 03:40]: >I have made a make world on my system but then I realized that >the edquota program at /usr/obj/usr/src/usr.sbin/edquota >is different size than /usr/sbin/edquota I thought it was supposed >to be copied over the older one. What is wrong? Mayhaps nothing's wrong, but ye just looked over an important, iften-used aspect, called stripping, see below. >And how can I understand if there is an error in the compilation? >the compiler is giving some warning messages but I do not know >which one is critical or important. Well, for truly to be able to detect this, you need at least some C knowledge and some compiler experience. There's no easy reference otherwise. >reactor:/usr/obj/usr/src/usr.sbin/edquota#ls -la >total 33 >drwxr-xr-x 2 root wheel 512 Aug 17 01:22 . >drwxr-xr-x 130 root wheel 2560 Aug 16 23:27 .. >-rwxr-xr-x 1 root wheel 15112 Aug 17 01:22 edquota >-rw-r--r-- 1 root wheel 2315 Aug 17 01:22 edquota.8.gz >-rw-r--r-- 1 root wheel 10916 Aug 17 01:22 edquota.o >reactor:/usr/obj/usr/src/usr.sbin/edquota#ls -la /usr/sbin/edquota >-r-xr-xr-x 1 root wheel 12248 Aug 17 21:36 /usr/sbin/edquota >reactor:/usr/obj/usr/src/usr.sbin/edquota# $ file /usr/obj/usr/src/usr.sbin/edquota $ file /usr/sbin/edquota My guess is that the latter is stripped, meaning that the debugging symbols have been removed. HTH, HAND -- Jeroen Ruigrok van der Werven asmodai(at)wxs.nl The BSD Programmer's Documentation Project Network/Security Specialist BSD: Technical excellence at its best For country, children, hearth, and home. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 0:58:54 1999 Delivered-To: freebsd-questions@freebsd.org Received: from nexus.plymovent.se (nexus.plymovent.se [212.247.77.253]) by hub.freebsd.org (Postfix) with ESMTP id ED99915739 for ; Wed, 18 Aug 1999 00:58:44 -0700 (PDT) (envelope-from thomas.uhrfelt@plymovent.se) Received: from tu ([192.168.1.21]) by nexus.plymovent.se (8.9.3/8.9.3) with SMTP id KAA04632 for ; Wed, 18 Aug 1999 10:04:43 +0200 (CEST) (envelope-from thomas.uhrfelt@plymovent.se) From: "Thomas Uhrfelt" To: "FreeBSD Questions" Subject: maillog pretty printer Date: Wed, 18 Aug 1999 09:55:57 +0200 Message-ID: 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 IMO, Build 9.0.2416 (9.0.2910.0) X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Is there anyone out there that have a ready to run perl/shell script that parses the maillog and generates statustables and makes it a bit more readable? I could of course dig down into the O'Reilly books and learn Perl from scratch, but I figured there gotta be someone who have done this already.. Regards, Thomas Uhrfelt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 1: 5:36 1999 Delivered-To: freebsd-questions@freebsd.org Received: from musashi.et.bocholt.fh-ge.de (reserve.et.bocholt.fh-gelsenkirchen.de [193.175.197.95]) by hub.freebsd.org (Postfix) with ESMTP id CDB58156F3 for ; Wed, 18 Aug 1999 01:05:27 -0700 (PDT) (envelope-from hank@musashi.et.bocholt.fh-ge.de) Received: from localhost (localhost.et.bocholt.fh-ge.de [127.0.0.1]) by musashi.et.bocholt.fh-ge.de (8.9.3/8.9.3) with ESMTP id KAA06457 for ; Wed, 18 Aug 1999 10:06:00 +0200 (CEST) (envelope-from hank@musashi.et.bocholt.fh-ge.de) Message-Id: <199908180806.KAA06457@musashi.et.bocholt.fh-ge.de> From: gouders@et.bocholt.fh-ge.de To: freebsd-questions@freebsd.org Subject: Disks, partitions, slices ??? Reply-To: gouders@et.bocholt.fh-ge.de Date: Wed, 18 Aug 1999 10:06:00 +0200 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, during installation of FBSD 3.2 I used the disk layout that was suggested by the installation procedure: Filesystem 1K-blocks Used Avail Capacity Mounted on /dev/wd0s1a 39647 18729 17747 51% / /dev/wd0s1f 9279323 2008050 6528928 24% /usr /dev/wd0s1e 19815 7330 10900 40% /var procfs 4 4 0 100% /proc Now, I sometimes have problems with full file-systems and would like to change the current layout of my disk but have no idea if and how it could be done. Can anybody point me to where I can learn about FBSD concepts of handling hard disks? I checked the handbook but only found some advice how to add a new disk to the system. Thanks, Dirk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 1:47:13 1999 Delivered-To: freebsd-questions@freebsd.org Received: from cronus.medianetwork.se (cronus.medianetwork.se [193.14.204.1]) by hub.freebsd.org (Postfix) with ESMTP id 4431D14CA5 for ; Wed, 18 Aug 1999 01:47:07 -0700 (PDT) (envelope-from support@junglenote.com) Received: from junglenote.com (digital02.medianetwork.se [193.14.204.220]) by cronus.medianetwork.se (8.9.3/8.7) with ESMTP id KAA32099 for ; Wed, 18 Aug 1999 10:47:24 +0200 Received: from enigmatic [127.0.0.1] by junglenote.com [localhost] with SMTP (MDaemon.v2.84.R) for ; Wed, 18 Aug 1999 10:55:18 +0200 Received: by localhost with Microsoft MAPI; Wed, 18 Aug 1999 10:55:17 +0200 Message-ID: <01BEE968.285B8670.support@junglenote.com> From: Dan Larsson To: "'ChrisMic@clientlogic.com'" Cc: "'mkc@Graphics.Cornell.EDU'" , Jamie Norwood , "freebsd-questions@FreeBSD.ORG" Subject: SV: dhcpd Date: Wed, 18 Aug 1999 10:55:16 +0200 Organization: Portabla Datorer AB X-Mailer: Microsoft Internet-e-post/MAPI - 8.0.0.4211 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-MDaemon-Deliver-To: freebsd-questions@FreeBSD.ORG X-Return-Path: support@junglenote.com Reply-To: support@junglenote.com Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I think I need to comment on this.. Scroll down. > -----Ursprungligt meddelande----- > Fr=E5n: Christopher Michaels [SMTP:ChrisMic@clientlogic.com] > Skickat: den 17 augusti 1999 16:58 > Till: 'support@junglenote.com'; 'mkc@Graphics.Cornell.EDU' > Kopia: Jamie Norwood; freebsd-questions@FreeBSD.ORG > =C4mne: RE: dhcpd >=20 > Ok, I have to chime in on this one. see below. >=20 > > > Yes it is, but keep reading. He confirmed my guess about wanting = it to > > > prevent servers. Really all it does to people who want to run a = server > > > is annoy them. Meanwhile it annoys your friendly non-abusing = users as > > > well. Not what I would consider a good idea. Not long ago I met = a guy > > > who was running a web server on a machine using dhcp. He had a = friend > > > running his DNS service and every time his IP address changed he = just > > > sent the new address to his friend who updated his DNS and he was = back > > > in business. Of course this works best if both you and your = friend > > > spend all your time on the net... > >=20 > > How does this bother the 'friendly non-abusing user'? I've never = seen, > > even m$ > > boxes included, die from having their ip address changed with or = without > > dhcp. > > You must mean something else, right? > >=20 > I believe what is meant is that any active connections will just > stop responding when the IP address is changed from under them. I can = see > it now, I'm downloading the new service pack to my crappy WordPerfect = 9, it > gets through 20MB of the 36MB patch, and *BOOM*, IP address changes = and the > connection drops, forcing me back to square 1. >=20 > That's an extreem example, what if someone's on ICQ, or playing an > online game, etc, etc.. This would end up alienating your 'good' = customers > more than it would the 'bad' ones. I know I would switch isp's in a > heartbeat (if this is an isp we're dealing with), unreliable service = is > unacceptable when that service is being paid for, and from a = customer's > point of view, this would be un-reliable service. >=20 > On the same tolken, what kind of a lease time are we talking about? > 2hrs, 12hrs, 24hrs? 24 hrs >=20 > > And as I mentioned earlier, from the clients point of view it's much > > easier just to > > apply for a static address. > > The other solution would be to deny access to all and punch holes in = the > > fw for=20 > > every client allowed. This works. I know. But the rules table for = the > > firewall grows=20 > > to monolithic proportions, understandably due to the myriad of = available > > software > > applications.=20 > >=20 > This has it's down sides as well. You'd have to put SO many holes > in this firewall it'd be crazy. My current internet connection is = through a > local university, and they block ALL incomming connections except on = port > 113 (ident). I can't tell you how much trouble this causes me. ICQ > doesn't work right, I can't play most online games, simple things like = a DCC > chat on IRC doesn't work, netmeeting doesn't work, the list goes on. >=20 > I understand what you are trying to do, stop people from abusing the > system and putting up static servers on a dynamic connection. Even = the idea > of blocking well known ports would be undesirable because the people = you > want to stop are, for the most part, smart enough to not use a = standard > port. >=20 > Personally I am against any solution that punishes the good users to > stop the few bad users. I personally feel the best solution would be = to > keep logs of connection time and bandwidth, and have something alert = you to > problem users, people with long uptimes and alot of outgoing = bandwidth. But > then again, this is only my opinion. >=20 >=20 > > A second alternative which is similar to the above. And it's setting > > bandwidth=20 > > rules for every ip in the scope. Which also works, but sets the = problem > > out of=20 > > focus. The following paragraph is the desired solution: "The most desireable solution from my point of view would be to deny = regular ip datatypes (http-data etc) from the internet to the clients. e.g. to deny a request from the internet to access any ip resource on the client = side.=20 And from there punch holes to allow access to certain ips to be accessed = from the internet. This I do not know how to do. If someone does please let me = know." This is an addition to the above paragraph: I might have been unclear of what I meant. This is regardless of which = port destination the actual data is transmitted to on the client side. So the solution = would be to construct a filter that disallows a certain data-type connection/transmission from = the internet=20 to the client, except for those permitted that specific type of data. To me this doesn't sound impossible and I'm sure there already are = solutions for this available. The quirk comes when looking for such a software which = can be run on fbsd. As it seems to me now I have better luck pursuing this issue in a = seperate thread. > >=20 > > /D > >=20 > As I said earlier, this is more trouble than it's worth, there are a > good number of programs that use random/dynamic port numbers. Granted = some > can be restricted, such as ICQ and mIRC, but others cannot = (netmeeting). > And again, let's say you open up ports 4000-5000 for ICQ users, what's = to > stop your "bad" user from just putting a server on that port. >=20 > Another viable option would be to do regular port scans on your > users, but anyone using a *NIX based system will easily be able to = detect > and block those (unless you use a utility such as nmap, and use it's = stealth > mode). This is getting rather complicated tho. >=20 > One last thing, since most of the original posting was chopped off, > I'm going on some assumptions. I am assuming that this is in an ISP > situation where you have dialup users with dynamically assigned IP > addresses. =20 Actually the whole solution is based on a citywide mesh of radio = antennas connected via a fibre backbone to the internet. /D To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 1:51:33 1999 Delivered-To: freebsd-questions@freebsd.org Received: from dns.ie-online.it (dns.ie-online.it [194.133.148.8]) by hub.freebsd.org (Postfix) with ESMTP id 419AD14CA5 for ; Wed, 18 Aug 1999 01:51:29 -0700 (PDT) (envelope-from sriva@alice.it) Received: from dns.ie-interna.it (host-ie-trezzano.ie-online.it [194.133.148.44]) by dns.ie-online.it (8.8.8/8.8.8) with ESMTP id KAA29329; Wed, 18 Aug 1999 10:49:59 +0200 (CEST) (envelope-from sriva@alice.it) Received: from stefano (stefano.ie-interna.it [192.168.0.33]) by dns.ie-interna.it (8.8.8/8.8.8) with SMTP id KAA00690; Wed, 18 Aug 1999 10:49:59 +0200 (CEST) (envelope-from sriva@alice.it) Message-Id: <3.0.5.32.19990818104958.00a5e800@relay.alice.it> X-Sender: riva@relay.alice.it X-Mailer: QUALCOMM Windows Eudora Pro Version 3.0.5 (32) Date: Wed, 18 Aug 1999 10:49:58 +0200 To: "Thomas Uhrfelt" From: Stefano Riva Subject: Re: maillog pretty printer Cc: freebsd-questions@FreeBSD.ORG In-Reply-To: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG At 09.55 18/08/99 +0200, you wrote: >Is there anyone out there that have a ready to run perl/shell script that >parses the maillog and generates statustables and makes it a bit more >readable? I could of course dig down into the O'Reilly books and learn Perl I'm using two simple scripts, one for SMTP and one for POP3. FYI on my mail server they're executed by a small shell script put in crontab and the output is sent to my mailbox. I don't remember where I got them... They're relatively small, anyway I'm sending you the scripts by mail; if someone else needs them, just ask. --- Stefano Riva Software Engineer - Systems Administrator Informazioni Editoriali I.E. Srl Voice +39-02283151, Fax +39-0228315900 Email sriva@alice.it To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 1:52:51 1999 Delivered-To: freebsd-questions@freebsd.org Received: from cronus.medianetwork.se (cronus.medianetwork.se [193.14.204.1]) by hub.freebsd.org (Postfix) with ESMTP id 526BA14CA5 for ; Wed, 18 Aug 1999 01:52:45 -0700 (PDT) (envelope-from support@junglenote.com) Received: from junglenote.com (digital06.medianetwork.se [193.14.204.224]) by cronus.medianetwork.se (8.9.3/8.7) with ESMTP id KAA32221 for ; Wed, 18 Aug 1999 10:51:27 +0200 Received: from enigmatic [127.0.0.1] by junglenote.com [localhost] with SMTP (MDaemon.v2.84.R) for ; Wed, 18 Aug 1999 10:59:34 +0200 Received: by localhost with Microsoft MAPI; Wed, 18 Aug 1999 10:59:33 +0200 Message-ID: <01BEE968.C0F47770.support@junglenote.com> From: Dan Larsson To: "'gouders@et.bocholt.fh-ge.de'" Cc: "[FreeBSD-Questions-List] (E-post)" Subject: SV: Disks, partitions, slices ??? Date: Wed, 18 Aug 1999 10:59:32 +0200 Organization: Portabla Datorer AB X-Mailer: Microsoft Internet-e-post/MAPI - 8.0.0.4211 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-MDaemon-Deliver-To: freebsd-questions@freebsd.org X-Return-Path: support@junglenote.com Reply-To: support@junglenote.com Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG If you can get your hands on "The Complete FreeBSD Book" there's a = terriffc discussion regarding this in it. /D > -----Ursprungligt meddelande----- > Fr=E5n: gouders@et.bocholt.fh-ge.de [SMTP:gouders@et.bocholt.fh-ge.de] > Skickat: den 18 augusti 1999 10:06 > Till: freebsd-questions@FreeBSD.ORG > =C4mne: Disks, partitions, slices ??? >=20 > Hi, >=20 > during installation of FBSD 3.2 I used the disk layout that was > suggested by the installation procedure: >=20 > Filesystem 1K-blocks Used Avail Capacity Mounted on > /dev/wd0s1a 39647 18729 17747 51% / > /dev/wd0s1f 9279323 2008050 6528928 24% /usr > /dev/wd0s1e 19815 7330 10900 40% /var > procfs 4 4 0 100% /proc >=20 > Now, I sometimes have problems with full file-systems and would like > to change the current layout of my disk but have no idea if and how it > could be done. >=20 > Can anybody point me to where I can learn about FBSD concepts of > handling hard disks? I checked the handbook but only found some > advice how to add a new disk to the system. >=20 > Thanks, >=20 > Dirk >=20 >=20 > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 2: 4:18 1999 Delivered-To: freebsd-questions@freebsd.org Received: from gatekeeper.viper.net.au (gatekeeper.viper.net.au [203.31.238.1]) by hub.freebsd.org (Postfix) with ESMTP id 4FED514DA3 for ; Wed, 18 Aug 1999 02:04:11 -0700 (PDT) (envelope-from marauder@gatekeeper.viper.net.au) Received: from localhost (marauder@localhost) by gatekeeper.viper.net.au (8.9.1a/8.7.3) with ESMTP id TAA18948 for ; Wed, 18 Aug 1999 19:03:06 +1000 (EST) Date: Wed, 18 Aug 1999 19:03:06 +1000 (EST) From: Matt Beauregard To: freebsd-questions@FreeBSD.ORG Subject: xset and key repeat speed Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I've had no luck trying to work out the right xset options to change key repeat speed. I'd've thought that xset r 45 or xset r 500 45 would do it, but neither work. marauder@juturna:~$ xset r 45 marauder@juturna:~$ xset q auto repeat delay: 500 repeat rate: 5 marauder@juturna:~$ xset r 500 45 xset: unknown option 500 What am I missing? :-) -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- Matt Beauregard // Sydney's Premier O // Internet Provider O// IPER.NET.AU Ph 61 2 9699 3837 marauder@viper.net.au http://www.viper.net.au -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 2: 7:46 1999 Delivered-To: freebsd-questions@freebsd.org Received: from Hydro.CAM.ORG (Hydro.CAM.ORG [198.168.100.7]) by hub.freebsd.org (Postfix) with ESMTP id E1B2714DA3 for ; Wed, 18 Aug 1999 02:07:42 -0700 (PDT) (envelope-from intmktg@CAM.ORG) Received: from Ocean.CAM.ORG (Ocean.CAM.ORG [198.168.100.5]) by Hydro.CAM.ORG (8.8.8/8.8.4) with ESMTP id CAA15320 for ; Wed, 18 Aug 1999 02:28:53 -0400 (EDT) Date: Wed, 18 Aug 1999 02:29:01 -0400 (EDT) From: Marc Tardif To: freebsd-questions@freebsd.org Subject: NIS problems Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I'm trying to configure FreeBSD 2.2.8 to act as a NIS server for a Sun 4.1 box. Here's what I have on the FreeBSD side: /etc/host.conf contains: nis /etc/rc.conf contains: hostmaine="freebsd.boxen.com" nisdomainname="nis.domain" nis_server_enable="YES" nis_yppasswdd_enable="YES" rpcinfo -u localhost ypserv returns: program 100004 version 1 ready and waiting program 100004 version 2 ready and waiting tcpdump -i ethernet_interface returns: 01:36:33.445599 solaris.boxen.com.1063 > 192.168.0.0.sunrpc: udp 104 Whereas, on the sun4.1 box which is trying desperately to initialise NIS during boot-time is continuously returning: NIS: server not responding for domain "nis.domain"; still trying. Any suggestions should be greatly appreciated, Marc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 2:19:40 1999 Delivered-To: freebsd-questions@freebsd.org Received: from lilac.ocn.ne.jp (lilac.ocn.ne.jp [203.139.160.178]) by hub.freebsd.org (Postfix) with ESMTP id AC9331541C for ; Wed, 18 Aug 1999 02:19:37 -0700 (PDT) (envelope-from eiji@lilac.ocn.ne.jp) Received: from lilac.ocn.ne.jp by lilac.ocn.ne.jp (8.9.1a/OCN) id SAA02366; Wed, 18 Aug 1999 18:19:43 +0900 (JST) Message-ID: <37BA8076.AE32E29D@lilac.ocn.ne.jp> Date: Wed, 18 Aug 1999 18:44:24 +0900 From: eiji@lilac.ocn.ne.jp X-Mailer: Mozilla 4.5 (Macintosh; I; PPC) X-Accept-Language: ja MIME-Version: 1.0 To: FreeBSD-questions@FreeBSD.org Subject: question Content-Type: text/plain; charset=iso-2022-jp; x-mac-type="54455854"; x-mac-creator="4D4F5353" Content-Transfer-Encoding: 7bit Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Can you make provider system by FreeBSD3.0? Useing livingston portmaster etc. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 2:39:24 1999 Delivered-To: freebsd-questions@freebsd.org Received: from vax1.baker.ie (VAX1.baker.IE [194.125.50.91]) by hub.freebsd.org (Postfix) with SMTP id 6C5EE15735 for ; Wed, 18 Aug 1999 02:39:15 -0700 (PDT) (envelope-from cillian@baker.ie) Received: from baker.ie ([194.125.50.55]) by vax1.baker.ie with ESMTP for questions@freebsd.org; Wed, 18 Aug 1999 10:44:46 +0100 Message-ID: <37BA7C18.18B99173@baker.ie> Date: Wed, 18 Aug 1999 10:25:44 +0100 From: Cillian Sharkey X-Mailer: Mozilla 4.6 [en] (Win95; U) X-Accept-Language: en MIME-Version: 1.0 To: questions@freebsd.org Subject: /etc/group Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, Seeing as there are databases for /etc/master.passwd created to speedup user lookup's etc. is there any equivalent database for the group file /etc/group or is there any real need to have one ? - Cillian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 3: 6:40 1999 Delivered-To: freebsd-questions@freebsd.org Received: from Bespin.worldnet.net (bespin.worldnet.net [195.3.3.4]) by hub.freebsd.org (Postfix) with ESMTP id 5EA5C14C8F for ; Wed, 18 Aug 1999 03:06:31 -0700 (PDT) (envelope-from pcasidy@worldnet.fr) Received: from greatoak.home (p14-054.province.worldnet.fr [195.3.14.54]) by Bespin.worldnet.net (8.8.8/8.8.8) with ESMTP id MAA03093 for ; Wed, 18 Aug 1999 12:02:49 +0200 (CEST) Received: (from pcasidy@localhost) by greatoak.home (8.9.3/8.9.3) id LAA04220 for freebsd-questions@freebsd.org; Wed, 18 Aug 1999 11:58:06 +0200 (CEST) (envelope-from pcasidy) Message-Id: <199908180958.LAA04220@greatoak.home> Date: Wed, 18 Aug 1999 11:58:06 +0200 (CEST) From: Philippe CASIDY Subject: How to update CVS repository ? To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: TEXT/plain; CHARSET=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi! Now I am able to use the 800 Mb hard drive I have added to my system, I have extracted on it the whole CVS repository from the Walnet Creek CDROM 3.2-RELEASE. I have read the handbook about how to synchronize the sources. But as far as I understand, CTM or CVSup update checked out sources. They do not update the CVS repository. Am I right? Is there a way to synchronize my CVS repository ? With cvsup-mirror ? Thanks a lot!! Phil. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 3:44:55 1999 Delivered-To: freebsd-questions@freebsd.org Received: from scientia.demon.co.uk (scientia.demon.co.uk [212.228.14.13]) by hub.freebsd.org (Postfix) with ESMTP id 7714A1576D for ; Wed, 18 Aug 1999 03:44:47 -0700 (PDT) (envelope-from ben@scientia.demon.co.uk) Received: from lithium.scientia.demon.co.uk ([192.168.0.3] ident=exim) by scientia.demon.co.uk with esmtp (Exim 3.024 #3) id 11Gzor-000BIk-00; Wed, 18 Aug 1999 08:07:33 +0100 Received: (from ben) by lithium.scientia.demon.co.uk (Exim 3.024 #3) id 11Gzot-0001GW-00; Wed, 18 Aug 1999 08:07:35 +0100 Date: Wed, 18 Aug 1999 08:07:34 +0100 From: Ben Smithurst To: mcwong@ascend.com Cc: questions@freebsd.org Subject: Re: Safe upgrade from 2.2.5 --> 3.2 ? Message-ID: <19990818080734.A4333@lithium.scientia.demon.co.uk> References: <882567D0.0045C726.00@colton.ascend.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.6i In-Reply-To: <882567D0.0045C726.00@colton.ascend.com> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG mcwong@ascend.com wrote: > Is there any safe and reliable way of ugrading from 2.2.5 to 3.2 ? > Is there any upgrade utility/script available which has been tested > with success ? I recently upgraded from 2.2.6 to 3.2, which shouldn't be too different to 2.2.5 to 3.2. What I did was NFS mount /usr/src and do `make aout-to-elf-build', then `make aout-to-elf-install'. (I know I could do these in one step, `make aout-to-elf', but I like to do it separately.) It wasn't flawless for me though, but there were only minor problems. I think the main thing I forgot to do was upgrade /etc before rebooting, which meant that the ELF libraries weren't set up by ldconfig (or it might have been the a.out libraries, I can't remember). If you upgrade /etc/rc* (being careful not to clobber any changes you've made), and do `make aout-to-elf', you *should* get a working 3.2 system. There's no guarantee though, something could go wrong, so it would be a good idea to try it on a non-production system first. -- Ben Smithurst | PGP: 0x99392F7D ben@scientia.demon.co.uk | key available from keyservers and | ben+pgp@scientia.demon.co.uk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 4: 4:30 1999 Delivered-To: freebsd-questions@freebsd.org Received: from volodya.prime.net.ua (volodya.prime.net.ua [195.64.229.17]) by hub.freebsd.org (Postfix) with ESMTP id A195F14E2D for ; Wed, 18 Aug 1999 04:04:13 -0700 (PDT) (envelope-from andyo@prime.net.ua) Received: from prime.net.ua (localhost [127.0.0.1]) by volodya.prime.net.ua (8.9.3/8.8.8) with ESMTP id OAA12176; Wed, 18 Aug 1999 14:05:43 +0300 (EEST) (envelope-from andyo@prime.net.ua) Message-ID: <37BA9382.A9EAA1FA@prime.net.ua> Date: Wed, 18 Aug 1999 14:05:39 +0300 From: "Andy V. Oleynik" Organization: M-Info X-Mailer: Mozilla 4.61 [en] (X11; I; FreeBSD 3.2-STABLE i386) X-Accept-Language: en, ru, uk MIME-Version: 1.0 To: Matt Beauregard Cc: freebsd-questions@FreeBSD.ORG Subject: Re: xset and key repeat speed References: Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Matt Beauregard wrote: > I've had no luck trying to work out the right xset options to change key > repeat speed. I'd've thought that xset r 45 or xset r 500 45 would do it, > but neither work. > > marauder@juturna:~$ xset r 45 > marauder@juturna:~$ xset q > auto repeat delay: 500 repeat rate: 5 > > marauder@juturna:~$ xset r 500 45 Looks like U ommited "rate" keyword after "r" > > xset: unknown option 500 > > What am I missing? :-) > > -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- > Matt Beauregard // Sydney's Premier > O // Internet Provider > O// IPER.NET.AU Ph 61 2 9699 3837 > marauder@viper.net.au http://www.viper.net.au > -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- WBW Andy V. Oleynik (When U work in virtual office prime.net.ua's U have good chance to obtain system administrator virtual money ö%-) +380442448363 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 4:17:35 1999 Delivered-To: freebsd-questions@freebsd.org Received: from ns.kconline.com (ns.kconline.com [207.51.167.3]) by hub.freebsd.org (Postfix) with ESMTP id 8E1DB156CB for ; Wed, 18 Aug 1999 04:17:23 -0700 (PDT) (envelope-from ghormann@ns.kconline.com) Received: from localhost (ghormann@localhost) by ns.kconline.com (8.9.3/8.8.5) with ESMTP id GAA34975; Wed, 18 Aug 1999 06:17:48 -0500 (EST) Date: Wed, 18 Aug 1999 06:17:48 -0500 (EST) From: Greg Hormann To: grog@lemis.com Cc: questions@FreeBSD.ORG Subject: Re: Errors from savecore/kvm_mkdb (one more try) (fwd) In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG That was it! Thanks, Greg. > > On Tuesday, 17 August 1999 at 19:45:54 -0500, Greg Hormann wrote: > > > > > > Didn't get any responses the first time. > > > > ------ > > > > I have a 3.1R "play" box at home that panics about once a week. I decided > > to try and save a dump file, so I followed directions in Chapter 22 of > > the Handbook. (After 5 years of owning and working on a FreeBSD servers, > > I have *never* needed a dump file before. Gota love stability.) > > > > Specificly, I used "config -g", set dumpdev="/dev/wd1s1b" in rc.conf, > > compiled the kernel, saved a copy as /kernel.debug, stripped it with > > "strip -g kernel" then did a "make install." > > > > On boot, 2 error messages appeared which bothered me. Couldn't find an > > info in handbook, man pages, or mail archives. These anything to be > > worried about? > > > > savecore /kernel _dumpdev not in namelist > > ... > > kvmm_mkdb: /kernel stripped inappropriate file type or format > > > > Also top didn't work complaining that nlist wasn't defined. > > > > What did I do wrong? > > I'd guess that you forgot the -g on the 'strip' command. Try this: > > $ nm /kernel|grep dumpdev > kernel: no symbols > > If you get the 'no symbols' message, then you've accidentally stripped > the kernel completely. In that case, go back and re-strip the kernel > with -g and reinstall it. You don't need to reboot. You will need to > reissue the 'dumpon' command (tell it the name of the dump device). > > Greg > -- > When replying to this message, please copy the original recipients. > For more information, see http://www.lemis.com/questions.html > See complete headers for address, home page and phone numbers > finger grog@lemis.com for PGP public key > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 4:25:53 1999 Delivered-To: freebsd-questions@freebsd.org Received: from qmail.dnet.net.id (qmail.dnet.net.id [202.148.1.18]) by hub.freebsd.org (Postfix) with SMTP id A66A71578B for ; Wed, 18 Aug 1999 04:25:44 -0700 (PDT) (envelope-from arifin98@yahoo.com) Received: (qmail 8657 invoked from network); 18 Aug 1999 08:19:03 -0000 Received: from as24port6.dnet.net.id (HELO yahoo.com) (202.148.0.53) by qmail.dnet.net.id with SMTP; 18 Aug 1999 08:19:03 -0000 Message-ID: <37BA3EEE.8928EF87@yahoo.com> Date: Wed, 18 Aug 1999 12:04:46 +0700 From: Arifin X-Mailer: Mozilla 4.05 [en] (Win95; I) MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: Resizing Filesystem Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello FreeBSD People, Can I resizing my / Filesystem?. Because capacity of / filesystem only 32 MB and now full if i run df a / f/s capacity now 108% and I want to resize with /usr f/s. Can I do it without erase all FreeBSD partition? I am using 2.2.6 version. Thank you, -arifin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 4:49: 5 1999 Delivered-To: freebsd-questions@freebsd.org Received: from vax1.baker.ie (VAX1.baker.IE [194.125.50.91]) by hub.freebsd.org (Postfix) with SMTP id 1855614F68 for ; Wed, 18 Aug 1999 04:48:59 -0700 (PDT) (envelope-from cillian@baker.ie) Received: from baker.ie ([194.125.50.55]) by vax1.baker.ie with ESMTP; Wed, 18 Aug 1999 12:53:30 +0100 Message-ID: <37BA9A45.B7ED958E@baker.ie> Date: Wed, 18 Aug 1999 12:34:29 +0100 From: Cillian Sharkey X-Mailer: Mozilla 4.6 [en] (Win95; U) X-Accept-Language: en MIME-Version: 1.0 To: Arifin Cc: freebsd-questions@freebsd.org Subject: Re: Resizing Filesystem References: <37BA3EEE.8928EF87@yahoo.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > Can I resizing my / Filesystem?. Because capacity of / filesystem only 32 MB > and now full if i run df a / f/s capacity now 108% and I want to resize with > /usr f/s. Can I do it without erase all FreeBSD partition? Nope! If you want to resisze a partition you'll have to erase it first, recreate it, then copy all the files back in again.. :) ..However, 32Mb should be enough for a / partition, however if you have /tmp, /var, or /home on the / partition, these can fill up the root partition pretty quicky, so its a good idea to move them out of the / partition and into a another one (/usr for example). You could do this by symlinking them to the new directories.. Regards, - Cillian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 4:50:29 1999 Delivered-To: freebsd-questions@freebsd.org Received: from ux1.ibb.net (ibb0005.ibb.uu.nl [131.211.124.5]) by hub.freebsd.org (Postfix) with ESMTP id A1D7415792 for ; Wed, 18 Aug 1999 04:49:04 -0700 (PDT) (envelope-from Reinoud.Koornstra@ibbnet.nl) Received: from localhost (reinoud@localhost) by ux1.ibb.net (8.8.7/8.8.5/TT) with SMTP id NAA08391; Wed, 18 Aug 1999 13:47:59 +0200 Date: Wed, 18 Aug 1999 13:47:59 +0200 (MET DST) From: Reinoud Koornstra X-Sender: reinoud@ux1.ibb.net To: FreeBSD Question Cc: Kent Stewart , Reinoud Koornstra , freebsd-questions@FreeBSD.ORG Subject: Re: bug wich crashes freebsd 3.2 In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Thanks for responding, i also walked into this one with 3.1 How do we know it will be fixed and when? Of course you cant say now when, but will there be some kind of reports where in stands what bugs are fixed? Sincerely, Reinoud. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 4:56:29 1999 Delivered-To: freebsd-questions@freebsd.org Received: from hog.critters.itserealm.com (hog.critters.itserealm.com [38.182.239.34]) by hub.freebsd.org (Postfix) with ESMTP id C1BD915702 for ; Wed, 18 Aug 1999 04:56:25 -0700 (PDT) (envelope-from rptoren@critters.itserealm.com) Received: from critters.itserealm.com (oinker.critters.itserealm.com [38.182.239.41]) by hog.critters.itserealm.com (8.8.7/8.8.7) with ESMTP id HAA02507 for ; Wed, 18 Aug 1999 07:02:46 -0400 Message-ID: <37BA9FB5.BB3EF0D7@critters.itserealm.com> Date: Wed, 18 Aug 1999 07:57:41 -0400 From: Rip Toren X-Mailer: Mozilla 4.61 [en] (WinNT; U) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: ?No run-time symbol table error Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Folks; I just installed 3.2 and am getting the following when attempting to start Xwindows: ignoring d_tag 33360618 #number is not exact, 21 times ... /usr/libexec/ld-elf.so.1: /usr/X11R6/bin/Xwrapper: Shared object has no run-time symbol table ? Who has no run-time symbols, ld-elf or Xwrapper ? This ELF stuff is new to me, never had load errors with a.out. I get the same when trying to run the 'extract' utility with XFree86 3.3.4 package. FreeBSD 3.2R (subscription) Vanilla install 2 days ago Simple network 1 user account Platform Dell Inspiron 7000, 256Mb What is going wrong here? Any help appreciated To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 4:56:41 1999 Delivered-To: freebsd-questions@freebsd.org Received: from iaces.com (horton.iaces.com [204.147.87.98]) by hub.freebsd.org (Postfix) with ESMTP id AC08A15702 for ; Wed, 18 Aug 1999 04:56:34 -0700 (PDT) (envelope-from proot@iaces.com) Received: (from proot@localhost) by iaces.com (8.9.3/8.9.3) id GAA27221; Wed, 18 Aug 1999 06:40:26 -0500 (CDT) From: "Paul T. Root" Message-Id: <199908181140.GAA27221@iaces.com> Subject: Re: hard reset In-Reply-To: <37B9EB82.BA97AEA0@ispro.net.tr> from Evren Yurtesen at "Aug 18, 99 02:08:50 am" To: yurtesen@ispro.net.tr (Evren Yurtesen) Date: Wed, 18 Aug 1999 06:40:26 -0500 (CDT) Cc: spud@i.am, questions@FreeBSD.ORG X-Organization: USWEST !nterprise Networking - ACES X-Phone: (612) 664-3385 X-Fax: (612) 664-4779 X-Page: (800) SKY-PAGE PIN: 537-7270 X-Address: 600 Stinson Blvd, Fl 1S X-Address: Minneapolis, MN 55413 X-Mailer: ELM [version 2.4ME+ PL38 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In a previous message, Evren Yurtesen said: > I think that hard reset is when you poweroff your computer from the > power button so it is called hard reset and soft reset is done by the > software so it is called soft reset. > > Why do you want to make a hard reset? Well, in my case, a soft reset just hangs the system after: Rebooting... on both 2.2.8 and 3.2. > Evren Yurtesen > > Tomer Weller wrote: > > > > Does FreeBSD do a hard reset or a soft reset ? (sorry for the newbie question) > > If it soft resets, how can I change that to hard ? > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > -- The truth is the one thing that nobody will believe. --George Bernard Shaw To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 5:29:42 1999 Delivered-To: freebsd-questions@freebsd.org Received: from hen.scotland.net (phys-hen.scotland.net [194.247.64.128]) by hub.freebsd.org (Postfix) with ESMTP id 6BEF314DC2 for ; Wed, 18 Aug 1999 05:29:28 -0700 (PDT) (envelope-from djguthrie@bue.co.uk) Received: from [148.176.232.162] (helo=192.168.10.102) by hen.scotland.net with smtp (Exim 2.12 #2) id 11H4qH-0007P3-00 for freebsd-questions@FreeBSD.ORG; Wed, 18 Aug 1999 13:29:21 +0100 From: djguthrie@bue.co.uk Subject: Matsumi 2401 To: freebsd-questions@FreeBSD.ORG Date: 18 Aug 99 12:22:11 UT X-Priority: 3 (Normal) Importance: normal X-Mailer: David by Tobit Software, Germany (PM-5.20a (0145)) X-David-Sym: 0 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="------------1DD2510B41FE" Message-Id: Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG --------------1DD2510B41FE Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable I own a Matsumi 2401 IDE CDR, and would like to record CDs using CDRECORD. Any ideas/help? Thanks in advance Simon Martin Please address any replies to s.p.martin@dur.ac.uk --------------1DD2510B41FE-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 5:43:11 1999 Delivered-To: freebsd-questions@freebsd.org Received: from majordomo2.umd.edu (majordomo2.umd.edu [128.8.10.7]) by hub.freebsd.org (Postfix) with ESMTP id 53DCA1572F for ; Wed, 18 Aug 1999 05:43:08 -0700 (PDT) (envelope-from kee@wam.umd.edu) Received: from rac4.wam.umd.edu (root@rac4.wam.umd.edu [128.8.10.144]) by majordomo2.umd.edu (8.9.3/8.9.3) with ESMTP id IAA03789 for ; Wed, 18 Aug 1999 08:43:27 -0400 (EDT) Received: from rac4.wam.umd.edu (sendmail@localhost [127.0.0.1]) by rac4.wam.umd.edu (8.9.3/8.9.3) with SMTP id IAA05917 for ; Wed, 18 Aug 1999 08:43:28 -0400 (EDT) Received: from localhost (kee@localhost) by rac4.wam.umd.edu (8.9.3/8.9.3) with ESMTP id IAA05913 for ; Wed, 18 Aug 1999 08:43:28 -0400 (EDT) X-Authentication-Warning: rac4.wam.umd.edu: kee owned process doing -bs Date: Wed, 18 Aug 1999 08:43:27 -0400 (EDT) From: Byoung-Kee Yi To: questions@freebsd.org Subject: [q] SBPro and mpg123 Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi - I posted my problem with sound card configuraion in 3.2R, but has gotten no feedbacks. By searching other mailing lists, now I know that it is a kinda known bug in the voxware3.5 driver. Is there any effort going on to fix it? FYI, I tested with different memory sizes using MAXMEM option (32M and 64M, the latter is the physical memory size). Guess what? With 32MB memory, mpg123 worked! Not always, but most of the time did with one line of (annoying) opening message: >> SoundBlaster: DSP Command(0xd4) timeout. IRQ conflict ? I give up. My conclusion is that, unfurtunately, FreeBSD sound system is broken. I don't know whether it is the voxware driver or other parts of kernel. I had no lock with OSS driver either. (They also mentioned a problem with dma buffer scheme or something like that.) cheers -- Kee To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 6:10:12 1999 Delivered-To: freebsd-questions@freebsd.org Received: from po3.wam.umd.edu (po3.wam.umd.edu [128.8.10.165]) by hub.freebsd.org (Postfix) with ESMTP id AC28014E6F for ; Wed, 18 Aug 1999 06:10:09 -0700 (PDT) (envelope-from culverk@wam.umd.edu) Received: from rac1.wam.umd.edu (root@rac1.wam.umd.edu [128.8.10.141]) by po3.wam.umd.edu (8.9.3/8.9.3) with ESMTP id JAA03255 for ; Wed, 18 Aug 1999 09:10:44 -0400 (EDT) Received: from rac1.wam.umd.edu (sendmail@localhost [127.0.0.1]) by rac1.wam.umd.edu (8.9.3/8.9.3) with SMTP id JAA25604 for ; Wed, 18 Aug 1999 09:10:43 -0400 (EDT) Received: from localhost (culverk@localhost) by rac1.wam.umd.edu (8.9.3/8.9.3) with ESMTP id JAA25600 for ; Wed, 18 Aug 1999 09:10:43 -0400 (EDT) X-Authentication-Warning: rac1.wam.umd.edu: culverk owned process doing -bs Date: Wed, 18 Aug 1999 09:10:43 -0400 (EDT) From: Kenneth Wayne Culver To: freebsd-questions@freebsd.org Subject: shutdown -p now Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I want shutdown to make my computer turn off without pushing the power button. I looked in the manpage for shutdown, and shutdown -p now is supposed to turn off the computer. However it doesn't. I have a PII 450 with the apm device turned on. Windows, and Redhat both do what I'm asking so I was just wondering what I'm doing wrong in FreeBSD. Kenneth Culver Computer Science Major at the University of Maryland, College Park. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 6:34:36 1999 Delivered-To: freebsd-questions@freebsd.org Received: from gateway.ciminot.com (gateway.ciminot.com [208.149.231.26]) by hub.freebsd.org (Postfix) with ESMTP id 3912F14D57 for ; Wed, 18 Aug 1999 06:34:26 -0700 (PDT) (envelope-from dave@ciminot.com) Received: from dave ([192.168.200.15]) by gateway.ciminot.com (8.9.1/8.9.1) with SMTP id IAA24791; Wed, 18 Aug 1999 08:32:57 -0500 (CDT) (envelope-from dave@ciminot.com) From: "David B. Aas" To: "'Paul T. Root'" Cc: Subject: RE: hard reset Date: Wed, 18 Aug 1999 08:34:39 -0500 Message-ID: <000901bee97e$6cf80fe0$0fc8a8c0@dave.ciminot.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 In-Reply-To: <199908181140.GAA27221@iaces.com> Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3155.0 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Paul T. Root- (or is it Tover Weller?) :-) You have a hardware problem! Dave Aas Dave@ciminot.com > -----Original Message----- > From: owner-freebsd-questions@FreeBSD.ORG > [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Paul T. Root > Sent: Wednesday, August 18, 1999 6:40 AM > To: Evren Yurtesen > Cc: spud@i.am; questions@FreeBSD.ORG > Subject: Re: hard reset > > > In a previous message, Evren Yurtesen said: > > I think that hard reset is when you poweroff your computer from the > > power button so it is called hard reset and soft reset is > done by the > > software so it is called soft reset. > > > > Why do you want to make a hard reset? > > > Well, in my case, a soft reset just hangs the system after: > Rebooting... > > on both 2.2.8 and 3.2. > > > > Evren Yurtesen > > > > Tomer Weller wrote: > > > > > > Does FreeBSD do a hard reset or a soft reset ? (sorry for > the newbie question) > > > If it soft resets, how can I change that to hard ? > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > with "unsubscribe freebsd-questions" in the body of the message > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > > > > -- > The truth is the one thing that nobody will believe. > --George Bernard Shaw > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 6:48:24 1999 Delivered-To: freebsd-questions@freebsd.org Received: from www.keycomp.net (www.keycomp.net [207.44.1.33]) by hub.freebsd.org (Postfix) with ESMTP id 1946F14BFD for ; Wed, 18 Aug 1999 06:48:15 -0700 (PDT) (envelope-from billieakay@yahoo.com) Received: from bopper (kc-rmt09.keycomp.net [207.44.1.11]) by www.keycomp.net (8.8.5/SCO5) with SMTP id JAA20922 for ; Wed, 18 Aug 1999 09:54:16 -0400 (EDT) Message-ID: <002b01bee97f$2a3fdf60$01010101@bopper> From: "Bill A. K." To: "FreeBSD Questions" Subject: roots shell Date: Wed, 18 Aug 1999 09:39:57 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit 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-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG hi, is there any way to change root's default shell from csh to bash. i'm doing a lot of work on my system and i'm sick of having to start bash at every shell i open. any help would be greatly appreciated. i've already changed the path to my shell in both /etc/passwd and /etc/master.passwd but it didn't change it. and i would also like to know how to customize my bash prompt with my current directory for example. thanks Bill billieakay@yahoo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 6:53:59 1999 Delivered-To: freebsd-questions@freebsd.org Received: from jasper.heartland.ab.ca (jasper.heartland.ab.ca [207.107.228.1]) by hub.freebsd.org (Postfix) with ESMTP id BAF0B14CFB for ; Wed, 18 Aug 1999 06:53:47 -0700 (PDT) (envelope-from dkwiebe@hagenhomes.com) Received: from freebsd.hagens.ab.ca (ppp2.heartland.ab.ca [207.107.228.130]) by jasper.heartland.ab.ca (8.9.0/8.8.5) with ESMTP id HAA25619 for ; Wed, 18 Aug 1999 07:46:12 -0600 (MDT) Received: from hagenhomes.com (dkwiebe.hagens.ab.ca [10.0.1.3]) by freebsd.hagens.ab.ca (8.9.2/8.9.2) with ESMTP id OAA03723 for ; Tue, 17 Aug 1999 14:47:37 -0600 (MDT) (envelope-from dkwiebe@hagenhomes.com) Message-ID: <37B9D708.1E4D50DC@hagenhomes.com> Date: Tue, 17 Aug 1999 15:41:28 -0600 From: Darren WIebe X-Mailer: Mozilla 4.61 [en] (X11; U; FreeBSD 3.2-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: Good c newbie documentation Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello: I would like to learn to use the c and c++ programming languages. I have looked around on the net but have not been able to find much. I would appreciate it if you would give me any recommendations that you have for good books and other info for newbies to c. TIA Darren Wiebe dkwiebe@hagenhomes.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 6:54: 5 1999 Delivered-To: freebsd-questions@freebsd.org Received: from bingnet2.cc.binghamton.edu (bingnet2.cc.binghamton.edu [128.226.1.18]) by hub.freebsd.org (Postfix) with ESMTP id BB83A14F41 for ; Wed, 18 Aug 1999 06:54:01 -0700 (PDT) (envelope-from zzhang@cs.binghamton.edu) Received: from sol.cs.binghamton.edu (cs1-gw.cs.binghamton.edu [128.226.171.72]) by bingnet2.cc.binghamton.edu (8.9.3/8.9.3) with SMTP id JAA26522; Wed, 18 Aug 1999 09:53:53 -0400 (EDT) Date: Wed, 18 Aug 1999 09:40:34 -0400 (EDT) From: Zhihui Zhang To: "Bill A. K." Cc: FreeBSD Questions Subject: Re: roots shell In-Reply-To: <002b01bee97f$2a3fdf60$01010101@bopper> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, 18 Aug 1999, Bill A. K. wrote: > hi, > > is there any way to change root's default shell from csh to bash. i'm doing > a lot of work on my system and i'm sick of having to start bash at every > shell i open. any help would be greatly appreciated. > > i've already changed the path to my shell in both /etc/passwd and > /etc/master.passwd but it didn't change it. > > and i would also like to know how to customize my bash prompt with my > current directory for example. > I like the command history mechanism of tcsh. So whenever I install FreeBSD, I also install the tcsh port. After I login in as root, I do: # chpass -s tcsh root Next time I log in, I can use arrow keys to retrieve old commands. -Zhihui To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 7: 6:47 1999 Delivered-To: freebsd-questions@freebsd.org Received: from bingnet2.cc.binghamton.edu (bingnet2.cc.binghamton.edu [128.226.1.18]) by hub.freebsd.org (Postfix) with ESMTP id 7DC78158CC for ; Wed, 18 Aug 1999 07:06:44 -0700 (PDT) (envelope-from zzhang@cs.binghamton.edu) Received: from sol.cs.binghamton.edu (cs1-gw.cs.binghamton.edu [128.226.171.72]) by bingnet2.cc.binghamton.edu (8.9.3/8.9.3) with SMTP id KAA00202; Wed, 18 Aug 1999 10:07:12 -0400 (EDT) Date: Wed, 18 Aug 1999 09:53:53 -0400 (EDT) From: Zhihui Zhang To: Darren WIebe Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Good c newbie documentation In-Reply-To: <37B9D708.1E4D50DC@hagenhomes.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, 17 Aug 1999, Darren WIebe wrote: > Hello: > > I would like to learn to use the c and c++ programming languages. I > have looked around on the net but have not been able to find much. I > would appreciate it if you would give me any recommendations that you > have for good books and other info for newbies to c. > > TIA You may want to search the URL: www.bookpool.com. I ordered two good books from there. -Zhihui To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 7:18:55 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail.rdc1.pa.home.com (ha1.rdc1.pa.home.com [24.2.5.66]) by hub.freebsd.org (Postfix) with ESMTP id 95F8F14C8B for ; Wed, 18 Aug 1999 07:18:52 -0700 (PDT) (envelope-from napalmski@home.com) Received: from home.com ([24.5.63.201]) by mail.rdc1.pa.home.com (InterMail v4.01.01.00 201-229-111) with ESMTP id <19990818141927.EIVN24014.mail.rdc1.pa.home.com@home.com>; Wed, 18 Aug 1999 07:19:27 -0700 Message-ID: <37BABFD9.BD5CEAE7@home.com> Date: Wed, 18 Aug 1999 10:14:49 -0400 From: "James F. Young" X-Mailer: Mozilla 4.61 [en] (Win98; I) X-Accept-Language: en MIME-Version: 1.0 To: Zhihui Zhang , FreeBSD Questions Subject: Re: swap size with 256mb ram(newbie) References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello, I have asked this before without a response and hope this one will be clear enough to get a response I set bsd up using the automatic settings which defaulted to double my physical ram. I am trying to determine if a 500+mb swap is actually necessary with that much or if I can just make one thats is linux style (e.g equal to my physical mem of 256) I have consulted the online hand book, all the .txt and faq's and I have found nothing to illuminate this subject. thanks for your time Jim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 7:44: 2 1999 Delivered-To: freebsd-questions@freebsd.org Received: from ns.clientlogic.com (ns.clientlogic.com [207.51.66.75]) by hub.freebsd.org (Postfix) with ESMTP id 9426C14C25 for ; Wed, 18 Aug 1999 07:43:59 -0700 (PDT) (envelope-from ChrisMic@clientlogic.com) Received: by site0s1 with Internet Mail Service (5.5.2448.0) id ; Wed, 18 Aug 1999 10:42:02 -0400 Message-ID: <6C37EE640B78D2118D2F00A0C90FCB4401105BA0@site2s1> From: Christopher Michaels To: "'Boune, Damian'" , freebsd-questions@FreeBSD.ORG Subject: RE: bug which crashes FreeBSD 3.2 Date: Wed, 18 Aug 1999 10:44:34 -0400 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2448.0) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Point well taken, that this is common knowledge for anyone who has any familiarity with the system. I think the point being made is that if a mistake is made or an inexperienced user is at the system, there should be some failsafe to prevent the system from locking down or panic'ing. When we're talking about a floppy (or any removable media) there is a vary good chance that, the mounted file system could be removed w/o unmounting it. It would be just good practice to protect the system against that. If FreeBSD is to stay primarily a server oriented OS or a 'nitche market', than for the most part, no one cares because 99% of people who use FreeBSD know to mount / unmount the floppy (as inconvenient and un-intuitive as that may be). If FreeBSD does want more of a user base, and is going to be touted as a 'desktop operating system', then certain concessions and falsifies need to be integrated into the system, as to not drive those potential users away. That's just my opinion. -Chris > -----Original Message----- > From: Boune, Damian [SMTP:DBoune@co.napa.ca.us] > Sent: Tuesday, August 17, 1999 5:57 PM > To: freebsd-questions@FreeBSD.ORG > Subject: bug wich crashes freebsd 3.2 > > Our friend makes a good point. What Reinoud did is only "improper use" if > the operating system does not provide some kind of catch in the case that > someone does this. > > You can assume he came from the Microsoft world. In that horrid world, it > is > known that the USER is not supposed to be able to cause such a crash, > though > we all know better. In the unix world we assume that you are familiar with > how unix does things and will pay attention to such details. Who would > have > thought, coming from the microsoft world, that one would have to "unmount" > (whatever THAT is) a disk! > > It would have been possible for the designers of any particular flavor of > unix to implement something that would prevent this. However actually > doing > it is another thing. We have a base "format" in which we "mount" media in > general that has been around for a long time. If we change that, we risk > incompatibility, and we also make our kernel quite a bit larger as we > would > have to have more than one base function (rather, set of 's) for making > media available to the user. Anyway, it just isn't something anybody wants > to waste time on, as we know how it works currently, and if you follow the > directions, which happen to be posted all over the place, you won't get > into > too much trouble. > > Some os's actually "mount" and "unmount" some media, each time an action > is > taken upon it. This creates a high amount of overhead that us unix buffs > don't want, but it does prevent the user from crashing the system. > > Under unix it is also assumed that the "user" will not be mounting and > unmounting media, but that an experienced "Administrator" would be doing > it. > Well, the face of unix has changed, and now the pocket hacks are all > running > it. Most of us take on the challenge knowing we will have to learn how to > play by the *nix rules. > > So to those who do not like it, please write some code to send to our good > friends at the FreeBSD project that will fix this little annoyance :) > > (had to put my "2 cents" in.) > > -d > > > -----Original Message----- > > From: William Melanson [mailto:wjm@gate.net] > > Sent: Tuesday, August 17, 1999 1:41 PM > > To: freebsd-questions@FreeBSD.ORG > > Subject: Re: bug wich crashes freebsd 3.2 (HA!) > > > > > > On Tue, 17 Aug 1999, Reinoud Koornstra wrote: > > > > % > > % No i didnt umount the disk first. > > % But i didnt umount it on purpose to see. > > % And what if a user forgets to umount it before removing? > > % A whole os cant just hang by a user mistake now can it? > > % Bye, > > % > > > > If you use the os improperly of course it can! Please tell me this > > is some type of practical (let's kill the os) joke. Where is that > > FreeBSD for Dummies book when ya need it? > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 7:56:37 1999 Delivered-To: freebsd-questions@freebsd.org Received: from bingnet2.cc.binghamton.edu (bingnet2.cc.binghamton.edu [128.226.1.18]) by hub.freebsd.org (Postfix) with ESMTP id D491214D4C for ; Wed, 18 Aug 1999 07:56:32 -0700 (PDT) (envelope-from zzhang@cs.binghamton.edu) Received: from sol.cs.binghamton.edu (cs1-gw.cs.binghamton.edu [128.226.171.72]) by bingnet2.cc.binghamton.edu (8.9.3/8.9.3) with SMTP id KAA14186; Wed, 18 Aug 1999 10:54:47 -0400 (EDT) Date: Wed, 18 Aug 1999 10:41:28 -0400 (EDT) From: Zhihui Zhang To: "James F. Young" Cc: FreeBSD Questions Subject: Re: swap size with 256mb ram(newbie) In-Reply-To: <37BABFD9.BD5CEAE7@home.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, 18 Aug 1999, James F. Young wrote: > I set bsd up using the automatic settings which defaulted to double my > physical ram. I am trying to determine if a 500+mb swap is actually > necessary with that much or if I can just make one thats is linux style > (e.g equal to my physical mem of 256) Making the swap space twice as large as your memory is a thumb of rule, which is said in many CS text books I believe. But that does not mean your computer can not run if you have less swap space. Suppose you have only a couple of small processes, who is going to use that much of swap space? However, if you are running large applications and memory becomes in short supply, some processes must be swappped out. Otherwise, the OS will start killing your processes to make room for others (I am not sure about this point though). Anyway, this question is general in OS. I mean it is not FreeBSD style or Linux style. To determine how many swap space in use, you may try the command swapinfo (I do not have much experience on this). Hope these help. -Zhihui To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 8: 3:50 1999 Delivered-To: freebsd-questions@freebsd.org Received: from castor.ssimicro.com (birch.ssimicro.com [199.247.51.10]) by hub.freebsd.org (Postfix) with ESMTP id 575DC14EDD for ; Wed, 18 Aug 1999 08:03:44 -0700 (PDT) (envelope-from allanr@ssimicro.com) Received: from outpost.ssimicro.com (outpost.ssimicro.com [199.247.87.133]) by castor.ssimicro.com (8.9.3/8.9.3) with ESMTP id JAA13909; Wed, 18 Aug 1999 09:02:17 -0600 (MDT) Received: by outpost.ssimicro.com with Internet Mail Service (5.5.1960.3) id ; Wed, 18 Aug 1999 09:01:16 -0600 Message-ID: From: Allan Ross To: "'questions@freebsd.org'" Cc: "'Alex Kwan'" Subject: RE: How to hangup dialup PPP connection Date: Wed, 18 Aug 1999 09:01:13 -0600 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.1960.3) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I didn't see anyone reply to this so give this a shot: pppctl /var/tmp/internet close Allan Ross General Manager SSI Micro Yellowknife, NT Ph: (867) 669-7500 Fax: (867) 669-7510 Web: http://www.ssimicro.com -----Original Message----- From: Alex Kwan [SMTP:alexkwan@pacific.net.hk] Sent: Friday, August 13, 1999 6:52 AM To: freebsd-questions@FreeBSD.ORG Subject: How to hangup dialup PPP connection << File: ATT00010.txt; charset = big5 >> To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 8: 4:46 1999 Delivered-To: freebsd-questions@freebsd.org Received: from voicenet.com (mail12.voicenet.com [207.103.0.6]) by hub.freebsd.org (Postfix) with SMTP id 375CF157C9 for ; Wed, 18 Aug 1999 08:04:22 -0700 (PDT) (envelope-from Abe@Nerdy.Org) Received: (qmail 19048 invoked from network); 18 Aug 1999 15:04:24 -0000 Received: from nnjdialup119-pri.voicenet.com (HELO jaspa) (207.103.135.82) by mail12.voicenet.com with SMTP; 18 Aug 1999 15:04:24 -0000 Message-ID: <000701bee98a$e80a4b60$528767cf@jaspa> From: "Abe Rooter" To: Subject: Installation Help Date: Wed, 18 Aug 1999 11:03:57 -0400 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0004_01BEE969.5E6A1140" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 4.72.3110.1 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3110.3 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0004_01BEE969.5E6A1140 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hi. I'm having a bit of trouble. I install from cd just fine. No errors. = Then afterwards, when I try to boot into FreeBSD, I get at the bottom of = the screen "kernel panic - can't mount root filesystem (2)". Could = anyone possibly help me with this? I've re-installed 5 times so far = trying to figure this out. I just can't... Thanks in advance. ------=_NextPart_000_0004_01BEE969.5E6A1140 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Hi. I'm having a bit of trouble. I = install from=20 cd just fine. No errors. Then afterwards, when I try to boot into = FreeBSD, I get=20 at the bottom of the screen "kernel panic - can't mount root = filesystem=20 (2)". Could anyone possibly help me with this? I've re-installed 5 = times so=20 far trying to figure this out. I just can't...
Thanks in = advance.
------=_NextPart_000_0004_01BEE969.5E6A1140-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 8: 5: 5 1999 Delivered-To: freebsd-questions@freebsd.org Received: from www.netlabs.net (www.netlabs.net [216.116.128.3]) by hub.freebsd.org (Postfix) with ESMTP id C0769157C9 for ; Wed, 18 Aug 1999 08:04:54 -0700 (PDT) (envelope-from keerf@webster.mt.lucent.com) Received: from cc1023345-b (cc1023345-b.etntwn1.nj.home.com [24.3.208.172]) by www.netlabs.net (8.9.2/8.9.0) with SMTP id LAA28017; Wed, 18 Aug 1999 11:05:25 -0400 (EDT) Message-ID: <000a01bee98b$19c4b3c0$acd00318@cc1023345-b.etntwn1.nj.home.com> From: "Terry Warner" To: "Bill A. K." , "FreeBSD Questions" Subject: Re: roots shell Date: Wed, 18 Aug 1999 11:05:24 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 4.72.3110.1 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3110.3 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG hey Bill, one way you can change it is with chsh it will open up and editor .. just change the shell to /usr/local/bin/bash or whever bash is installed on your system Terry Warner keerf@netlabs.net -----Original Message----- From: Bill A. K. To: FreeBSD Questions Date: Wednesday, August 18, 1999 9:50 AM Subject: roots shell >hi, > >is there any way to change root's default shell from csh to bash. i'm doing >a lot of work on my system and i'm sick of having to start bash at every >shell i open. any help would be greatly appreciated. > >i've already changed the path to my shell in both /etc/passwd and >/etc/master.passwd but it didn't change it. > >and i would also like to know how to customize my bash prompt with my >current directory for example. > >thanks > >Bill >billieakay@yahoo.com > > > > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 8:15: 6 1999 Delivered-To: freebsd-questions@freebsd.org Received: from vax1.baker.ie (VAX1.baker.IE [194.125.50.91]) by hub.freebsd.org (Postfix) with SMTP id CD60215882 for ; Wed, 18 Aug 1999 08:15:01 -0700 (PDT) (envelope-from cillian@baker.ie) Received: from baker.ie ([194.125.50.55]) by vax1.baker.ie with ESMTP; Wed, 18 Aug 1999 16:16:37 +0100 Message-ID: <37BAC9DF.6EC41774@baker.ie> Date: Wed, 18 Aug 1999 15:57:35 +0100 From: Cillian Sharkey X-Mailer: Mozilla 4.6 [en] (Win95; U) X-Accept-Language: en MIME-Version: 1.0 To: Abe Rooter Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Installation Help References: <000701bee98a$e80a4b60$528767cf@jaspa> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > Hi. I'm having a bit of trouble. I install from cd just fine. No > errors. Then afterwards, when I try to boot into FreeBSD, I get at the > bottom of the screen "kernel panic - can't mount root filesystem (2)". > Could anyone possibly help me with this? I've re-installed 5 times so > far trying to figure this out. I just can't... > Thanks in advance. Read the FAQ page : http://www.freebsd.org/FAQ/FAQ50.html Regards, - Cillian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 8:21:33 1999 Delivered-To: freebsd-questions@freebsd.org Received: from elmer.designstein.com (elmer.designstein.com [206.150.198.2]) by hub.freebsd.org (Postfix) with ESMTP id 4F85514DAE for ; Wed, 18 Aug 1999 08:21:26 -0700 (PDT) (envelope-from rlinwood@elmer.designstein.com) Received: from localhost (rlinwood@localhost) by elmer.designstein.com (8.9.1/8.9.1) with ESMTP id KAA06281 for ; Wed, 18 Aug 1999 10:22:03 -0500 (CDT) (envelope-from rlinwood@elmer.designstein.com) Date: Wed, 18 Aug 1999 10:22:03 -0500 (CDT) From: Ryan Linwood To: FreeBSD Subject: Mail locks In-Reply-To: <37B9CAC6.1C166384@designstein.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, I am currently running IMAP sendmail and I am experiencing a strange problem. Mail is flowing properly but no one is able to delete mail. It is as though the mailboxes are in read-only mode. I have checked the file permissions on the mailboxes and they are correct. When I go into PINE, it says: "Can't open mailbox lock.Access is read-only". Any ideas? Any help would be greatly appreciated. Thanks much, -Ryan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 8:27:22 1999 Delivered-To: freebsd-questions@freebsd.org Received: from buffnet4.buffnet.net (buffnet4.buffnet.net [205.246.19.13]) by hub.freebsd.org (Postfix) with ESMTP id 05CD814DAE for ; Wed, 18 Aug 1999 08:27:14 -0700 (PDT) (envelope-from shovey@buffnet.net) Received: from buffnet11.buffnet.net (buffnet11.buffnet.net [205.246.19.55]) by buffnet4.buffnet.net (8.8.7/8.8.7) with ESMTP id LAA04576; Wed, 18 Aug 1999 11:25:34 -0400 (EDT) (envelope-from shovey@buffnet.net) Date: Wed, 18 Aug 1999 11:25:33 -0400 (EDT) From: Steve Hovey To: Ryan Linwood Cc: FreeBSD Subject: Re: Mail locks In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, 18 Aug 1999, Ryan Linwood wrote: > > > Hi, I am currently running IMAP sendmail and I am experiencing a strange > problem. Mail is flowing properly but no one is able to delete mail. It is as > though the mailboxes are in read-only mode. I have checked the file permissions > on the mailboxes and they are correct. When I go into PINE, it says: "Can't > open mailbox lock.Access is read-only". > Any ideas? Any help would be greatly appreciated. What do you have in /etc/inetd.conf for imapd? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 8:34:14 1999 Delivered-To: freebsd-questions@freebsd.org Received: from elmer.designstein.com (elmer.designstein.com [206.150.198.2]) by hub.freebsd.org (Postfix) with ESMTP id 6F9E8158E7 for ; Wed, 18 Aug 1999 08:34:11 -0700 (PDT) (envelope-from rlinwood@elmer.designstein.com) Received: from localhost (rlinwood@localhost) by elmer.designstein.com (8.9.1/8.9.1) with ESMTP id KAA06428; Wed, 18 Aug 1999 10:35:13 -0500 (CDT) (envelope-from rlinwood@elmer.designstein.com) Date: Wed, 18 Aug 1999 10:35:13 -0500 (CDT) From: Ryan Linwood To: Steve Hovey Cc: FreeBSD Subject: Re: Mail locks In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I have the following: # example entry for the optional imap4 server # imap4 stream tcp nowait root /usr/local/libexec/imapd On Wed, 18 Aug 1999, Steve Hovey wrote: > > > On Wed, 18 Aug 1999, Ryan Linwood wrote: > > > > > > > Hi, I am currently running IMAP sendmail and I am experiencing a strange > > problem. Mail is flowing properly but no one is able to delete mail. It is as > > though the mailboxes are in read-only mode. I have checked the file permissions > > on the mailboxes and they are correct. When I go into PINE, it says: "Can't > > open mailbox lock.Access is read-only". > > Any ideas? Any help would be greatly appreciated. > > What do you have in /etc/inetd.conf for imapd? > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 8:41: 6 1999 Delivered-To: freebsd-questions@freebsd.org Received: from proton.hexanet.fr (proton.hexanet.fr [194.98.140.18]) by hub.freebsd.org (Postfix) with ESMTP id 9080714CCE for ; Wed, 18 Aug 1999 08:40:55 -0700 (PDT) (envelope-from chris@hexanet.fr) Received: from hexanet.fr (nighty@proton.hexanet.fr [194.98.140.18]) by proton.hexanet.fr (8.9.3/8.9.3) with ESMTP id RAA02138 for ; Wed, 18 Aug 1999 17:41:05 +0200 (CEST) (envelope-from chris@hexanet.fr) Message-ID: <37BAD411.8458BC6A@hexanet.fr> Date: Wed, 18 Aug 1999 17:41:05 +0200 From: Christophe Prevotaux Organization: HEXANET X-Mailer: Mozilla 4.6 [en] (X11; I; FreeBSD 3.2-STABLE i386) X-Accept-Language: French, fr, en MIME-Version: 1.0 To: questions@freebsd.org Subject: ZOPE Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Is anyone working on a port of ZOPE yet ? http://www.zope.org/ -- =================================================================== Christophe Prevotaux Email: chris@hexanet.fr HEXANET SARL URL: http://www.hexanet.fr/ Z.A Farman Sud Tel: +33 (0)3 26 79 30 05 9 rue Roland Coffignot Fax: +33 (0)3 26 79 30 06 BP415 51689 Reims Cedex 2 Use a real OS, use UNIX FRANCE FreeBSD =================================================================== To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 9:12:24 1999 Delivered-To: freebsd-questions@freebsd.org Received: from nexus.plymovent.se (nexus.plymovent.se [212.247.77.253]) by hub.freebsd.org (Postfix) with ESMTP id 78B3114ED8 for ; Wed, 18 Aug 1999 09:12:20 -0700 (PDT) (envelope-from thomas.uhrfelt@plymovent.se) Received: from tu ([192.168.1.21]) by nexus.plymovent.se (8.9.3/8.9.3) with SMTP id SAA09077; Wed, 18 Aug 1999 18:19:58 +0200 (CEST) (envelope-from thomas.uhrfelt@plymovent.se) From: "Thomas Uhrfelt" To: "Christophe Prevotaux" Cc: "FreeBSD Questions" Subject: RE: ZOPE Date: Wed, 18 Aug 1999 18:10:57 +0200 Message-ID: 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 IMO, Build 9.0.2416 (9.0.2910.0) In-Reply-To: <37BAD411.8458BC6A@hexanet.fr> X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG From the faq at www.zope.org (note the ported systems)... What platforms does Zope run on? Digital Creations develops Zope on Linux/Intel and supports Zope on Linux/Intel, Solaris (SPARC and Intel), and Windows. Zope has been ported to Digital Unix, BSDI, HP/UX, FreeBSD, NetBSD, SGI/Irix, HP-UX, and many others. > -----Original Message----- > From: owner-freebsd-questions@FreeBSD.ORG > [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Christophe > Prevotaux > Sent: den 18 augusti 1999 17:41 > To: questions@FreeBSD.ORG > Subject: ZOPE > > > Is anyone working on a port of ZOPE yet ? > > http://www.zope.org/ > > > > -- > =================================================================== > Christophe Prevotaux Email: chris@hexanet.fr > HEXANET SARL URL: http://www.hexanet.fr/ > Z.A Farman Sud Tel: +33 (0)3 26 79 30 05 > 9 rue Roland Coffignot Fax: +33 (0)3 26 79 30 06 > BP415 > 51689 Reims Cedex 2 Use a real OS, use UNIX > FRANCE FreeBSD > > =================================================================== > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 9:22: 1 1999 Delivered-To: freebsd-questions@freebsd.org Received: from voyager.fisicc-ufm.edu (ip-46-094.guate.net [200.12.46.94]) by hub.freebsd.org (Postfix) with ESMTP id 9DC71159A1 for ; Wed, 18 Aug 1999 09:21:32 -0700 (PDT) (envelope-from obonilla@voyager.fisicc-ufm.edu) Received: (from obonilla@localhost) by voyager.fisicc-ufm.edu (8.9.3/8.9.3) id KAA01490; Wed, 18 Aug 1999 10:21:24 -0600 (CST) (envelope-from obonilla) Date: Wed, 18 Aug 1999 10:21:24 -0600 From: Oscar Bonilla To: Marc Tardif Cc: freebsd-questions@FreeBSD.ORG Subject: Re: NIS problems Message-ID: <19990818102124.B1098@fisicc-ufm.edu> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.6i In-Reply-To: ; from Marc Tardif on Wed, Aug 18, 1999 at 02:29:01AM -0400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, Aug 18, 1999 at 02:29:01AM -0400, Marc Tardif wrote: > I'm trying to configure FreeBSD 2.2.8 to act as a NIS server for a Sun 4.1 > box. Here's what I have on the FreeBSD side: > > /etc/host.conf contains: > nis > > /etc/rc.conf contains: > hostmaine="freebsd.boxen.com" > nisdomainname="nis.domain" > nis_server_enable="YES" > nis_yppasswdd_enable="YES" > > rpcinfo -u localhost ypserv returns: > program 100004 version 1 ready and waiting > program 100004 version 2 ready and waiting > > tcpdump -i ethernet_interface returns: > 01:36:33.445599 solaris.boxen.com.1063 > 192.168.0.0.sunrpc: udp 104 > > Whereas, on the sun4.1 box which is trying desperately to initialise NIS > during boot-time is continuously returning: > NIS: server not responding for domain "nis.domain"; still trying. > > Any suggestions should be greatly appreciated, take a look at http://www.realtime.net/sculpture/nis-startup.html regards, -Oscar -- For PGP Public Key: finger obonilla@fisicc-ufm.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 9:39:18 1999 Delivered-To: freebsd-questions@freebsd.org Received: from almazs.pacex.net (almazs.pacex.net [204.1.219.156]) by hub.freebsd.org (Postfix) with ESMTP id 7B64914D82 for ; Wed, 18 Aug 1999 09:39:17 -0700 (PDT) (envelope-from danielb@almazs.pacex.net) Received: from localhost (danielb@localhost) by almazs.pacex.net (8.9.2/8.9.3) with SMTP id JAA03518 for ; Wed, 18 Aug 1999 09:38:56 -0700 (PDT) Date: Wed, 18 Aug 1999 09:38:56 -0700 (PDT) From: daniel B To: freebsd-questions@freebsd.org Subject: RE: locate database too small Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi; When I try: $ locate I get the Error: locate: database too small: /var/db/locate.database How to fix this problem so I can locate files and do 'whereis < file_name> also. This is a new 3.2-RELEASE machine. Dan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 9:40:21 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail1.extern.schroeder.lu (uu194-7-207-227.unknown.uunet.be [194.7.207.227]) by hub.freebsd.org (Postfix) with ESMTP id 10D3A14ED8 for ; Wed, 18 Aug 1999 09:40:03 -0700 (PDT) (envelope-from ingsa@pt.lu) Received: from c39 (uu194-7-207-228.unknown.uunet.be [194.7.207.228]) by mail1.extern.schroeder.lu (8.9.3/8.9.3) with SMTP id SAA11188 for ; Wed, 18 Aug 1999 18:40:49 GMT From: ingsa@pt.lu Message-Id: <3.0.1.32.19990818184617.00a7f380@mailsvr.pt.lu> X-Sender: ingsa@mailsvr.pt.lu X-Mailer: Windows Eudora Pro Version 3.0.1 (32) Date: Wed, 18 Aug 1999 18:46:17 +0200 To: freebsd-questions@freebsd.org Subject: scsi-disk-device-names on fbsd 3.2 Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG i have a computer with was running freebsd 3.1Release with 6 scsi disks with an fstab like: # Device Mountpoint FStype Options Dump Pass# /dev/da0s1b none swap sw 0 0 /dev/da0s1a / ufs rw 1 1 /dev/da0s1e /u01 ufs rw 1 1 /dev/da1s1e /u02 ufs rw 1 1 /dev/da2s1e /u03 ufs rw 1 1 /dev/da3s1e /u04 ufs rw 1 1 /dev/da4s1e /u05 ufs rw 1 1 /dev/da5s1e /u06 ufs rw 1 1 /dev/cd0c /cdrom cd9660 ro,noauto 0 0 proc /proc procfs rw 0 0 i just upgraded to freebsd-3.2release. for doing that i disconnected five of the disks from the computer booted from fbsd3.2 cdrom, did a newfs on / with a fresh install and everything is working fine. my fstab is now: # Device Mountpoint FStype Options Dump Pass# /dev/da0s1b none swap sw 0 0 /dev/da0s1a / ufs rw 1 1 /dev/cd0c /cdrom cd9660 ro,noauto 0 0 proc /proc procfs rw 0 0 then i did: mount /dev/da0s1e /u01 and everything is still ok. i connected my five other disk, again and wanted to do: mount /dev/da4s1e /u05 but this gives me: device or file not found. in /dev i made ./MAKEDEV da4 which created some da4 files (see listing below), but no device /dev/da4s1e was created. i tried a mount on every device but only /dev/da4c /dev/da4e /dev/da4s1 work. but before writing my firstbyte on the disk i want to be sure of the correct device-name for mounting my disk, because some years ago on ultrix, i mounted a disk with a wrong device-name and it was very interesting to see how the filesystem was destroyed within several hours. I also had a bad experience when upgrading from freebsd 2.2.1 to freebsd 2.2.7 with device names of ide-disks. i have a backup, but restoring 80GB takes some time. thank you for any help. ---------------------------------------------------------------------- output from dmesg: Copyright (c) 1992-1999 FreeBSD Inc. Copyright (c) 1982, 1986, 1989, 1991, 1993 The Regents of the University of California. All rights reserved. FreeBSD 3.2-RELEASE #0: Tue May 18 04:05:08 GMT 1999 jkh@cathair:/usr/src/sys/compile/GENERIC Timecounter "i8254" frequency 1193182 Hz Timecounter "TSC" frequency 446997483 Hz CPU: Pentium II/Xeon/Celeron (447.00-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x652 Stepping=2 Features=0x183fbff> real memory = 134217728 (131072K bytes) avail memory = 127070208 (124092K bytes) Preloaded elf kernel "kernel" at 0xc0358000. Probing for devices on PCI bus 0: chip0: rev 0x02 on pci0.0.0 chip1: rev 0x02 on pci0.1.0 chip2: rev 0x03 on pci0.2.0 chip3: rev 0x02 on pci0.7.0 ide_pci0: rev 0x01 on pci0.7.1 chip4: rev 0x02 on pci0.7.3 fxp0: rev 0x05 int a irq 14 on pci0.8.0 fxp0: Ethernet address 00:90:27:1e:4d:8e ahc0: rev 0x00 int a irq 11 on pci0.12.0 ahc0: aic7890/91 Wide Channel A, SCSI Id=7, 16/255 SCBs Probing for devices on PCI bus 1: vga0: rev 0x5c on pci1.0.0 Probing for devices on PCI bus 2: ahc1: rev 0x00 int a irq 10 on pci2.4.0 ahc1: aic7890/91 Wide Channel A, SCSI Id=7, 16/255 SCBs ahc2: rev 0x03 int a irq 10 on pci2.6.0 ahc2: aic7860 Single Channel A, SCSI Id=7, 3/255 SCBs Probing for PnP devices: Probing for devices on the ISA bus: sc0 on isa sc0: VGA color <16 virtual consoles, flags=0x0> ed0 not found at 0x280 fe0 not found at 0x300 atkbdc0 at 0x60-0x6f on motherboard atkbd0 irq 1 on isa psm0 irq 12 on isa psm0: model Generic PS/2 mouse, device ID 0 sio0 at 0x3f8-0x3ff irq 4 flags 0x10 on isa sio0: type 16550A sio1 at 0x2f8-0x2ff irq 3 on isa sio1: type 16550A fdc0 at 0x3f0-0x3f7 irq 6 drq 2 on isa fdc0: FIFO enabled, 8 bytes threshold fd0: 1.44MB 3.5in wdc0 not found at 0x1f0 wdc1 not found at 0x170 wt0 not found at 0x300 mcd0 not found at 0x300 matcdc0 not found at 0x230 scd0 not found at 0x230 ppc0 at 0x378 irq 7 flags 0x40 on isa ppc0: SMC-like chipset (ECP/EPP/PS2/NIBBLE) in COMPATIBLE mode ppc0: FIFO with 16/16/8 bytes threshold lpt0: on ppbus 0 lpt0: Interrupt-driven port ppi0: on ppbus 0 plip0: on ppbus 0 lpt0: on ppbus 0 lpt0: Interrupt-driven port ie0: unknown board_id: f000 ie0 not found at 0x300 ep0 not found at 0x300 ex0 not found le0 not found at 0x300 lnc0 not found at 0x280 ze0 not found at 0x300 zp0 not found at 0x300 cs0 not found at 0x300 adv0 not found at 0x330 bt_isa_probe: Probe failled for card at 0x330 bt_isa_probe: Probe failled for card at 0x334 bt_isa_probe: Probe failled for card at 0x230 bt_isa_probe: Probe failled for card at 0x234 bt_isa_probe: Probe failled for card at 0x130 bt_isa_probe: Probe failled for card at 0x134 bt0 not found at 0x134 aha0 not found at 0x134 vga0 at 0x3b0-0x3df maddr 0xa0000 msize 131072 on isa npx0 on motherboard npx0: INT 16 interface Waiting 15 seconds for SCSI devices to settle sa0 at ahc0 bus 0 target 5 lun 0 sa0: Removable Sequential Access SCSI-2 device sa0: 20.000MB/s transfers (10.000MHz, offset 15, 16bit) pass7 at ahc1 bus 0 target 6 lun 0 pass7: Fixed Processor SCSI-2 device pass7: 3.300MB/s transfers da0 at ahc1 bus 0 target 0 lun 0 da0: Fixed Direct Access SCSI-2 device da0: 80.000MB/s transfers (40.000MHz, offset 15, 16bit), Tagged Queueing Enabled da0: 17366MB (35566479 512 byte sectors: 255H 63S/T 2213C) da3 at ahc1 bus 0 target 3 lun 0 da3: Fixed Direct Access SCSI-2 device da3: 80.000MB/s transfers (40.000MHz, offset 15, 16bit), Tagged Queueing Enabled da3: 17366MB (35566479 512 byte sectors: 255H 63S/T 2213C) da5 at ahc1 bus 0 target 5 lun 0 da5: Fixed Direct Access SCSI-2 device da5: 80.000MB/s transfers (40.000MHz, offset 15, 16bit), Tagged Queueing Enabled da5: 17366MB (35566479 512 byte sectors: 255H 63S/T 2213C) da4 at ahc1 bus 0 target 4 lun 0 da4: Fixed Direct Access SCSI-2 device da4: 80.000MB/s transfers (40.000MHz, offset 15, 16bit), Tagged Queueing Enabled da4: 17366MB (35566479 512 byte sectors: 255H 63S/T 2213C) da2 at ahc1 bus 0 target 2 lun 0 da2: Fixed Direct Access SCSI-2 device da2: 80.000MB/s transfers (40.000MHz, offset 15, 16bit), Tagged Queueing Enabled da2: 17366MB (35566479 512 byte sectors: 255H 63S/T 2213C) da1 at ahc1 bus 0 target 1 lun 0 da1: Fixed Direct Access SCSI-2 device da1: 80.000MB/s transfers (40.000MHz, offset 15, 16bit), Tagged Queueing Enabled da1: 17366MB (35566479 512 byte sectors: 255H 63S/T 2213C) changing root device to da0s1a cd0 at ahc2 bus 0 target 5 lun 0 cd0: Removable CD-ROM SCSI-2 device cd0: 20.000MB/s transfers (20.000MHz, offset 15) cd0: Attempt to query device size failed: NOT READY, Medium not present cd9660: RockRidge Extension ---------------------------------------------------------------------- output from disklabel: da4 # /dev/rda4c: type: SCSI disk: da4s1 label: flags: bytes/sector: 512 sectors/track: 63 tracks/cylinder: 255 sectors/cylinder: 16065 cylinders: 2212 sectors/unit: 35551782 rpm: 3600 interleave: 1 trackskew: 0 cylinderskew: 0 headswitch: 0 # milliseconds track-to-track seek: 0 # milliseconds drivedata: 0 8 partitions: # size offset fstype [fsize bsize bps/cpg] c: 35551782 0 unused 0 0 # (Cyl. 0 - 2212*) e: 35551782 0 4.2BSD 1024 8192 16 # (Cyl. 0 - 2212*) ---------------------------------------------------------------------- output from ls -l /dev/da* brw-r----- 1 root operator 4, 0x00010002 Aug 18 16:26 da0 brw-r----- 1 root operator 4, 0 Aug 18 16:26 da0a brw-r----- 1 root operator 4, 1 Aug 18 16:26 da0b brw-r----- 1 root operator 4, 2 Aug 18 16:26 da0c brw-r----- 1 root operator 4, 3 Aug 18 16:26 da0d brw-r----- 1 root operator 4, 4 Aug 18 16:26 da0e brw-r----- 1 root operator 4, 5 Aug 18 16:26 da0f brw-r----- 1 root operator 4, 6 Aug 18 16:26 da0g brw-r----- 1 root operator 4, 7 Aug 18 16:26 da0h brw-r----- 1 root operator 4, 0x00020002 Aug 18 16:26 da0s1 brw-r----- 1 root operator 4, 0x00020000 Aug 18 16:26 da0s1a brw-r----- 1 root operator 4, 0x00020001 Aug 18 16:26 da0s1b brw-r----- 1 root operator 4, 0x00020002 Aug 18 16:26 da0s1c brw-r----- 1 root operator 4, 0x00020003 Aug 18 16:26 da0s1d brw-r----- 1 root operator 4, 0x00020004 Aug 18 16:26 da0s1e brw-r----- 1 root operator 4, 0x00020005 Aug 18 16:26 da0s1f brw-r----- 1 root operator 4, 0x00020006 Aug 18 16:26 da0s1g brw-r----- 1 root operator 4, 0x00020007 Aug 18 16:26 da0s1h brw-r----- 1 root operator 4, 0x00030002 Aug 18 16:26 da0s2 brw-r----- 1 root operator 4, 0x00040002 Aug 18 16:26 da0s3 brw-r----- 1 root operator 4, 0x00050002 Aug 18 16:26 da0s4 brw-r----- 1 root operator 4, 0x0001000a Aug 18 16:27 da1 brw-r----- 1 root operator 4, 8 Aug 18 16:27 da1a brw-r----- 1 root operator 4, 9 Aug 18 16:27 da1b brw-r----- 1 root operator 4, 10 Aug 18 16:27 da1c brw-r----- 1 root operator 4, 11 Aug 18 16:27 da1d brw-r----- 1 root operator 4, 12 Aug 18 16:27 da1e brw-r----- 1 root operator 4, 13 Aug 18 16:27 da1f brw-r----- 1 root operator 4, 14 Aug 18 16:27 da1g brw-r----- 1 root operator 4, 15 Aug 18 16:27 da1h brw-r----- 1 root operator 4, 0x0002000a Aug 18 16:27 da1s1 brw-r----- 1 root operator 4, 0x0003000a Aug 18 16:27 da1s2 brw-r----- 1 root operator 4, 0x0004000a Aug 18 16:27 da1s3 brw-r----- 1 root operator 4, 0x0005000a Aug 18 16:27 da1s4 brw-r----- 1 root operator 4, 0x00010012 Aug 18 16:26 da2 brw-r----- 1 root operator 4, 16 Aug 18 16:26 da2a brw-r----- 1 root operator 4, 17 Aug 18 16:26 da2b brw-r----- 1 root operator 4, 18 Aug 18 16:26 da2c brw-r----- 1 root operator 4, 19 Aug 18 16:26 da2d brw-r----- 1 root operator 4, 20 Aug 18 16:26 da2e brw-r----- 1 root operator 4, 21 Aug 18 16:26 da2f brw-r----- 1 root operator 4, 22 Aug 18 16:26 da2g brw-r----- 1 root operator 4, 23 Aug 18 16:26 da2h brw-r----- 1 root operator 4, 0x00020012 Aug 18 16:26 da2s1 brw-r----- 1 root operator 4, 0x00030012 Aug 18 16:26 da2s2 brw-r----- 1 root operator 4, 0x00040012 Aug 18 16:26 da2s3 brw-r----- 1 root operator 4, 0x00050012 Aug 18 16:26 da2s4 brw-r----- 1 root operator 4, 0x0001001a Aug 18 16:26 da3 brw-r----- 1 root operator 4, 24 Aug 18 16:26 da3a brw-r----- 1 root operator 4, 25 Aug 18 16:26 da3b brw-r----- 1 root operator 4, 26 Aug 18 16:26 da3c brw-r----- 1 root operator 4, 27 Aug 18 16:26 da3d brw-r----- 1 root operator 4, 28 Aug 18 16:26 da3e brw-r----- 1 root operator 4, 29 Aug 18 16:26 da3f brw-r----- 1 root operator 4, 30 Aug 18 16:26 da3g brw-r----- 1 root operator 4, 31 Aug 18 16:26 da3h brw-r----- 1 root operator 4, 0x0002001a Aug 18 16:26 da3s1 brw-r----- 1 root operator 4, 0x0003001a Aug 18 16:26 da3s2 brw-r----- 1 root operator 4, 0x0004001a Aug 18 16:26 da3s3 brw-r----- 1 root operator 4, 0x0005001a Aug 18 16:26 da3s4 brw-r----- 1 root operator 4, 0x00010022 Aug 18 17:23 da4 brw-r----- 1 root operator 4, 32 Aug 18 17:23 da4a brw-r----- 1 root operator 4, 33 Aug 18 17:23 da4b brw-r----- 1 root operator 4, 34 Aug 18 17:23 da4c brw-r----- 1 root operator 4, 35 Aug 18 17:23 da4d brw-r----- 1 root operator 4, 36 Aug 18 17:23 da4e brw-r----- 1 root operator 4, 37 Aug 18 17:23 da4f brw-r----- 1 root operator 4, 38 Aug 18 17:23 da4g brw-r----- 1 root operator 4, 39 Aug 18 17:23 da4h brw-r----- 1 root operator 4, 0x00020022 Aug 18 17:23 da4s1 brw-r----- 1 root operator 4, 0x00030022 Aug 18 17:23 da4s2 brw-r----- 1 root operator 4, 0x00040022 Aug 18 17:23 da4s3 brw-r----- 1 root operator 4, 0x00050022 Aug 18 17:23 da4s4 end of message claude zipfel Schroeder & Associes 8, rue des Girondins L-1626 Luxembourg tel: +(352) 44 31 31 1 fax: +(352) 44 69 50 email: ingsa@pt.lu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 9:44:57 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mtiwmhc03.worldnet.att.net (mtiwmhc03.worldnet.att.net [204.127.131.38]) by hub.freebsd.org (Postfix) with ESMTP id 2010215047 for ; Wed, 18 Aug 1999 09:44:53 -0700 (PDT) (envelope-from JULIANPARDO@worldnet.att.net) Received: from Worldnet.att.net ([12.79.203.194]) by mtiwmhc03.worldnet.att.net (InterMail v03.02.07.07 118-134) with SMTP id <19990818164334.CSGJ5700@Worldnet.att.net> for ; Wed, 18 Aug 1999 16:43:34 +0000 Message-ID: <000201bee99e$2780a740$c2cb4f0c@att.net> From: "JULIAN PARDO" To: Subject: Date: Wed, 18 Aug 1999 12:21:36 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit 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-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Please I will Like information concerning PMG picture and their compression capabilities. Julian Pardp To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 9:47:17 1999 Delivered-To: freebsd-questions@freebsd.org Received: from dgriffin.org (dgriffin.org [205.147.189.146]) by hub.freebsd.org (Postfix) with ESMTP id E333D14F23 for ; Wed, 18 Aug 1999 09:47:13 -0700 (PDT) (envelope-from dick@dgriffin.org) Received: from localhost (dick@localhost) by dgriffin.org (8.9.2/8.9.2) with ESMTP id MAA00346; Wed, 18 Aug 1999 12:29:51 -0400 (EDT) (envelope-from dick@dgriffin.org) Date: Wed, 18 Aug 1999 12:29:50 -0400 (EDT) From: Dick Griffin To: mysql@lists.mysql.com, freebsd-questions@freebsd.org Subject: ??? StreamServer Port: ... errno 48 Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG folks, I'm still struggling, and decided a re-boot was in order, and upon reboot recievd the following message as my FreeBSD3.2 system attemped to starts the mysqld, mysqlFATAL: StreamServerPort: bind() failed errno = 48 It asked me if I has a'another postmaster already running on that port' I used a default insallation from the FreeBSD packages, and am not sure how that, or what that means. Thanks for being patient with me, Dick Griffin At Home To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 9:47:53 1999 Delivered-To: freebsd-questions@freebsd.org Received: from travelers.mail.cornell.edu (TRAVELERS.MAIL.CORNELL.EDU [132.236.56.13]) by hub.freebsd.org (Postfix) with ESMTP id 9D67814F23 for ; Wed, 18 Aug 1999 09:47:50 -0700 (PDT) (envelope-from cjc26@cornell.edu) Received: from travelers.mail.cornell.edu (travelers.mail.cornell.edu [132.236.56.13]) by travelers.mail.cornell.edu (8.8.8/8.8.5) with SMTP id MAA13216; Wed, 18 Aug 1999 12:45:43 -0400 (EDT) From: cjc26@cornell.edu Date: Wed, 18 Aug 1999 12:45:43 -0400 (EDT) X-Sender: cjc26@travelers.mail.cornell.edu To: Zhihui Zhang Cc: "James F. Young" , FreeBSD Questions Subject: Re: swap size with 256mb ram(newbie) In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, 18 Aug 1999, Zhihui Zhang wrote: > > I set bsd up using the automatic settings which defaulted to double my > > physical ram. I am trying to determine if a 500+mb swap is actually > > necessary with that much or if I can just make one thats is linux style > > (e.g equal to my physical mem of 256) > > Making the swap space twice as large as your memory is a thumb of rule, > which is said in many CS text books I believe. And probably not a good rule to follow for >128M or so, especially if you're not using your machine as a heavy duty server or something. Why don't you just try it with 256M of swap, see how it works. -- cliff crawford http://www.people.cornell.edu/pages/cjc26/ main(q){6-q&&main(q+1),putchar(67+3*(19%q-q/4));} To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 9:50:56 1999 Delivered-To: freebsd-questions@freebsd.org Received: from travelers.mail.cornell.edu (TRAVELERS.MAIL.CORNELL.EDU [132.236.56.13]) by hub.freebsd.org (Postfix) with ESMTP id 5CDB314F0E for ; Wed, 18 Aug 1999 09:50:51 -0700 (PDT) (envelope-from cjc26@cornell.edu) Received: from travelers.mail.cornell.edu (travelers.mail.cornell.edu [132.236.56.13]) by travelers.mail.cornell.edu (8.8.8/8.8.5) with SMTP id MAA15316; Wed, 18 Aug 1999 12:50:39 -0400 (EDT) From: cjc26@cornell.edu Date: Wed, 18 Aug 1999 12:50:39 -0400 (EDT) X-Sender: cjc26@travelers.mail.cornell.edu To: "Bill A. K." Cc: FreeBSD Questions Subject: Re: roots shell In-Reply-To: <002b01bee97f$2a3fdf60$01010101@bopper> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, 18 Aug 1999, Bill A. K. wrote: > is there any way to change root's default shell from csh to bash. i'm doing > a lot of work on my system and i'm sick of having to start bash at every > shell i open. any help would be greatly appreciated. It's probably a good idea to leave root's shell as csh, just in case something horrible happens and /usr can't be mounted. There should be a user called `toor' which uses bash as its shell; log in as that instead. -- cliff crawford http://www.people.cornell.edu/pages/cjc26/ main(q){6-q&&main(q+1),putchar(67+3*(19%q-q/4));} To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 9:54:22 1999 Delivered-To: freebsd-questions@freebsd.org Received: from radius.wavefire.com (radius.workfire.net [139.142.95.252]) by hub.freebsd.org (Postfix) with SMTP id D10CF15388 for ; Wed, 18 Aug 1999 09:54:16 -0700 (PDT) (envelope-from swen@wavefire.com) Received: (qmail 21578 invoked from network); 18 Aug 1999 17:13:53 -0000 Received: from unknown (HELO swen) (139.142.95.222) by radius.workfire.net with SMTP; 18 Aug 1999 17:13:53 -0000 Message-Id: <3.0.32.19990818095505.00962c10@mail.wavefire.com> X-Sender: swen@mail.wavefire.com X-Mailer: Windows Eudora Pro Version 3.0 (32) Date: Wed, 18 Aug 1999 09:55:05 -0700 To: freebsd-questions@freebsd.org From: Chameleon Subject: RE: locate database too small Mime-Version: 1.0 Content-Type: text/enriched; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In your /usr/libexec directory, run the locate.updatedb file. this will troll through your directory tree and update the locate database Swen Kabis At 09:38 AM 8/18/99 -0700, you wrote: >Hi; > >When I try: > $ locate < >I get the Error: > locate: database too small: /var/db/locate.database > >How to fix this problem so I can locate files and do 'whereis << file_name> >also. >This is a new 3.2-RELEASE machine. > > >Dan > > > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-questions" in the body of the message > > ~ -----BEGIN GEEK CODE BLOCK----- GCS/O d-(+) s:+>:- a- C++++ UB++$>++++$ P+ L++>++++$ E-- W++(++) N+ o? K? w--- O- M-- V-- PS+ PE@ Y PGP t++ 5++ X R* tv++ b+++(+) DI++ D+++ G++ e++ h---->$ r+++ x** -----END GEEK CODE BLOCK----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 9:55:31 1999 Delivered-To: freebsd-questions@freebsd.org Received: from digisys.net (digisys.net [205.138.110.204]) by hub.freebsd.org (Postfix) with ESMTP id 2CC5014FFA for ; Wed, 18 Aug 1999 09:55:18 -0700 (PDT) (envelope-from jason@townnews.com) Received: from townnews.com (X2modem208.digisys.net [207.49.34.68]) by digisys.net (8.9.1a/8.9.1) with ESMTP id KAA12239 for ; Wed, 18 Aug 1999 10:55:53 -0600 (MDT) Message-ID: <37BAE53F.616CD4F7@townnews.com> Date: Wed, 18 Aug 1999 10:54:23 -0600 From: Jason Organization: International News Network X-Mailer: Mozilla 4.61 [en] (X11; I; FreeBSD 3.2-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: CPU Upgrade Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG We're running FreeBSD 2.2.5-Stable on a slower system, and we'd like to upgrade the processor in the machine. WIll we need to recompile the kernel if we perform this upgrade? If so, I'd appreciate the details on why (I'm a curious sort when it comes to things like this). I can't seem to find any solid information on the subject... Thanks in advance, Jason Blue jason@townnews.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 10: 2: 1 1999 Delivered-To: freebsd-questions@freebsd.org Received: from tele-post-20.mail.demon.net (tele-post-20.mail.demon.net [194.217.242.20]) by hub.freebsd.org (Postfix) with ESMTP id ACF0F150B3 for ; Wed, 18 Aug 1999 10:01:58 -0700 (PDT) (envelope-from martin@chiron-s.demon.co.uk) Received: from chiron-s.demon.co.uk ([158.152.196.202]) by tele-post-20.mail.demon.net with esmtp (Exim 2.12 #2) id 11H96e-0003Ub-0K; Wed, 18 Aug 1999 17:02:33 +0000 Received: by chiron-s.demon.co.uk (Postfix, from userid 1000) id A12827C5; Tue, 17 Aug 1999 22:38:38 +0100 (BST) Received: from localhost (localhost [127.0.0.1]) by chiron-s.demon.co.uk (Postfix) with ESMTP id 9BC8E791; Tue, 17 Aug 1999 22:38:38 +0100 (BST) Date: Tue, 17 Aug 1999 22:38:38 +0100 (BST) From: Martin Smith To: Mohit Aron Cc: freebsd-questions@freebsd.org Subject: Re: ext2fs filesystem In-Reply-To: <199908171844.NAA28562@cs.rice.edu> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, 17 Aug 1999, Mohit Aron wrote: > Hi, > I want to compile my kernel with support for the ext2fs filesystem. > Can someone tell me how to do this. Thanks, > options "EXT2FS" -- martin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 10: 2:21 1999 Delivered-To: freebsd-questions@freebsd.org Received: from axolotl.ic.gc.ca (axolotl.ic.gc.ca [198.103.246.251]) by hub.freebsd.org (Postfix) with ESMTP id 1D4EC1541C for ; Wed, 18 Aug 1999 10:02:16 -0700 (PDT) (envelope-from antonio@axolotl.ic.gc.ca) Received: from localhost (antonio@localhost) by axolotl.ic.gc.ca (8.9.3/8.9.2) with SMTP id NAA38827 for ; Wed, 18 Aug 1999 13:03:11 -0400 (EDT) (envelope-from antonio@axolotl.ic.gc.ca) Date: Wed, 18 Aug 1999 13:03:10 -0400 (EDT) From: Antonio Bemfica To: freebsd-questions@freebsd.org Subject: PPP over Ethernet Client for FreeBSD? Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Is there a way to talk PPPoE (RFC 2516) in FreeBSD? The nice folks at Bell Canada decided to have that running on their ADSL lines now (just as I had finished setting up my onw little network at home with dhcp, NAT, ipfw, etc). I've looked around quite a bit, but so far no clients for anything other than Win9? and MAC. Antonio To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 10:35:18 1999 Delivered-To: freebsd-questions@freebsd.org Received: from iaces.com (horton.iaces.com [204.147.87.98]) by hub.freebsd.org (Postfix) with ESMTP id BE82D14F2D for ; Wed, 18 Aug 1999 10:35:14 -0700 (PDT) (envelope-from proot@iaces.com) Received: (from proot@localhost) by iaces.com (8.9.3/8.9.3) id MAA00584; Wed, 18 Aug 1999 12:35:18 -0500 (CDT) From: "Paul T. Root" Message-Id: <199908181735.MAA00584@iaces.com> Subject: Re: CPU Upgrade In-Reply-To: <37BAE53F.616CD4F7@townnews.com> from Jason at "Aug 18, 99 10:54:23 am" To: jason@townnews.com (Jason) Date: Wed, 18 Aug 1999 12:35:18 -0500 (CDT) Cc: freebsd-questions@FreeBSD.ORG X-Organization: USWEST !nterprise Networking - ACES X-Phone: (612) 664-3385 X-Fax: (612) 664-4779 X-Page: (800) SKY-PAGE PIN: 537-7270 X-Address: 600 Stinson Blvd, Fl 1S X-Address: Minneapolis, MN 55413 X-Mailer: ELM [version 2.4ME+ PL38 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In a previous message, Jason said: > We're running FreeBSD 2.2.5-Stable on a slower system, and we'd like to > upgrade the processor in the machine. WIll we need to recompile the > kernel if we perform this upgrade? If so, I'd appreciate the details on > why (I'm a curious sort when it comes to things like this). I can't seem > to find any solid information on the subject... You won't need to if you aren't changing processor types. But if you're thinking of one of those upgrade chips to take a 75-150MHz machine up to 333MHz, AMD K6-2, then I'd suggest you save your money. I put one in to replace a Cyrix P150+, and didn't notice any change in Windows 98 (I haven't put FreeBSD on that machine). > Thanks in advance, > > Jason Blue > jason@townnews.com > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > -- If ignorance is bliss, why aren't more people happy? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 10:36:23 1999 Delivered-To: freebsd-questions@freebsd.org Received: from zinc.singnet.com.sg (zinc.singnet.com.sg [165.21.7.31]) by hub.freebsd.org (Postfix) with ESMTP id 7F83E14F8D for ; Wed, 18 Aug 1999 10:36:17 -0700 (PDT) (envelope-from biscotti@mbox5.singnet.com.sg) Received: from mbox5.singnet.com.sg (tns01750.singnet.com.sg [165.21.188.60]) by zinc.singnet.com.sg (8.9.1a/8.9.1) with ESMTP id BAA17782 for ; Thu, 19 Aug 1999 01:36:52 +0800 (SGT) Message-ID: <37BAEEC8.A62C7412@mbox5.singnet.com.sg> Date: Thu, 19 Aug 1999 01:35:04 +0800 From: "SuSE Linux 6.1 user" X-Mailer: Mozilla 4.51 [en] (X11; I; Linux 2.2.5 i586) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: How do i setup network cards in freebsd Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Dear FreeBSD, I would like to know.. how do i setup my network card in Freebsd, operating system. I need this FAQ urgently.... i hope you can proccess my email asap. Thank you Kelvin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 10:40:37 1999 Delivered-To: freebsd-questions@freebsd.org Received: from wopr.caltech.edu (wopr.caltech.edu [131.215.240.222]) by hub.freebsd.org (Postfix) with ESMTP id 7289D14BFA for ; Wed, 18 Aug 1999 10:40:31 -0700 (PDT) (envelope-from mph@wopr.caltech.edu) Received: (from mph@localhost) by wopr.caltech.edu (8.9.3/8.9.1) id KAA29203; Wed, 18 Aug 1999 10:38:21 -0700 (PDT) (envelope-from mph) Date: Wed, 18 Aug 1999 10:38:21 -0700 From: Matthew Hunt To: cjc26@cornell.edu Cc: "Bill A. K." , FreeBSD Questions Subject: Re: roots shell Message-ID: <19990818103820.A29062@wopr.caltech.edu> References: <002b01bee97f$2a3fdf60$01010101@bopper> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: ; from cjc26@cornell.edu on Wed, Aug 18, 1999 at 12:50:39PM -0400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, Aug 18, 1999 at 12:50:39PM -0400, cjc26@cornell.edu wrote: > It's probably a good idea to leave root's shell as csh, just in case > something horrible happens and /usr can't be mounted. If something horrible happens and /usr can't be mounted, you're not likely to make it to multi-user mode. When you boot in single-user mode, you are offered your choice of shell, defaulting to /bin/sh, so this is a non-issue on FreeBSD. > There should be a user called `toor' which uses bash as its shell; log > in as that instead. As shipped, "toor" has a shell of /bin/sh, as FreeBSD doesn't have bash in the base system. -- Matthew Hunt * Inertia is a property http://www.pobox.com/~mph/ * of matter. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 10:54:28 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mta2.snfc21.pbi.net (mta2.snfc21.pbi.net [206.13.28.123]) by hub.freebsd.org (Postfix) with ESMTP id 809EE14F3E for ; Wed, 18 Aug 1999 10:54:18 -0700 (PDT) (envelope-from capdevie@haas.berkeley.edu) Received: from edgard (adsl-63-193-120-43.dsl.snfc21.pacbell.net [63.193.120.43]) by mta2.snfc21.pbi.net (8.9.3/8.9.3) with SMTP id KAA00732 for ; Wed, 18 Aug 1999 10:54:01 -0700 (PDT) From: "Edgard Capdevielle" To: Subject: Parallel ZIP Drive ! Date: Wed, 18 Aug 1999 10:57:23 -0700 Message-ID: <000301bee9a3$1f87ff20$2b78c13f@edgard.pacbell.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.3155.0 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi there, I finally got my machine to work with FreeBSD and fixed-IP DSL !!! Can anyone explain how to configure an external ZIP drive? I checked the website and found a document, but it assumes that I know what I am doing. I need something like "Configuring ZIP Drives for Dummies" (i.e. very simple steps that all newbies can follow). Do you know where I can find this? TIA, Edgard A. Capdevielle To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 11: 2:34 1999 Delivered-To: freebsd-questions@freebsd.org Received: from sand4.global.net.uk (sand4.global.net.uk [194.126.80.248]) by hub.freebsd.org (Postfix) with ESMTP id 8DBDE14C25 for ; Wed, 18 Aug 1999 11:02:05 -0700 (PDT) (envelope-from marko@globalnet.co.uk) Received: from p36s12a06.client.global.net.uk ([195.147.220.55] helo=marder-1.) by sand4.global.net.uk with esmtp (Exim 2.12 #1) id 11HA2k-0003dA-00; Wed, 18 Aug 1999 19:02:35 +0100 Received: (from marko@localhost) by marder-1. (8.9.2/8.8.8) id SAA00372; Wed, 18 Aug 1999 18:55:40 +0100 (BST) (envelope-from marko) Date: Wed, 18 Aug 1999 18:55:40 +0100 From: Mark Ovens To: Darren WIebe Cc: freebsd-questions@freebsd.org Subject: Re: Good c newbie documentation Message-ID: <19990818185540.A299@marder-1> References: <37B9D708.1E4D50DC@hagenhomes.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.3i In-Reply-To: <37B9D708.1E4D50DC@hagenhomes.com>; from Darren WIebe on Tue, Aug 17, 1999 at 03:41:28PM -0600 Organization: Total lack of Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, Aug 17, 1999 at 03:41:28PM -0600, Darren WIebe wrote: > Hello: > > I would like to learn to use the c and c++ programming languages. I > have looked around on the net but have not been able to find much. I > would appreciate it if you would give me any recommendations that you > have for good books and other info for newbies to c. > The C programming Language by Kernighan & Ritchie (the people who wrote C). ISBN 0-13-110362-8, Prentice-Hall > TIA > > Darren Wiebe > dkwiebe@hagenhomes.com > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > -- FreeBSD - The Power To Serve http://www.freebsd.org My Webpage http://http://ukug.uk.freebsd.org/~mark/ _______________________________________________________________ Mark Ovens, CNC Apps Engineer, Radan Computational Ltd. Bath UK CAD/CAM solutions for Sheetmetal Working Industry mailto:mark@ukug.uk.freebsd.org http://www.radan.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 11: 2:56 1999 Delivered-To: freebsd-questions@freebsd.org Received: from c004.sfo.cp.net (c004-h005.c004.sfo.cp.net [209.228.14.76]) by hub.freebsd.org (Postfix) with SMTP id 865F014FF0 for ; Wed, 18 Aug 1999 11:02:53 -0700 (PDT) (envelope-from jason@intercom.com) Received: (cpmta 8803 invoked from network); 18 Aug 1999 11:03:28 -0700 Received: from shagalicious.com (HELO intercom.com) (206.98.165.250) by smtp.intercom.com with SMTP; 18 Aug 1999 11:03:28 -0700 X-Sent: 18 Aug 1999 18:03:28 GMT Message-ID: <37BAF5A9.F52812B7@intercom.com> Date: Wed, 18 Aug 1999 14:04:25 -0400 From: "Jason J. Horton" Organization: Intercom Online Inc. X-Mailer: Mozilla 4.61 [en] (X11; I; FreeBSD 3.2-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: gtk port problems Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I am having problems with GTK, both the version in /usr/ports and with the versions grabbed from gtk.org. Whenever I run 'configure' when trying to install a gtk app that is not in ports, I get errors like these: checking for gtk-config... /usr/local/bin/gtk-config checking for GTK - version >= 1.0.0... no *** Could not run GTK test program, checking why... *** The test program failed to compile or link. See the file config.log for the *** exact error that occured. This usually means GTK was incorrectly installed *** or that you have moved GTK since it was installed. In the latter case, you *** may want to edit the gtk-config script: /usr/local/bin/gtk-config configure: error: No GTK found. Set the path right or install it. and in config.log I find this: configure:1099: checking for gtk-config configure:1130: checking for GTK - version >= 1.0.0 configure:1230: gcc -o conftest -g -O2 -I/usr/X11R6/include -I/usr/local/lib/glib/include -I/usr/local/include -DGTK_VERSION=10203 conftest.c -L/usr/local/lib -L/usr/X11R6/lib -lgtk -lgdk -lgmodule -lglib -lXi -lXext -lX11 -lm 1>&5 In file included from /usr/local/include/gtk/gtk.h:31, from configure:1166: /usr/local/include/gdk/gdk.h:67: parse error before `GDestroyNotify' /usr/local/include/gdk/gdk.h:392: parse error before `GDestroyNotify' /usr/local/include/gdk/gdk.h:997: parse error before `*' /usr/local/include/gdk/gdk.h:997: warning: data definition has no type or storage class In file included from /usr/local/include/gtk/gtkobject.h:31, from /usr/local/include/gtk/gtkaccelgroup.h:35, from /usr/local/include/gtk/gtk.h:32, from configure:1166: /usr/local/include/gtk/gtkarg.h:74: parse error before `va_list' /usr/local/include/gtk/gtkarg.h:93: parse error before `arg_info_1' /usr/local/include/gtk/gtkarg.h:95: parse error before `arg_info' In file included from /usr/local/include/gtk/gtkaccelgroup.h:35, from /usr/local/include/gtk/gtk.h:32, from configure:1166: /usr/local/include/gtk/gtkobject.h:146: parse error before `GData' /usr/local/include/gtk/gtkobject.h:146: warning: no semicolon at end of struct or union /usr/local/include/gtk/gtkobject.h:329: parse error before `GQuark' /usr/local/include/gtk/gtkobject.h:332: parse error before `GQuark' /usr/local/include/gtk/gtkobject.h:336: parse error before `GQuark' /usr/local/include/gtk/gtkobject.h:338: parse error before `GQuark' /usr/local/include/gtk/gtkobject.h:340: parse error before `GQuark' /usr/local/include/gtk/gtkobject.h:357: parse error before `va_list' In file included from /usr/local/include/gtk/gtkadjustment.h:32, from /usr/local/include/gtk/gtkwidget.h:33, from /usr/local/include/gtk/gtkmisc.h:32, from /usr/local/include/gtk/gtklabel.h:31, from /usr/local/include/gtk/gtkaccellabel.h:34, from /usr/local/include/gtk/gtk.h:33, from configure:1166: /usr/local/include/gtk/gtkdata.h:53: field `object' has incomplete type In file included from /usr/local/include/gtk/gtkmisc.h:32, from /usr/local/include/gtk/gtklabel.h:31, from /usr/local/include/gtk/gtkaccellabel.h:34, from /usr/local/include/gtk/gtk.h:33, from configure:1166: /usr/local/include/gtk/gtkwidget.h:174: field `object' has incomplete type In file included from /usr/local/include/gtk/gtkbin.h:32, from /usr/local/include/gtk/gtkalignment.h:32, from /usr/local/include/gtk/gtk.h:35, from configure:1166: /usr/local/include/gtk/gtkcontainer.h:217: parse error before `va_list' In file included from /usr/local/include/gtk/gtkcalendar.h:33, from /usr/local/include/gtk/gtk.h:44, from configure:1166: /usr/local/include/gtk/gtksignal.h:157: parse error before `GDestroyNotify' In file included from /usr/local/include/gtk/gtk.h:47, from configure:1166: /usr/local/include/gtk/gtkclist.h:128: parse error before `gconstpointer' In file included from /usr/local/include/gtk/gtk.h:52, from configure:1166: /usr/local/include/gtk/gtkctree.h:96: parse error before `GNode' /usr/local/include/gtk/gtkctree.h:198: parse error before `GNode' /usr/local/include/gtk/gtkctree.h:201: parse error before `*' /usr/local/include/gtk/gtkctree.h:202: parse error before `GNode' /usr/local/include/gtk/gtkctree.h:206: warning: data definition has no type or storage class In file included from /usr/local/include/gtk/gtk.h:80, from configure:1166: /usr/local/include/gtk/gtkitemfactory.h:67: field `object' has incomplete type Does anyone have any helpful tips for getting GTK to work? -J To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 11: 8:44 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail.usask.ca (mail.usask.ca [128.233.3.34]) by hub.freebsd.org (Postfix) with ESMTP id C76371583C for ; Wed, 18 Aug 1999 11:08:37 -0700 (PDT) (envelope-from royalke@mailroom.com) Received: from fast ([192.139.76.51]) by mail.usask.ca (PMDF V5.2-32 #39029) with SMTP id <0FGO0030PA8X7N@mail.usask.ca> for freebsd-questions@FreeBSD.ORG; Wed, 18 Aug 1999 12:05:23 -0600 (CST) Date: Thu, 19 Aug 1999 12:05:42 -0600 From: Salmon Lips Subject: help! To: freebsd-questions@FreeBSD.ORG Message-id: <0FGO0030QA8Y7N@mail.usask.ca> MIME-version: 1.0 X-Mailer: Pegasus Mail for Win32 (v3.11) Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG i'm a beginner freebsd user... ijust recently installed it and when installingi accidentaly chose to instal a boot manager, i had win 98 installed on the system as wel, and now i can't access win 98 cos boot manager gives me only the option to load BSD, i really could use some help here. pleaaaaase.. m ike To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 11:11: 1 1999 Delivered-To: freebsd-questions@freebsd.org Received: from iaces.com (horton.iaces.com [204.147.87.98]) by hub.freebsd.org (Postfix) with ESMTP id 3894A14E6F for ; Wed, 18 Aug 1999 11:10:58 -0700 (PDT) (envelope-from proot@iaces.com) Received: (from proot@localhost) by iaces.com (8.9.3/8.9.3) id NAA00804; Wed, 18 Aug 1999 13:10:15 -0500 (CDT) From: "Paul T. Root" Message-Id: <199908181810.NAA00804@iaces.com> Subject: Re: hard reset In-Reply-To: <000901bee97e$6cf80fe0$0fc8a8c0@dave.ciminot.com> from "David B. Aas" at "Aug 18, 99 08:34:39 am" To: dave@ciminot.com (David B. Aas) Date: Wed, 18 Aug 1999 13:10:15 -0500 (CDT) Cc: proot@iaces.com, questions@freebsd.org X-Organization: USWEST !nterprise Networking - ACES X-Phone: (612) 664-3385 X-Fax: (612) 664-4779 X-Page: (800) SKY-PAGE PIN: 537-7270 X-Address: 600 Stinson Blvd, Fl 1S X-Address: Minneapolis, MN 55413 X-Mailer: ELM [version 2.4ME+ PL38 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In a previous message, David B. Aas said: > Paul T. Root- > (or is it Tover Weller?) :-) > > You have a hardware problem! I don't think so. It happens on 5 IBM Z Pro's (PPro 200) and 1 Compaq DeskPro 2000 (Pentium 133). The common HW between them are: Intel Pro/100 B Adaptec 2940UW and the common configuration is that they have IDE buses active (though the Compaq no longer has any devices) and boot off SCSI disk 0. They hand with either 2.2.8-Stable (January) or 3.2-Release. Also, the IBM's reboot fine from NT, NeXT and Linux (RedHat 5.2 or 6.0). > Dave Aas > Dave@ciminot.com > > > -----Original Message----- > > From: owner-freebsd-questions@FreeBSD.ORG > > [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Paul T. Root > > Sent: Wednesday, August 18, 1999 6:40 AM > > To: Evren Yurtesen > > Cc: spud@i.am; questions@FreeBSD.ORG > > Subject: Re: hard reset > > > > > > In a previous message, Evren Yurtesen said: > > > I think that hard reset is when you poweroff your computer from the > > > power button so it is called hard reset and soft reset is > > done by the > > > software so it is called soft reset. > > > > > > Why do you want to make a hard reset? > > > > > > Well, in my case, a soft reset just hangs the system after: > > Rebooting... > > > > on both 2.2.8 and 3.2. > > > > > > > Evren Yurtesen > > > > > > Tomer Weller wrote: > > > > > > > > Does FreeBSD do a hard reset or a soft reset ? (sorry for > > the newbie question) > > > > If it soft resets, how can I change that to hard ? > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > > with "unsubscribe freebsd-questions" in the body of the message > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > with "unsubscribe freebsd-questions" in the body of the message > > > > > > > > > -- > > The truth is the one thing that nobody will believe. > > --George Bernard Shaw > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > > -- What do you do when a blonde throws a grenade at you? --Pull the pin and throw it back. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 11:14:25 1999 Delivered-To: freebsd-questions@freebsd.org Received: from fingers.shocking.com (shocking.com [216.111.111.11]) by hub.freebsd.org (Postfix) with ESMTP id 3AD5E151E8 for ; Wed, 18 Aug 1999 11:14:20 -0700 (PDT) (envelope-from doemill@shocking.com) Received: from shocking.com (doemill@shocking.com [216.111.111.11]) by fingers.shocking.com (8.9.0/8.9.0) with ESMTP id LAA15598; Wed, 18 Aug 1999 11:09:53 -0700 (PDT) Date: Wed, 18 Aug 1999 11:09:52 -0700 (PDT) From: Doug To: Byoung-Kee Yi Cc: questions@FreeBSD.ORG Subject: Re: [q] SBPro and mpg123 In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG That happends to me too, unless i specify -2, like mpg123 -v -2 Rage-KillingInTheName.mp3 will always work, If I dont specify -2 it wotn work and ill get Aug 18 11:13:06 stinky /kernel: Sound: DMA (output) timed out - IRQ/DRQ config error? good luck, hope it helps. btw, im using a SoundBlaster too in that box On Wed, 18 Aug 1999, Byoung-Kee Yi wrote: > > Hi - > > I posted my problem with sound card configuraion in 3.2R, > but has gotten no feedbacks. By searching other mailing lists, > now I know that it is a kinda known bug in the voxware3.5 driver. > Is there any effort going on to fix it? > > FYI, I tested with different memory sizes using MAXMEM option > (32M and 64M, the latter is the physical memory size). Guess what? > With 32MB memory, mpg123 worked! Not always, but most of the time > did with one line of (annoying) opening message: > >> SoundBlaster: DSP Command(0xd4) timeout. IRQ conflict ? > > I give up. My conclusion is that, unfurtunately, FreeBSD sound system > is broken. I don't know whether it is the voxware driver or other > parts of kernel. I had no lock with OSS driver either. (They also > mentioned a problem with dma buffer scheme or something like that.) > > cheers > > -- Kee > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > | Doug | unix9.org admin | shocking.com/~doemill/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 11:14:45 1999 Delivered-To: freebsd-questions@freebsd.org Received: from ender.ncsa.es (ender.ncsa.es [194.179.50.15]) by hub.freebsd.org (Postfix) with ESMTP id 960971583C; Wed, 18 Aug 1999 11:14:38 -0700 (PDT) (envelope-from jesusr@ncsa.es) Received: from ender.ncsa.es (localhost [127.0.0.1]) by ender.ncsa.es (8.9.3/8.9.3) with ESMTP id UAA00513; Wed, 18 Aug 1999 20:14:34 +0200 (CEST) (envelope-from jesusr@ncsa.es) Message-ID: X-Mailer: XFMail 1.3 [p0] on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <37BAF447.A617E122@mcc.montgomery.cc.nc.us> Date: Wed, 18 Aug 1999 20:14:34 +0200 (CEST) Reply-To: jesusr@ncsa.es Organization: Nexus Comunicaciones, S.A. From: Jesus Rodriguez To: "Lane Covington, Distance Education/Multi-Media Specilist" Subject: RE: How to reset the log file in free-bsd. Cc: faq@FreeBSD.org, questions@FreeBSD.org Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On 18-Aug-99 Lane Covington, Distance Education/Multi-Media Specilist wrote: > I have a really large 85meg httpd-access.log file. How do I reset this > log file after I have moved the file with mv httpd-access.log > http-access.old and then compressed it. But could not determine how to > signal free-bsd a process id with the kill -TERM 'cat httpd.pid' to > start a new file. Did not see any reference to this in the handbooks. > Could you reply please. > Lane, Distance Education Tech Please, send this kind of questions to freebsd-questions@freebsd.org (included now with CC). Thanks JesusR. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 11:14:55 1999 Delivered-To: freebsd-questions@freebsd.org Received: from br3-de0.dnsmgr.net (br3-de0.dnsmgr.net [198.145.92.3]) by hub.freebsd.org (Postfix) with ESMTP id 0CAD215888 for ; Wed, 18 Aug 1999 11:14:45 -0700 (PDT) (envelope-from hamellr@hamell.hpc1.com) Received: from heorot.hamell.hpc1.com (host74-122.iwbc.net [216.228.74.122]) by br3-de0.dnsmgr.net (8.9.3/8.9.3) with SMTP id LAA39903; Wed, 18 Aug 1999 11:14:26 -0700 (PDT) (envelope-from hamellr@hamell.hpc1.com) Date: Tue, 17 Aug 1999 03:38:41 -0700 (PDT) From: Rick Hamell To: Jason Cc: freebsd-questions@FreeBSD.ORG Subject: Re: CPU Upgrade In-Reply-To: <37BAE53F.616CD4F7@townnews.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > We're running FreeBSD 2.2.5-Stable on a slower system, and we'd like to > upgrade the processor in the machine. WIll we need to recompile the > kernel if we perform this upgrade? If so, I'd appreciate the details on > why (I'm a curious sort when it comes to things like this). I can't seem > to find any solid information on the subject... It depends. If it's a mission critical system you'd be better of building a 2nd machine with 3.2 in it, then moving your data over. If you've already got a Pentium system and go to a P-III or a K6, I don't believe you have to do anything. But, if you still need to do a kernal compile goto http://www.freebsd.org/handbook/kernelconfig.html Rick To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 11:15:42 1999 Delivered-To: freebsd-questions@freebsd.org Received: from fingers.shocking.com (shocking.com [216.111.111.11]) by hub.freebsd.org (Postfix) with ESMTP id 363F41505E for ; Wed, 18 Aug 1999 11:15:38 -0700 (PDT) (envelope-from doemill@shocking.com) Received: from shocking.com (doemill@shocking.com [216.111.111.11]) by fingers.shocking.com (8.9.0/8.9.0) with ESMTP id LAA15879; Wed, 18 Aug 1999 11:13:03 -0700 (PDT) Date: Wed, 18 Aug 1999 11:13:03 -0700 (PDT) From: Doug To: "Bill A. K." Cc: FreeBSD Questions Subject: Re: roots shell In-Reply-To: <002b01bee97f$2a3fdf60$01010101@bopper> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG use 'chfn' to change your shell, and be sure to add it to /etc/shells also. and to change your current prompt to your username and current directory use PS1="\u \w# " Put that in your ~/.profile and ln -s your ~/.profile to .bashrc so it does it when you su to root also. On Wed, 18 Aug 1999, Bill A. K. wrote: > hi, > > is there any way to change root's default shell from csh to bash. i'm doing > a lot of work on my system and i'm sick of having to start bash at every > shell i open. any help would be greatly appreciated. > > i've already changed the path to my shell in both /etc/passwd and > /etc/master.passwd but it didn't change it. > > and i would also like to know how to customize my bash prompt with my > current directory for example. > > thanks > > Bill > billieakay@yahoo.com > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > | Doug | unix9.org admin | shocking.com/~doemill/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 11:16:17 1999 Delivered-To: freebsd-questions@freebsd.org Received: from gecko.uvi.edu (gecko.uvi.edu [146.226.2.150]) by hub.freebsd.org (Postfix) with ESMTP id 6371215072 for ; Wed, 18 Aug 1999 11:16:10 -0700 (PDT) (envelope-from min9743@uvi.edu) Received: from gecko.uvi.edu (gecko.uvi.edu [146.226.2.150]) by gecko.uvi.edu (8.9.3/8.7.3) with SMTP id OAA24903 for ; Wed, 18 Aug 1999 14:16:34 -0400 (AST) Date: Wed, 18 Aug 1999 14:16:34 -0400 (AST) From: Stanford Mings Cc: questions@FreeBSD.ORG Subject: FreeBSD 3.2 In-Reply-To: <199908181810.NAA00804@iaces.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello all, I may have sent this email twice already, so please accept my appologies for a double request. I am trying to install 3.2 on an IBM PC 340 79T via bootable CD, but I then get an error message, We don't know which disk to boot from. Guessing 0x8b, defaulting to disk0 The above message was the closest I remember about the message. Any help would be appreciated Stanford To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 11:19:31 1999 Delivered-To: freebsd-questions@freebsd.org Received: from fingers.shocking.com (shocking.com [216.111.111.11]) by hub.freebsd.org (Postfix) with ESMTP id F117F151EB for ; Wed, 18 Aug 1999 11:19:22 -0700 (PDT) (envelope-from doemill@shocking.com) Received: from shocking.com (doemill@shocking.com [216.111.111.11]) by fingers.shocking.com (8.9.0/8.9.0) with ESMTP id LAA16032; Wed, 18 Aug 1999 11:15:36 -0700 (PDT) Date: Wed, 18 Aug 1999 11:15:35 -0700 (PDT) From: Doug To: Darren WIebe Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Good c newbie documentation In-Reply-To: <37B9D708.1E4D50DC@hagenhomes.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Go to mcp.com and sign up for the 'personal bookshelf', and you can get some free books online to read at their site, there are two books on C, and a couple on C++. Also check out http://kbs.cs.tu-berlin.de/~jutta/c/index.html http://www.strath.ac.uk/CC/Courses/OldCcourse/CCourse.html Good luck On Tue, 17 Aug 1999, Darren WIebe wrote: > Hello: > > I would like to learn to use the c and c++ programming languages. I > have looked around on the net but have not been able to find much. I > would appreciate it if you would give me any recommendations that you > have for good books and other info for newbies to c. > > TIA > > Darren Wiebe > dkwiebe@hagenhomes.com > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > | Doug | unix9.org admin | shocking.com/~doemill/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 11:20:56 1999 Delivered-To: freebsd-questions@freebsd.org Received: from cs.rpi.edu (mumble.cs.rpi.edu [128.213.8.16]) by hub.freebsd.org (Postfix) with ESMTP id 849F115994 for ; Wed, 18 Aug 1999 11:20:43 -0700 (PDT) (envelope-from crossd@cs.rpi.edu) Received: from cs.rpi.edu (loot.cs.rpi.edu [128.213.16.22]) by cs.rpi.edu (8.9.3/8.9.3) with ESMTP id OAA75997; Wed, 18 Aug 1999 14:20:21 -0400 (EDT) Message-Id: <199908181820.OAA75997@cs.rpi.edu> To: "SuSE Linux 6.1 user" Cc: freebsd-questions@FreeBSD.ORG, crossd@cs.rpi.edu Subject: Re: How do i setup network cards in freebsd In-Reply-To: Message from "SuSE Linux 6.1 user" of "Thu, 19 Aug 1999 01:35:04 +0800." <37BAEEC8.A62C7412@mbox5.singnet.com.sg> Date: Wed, 18 Aug 1999 14:16:22 -0400 From: "David E. Cross" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I will make the one assumption that you are not using DHCP for this... You need to edit /etc/rc.conf. First you need to tell the system which network interfaces to enable, this is done with the variable 'network_interfaces'. This is a space deliminated list of all of the interfaces that you wish to configure. On very recent systems this variable can be set to "auto" to have the system try to config all the interfaces by itself. You likely do not have such a system, so you will need the more manual way. You need to collect a list of all the interfaces on your machine. I do this with the following command: > # ifconfig -a > xl0: flags=8843 mtu 1500 > inet 10.130.1.1 netmask 0xffffff00 broadcast 10.130.1.255 > ether 00:a0:24:bb:00:c4 > media: 100baseTX (100baseTX ) > supported media: autoselect 100baseTX 100baseTX 100baseTX 10baseT/UTP 10baseT/UTP 10baseT/UTP > lp0: flags=8810 mtu 1500 > tun0: flags=8010 mtu 1500 > sl0: flags=c010 mtu 552 > ppp0: flags=8010 mtu 1500 > lo0: flags=8049 mtu 16384 > inet 127.0.0.1 netmask 0xff000000 In this case I have network interfaces: xl0, lp0, tun0, sl0, ppp0, and lo0. Since you don't have them configured at all you will likely not see any of the indented information, since that is a result of the configuration ;). The 'lp0' driver is for a parallel port PLIP interface. "sl0" is a SLIP, 'ppp0' is for PPP. You will not want configure any of these. You will likely wish to configure any remaining interface, and you must configure lo0 (the loopback interface). For the above example the line in /etc/rc.conf is: network_interfaces="xl0 lo0" Now for each interface you need to tell it what IP it has, this is done by interface_IFNAME="options". So for the above example it is: ifconfig_xl0="inet 10.130.1.1 netmask 255.255.255.0" ifconfig_lp0="inet 127.0.0.1" # DO NOT CHANGE THIS. Finally you will want to setup the gateway for the system, this is done via: defaultrouter="IP" In my case this is: defaultrouter="10.130.1.254" So that makes the *entire* network config in /etc/rc.conf be: > network_interfaces="xl0 lo0" > ifconfig_xl0="inet 10.130.1.1 netmask 255.255.255.0" > ifconfig_lp0="inet 127.0.0.1" # DO NOT CHANGE THIS. > defaultrouter="10.130.1.254" That should be all you need to do, just season that information with your own net.interfaces and pepper with your IP addresses. -- David Cross | email: crossd@cs.rpi.edu Systems Administrator/Research Programmer | Web: http://www.cs.rpi.edu/~crossd Rensselaer Polytechnic Institute, | Ph: 518.276.2860 Department of Computer Science | Fax: 518.276.4033 I speak only for myself. | WinNT:Linux::Linux:FreeBSD To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 11:24:41 1999 Delivered-To: freebsd-questions@freebsd.org Received: from diablo.peritek.com (diablo.peritek.com [198.151.249.9]) by hub.freebsd.org (Postfix) with ESMTP id CE7C5155B8 for ; Wed, 18 Aug 1999 11:24:30 -0700 (PDT) (envelope-from ibjoe@home.com) Received: from neptune (neptune [198.151.249.84]) by diablo.peritek.com (8.8.7/8.8.7) with SMTP id LAA02411 sender ibjoe@home.com for ; Wed, 18 Aug 1999 11:24:13 -0700 (PDT) X-Envelope-From: ibjoe@home.com X-Envelope-To: Message-Id: <2.2.32.19990818182414.00967f68@netmail.home.com> X-Sender: ibjoe@netmail.home.com X-Mailer: Windows Eudora Pro Version 2.2 (32) Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Date: Wed, 18 Aug 1999 11:24:14 -0700 To: freebsd-questions@freebsd.org From: Joe Subject: sio boot / console configuration? Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, I want to use a VT100 emulator program on my PC serial port as the console for my FreeBSD machine. And I would like to also have the sco (vga/keyboard) terminal available too. Best would be autodetect, if the keyboard is plugged in it would use the sco terminal, but if the keyboard is not plugged in it would use the sio terminal. I think that I can do this from the boot prompt with the -P argument. But I want to make that the default behavior. And when the keyboard is not plugged in I would like to start output to sio terminal at the lowest possible boot level. Dual (sco and sio) would be OK too. Does anyone have any hints on how to do this? So far all I can do is to use the sio to login after bootup. I had to change this line in /etc/ttys ttyd0 "/usr/libexec/getty std.9600" vt100 on secure Thanks, Joe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 11:26:20 1999 Delivered-To: freebsd-questions@freebsd.org Received: from cs.rpi.edu (mumble.cs.rpi.edu [128.213.8.16]) by hub.freebsd.org (Postfix) with ESMTP id D15CF15952 for ; Wed, 18 Aug 1999 11:26:10 -0700 (PDT) (envelope-from crossd@cs.rpi.edu) Received: from cs.rpi.edu (monica.cs.rpi.edu [128.213.7.2]) by cs.rpi.edu (8.9.3/8.9.3) with ESMTP id OAA76135; Wed, 18 Aug 1999 14:26:35 -0400 (EDT) Message-Id: <199908181826.OAA76135@cs.rpi.edu> To: Salmon Lips Cc: freebsd-questions@FreeBSD.ORG, crossd@cs.rpi.edu Subject: Re: help! In-Reply-To: Message from Salmon Lips of "Thu, 19 Aug 1999 12:05:42 MDT." <0FGO0030QA8Y7N@mail.usask.ca> Date: Wed, 18 Aug 1999 14:26:34 -0400 From: "David E. Cross" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG It sounds like you want 'boot0'. Boot your system into FreeBSD (that should be simple for you right now ;) and log in as root. Execute the command: "boot0inst wd0" thne "/bin/sync;reboot" When the system comes back up it should display something like: F1 DOS F2 FreeBSD F1 <--- This says that F1 is the default if you don't do anything. If you wait a few seconds it will just do the default entry for you. It saves the default each time you go, so if you boot into FreeBSD and then reboot (remotely or something) it will boot into FreeBSD again. Same for Win9x. -- David Cross | email: crossd@cs.rpi.edu Systems Administrator/Research Programmer | Web: http://www.cs.rpi.edu/~crossd Rensselaer Polytechnic Institute, | Ph: 518.276.2860 Department of Computer Science | Fax: 518.276.4033 I speak only for myself. | WinNT:Linux::Linux:FreeBSD To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 11:39:58 1999 Delivered-To: freebsd-questions@freebsd.org Received: from cs.rpi.edu (mumble.cs.rpi.edu [128.213.8.16]) by hub.freebsd.org (Postfix) with ESMTP id 8A97B14E30 for ; Wed, 18 Aug 1999 11:39:51 -0700 (PDT) (envelope-from crossd@cs.rpi.edu) Received: from cs.rpi.edu (monica.cs.rpi.edu [128.213.7.2]) by cs.rpi.edu (8.9.3/8.9.3) with ESMTP id OAA76355; Wed, 18 Aug 1999 14:38:55 -0400 (EDT) Message-Id: <199908181838.OAA76355@cs.rpi.edu> To: Stanford Mings Cc: questions@FreeBSD.ORG, crossd@cs.rpi.edu Subject: Re: FreeBSD 3.2 In-Reply-To: Message from Stanford Mings of "Wed, 18 Aug 1999 14:16:34 EDT." Date: Wed, 18 Aug 1999 14:38:55 -0400 From: "David E. Cross" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Yes, a couple of us are working to correct this problem. We hope to have something RSN. It is because IBM does some stuff "differently" than everyone else. It appears to be related to int 0x13 handling in the BIOS, but that is just me making wild speculation at this point. -- David Cross | email: crossd@cs.rpi.edu Systems Administrator/Research Programmer | Web: http://www.cs.rpi.edu/~crossd Rensselaer Polytechnic Institute, | Ph: 518.276.2860 Department of Computer Science | Fax: 518.276.4033 I speak only for myself. | WinNT:Linux::Linux:FreeBSD To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 11:42:15 1999 Delivered-To: freebsd-questions@freebsd.org Received: from unix.megared.net.mx (megared.net.mx [207.249.162.252]) by hub.freebsd.org (Postfix) with ESMTP id 10C4B15052; Wed, 18 Aug 1999 11:41:57 -0700 (PDT) (envelope-from ales@megared.net.mx) Received: from ales (pix.megared.net.mx [207.249.162.253]) by unix.megared.net.mx (8.9.3/8.9.3) with SMTP id NAA60290; Wed, 18 Aug 1999 13:42:08 -0500 (CDT) (envelope-from ales@megared.net.mx) Message-ID: <006501bee9a9$5b876fa0$d4630a0a@megared.net.mx> From: "Alejandro Ramirez" To: , "Lane Covington, Distance Education/Multi-Media Specilist" Cc: , References: Subject: RE: How to reset the log file in free-bsd. Date: Wed, 18 Aug 1999 13:42:00 -0500 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-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, If you just want to clean up your file without deleting the file or having to kill the process, you coul try the following "cat /dev/null > httpd-access.log" and your file will be 0 length and working. Ales ----- Original Message ----- From: Jesus Rodriguez To: Lane Covington, Distance Education/Multi-Media Specilist Cc: ; Sent: Wednesday, August 18, 1999 1:14 PM Subject: RE: How to reset the log file in free-bsd. > > On 18-Aug-99 Lane Covington, Distance Education/Multi-Media Specilist wrote: > > I have a really large 85meg httpd-access.log file. How do I reset this > > log file after I have moved the file with mv httpd-access.log > > http-access.old and then compressed it. But could not determine how to > > signal free-bsd a process id with the kill -TERM 'cat httpd.pid' to > > start a new file. Did not see any reference to this in the handbooks. > > Could you reply please. > > Lane, Distance Education Tech > > Please, send this kind of questions to freebsd-questions@freebsd.org (included > now with CC). > > Thanks > JesusR. > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 11:53:56 1999 Delivered-To: freebsd-questions@freebsd.org Received: from jasper.heartland.ab.ca (jasper.heartland.ab.ca [207.107.228.1]) by hub.freebsd.org (Postfix) with ESMTP id 9C69814F8A for ; Wed, 18 Aug 1999 11:53:53 -0700 (PDT) (envelope-from dkwiebe@hagenhomes.com) Received: from freebsd.hagens.ab.ca (ppp3.heartland.ab.ca [207.107.228.131]) by jasper.heartland.ab.ca (8.9.0/8.8.5) with ESMTP id MAA00389 for ; Wed, 18 Aug 1999 12:45:28 -0600 (MDT) Received: from hagenhomes.com (dkwiebe.hagens.ab.ca [10.0.1.3]) by freebsd.hagens.ab.ca (8.9.2/8.9.2) with ESMTP id MAA06840 for ; Wed, 18 Aug 1999 12:03:17 -0600 (MDT) (envelope-from dkwiebe@hagenhomes.com) Message-ID: <37BB01FD.A954BD36@hagenhomes.com> Date: Wed, 18 Aug 1999 12:57:01 -0600 From: Darren WIebe X-Mailer: Mozilla 4.61 [en] (X11; U; FreeBSD 3.2-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Good c newbie documentation References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Thanks everybody for the links and info. I will see if I can figure "c" out. Thanks Again Darren Wiebe dwiebe@hagenhomes.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 11:55:38 1999 Delivered-To: freebsd-questions@freebsd.org Received: from ns.clientlogic.com (ns.clientlogic.com [207.51.66.75]) by hub.freebsd.org (Postfix) with ESMTP id BD8F814F8A for ; Wed, 18 Aug 1999 11:55:34 -0700 (PDT) (envelope-from ChrisMic@clientlogic.com) Received: by site0s1 with Internet Mail Service (5.5.2448.0) id ; Wed, 18 Aug 1999 14:54:34 -0400 Message-ID: <6C37EE640B78D2118D2F00A0C90FCB4401105BA5@site2s1> From: Christopher Michaels To: 'Philippe CASIDY' Cc: "FreeBSD Questions (E-mail)" Subject: RE: How to update CVS repository ? Date: Wed, 18 Aug 1999 14:56:49 -0400 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2448.0) Content-Type: text/plain Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I personally use the steps on the following page to keep my CVS repository up to date. http://www.freebsd.org/FAQ/FAQ249.html -Chris > -----Original Message----- > From: Philippe CASIDY [SMTP:pcasidy@worldnet.fr] > Sent: Wednesday, August 18, 1999 5:58 AM > To: freebsd-questions@freebsd.org > Subject: How to update CVS repository ? > > Hi! > > Now I am able to use the 800 Mb hard drive I have added to my system, I > have extracted on it the whole CVS repository from the Walnet Creek > CDROM 3.2-RELEASE. > > I have read the handbook about how to synchronize the sources. But as > far as I understand, CTM or CVSup update checked out sources. They do > not update the CVS repository. > > Am I right? > > Is there a way to synchronize my CVS repository ? With cvsup-mirror ? > > Thanks a lot!! > > Phil. > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 11:59:58 1999 Delivered-To: freebsd-questions@freebsd.org Received: from ginger.kf7nn.com (mti-r1-aptis-4-p2008.cybertrails.com [162.42.15.215]) by hub.freebsd.org (Postfix) with ESMTP id C8FE114C8A for ; Wed, 18 Aug 1999 11:59:40 -0700 (PDT) (envelope-from root@ginger.kf7nn.com) Received: (from root@localhost) by ginger.kf7nn.com (8.9.3/8.9.3) id LAA03867 for questions@freebsd.org; Wed, 18 Aug 1999 11:59:27 -0700 (MST) (envelope-from root) Message-ID: X-Mailer: XFMail 1.3 [p0] on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 Date: Wed, 18 Aug 1999 11:59:27 -0700 (MST) From: root@vetex.dhis.org To: questions@freebsd.org Subject: aliasing and freetel Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I have system conected via ppp -alias and it works good for the most part but i have another machine running "freetel" on win 95 and people on the net cannot connect to me but if i initiate the connection they can talk to me. i was wondering if it might be due to the ip addresses used on the internal net.? i believe freetel uses some real high ports like 30000 or so. ---------------------------------- E-Mail: root@vetex.dhis.org or kf7nn@kf7nn.com Date: 18-Aug-99 Time: 11:55:20 She is not refined. She is not unrefined. She keeps a parrot. -- Mark Twain This message was sent using FreeBSD Unix. ---------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 12:18:24 1999 Delivered-To: freebsd-questions@freebsd.org Received: from diablo.peritek.com (diablo.peritek.com [198.151.249.9]) by hub.freebsd.org (Postfix) with ESMTP id A520715930 for ; Wed, 18 Aug 1999 12:17:47 -0700 (PDT) (envelope-from ibjoe@home.com) Received: from neptune (neptune [198.151.249.84]) by diablo.peritek.com (8.8.7/8.8.7) with SMTP id MAA02771 sender ibjoe@home.com for ; Wed, 18 Aug 1999 12:17:12 -0700 (PDT) X-Envelope-From: ibjoe@home.com X-Envelope-To: Message-Id: <2.2.32.19990818191713.009624cc@netmail.home.com> X-Sender: ibjoe@netmail.home.com X-Mailer: Windows Eudora Pro Version 2.2 (32) Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Date: Wed, 18 Aug 1999 12:17:13 -0700 To: questions@FreeBSD.ORG From: Joe Subject: sio boot / console configuration? Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, I want to use a VT100 emulator program on my PC serial port as the console for my FreeBSD machine. And I would like to also have the sco (vga/keyboard) terminal available too. Best would be autodetect, if the keyboard is plugged in it would use the sco terminal, but if the keyboard is not plugged in it would use the sio terminal. I think that I can do this from the boot prompt with the -P argument. But I want to make that the default behavior. And when the keyboard is not plugged in I would like to start output to sio terminal at the lowest possible boot level. Dual (sco and sio) would be OK too. Does anyone have any hints on how to do this? So far all I can do is to use the sio to login after bootup. I had to change this line in /etc/ttys ttyd0 "/usr/libexec/getty std.9600" vt100 on secure Thanks, Joe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 12:18:27 1999 Delivered-To: freebsd-questions@freebsd.org Received: from jasper.heartland.ab.ca (jasper.heartland.ab.ca [207.107.228.1]) by hub.freebsd.org (Postfix) with ESMTP id 24B0915961 for ; Wed, 18 Aug 1999 12:18:00 -0700 (PDT) (envelope-from dkwiebe@heartland.ab.ca) Received: from freebsd.hagens.ab.ca (ppp6.heartland.ab.ca [207.107.228.134]) by jasper.heartland.ab.ca (8.9.0/8.8.5) with ESMTP id NAA00796; Wed, 18 Aug 1999 13:10:11 -0600 (MDT) Received: from heartland.ab.ca (dkwiebe.hagens.ab.ca [10.0.1.3]) by freebsd.hagens.ab.ca (8.9.2/8.9.2) with ESMTP id MAA06873; Wed, 18 Aug 1999 12:28:01 -0600 (MDT) (envelope-from dkwiebe@heartland.ab.ca) Message-ID: <37BB07C9.1784EF06@heartland.ab.ca> Date: Wed, 18 Aug 1999 13:21:45 -0600 From: Darren WIebe X-Mailer: Mozilla 4.61 [en] (X11; U; FreeBSD 3.2-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: Edgard Capdevielle Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Parallel ZIP Drive ! References: <000301bee9a3$1f87ff20$2b78c13f@edgard.pacbell.net> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Edgard Capdevielle wrote: > Hi there, > > I finally got my machine to work with FreeBSD and fixed-IP DSL !!! > > Can anyone explain how to configure an external ZIP drive? I checked the > website and found a document, but it assumes that I know what I am doing. I > need something like "Configuring ZIP Drives for Dummies" (i.e. very simple > steps that all newbies can follow). Below is the appropriate section from my kernel configuration file. This example presumes that the zip drive is on the first parallel port. Yours should have all of the following lines in it. If you have questions on how to rebuild your kernel you can look in the handbook. If you have any other questions feel free to contact me. controller scbus0 device da0 device sa0 device ppc0 at isa? port? net irq 7 controller ppbus0 controller vpo0 at ppbus? device nlpt0 at ppbus? device plip0 at ppbus? device ppi0 at ppbus? Darren Wiebe dkwiebe@hagenhomes.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 12:23:38 1999 Delivered-To: freebsd-questions@freebsd.org Received: from saturn.math.uaa.alaska.edu (saturn.math.uaa.alaska.edu [137.229.134.205]) by hub.freebsd.org (Postfix) with ESMTP id 4F0D014CAA for ; Wed, 18 Aug 1999 12:23:31 -0700 (PDT) (envelope-from fred@saturn.math.uaa.alaska.edu) Received: by saturn.math.uaa.alaska.edu id LAA0000016814; Wed, 18 Aug 1999 11:21:52 -0800 (AKDT) Date: Wed, 18 Aug 1999 11:21:52 -0800 (AKDT) From: "Frederick J Polsky v1.0" To: Mark Ovens Cc: Darren WIebe , freebsd-questions@freebsd.org Subject: Re: Good c newbie documentation In-Reply-To: <19990818185540.A299@marder-1> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG While K&R is the canonical C reference for newbies something along the lines of _Practical C Programming_ from O'Reilly is probably more apropos. Would still recommend K&R as a reference though. -- Frederick J. Polsky v1.0 Chair, UAA ACM Student Chapter On Wed, 18 Aug 1999, Mark Ovens wrote: > On Tue, Aug 17, 1999 at 03:41:28PM -0600, Darren WIebe wrote: > > Hello: > > > > I would like to learn to use the c and c++ programming languages. I > > have looked around on the net but have not been able to find much. I > > would appreciate it if you would give me any recommendations that you > > have for good books and other info for newbies to c. > > > > The C programming Language by Kernighan & Ritchie (the people who > wrote C). ISBN 0-13-110362-8, Prentice-Hall To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 12:28: 1 1999 Delivered-To: freebsd-questions@freebsd.org Received: from fingers.shocking.com (shocking.com [216.111.111.11]) by hub.freebsd.org (Postfix) with ESMTP id 0A7B114E92 for ; Wed, 18 Aug 1999 12:27:55 -0700 (PDT) (envelope-from doemill@shocking.com) Received: from shocking.com (doemill@shocking.com [216.111.111.11]) by fingers.shocking.com (8.9.0/8.9.0) with ESMTP id MAA22297; Wed, 18 Aug 1999 12:24:39 -0700 (PDT) Date: Wed, 18 Aug 1999 12:24:39 -0700 (PDT) From: Doug To: Darren WIebe Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Good c newbie documentation In-Reply-To: <37BB01FD.A954BD36@hagenhomes.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG The best advice I can give you is to experiment as much as possible, if you see an example in a book or a page, try it out. Make a directory, and when you learn something, document whatever it is, and an example of it, eg, getenv() you just learned how to use, document it in getenv.c with an example, so if you forget something at a later date, you can go back and refrence it. Ive been doing this for a few months, and it helps. On Wed, 18 Aug 1999, Darren WIebe wrote: > Thanks everybody for the links and info. I will see if I can figure "c" out. > > Thanks Again > > Darren Wiebe > dwiebe@hagenhomes.com > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > | Doug | unix9.org admin | shocking.com/~doemill/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 12:29:48 1999 Delivered-To: freebsd-questions@freebsd.org Received: from ns.clientlogic.com (ns.clientlogic.com [207.51.66.75]) by hub.freebsd.org (Postfix) with ESMTP id 278DB15AB1 for ; Wed, 18 Aug 1999 12:29:44 -0700 (PDT) (envelope-from ChrisMic@clientlogic.com) Received: by site0s1 with Internet Mail Service (5.5.2448.0) id ; Wed, 18 Aug 1999 15:30:20 -0400 Message-ID: <6C37EE640B78D2118D2F00A0C90FCB4401105BA6@site2s1> From: Christopher Michaels To: "'Bill A. K.'" , FreeBSD Questions Subject: RE: roots shell Date: Wed, 18 Aug 1999 15:32:52 -0400 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2448.0) Content-Type: text/plain Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Bill, Many people have given many solutions. There is one thing, that all of the commands given do, that no one has mentioned to you. After you edit the master.passwd file you need to rebuild the database for it, by running the pwd_mkdb. If you don't run pwd_mkdb the system ignores any changes that you've made in master.passwd. The easier solution is to use use "vipw" which opens up the master.passwd file with vi (or whatever editor EDITOR is set to). Also, using the chfn, chpass, & chsh all also run the pwd_mkdb command after making your edits. Hopes this helps. -Chris > -----Original Message----- > From: Bill A. K. [SMTP:billieakay@yahoo.com] > Sent: Wednesday, August 18, 1999 9:40 AM > To: FreeBSD Questions > Subject: roots shell > > hi, > > is there any way to change root's default shell from csh to bash. i'm > doing > a lot of work on my system and i'm sick of having to start bash at every > shell i open. any help would be greatly appreciated. > > i've already changed the path to my shell in both /etc/passwd and > /etc/master.passwd but it didn't change it. > > and i would also like to know how to customize my bash prompt with my > current directory for example. > > thanks > > Bill > billieakay@yahoo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 12:36: 4 1999 Delivered-To: freebsd-questions@freebsd.org Received: from nisser.com (n2000039.telekabel.chello.nl [212.187.0.39]) by hub.freebsd.org (Postfix) with ESMTP id 19E20158E3; Wed, 18 Aug 1999 12:35:54 -0700 (PDT) (envelope-from roelof@nisser.com) Received: from nisser.com (roelof [10.0.0.2]) by nisser.com (8.9.2/8.9.2) with ESMTP id VAA14760; Wed, 18 Aug 1999 21:35:35 +0200 (CEST) (envelope-from roelof@nisser.com) Message-ID: <37BB0AEE.ED7B311F@nisser.com> Date: Wed, 18 Aug 1999 21:35:10 +0200 From: Roelof Osinga Organization: eboa - engineering buro Office Automation X-Mailer: Mozilla 4.6 [en] (WinNT; I) X-Accept-Language: en MIME-Version: 1.0 To: k4n _ Cc: freebsd-doc@FreeBSD.ORG, freebsd-questions@FreeBSD.ORG Subject: Re: FreeBSD webdesign References: <19990817233734.80790.qmail@hotmail.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG k4n _ wrote: > > I thought maybe you would be interested in a free website redesign(or > something) so I downloaded the HTML for your site, and made a few changes. I > made the background black, redid the FreeBSD logo slightly, and darkened the > logos at the bottom to match the color scheme. If you are interested I can > send you a copy, I think it looks pretty cool. See you later Why do people always assume that dark is cool. The purpose of a website is to convey information. That means good readability, not looks. Whereas beauty lies in the eye of the beholder, readability assuredly does not. Barring the by now ancient amber CRT phosphor colors most research shows that black on white (note the order) is best readable. The FreeBSD site is emminently readable, whereas the old freshmeat site was not. In fact with my previous monitor's settings I couldn't even read that site without upping the brightness (I'm a programmer, for text high contrast is needed contrary to the high brightness for graphics work). Clearly I was not alone in that they changed to a much brighter color scheme. As well as black"er" on white lettering. > (i just realized how dumb this letter sounds, but hey its 8:30 in the > morning what do you expect) It's always 8.30 in the morning someplace. B.t.w. you send it to general lists, maybe it would be better to send it directly to the webmaster. Roelof -- Home is where the (@) http://eboa.com/ is. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 13:12:38 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail.chromatix.com (mail.chromatix.com [207.97.115.130]) by hub.freebsd.org (Postfix) with ESMTP id 8F01D156F3 for ; Wed, 18 Aug 1999 13:12:26 -0700 (PDT) (envelope-from nick@chromatix.com) Received: from dogwood (dogwood.chromatix.com [207.97.115.140]) by mail.chromatix.com (8.8.8/8.8.8) with SMTP id QAA02219 for ; Wed, 18 Aug 1999 16:08:40 -0400 (EDT) (envelope-from nick@chromatix.com) Message-ID: <000101bee9b5$f01bf8f0$8c7361cf@dogwood.chromatix.com> From: "Nick LoPresti" To: Subject: Sendmail acting funny now? Date: Wed, 18 Aug 1999 16:12:03 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 4.72.3110.5 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3110.3 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Excuse me if this or a similar question has already been answered. A quick search of the archives turned up nothing. I am currently running FreeBSD 3.2. Some of my users to my sendmail(smtp) server from the internet to send mail from their clients. Just recently it stopped working... All messages sent(except those sent to the local machine) are rejected do to the following error: --- Relaying Denied --- I did not set up any relaying? Did something change? A specific rule I should look at? Any help would be wonderful. Thanks guys! ================================================ Nick nick@chromatix.com Web Page: http://www.lopresti.dhs.org/users/nick To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 13:15: 8 1999 Delivered-To: freebsd-questions@freebsd.org Received: from gateway.ciminot.com (gateway.ciminot.com [208.149.231.26]) by hub.freebsd.org (Postfix) with ESMTP id 8DEC614F01 for ; Wed, 18 Aug 1999 13:14:57 -0700 (PDT) (envelope-from dave@ciminot.com) Received: from dave ([192.168.200.15]) by gateway.ciminot.com (8.9.1/8.9.1) with SMTP id PAA26003 for ; Wed, 18 Aug 1999 15:12:11 -0500 (CDT) (envelope-from dave@ciminot.com) From: "David B. Aas" To: Subject: Where is Apache? Date: Wed, 18 Aug 1999 15:13:55 -0500 Message-ID: <000701bee9b6$346f9480$0fc8a8c0@dave.ciminot.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.3155.0 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I am attempting to install Apache on FBSD3.2. I installed the port from the FTP site, and set up the confguration file. My trusty "The Complete FreeBSD" says to run Apache by typing /usr/local/www/server/httpd at the command prompt. It does not work. I did a FIND for "httpd" and it is nowhere on my system. Did the name change? I searched the logical places, and do not see it. Thanks for any help. Dave Aas dave@ciminot.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 13:20:51 1999 Delivered-To: freebsd-questions@freebsd.org Received: from console.prisa.com (gatekeeper.prisa.com [204.94.67.66]) by hub.freebsd.org (Postfix) with SMTP id 3C86A15C59; Wed, 18 Aug 1999 13:20:30 -0700 (PDT) (envelope-from nschein@prisa.com) Received: from nschein (nschein.prisa.com [172.16.129.137]) by console.prisa.com (8.6.12/8.6.12) with SMTP id NAA17898; Wed, 18 Aug 1999 13:51:48 -0700 From: "Nathaniel Schein" To: "Owner-Freebsd-Questions" Cc: Subject: yp_mkdb Date: Wed, 18 Aug 1999 13:23:34 -0700 Message-ID: <000901bee9b7$8bc47e70$898110ac@nschein.prisa.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 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3110.3 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I am in the process of upgrading a NIS master using version 2.1.0 to version 3.2. The 'Makefile' has been customized to include automount maps for our IRIX machines as was the 'Makefile' in the old NIS Master. The problem is that for some reason the program 'yp_mkdb' in 3.2 is much more picky. It does not tolerate lines as such: nschein -rw,intr nister:/usr/home:& It complains when it encounters the '-' if removed it works fine. Also it has problems with the '+' and absence of a whitespace following the first ASCI string in the following line: +auto.home What has changed in yp_mkdb? Is there a way to escape certain symbols? I have already tried \ '' "". Or is there another way to make the database file? Nathaniel Schein To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 13:26:44 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail2.gmx.net (mail2.gmx.net [194.221.183.62]) by hub.freebsd.org (Postfix) with SMTP id AEE851594E for ; Wed, 18 Aug 1999 13:26:35 -0700 (PDT) (envelope-from Stormtroops@gmx.de) Received: (qmail 23150 invoked by uid 0); 18 Aug 1999 20:27:09 -0000 Received: from a1as01-p28.due.tli.de (HELO gmx.de) (195.252.173.28) by mail2.gmx.net with SMTP; 18 Aug 1999 20:27:09 -0000 Message-ID: <37BB17E1.B693483A@gmx.de> Date: Wed, 18 Aug 1999 22:30:25 +0200 From: Sebastian Hartig X-Mailer: Mozilla 4.51 [de]C-CCK-MCD QXW03200 (WinNT; I) X-Accept-Language: de,en MIME-Version: 1.0 To: questions@freebsd.org Subject: Ethernet Card Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello, I've installed different Ethernet Card on a 486 Machine with an ISA Board. When i try to access the installed Card i always get the message : /kernel Device Timeout ifconfig -a show me the Card correctly, but when i try ifconfig ed0 192.168.0.180 i get the Device Timeout again I really dont know what to do . SH To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 13:27:28 1999 Delivered-To: freebsd-questions@freebsd.org Received: from scientia.demon.co.uk (scientia.demon.co.uk [212.228.14.13]) by hub.freebsd.org (Postfix) with ESMTP id 1685415A1A for ; Wed, 18 Aug 1999 13:27:09 -0700 (PDT) (envelope-from ben@scientia.demon.co.uk) Received: from lithium.scientia.demon.co.uk ([192.168.0.3] ident=exim) by scientia.demon.co.uk with esmtp (Exim 3.024 #3) id 11H7cx-000Bpw-00; Wed, 18 Aug 1999 16:27:47 +0100 Received: (from ben) by lithium.scientia.demon.co.uk (Exim 3.024 #3) id 11H7cw-0001kj-00; Wed, 18 Aug 1999 16:27:46 +0100 Date: Wed, 18 Aug 1999 16:27:46 +0100 From: Ben Smithurst To: "Bill A. K." Cc: FreeBSD Questions Subject: Re: roots shell Message-ID: <19990818162745.A6699@lithium.scientia.demon.co.uk> References: <002b01bee97f$2a3fdf60$01010101@bopper> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.6i In-Reply-To: <002b01bee97f$2a3fdf60$01010101@bopper> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Bill A. K. wrote: > is there any way to change root's default shell from csh to bash. i'm doing > a lot of work on my system and i'm sick of having to start bash at every > shell i open. any help would be greatly appreciated. And why are you doing a lot of work as root? I just log in under my normal account, which uses zsh, and use `su -m' when I need root, which keeps me under zsh when working as root, even though root's shell is /bin/sh. I think this is the best way of doing it, personally. > i've already changed the path to my shell in both /etc/passwd and > /etc/master.passwd but it didn't change it. Use `vipw'. > and i would also like to know how to customize my bash prompt with my > current directory for example. Try something like PS1='\u@\h:\w\$ '. I've switched to zsh now though, but I think that is what I used in bash. Read bash's manpage, it explains all. -- Ben Smithurst | PGP: 0x99392F7D ben@scientia.demon.co.uk | key available from keyservers and | ben+pgp@scientia.demon.co.uk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 13:31:36 1999 Delivered-To: freebsd-questions@freebsd.org Received: from smtp6.mindspring.com (smtp6.mindspring.com [207.69.200.74]) by hub.freebsd.org (Postfix) with ESMTP id 36F0515C9F for ; Wed, 18 Aug 1999 13:31:25 -0700 (PDT) (envelope-from stuyman@confusion.net) Received: from confusion.net (user-2ivea89.dialup.mindspring.com [165.247.41.9]) by smtp6.mindspring.com (8.8.5/8.8.5) with ESMTP id PAA07778; Wed, 18 Aug 1999 15:36:36 -0400 (EDT) Message-ID: <37BB0B3C.6615530E@confusion.net> Date: Wed, 18 Aug 1999 15:36:28 -0400 From: Laurence Berland Organization: B.R.A.T.T. X-Mailer: Mozilla 4.5 [en] (Win95; U) X-Accept-Language: en MIME-Version: 1.0 To: "Frederick J Polsky v1.0" Cc: Mark Ovens , Darren WIebe , freebsd-questions@FreeBSD.ORG Subject: Re: Good c newbie documentation References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I've got an old edition of both K&R and Practical C that id be willing to give up if you'd cover the cost of shipping. (When I'm out of school and not living on barebones money I'll start paying to ship this sort of thing myself, but those books would cost me lunch for a day or two :) Just let me know if you're interested. "Frederick J Polsky v1.0" wrote: > > While K&R is the canonical C reference for newbies something along the > lines of _Practical C Programming_ from O'Reilly is probably more apropos. > Would still recommend K&R as a reference though. > > -- > Frederick J. Polsky v1.0 > Chair, UAA ACM Student Chapter > > On Wed, 18 Aug 1999, Mark Ovens wrote: > > > On Tue, Aug 17, 1999 at 03:41:28PM -0600, Darren WIebe wrote: > > > Hello: > > > > > > I would like to learn to use the c and c++ programming languages. I > > > have looked around on the net but have not been able to find much. I > > > would appreciate it if you would give me any recommendations that you > > > have for good books and other info for newbies to c. > > > > > > > The C programming Language by Kernighan & Ritchie (the people who > > wrote C). ISBN 0-13-110362-8, Prentice-Hall > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- Laurence Berland, Stuyvesant HS Debate <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><> Windows 98: n. useless extension to a minor patch release for 32-bit extensions and a graphical shell for a 16-bit patch to an 8-bit operating system originally coded for a 4-bit microprocessor, written by a 2-bit company that can't stand for 1 bit of competition. http://stuy.debate.net icq #7434346 aol imer E1101 The above email Copyright (C) 1999 Laurence Berland All rights reserved To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 13:35:42 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail.chromatix.com (mail.chromatix.com [207.97.115.130]) by hub.freebsd.org (Postfix) with ESMTP id C848C15A55 for ; Wed, 18 Aug 1999 13:35:36 -0700 (PDT) (envelope-from nick@chromatix.com) Received: from dogwood (dogwood.chromatix.com [207.97.115.140]) by mail.chromatix.com (8.8.8/8.8.8) with SMTP id QAA02327; Wed, 18 Aug 1999 16:32:18 -0400 (EDT) (envelope-from nick@chromatix.com) Message-ID: <000701bee9b9$3dbcfd90$8c7361cf@dogwood.chromatix.com> From: "Nick LoPresti" To: "David B. Aas" Cc: Subject: Re: Where is Apache? Date: Wed, 18 Aug 1999 16:35:42 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 4.72.3110.5 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3110.3 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG /usr/local/sbin/httpd I think... Also, the is a control script at /usr/local/sbin/apachectl You might want to look at that. Also, your computer SHOULD automatically start apache on bootup because of the script located in /usr/local/etc/rc.d Look!!! I got to answer a question. OK, OK, I feel better now. ================================================ Nick nick@chromatix.com Web Page: http://www.lopresti.dhs.org/users/nick -----Original Message----- From: David B. Aas To: questions@FreeBSD.ORG Date: Wednesday, August 18, 1999 4:13 PM Subject: Where is Apache? > >I am attempting to install Apache on FBSD3.2. I installed the port from the >FTP site, and set up the confguration file. My trusty "The Complete FreeBSD" >says to run Apache by typing > >/usr/local/www/server/httpd > >at the command prompt. It does not work. I did a FIND for "httpd" and it is >nowhere on my system. > >Did the name change? I searched the logical places, and do not see it. > >Thanks for any help. > >Dave Aas >dave@ciminot.com > > > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 13:47:57 1999 Delivered-To: freebsd-questions@freebsd.org Received: from pima.gate.net (pima.gate.net [198.206.134.30]) by hub.freebsd.org (Postfix) with ESMTP id 7D9EC14C3C for ; Wed, 18 Aug 1999 13:46:44 -0700 (PDT) (envelope-from wjm@gate.net) Received: from tiwa.gate.net (wjm@tiwa.gate.net [199.227.0.141]) by pima.gate.net (8.8.6/8.6.12) with ESMTP id QAA265408; Wed, 18 Aug 1999 16:44:18 -0400 Received: from localhost (wjm@localhost) by tiwa.gate.net (8.8.6/8.7.3) with ESMTP id QAA82290; Wed, 18 Aug 1999 16:46:06 -0400 X-Authentication-Warning: tiwa.gate.net: wjm owned process doing -bs Date: Wed, 18 Aug 1999 16:46:06 -0400 (EDT) From: William Melanson To: "SuSE Linux 6.1 user" Cc: freebsd-questions@FreeBSD.ORG Subject: Re: How do i setup network cards in freebsd In-Reply-To: <37BAEEC8.A62C7412@mbox5.singnet.com.sg> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, 19 Aug 1999, SuSE Linux 6.1 user wrote: % % Dear FreeBSD, % % I would like to know.. how do i setup my network card in Freebsd, % operating system. % I need this FAQ urgently.... i hope you can proccess my email asap. % Thank you % % Kelvin % % http://www.freebsd.org/tutorials/ppp/ppp9.html#9 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 13:48:58 1999 Delivered-To: freebsd-questions@freebsd.org Received: from gateway.ciminot.com (gateway.ciminot.com [208.149.231.26]) by hub.freebsd.org (Postfix) with ESMTP id 7D94E159CD for ; Wed, 18 Aug 1999 13:48:46 -0700 (PDT) (envelope-from dave@ciminot.com) Received: from dave ([192.168.200.15]) by gateway.ciminot.com (8.9.1/8.9.1) with SMTP id PAA26159; Wed, 18 Aug 1999 15:47:29 -0500 (CDT) (envelope-from dave@ciminot.com) From: "David B. Aas" To: "'Nick LoPresti'" Cc: Subject: RE: Where is Apache? Date: Wed, 18 Aug 1999 15:49:16 -0500 Message-ID: <000901bee9bb$23892820$0fc8a8c0@dave.ciminot.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 In-Reply-To: <000701bee9b9$3dbcfd90$8c7361cf@dogwood.chromatix.com> Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3155.0 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I got it working, but I am confused. Shouldn't httpd show up as a process when I do a "ps -aux"? I don't see it on my process list! Thanks for the help! Dave Dave@ciminot.com > -----Original Message----- > From: Nick LoPresti [mailto:nick@chromatix.com] > Sent: Wednesday, August 18, 1999 3:36 PM > To: David B. Aas > Cc: freebsd-questions@freebsd.org > Subject: Re: Where is Apache? > > > /usr/local/sbin/httpd > > I think... > Also, the is a control script at /usr/local/sbin/apachectl > You might want to look at that. Also, your computer SHOULD > automatically > start apache on bootup because of the script located in > /usr/local/etc/rc.d > > Look!!! I got to answer a question. OK, OK, I feel better now. > > ================================================ > > Nick > nick@chromatix.com > Web Page: http://www.lopresti.dhs.org/users/nick > -----Original Message----- > From: David B. Aas > To: questions@FreeBSD.ORG > Date: Wednesday, August 18, 1999 4:13 PM > Subject: Where is Apache? > > > > > >I am attempting to install Apache on FBSD3.2. I installed > the port from the > >FTP site, and set up the confguration file. My trusty "The Complete > FreeBSD" > >says to run Apache by typing > > > >/usr/local/www/server/httpd > > > >at the command prompt. It does not work. I did a FIND for > "httpd" and it is > >nowhere on my system. > > > >Did the name change? I searched the logical places, and do > not see it. > > > >Thanks for any help. > > > >Dave Aas > >dave@ciminot.com > > > > > > > >To Unsubscribe: send mail to majordomo@FreeBSD.org > >with "unsubscribe freebsd-questions" in the body of the message > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 13:53:45 1999 Delivered-To: freebsd-questions@freebsd.org Received: from tankgrrl.bridget.mindriot.net (D5960.DIALUP.CORNELL.EDU [128.253.157.60]) by hub.freebsd.org (Postfix) with ESMTP id 0752014F26 for ; Wed, 18 Aug 1999 13:53:38 -0700 (PDT) (envelope-from cjc26@cornell.edu) Received: from localhost (cjc26@localhost) by tankgrrl.bridget.mindriot.net (8.9.3/8.9.3) with ESMTP id MAA00611; Wed, 18 Aug 1999 12:55:16 -0400 (EDT) (envelope-from cjc26@cornell.edu) X-Authentication-Warning: tankgrrl.bridget.mindriot.net: cjc26 owned process doing -bs Date: Wed, 18 Aug 1999 12:55:16 -0400 (EDT) From: a disembodied voice emerging from the chaos of reality X-Sender: cjc26@tankgrrl To: Matthew Hunt Cc: "Bill A. K." , FreeBSD Questions Subject: Re: roots shell In-Reply-To: <19990818103820.A29062@wopr.caltech.edu> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, 18 Aug 1999, Matthew Hunt wrote: | If something horrible happens and /usr can't be mounted, you're not | likely to make it to multi-user mode. When you boot in single-user | mode, you are offered your choice of shell, defaulting to /bin/sh, so | this is a non-issue on FreeBSD. Oops, you're right..I was thinking of Slowaris. | > There should be a user called `toor' which uses bash as its shell; log | > in as that instead. | | As shipped, "toor" has a shell of /bin/sh, as FreeBSD doesn't have bash | in the base system. Sh, bash, what is difference? ;) -- cliff crawford http://www.people.cornell.edu/pages/cjc26/ There are more stars in the sky than there are -><- grains of sand on all the beaches of the world. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 13:58:11 1999 Delivered-To: freebsd-questions@freebsd.org Received: from smtppop1.gte.net (pop1.gte.net [207.115.153.20]) by hub.freebsd.org (Postfix) with ESMTP id AD88914D42 for ; Wed, 18 Aug 1999 13:58:01 -0700 (PDT) (envelope-from phbrown@gte.net) Received: from gte.net (1Cust145.tnt21.sfo3.da.uu.net [208.254.227.145]) by smtppop1.gte.net with ESMTP for ; id PAA2702570 Wed, 18 Aug 1999 15:56:49 -0500 (CDT) Message-ID: <37BB1DFB.87FBAFCD@gte.net> Date: Wed, 18 Aug 1999 13:56:27 -0700 From: Parker Brown X-Mailer: Mozilla 4.06 [en] (Win98; U) MIME-Version: 1.0 To: Tech Support Subject: ppp: Can No Longer Complete Login To Internet Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is new, and I can't recall any changes I've made to cause this. In ppp, after the adtd9999999 I get the usual "Connect 49333......" and the the Login and Password prompts. As usual this gives me the "Entering PPP...." statement, an IP address, and the the usual "MTU 1524." All this is normal, but usually at this point I *always* have to press enter (again) before the process is completed and the ppp prompt changes to PPP. But now, it just hangs. No matter how many times I press enter, it doesn't respond. Getting out of term (by entering ~.) just hangs at that point, and I have to completely shut ppp down before trying - unsuccessfully today - again. Can anyone help? PB To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 13:59:14 1999 Delivered-To: freebsd-questions@freebsd.org Received: from ns.clientlogic.com (ns.clientlogic.com [207.51.66.75]) by hub.freebsd.org (Postfix) with ESMTP id 4F33C14D42 for ; Wed, 18 Aug 1999 13:59:08 -0700 (PDT) (envelope-from ChrisMic@clientlogic.com) Received: by site0s1 with Internet Mail Service (5.5.2448.0) id ; Wed, 18 Aug 1999 16:57:41 -0400 Message-ID: <6C37EE640B78D2118D2F00A0C90FCB4401105BA7@site2s1> From: Christopher Michaels To: 'Kaiwan Hongladaromp' Cc: "FreeBSD Questions (E-mail)" Subject: RE: squid doc on fixing FreeBSD.. is this necessary? Date: Wed, 18 Aug 1999 17:00:14 -0400 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2448.0) Content-Type: text/plain Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I can't answer those questions outright, I would hope so going from 2.2.2 to 3.2, but what I can do is check the dnsserver latency when I have access to that machine later tonight. Unfortunately with #1 they don't give any further information on what bugs are in the TCP extensions. I don't think #3 is a bug, but hopefully someone can confirm that. -Chris > -----Original Message----- > From: Kaiwan Hongladaromp [SMTP:kaiwan@inet.co.th] > Sent: Wednesday, August 18, 1999 4:00 AM > To: stable@FreeBSD.ORG > Subject: squid doc on fixing FreeBSD.. is this neccessary? > > > Hi.. > > I was scanning Squid's document and it mentions some things need to > be done on FreeBSD's kernel and env. you can see the doc at URL: > http://squid.nlanr.net/Squid/FAQ/FAQ-14.html#ss14.2 > > in summary it has 3 points > 1. bug in T/TCP (TCP extenstion) > 2. dnsserver performance problem that can be fixed by the supplied patched > or increase MSIZE. > 3. NIS > > can anyone comfirm if this is all fixed? I'm not using FreeBSD for web > proxy right now but most of our core servers are running FreeBSD. I'd just > want to make sure that they are all performing at best. > > Regards, > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 13:59:48 1999 Delivered-To: freebsd-questions@freebsd.org Received: from nick.cendant.com (nick.cendant.com [198.245.183.210]) by hub.freebsd.org (Postfix) with ESMTP id 951C1151E1 for ; Wed, 18 Aug 1999 13:59:38 -0700 (PDT) (envelope-from rra@cuc.com) Received: from mailhub.cuc.com (stratford.cuc.com [206.28.153.114]) by nick.cendant.com (8.8.5/8.9.2+) with ESMTP id QAA09089; Wed, 18 Aug 1999 16:58:28 -0400 (EDT) Date: Wed, 18 Aug 1999 16:56:15 -0400 (EDT) From: Rick Aliwalas X-Sender: rra@pikachu.oakview.cuc.com To: "David B. Aas" Cc: "'Nick LoPresti'" , questions@FreeBSD.ORG Subject: RE: Where is Apache? In-Reply-To: <000901bee9bb$23892820$0fc8a8c0@dave.ciminot.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG try ps -auxww On Wed, 18 Aug 1999, David B. Aas wrote: > I got it working, but I am confused. Shouldn't httpd show up as a process > when I do a "ps -aux"? I don't see it on my process list! > > Thanks for the help! > > Dave > Dave@ciminot.com > > > -----Original Message----- > > From: Nick LoPresti [mailto:nick@chromatix.com] > > Sent: Wednesday, August 18, 1999 3:36 PM > > To: David B. Aas > > Cc: freebsd-questions@freebsd.org > > Subject: Re: Where is Apache? > > > > > > /usr/local/sbin/httpd > > > > I think... > > Also, the is a control script at /usr/local/sbin/apachectl > > You might want to look at that. Also, your computer SHOULD > > automatically > > start apache on bootup because of the script located in > > /usr/local/etc/rc.d > > > > Look!!! I got to answer a question. OK, OK, I feel better now. > > > > ================================================ > > > > Nick > > nick@chromatix.com > > Web Page: http://www.lopresti.dhs.org/users/nick > > -----Original Message----- > > From: David B. Aas > > To: questions@FreeBSD.ORG > > Date: Wednesday, August 18, 1999 4:13 PM > > Subject: Where is Apache? > > > > > > > > > >I am attempting to install Apache on FBSD3.2. I installed > > the port from the > > >FTP site, and set up the confguration file. My trusty "The Complete > > FreeBSD" > > >says to run Apache by typing > > > > > >/usr/local/www/server/httpd > > > > > >at the command prompt. It does not work. I did a FIND for > > "httpd" and it is > > >nowhere on my system. > > > > > >Did the name change? I searched the logical places, and do > > not see it. > > > > > >Thanks for any help. > > > > > >Dave Aas > > >dave@ciminot.com > > > > > > > > > > > >To Unsubscribe: send mail to majordomo@FreeBSD.org > > >with "unsubscribe freebsd-questions" in the body of the message > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 14: 0:45 1999 Delivered-To: freebsd-questions@freebsd.org Received: from jasper.heartland.ab.ca (jasper.heartland.ab.ca [207.107.228.1]) by hub.freebsd.org (Postfix) with ESMTP id 8B6A514D42 for ; Wed, 18 Aug 1999 14:00:35 -0700 (PDT) (envelope-from dkwiebe@heartland.ab.ca) Received: from freebsd.hagens.ab.ca (ppp4.heartland.ab.ca [207.107.228.132]) by jasper.heartland.ab.ca (8.9.0/8.8.5) with ESMTP id OAA02487; Wed, 18 Aug 1999 14:52:46 -0600 (MDT) Received: from heartland.ab.ca (dkwiebe.hagens.ab.ca [10.0.1.3]) by freebsd.hagens.ab.ca (8.9.2/8.9.2) with ESMTP id OAA07290; Wed, 18 Aug 1999 14:10:37 -0600 (MDT) (envelope-from dkwiebe@heartland.ab.ca) Message-ID: <37BB1FD5.B448C927@heartland.ab.ca> Date: Wed, 18 Aug 1999 15:04:21 -0600 From: Darren WIebe Reply-To: dkwiebe@hagenhomes.com X-Mailer: Mozilla 4.61 [en] (X11; U; FreeBSD 3.2-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: Sebastian Hartig Cc: questions@FreeBSD.ORG Subject: Re: Ethernet Card References: <37BB17E1.B693483A@gmx.de> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello: I suppose the cables are all hooked up properly?? Last time that happened to me, it was when my cables where not hooked up. Darren Wiebe dkwiebe@hagenhomes.com > When i try to access the installed Card i always get the message : > /kernel Device Timeout > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 14: 3:30 1999 Delivered-To: freebsd-questions@freebsd.org Received: from ds9.sci.fi (ds9.sci.fi [195.74.0.54]) by hub.freebsd.org (Postfix) with ESMTP id A335115A13 for ; Wed, 18 Aug 1999 14:03:19 -0700 (PDT) (envelope-from yurtesen@ispro.net.tr) Received: from ispro.net.tr (dyn-0-059.tku.netti.fi [195.16.223.60]) by ds9.sci.fi (8.9.1/8.9.1) with ESMTP id AAA11468; Thu, 19 Aug 1999 00:03:00 +0300 (EET DST) Message-ID: <37BB1F37.EBE94366@ispro.net.tr> Date: Thu, 19 Aug 1999 00:01:43 +0300 From: Evren Yurtesen X-Mailer: Mozilla 4.51 [en] (Win98; I) X-Accept-Language: en MIME-Version: 1.0 To: Kent Stewart Cc: questions@FreeBSD.ORG Subject: "shutdown -h now" risk? References: <99081723302100.00453@Tomer.Home.Org> <37B9D09B.3224B635@3-cities.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I did not know that "shutdown -h now" is dangerous, what is the problem with it? Kent Stewart wrote: > > Tomer Weller wrote: > > > > Does FreeBSD do a hard reset or a soft reset ? (sorry for the newbie question) > > If it soft resets, how can I change that to hard ? > > If you do anything short of a "shutdown -h now", you are putting your > system at risk. How big a chance do you feel like taking. Is your > system important? > > Kent > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > -- > Kent Stewart > Richland, WA > > mailto:kstewart@3-cities.com > http://www.3-cities.com/~kstewart/index.html > > SETI (Search for Extraterrestrial Intelligence) @ Home > http://setiathome.ssl.berkeley.edu/ > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 14: 4:50 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail.chromatix.com (mail.chromatix.com [207.97.115.130]) by hub.freebsd.org (Postfix) with ESMTP id B0B08159B3 for ; Wed, 18 Aug 1999 14:04:35 -0700 (PDT) (envelope-from nick@chromatix.com) Received: from dogwood (dogwood.chromatix.com [207.97.115.140]) by mail.chromatix.com (8.8.8/8.8.8) with SMTP id RAA02469; Wed, 18 Aug 1999 17:01:33 -0400 (EDT) (envelope-from nick@chromatix.com) Message-ID: <001a01bee9bd$53826da0$8c7361cf@dogwood.chromatix.com> From: "Nick LoPresti" To: "David B. Aas" Cc: Subject: Re: Where is Apache? Date: Wed, 18 Aug 1999 17:04:50 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 4.72.3110.5 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3110.3 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG It should be there... Can you connect using a web browser? ================================================ Nick nick@chromatix.com Web Page: http://www.lopresti.dhs.org/users/nick -----Original Message----- From: David B. Aas To: 'Nick LoPresti' Cc: questions@FreeBSD.ORG Date: Wednesday, August 18, 1999 4:48 PM Subject: RE: Where is Apache? >I got it working, but I am confused. Shouldn't httpd show up as a process >when I do a "ps -aux"? I don't see it on my process list! > >Thanks for the help! > >Dave >Dave@ciminot.com > >> -----Original Message----- >> From: Nick LoPresti [mailto:nick@chromatix.com] >> Sent: Wednesday, August 18, 1999 3:36 PM >> To: David B. Aas >> Cc: freebsd-questions@freebsd.org >> Subject: Re: Where is Apache? >> >> >> /usr/local/sbin/httpd >> >> I think... >> Also, the is a control script at /usr/local/sbin/apachectl >> You might want to look at that. Also, your computer SHOULD >> automatically >> start apache on bootup because of the script located in >> /usr/local/etc/rc.d >> >> Look!!! I got to answer a question. OK, OK, I feel better now. >> >> ================================================ >> >> Nick >> nick@chromatix.com >> Web Page: http://www.lopresti.dhs.org/users/nick >> -----Original Message----- >> From: David B. Aas >> To: questions@FreeBSD.ORG >> Date: Wednesday, August 18, 1999 4:13 PM >> Subject: Where is Apache? >> >> >> > >> >I am attempting to install Apache on FBSD3.2. I installed >> the port from the >> >FTP site, and set up the confguration file. My trusty "The Complete >> FreeBSD" >> >says to run Apache by typing >> > >> >/usr/local/www/server/httpd >> > >> >at the command prompt. It does not work. I did a FIND for >> "httpd" and it is >> >nowhere on my system. >> > >> >Did the name change? I searched the logical places, and do >> not see it. >> > >> >Thanks for any help. >> > >> >Dave Aas >> >dave@ciminot.com >> > >> > >> > >> >To Unsubscribe: send mail to majordomo@FreeBSD.org >> >with "unsubscribe freebsd-questions" in the body of the message >> > >> >> > > > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 14: 5: 5 1999 Delivered-To: freebsd-questions@freebsd.org Received: from jasper.heartland.ab.ca (jasper.heartland.ab.ca [207.107.228.1]) by hub.freebsd.org (Postfix) with ESMTP id 0E2D51575A for ; Wed, 18 Aug 1999 14:04:57 -0700 (PDT) (envelope-from dkwiebe@heartland.ab.ca) Received: from freebsd.hagens.ab.ca (ppp4.heartland.ab.ca [207.107.228.132]) by jasper.heartland.ab.ca (8.9.0/8.8.5) with ESMTP id OAA02474; Wed, 18 Aug 1999 14:51:55 -0600 (MDT) Received: from heartland.ab.ca (dkwiebe.hagens.ab.ca [10.0.1.3]) by freebsd.hagens.ab.ca (8.9.2/8.9.2) with ESMTP id OAA07282; Wed, 18 Aug 1999 14:09:11 -0600 (MDT) (envelope-from dkwiebe@heartland.ab.ca) Message-ID: <37BB1F7F.BC441549@heartland.ab.ca> Date: Wed, 18 Aug 1999 15:02:55 -0600 From: Darren WIebe Reply-To: dkwiebe@hagenhomes.com X-Mailer: Mozilla 4.61 [en] (X11; U; FreeBSD 3.2-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: Laurence Berland Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Good c newbie documentation References: <37BB0B3C.6615530E@confusion.net> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello: Can you tell me about where on this globe you are? It may make a slight difference if you are on the other side of the world I am very interested though, and would appreciate it if you could give me a rough guess as to what the weight is. Thanks in Advance Darren Wiebe dkwiebe@hagenhomes.com Laurence Berland wrote: > I've got an old edition of both K&R and Practical C that id be willing > to give up if you'd cover the cost of shipping. (When I'm out of school > and not living on barebones money I'll start paying to ship this sort of > thing myself, but those books would cost me lunch for a day or two :) > Just let me know if you're interested. > > "Frederick J Polsky v1.0" wrote: > > > > While K&R is the canonical C reference for newbies something along the > > lines of _Practical C Programming_ from O'Reilly is probably more apropos. > > Would still recommend K&R as a reference though. > > > > -- > > Frederick J. Polsky v1.0 > > Chair, UAA ACM Student Chapter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 14:46:24 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail1.toronto.istar.net (mail1.toronto.istar.net [209.89.75.17]) by hub.freebsd.org (Postfix) with ESMTP id C3D2B14CAA for ; Wed, 18 Aug 1999 14:46:21 -0700 (PDT) (envelope-from mlefebvr@taima.on.ca) Received: from taima.on.ca ([207.134.193.34] helo=exchange.taima.on.ca) by mail1.toronto.istar.net with esmtp (Exim 2.02 #1) id 11HDXt-0005L5-00 for freebsd-questions@FreeBSD.ORG; Wed, 18 Aug 1999 17:46:57 -0400 Received: from taima.on.ca (207.134.193.6 [207.134.193.6]) by exchange.taima.on.ca with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2448.0) id RFC70THJ; Wed, 18 Aug 1999 17:46:56 -0400 Message-ID: <37BB29C9.88A1CF1C@taima.on.ca> Date: Wed, 18 Aug 1999 17:46:49 -0400 From: Martin Lefebvre X-Mailer: Mozilla 4.61 [en] (Win98; I) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: APCI ens1370 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi I am writing because I need to know if there's is any ways for my AudioPCI Ensoniq 1370 Creative Labs PCI128 Sound card under FreeBSD? -- Martin Lefebvre (mlefebvr@taima.on.ca) "I have a bad feeling about this..." Everyone in every Star Wars Movie To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 14:46:58 1999 Delivered-To: freebsd-questions@freebsd.org Received: from vax1.baker.ie (VAX1.baker.IE [194.125.50.91]) by hub.freebsd.org (Postfix) with SMTP id 6C52D14D29 for ; Wed, 18 Aug 1999 14:46:54 -0700 (PDT) (envelope-from cillian@baker.ie) Received: from baker.ie ([212.2.186.107]) by vax1.baker.ie with ESMTP; Wed, 18 Aug 1999 22:52:51 +0100 Message-ID: <37BB3785.66D8F7F4@baker.ie> Date: Wed, 18 Aug 1999 23:45:25 +0100 From: Cillian Sharkey X-Mailer: Mozilla 4.51 [en] (X11; I; FreeBSD 3.2-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: JULIAN PARDO Cc: freebsd-questions@FreeBSD.ORG Subject: Re: References: <000201bee99e$2780a740$c2cb4f0c@att.net> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG JULIAN PARDO wrote: > > Please I will Like information concerning PMG picture and their compression > capabilities. Julian Pardp > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message That's way off topic for this mailing list. Sorry. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 14:51:45 1999 Delivered-To: freebsd-questions@freebsd.org Received: from smtp2.erols.com (smtp2.erols.com [207.172.3.235]) by hub.freebsd.org (Postfix) with ESMTP id 65D4014D29 for ; Wed, 18 Aug 1999 14:51:41 -0700 (PDT) (envelope-from bruce@accumatics.com) Received: from accumatics.com (207-172-239-18.s18.as1.rkv.md.dialup.rcn.com [207.172.239.18]) by smtp2.erols.com (8.8.8/8.8.5) with ESMTP id RAA02434 for ; Wed, 18 Aug 1999 17:53:26 -0400 (EDT) Message-ID: <37BB2ADB.C6C23160@accumatics.com> Date: Wed, 18 Aug 1999 17:51:23 -0400 From: Bruce Grisham Organization: The AccuMatics Group X-Mailer: Mozilla 4.61 [en] (Win98; I) X-Accept-Language: en MIME-Version: 1.0 To: questions@freebsd.org Subject: How can I tell whether kerberos support is installed? Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I inherited a system. How can I tell whether kerberos support is installed? Thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 15: 1:57 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mamba-e.gsfc.nasa.gov (mamba-e.gsfc.nasa.gov [128.183.166.146]) by hub.freebsd.org (Postfix) with ESMTP id 22D2914F65 for ; Wed, 18 Aug 1999 15:01:47 -0700 (PDT) (envelope-from uhl@mamba-e.gsfc.nasa.gov) Received: (from uhl@localhost) by mamba-e.gsfc.nasa.gov (8.8.5/8.8.4) id RAA00910 for freebsd-questions@FreeBSD.ORG; Wed, 18 Aug 1999 17:32:17 -0400 (EDT) Date: Wed, 18 Aug 1999 17:32:17 -0400 (EDT) From: George Uhl Message-Id: <199908182132.RAA00910@mamba-e.gsfc.nasa.gov> To: freebsd-questions@FreeBSD.ORG Subject: Erratic behavior with 3Com 3C059B in FreeBSD 3.2 Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-MD5: zkTMGSUIiOcoljnKoymK5w== Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I've got a 3Com 3c509B ethernet card that is extremely slow and erratic in FreeBSD 3.2. It performed fine in 2.2.8. Any ideas? I'm not subscribing to freebsd-questions, so please send responses directly to me. TIA, George To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 15: 7:21 1999 Delivered-To: freebsd-questions@freebsd.org Received: from luke.cpl.net (luke.cpl.net [192.216.136.195]) by hub.freebsd.org (Postfix) with ESMTP id B4F5114E3F for ; Wed, 18 Aug 1999 15:07:19 -0700 (PDT) (envelope-from shawn@megadeth.org) Received: from megadeth.org (shawn.megadeth.org [192.216.87.249]) by luke.cpl.net (8.9.3/8.9.3) with ESMTP id PAA15500; Wed, 18 Aug 1999 15:08:34 -0700 (PDT) Message-ID: <37BB2E9B.F3E4C705@megadeth.org> Date: Wed, 18 Aug 1999 15:07:23 -0700 From: Shawn Ramsey X-Mailer: Mozilla 4.61 [en] (WinNT; I) X-Accept-Language: en MIME-Version: 1.0 To: Evren Yurtesen Cc: Kent Stewart , questions@FreeBSD.ORG Subject: Re: "shutdown -h now" risk? References: <99081723302100.00453@Tomer.Home.Org> <37B9D09B.3224B635@3-cities.com> <37BB1F37.EBE94366@ispro.net.tr> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > I did not know that "shutdown -h now" is dangerous, > what is the problem with it? He said anything OTHER than "shutdown -h now" is dangerous. I've always used just "reboot", and I've never lost data. This does the equivalent of a showdown -r now", at least I thought it did, and I would not call it dangerous either. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 15:32:38 1999 Delivered-To: freebsd-questions@freebsd.org Received: from ns.clientlogic.com (ns.clientlogic.com [207.51.66.75]) by hub.freebsd.org (Postfix) with ESMTP id AFCA914F1F for ; Wed, 18 Aug 1999 15:32:32 -0700 (PDT) (envelope-from ChrisMic@clientlogic.com) Received: by site0s1 with Internet Mail Service (5.5.2448.0) id ; Wed, 18 Aug 1999 18:33:06 -0400 Message-ID: <6C37EE640B78D2118D2F00A0C90FCB4401105BA8@site2s1> From: Christopher Michaels To: 'Evren Yurtesen' , Kent Stewart Cc: questions@FreeBSD.ORG Subject: RE: "shutdown -h now" risk? Date: Wed, 18 Aug 1999 18:35:38 -0400 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2448.0) Content-Type: text/plain Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Can someone explain to me why a "shutdown -r now" would be dangerous? -Chris > -----Original Message----- > From: Evren Yurtesen [SMTP:yurtesen@ispro.net.tr] > Sent: Wednesday, August 18, 1999 5:02 PM > To: Kent Stewart > Cc: questions@FreeBSD.ORG > Subject: "shutdown -h now" risk? > > I did not know that "shutdown -h now" is dangerous, > what is the problem with it? > > Kent Stewart wrote: > > > > Tomer Weller wrote: > > > > > > Does FreeBSD do a hard reset or a soft reset ? (sorry for the newbie > question) > > > If it soft resets, how can I change that to hard ? > > > > If you do anything short of a "shutdown -h now", you are putting your > > system at risk. How big a chance do you feel like taking. Is your > > system important? > > > > Kent > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > with "unsubscribe freebsd-questions" in the body of the message > > > > -- > > Kent Stewart > > Richland, WA > > > > mailto:kstewart@3-cities.com > > http://www.3-cities.com/~kstewart/index.html > > > > SETI (Search for Extraterrestrial Intelligence) @ Home > > http://setiathome.ssl.berkeley.edu/ > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 15:38:32 1999 Delivered-To: freebsd-questions@freebsd.org Received: from web214.mail.yahoo.com (web214.mail.yahoo.com [128.11.68.114]) by hub.freebsd.org (Postfix) with SMTP id B31BF14F87 for ; Wed, 18 Aug 1999 15:38:28 -0700 (PDT) (envelope-from starslab@yahoo.com) Message-ID: <19990818223241.29140.rocketmail@web214.mail.yahoo.com> Received: from [209.53.36.144] by web214.mail.yahoo.com; Wed, 18 Aug 1999 15:32:41 PDT Date: Wed, 18 Aug 1999 15:32:41 -0700 (PDT) From: Andrew Fremantle Subject: DHCP and Bootstrapping To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG First off, yes I know the two questions are totally unrelated :) Please snip accordingly when responding... 1) What/Is there a "proper" way to specify the use of DHCP for ed0 on startup in 3.2-RELEASE? I know it can be hacked in, and I have identified several spots where that could be done, but if there's a proper way i'd like to know about it. 2) My FreeBSD box is currently running on a somewhat glitchy 2GB Sumsung drive. I have a rock solid 2.5GB Quantum drive coming back from loan soon, and i'm going to be moving the system over to that. I've done this with Linux before, but never with FreeBSD. What additional concerns are there? I am aware of the need to watch /etc/fstab very closely, and make sure it stays accurate to the way the system will be the next time it boots up. The thing i am very uncertain about it bootstrapping the new drive. This was done on the Samsung at install time by sysinstall, how do I do it after install on a new drive? Please make sure I receive an email of your reply, I am not currently subscribed to the list. Thanks. === "Binaries may die but source code lives forever" -- Unknown SkyHawk Andrew Fremantle starslab@yahoo.com _________________________________________________________ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 16: 9:49 1999 Delivered-To: freebsd-questions@freebsd.org Received: from forrie.net (forrie.net [216.67.12.69]) by hub.freebsd.org (Postfix) with ESMTP id 9C0F614C94 for ; Wed, 18 Aug 1999 16:09:45 -0700 (PDT) (envelope-from forrie@forrie.com) Received: from Forrest (forrie.ne.mediaone.net [24.128.72.15]) by forrie.net (8.9.3/8.9.3) with ESMTP id TAA02951 for ; Wed, 18 Aug 1999 19:09:55 -0400 (EDT) Message-Id: <4.2.0.58.19990818190705.009c1520@216.67.12.69> X-Sender: forrie@216.67.12.69 X-Mailer: QUALCOMM Windows Eudora Pro Version 4.2.0.58 Date: Wed, 18 Aug 1999 19:09:27 -0400 To: freebsd-questions@freebsd.org From: Forrest Aldrich Subject: Scsi Bus probing order Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I have an ASUS motherboard which has an integrated Adaptec SCSI controller. I just installed an adaptec 2940, and the system insists on trying to boot from the external case that's attached to the 2940. I read through the LINT file for the kernel config and tried using: controller scbus0 ahc0 controller scbus1 ahc1 ... and some variations of that, but no go. It's not clear to me if the BIOS is to blame or not... I tried looking through the SCSI Select Setup and the system BIOS, but did not see anything that would change this behavior. What am I missing here? Thanks -F To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 16:21:15 1999 Delivered-To: freebsd-questions@freebsd.org Received: from janikt.pp.saunalahti.fi (janikt.pp.saunalahti.fi [195.74.24.137]) by hub.freebsd.org (Postfix) with ESMTP id 32A5114E3C for ; Wed, 18 Aug 1999 16:21:08 -0700 (PDT) (envelope-from jani@janikt.pp.saunalahti.fi) Received: (from jani@localhost) by janikt.pp.saunalahti.fi (8.9.3/8.9.3) id CAA07424; Thu, 19 Aug 1999 02:10:20 +0300 From: Jani Tolonen MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Date: Thu, 19 Aug 1999 02:10:19 +0300 (EEST) To: Dick Griffin Cc: mysql@lists.mysql.com, freebsd-questions@freebsd.org Subject: ??? StreamServer Port: ... errno 48 In-Reply-To: References: X-Mailer: VM 6.43 under 20.4 "Emerald" XEmacs Lucid Message-ID: <14267.15418.564707.279016@janikt.pp.saunalahti.fi> Reply-To: jani@tcx.se Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Dick Griffin writes: > folks, > > I'm still struggling, and decided a re-boot was in order, and upon reboot > recievd the following message as my FreeBSD3.2 system attemped to starts > the mysqld, > > mysqlFATAL: StreamServerPort: bind() failed errno = 48 > > It asked me if I has a'another postmaster already running on that port' > > I used a default insallation from the FreeBSD packages, and am not sure > how that, or what that means. > > Thanks for being patient with me, > > Dick Griffin > At Home > Hello Dick, Seems as if you have some other program listening on the same TCP/IP port that MySQL server is trying to use. Please try changing the default values. (Defaults are: TCP/IP port = 3306, UNIX_SOCKET = /tmp/mysql.sock) Just in case change both and start mysqld for example like: mysqld --port=3307 --socket=/tmp/mysql.sock2 (and the other options if needed) Then try connection using 'mysql --port=3307 --socket=/tmp/mysql.sock2' See mysqld --help. You can find more information from the manual. Regards, - Jani -- +-------------------------------------------------------------+ | TcX ____ __ _____ _____ ___ | | /*/\*\/\*\ /*/ \*\ /*/ \*\ |*| Jani Tolonen | | /*/ /*/ /*/ \*\_ |*| |*||*| jani@mysql.com | | /*/ /*/ /*/\*\/*/ \*\|*| |*||*| Helsinki | | /*/ /*/ /*/\*\_/*/ \*\_/*/ |*|_____ Finland | | ^^^^^^^^^^^^/*/^^^^^^^^^^^\*\^^^^^^^^^^^ | | /*/ \*\ Developers Team | +-------------------------------------------------------------+ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 16:22:36 1999 Delivered-To: freebsd-questions@freebsd.org Received: from inet.chip-web.com (c1003518-a.plstn1.sfba.home.com [24.1.82.47]) by hub.freebsd.org (Postfix) with SMTP id 4757014C94 for ; Wed, 18 Aug 1999 16:22:34 -0700 (PDT) (envelope-from ludwigp@bigfoot.com) Received: (qmail 16900 invoked from network); 18 Aug 1999 23:21:59 -0000 Received: from speedy.chip-web.com (HELO speedy) (172.16.1.1) by inet.chip-web.com with SMTP; 18 Aug 1999 23:21:59 -0000 Message-Id: <4.2.0.58.19990818161828.00bdc8e0@toy> X-Sender: ludwigp@toy (Unverified) X-Mailer: QUALCOMM Windows Eudora Pro Version 4.2.0.58 Date: Wed, 18 Aug 1999 16:19:50 -0700 To: Christopher Michaels From: Ludwig Pummer Subject: RE: "shutdown -h now" risk? Cc: questions@FreeBSD.ORG In-Reply-To: <6C37EE640B78D2118D2F00A0C90FCB4401105BA8@site2s1> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG At 06:35 PM 8/18/1999 -0400, Christopher Michaels wrote: >Can someone explain to me why a "shutdown -r now" would be dangerous? >-Chris It's not. Longer answer: It pops down to single user mode (killing running daemons in the process), syncs the disks, and umounts the filesystems. Those last 2 are the important ones. --Ludwig Pummer To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 16:34:56 1999 Delivered-To: freebsd-questions@freebsd.org Received: from inet.chip-web.com (c1003518-a.plstn1.sfba.home.com [24.1.82.47]) by hub.freebsd.org (Postfix) with SMTP id 523FE15982 for ; Wed, 18 Aug 1999 16:34:44 -0700 (PDT) (envelope-from ludwigp@bigfoot.com) Received: (qmail 16939 invoked from network); 18 Aug 1999 23:34:51 -0000 Received: from speedy.chip-web.com (HELO speedy) (172.16.1.1) by inet.chip-web.com with SMTP; 18 Aug 1999 23:34:51 -0000 Message-Id: <4.2.0.58.19990818161356.00be2650@toy> X-Sender: ludwigp@toy (Unverified) X-Mailer: QUALCOMM Windows Eudora Pro Version 4.2.0.58 Date: Wed, 18 Aug 1999 16:24:38 -0700 To: "Paul T. Root" From: Ludwig Pummer Subject: Re: CPU Upgrade Cc: jason@townnews.com (Jason), freebsd-questions@FreeBSD.ORG In-Reply-To: <199908181735.MAA00584@iaces.com> References: <37BAE53F.616CD4F7@townnews.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG At 12:35 PM 8/18/1999 -0500, Paul T. Root wrote: >In a previous message, Jason said: > > We're running FreeBSD 2.2.5-Stable on a slower system, and we'd like to > > upgrade the processor in the machine. WIll we need to recompile the > > kernel if we perform this upgrade? If so, I'd appreciate the details on > > why (I'm a curious sort when it comes to things like this). I can't seem > > to find any solid information on the subject... > >You won't need to if you aren't changing processor types. I feel like extending his answer a bit. If you _are_ changing processor types (like from a 486/Cyrix MediaGX to a Pentium/K6/K6-2/Cyrix, or a Pentium/K6/K6-2 to a Pentium II/Pentium III/Xeon), then you need to make sure you have one of the lines: cpu "I586_CPU" cpu "I686_CPU" You could just recompile a kernel with both of those lines (and a line for a 486, if that's what you have now). It doesn't hurt to have the lines and not have the CPU (except maybe that the kernel eats up a bit more disk and RAM). But if you don't have the proper cpu line, then your kernel won't boot. --Ludwig Pummer To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 16:34:56 1999 Delivered-To: freebsd-questions@freebsd.org Received: from inet.chip-web.com (c1003518-a.plstn1.sfba.home.com [24.1.82.47]) by hub.freebsd.org (Postfix) with SMTP id 5A7DE1598A for ; Wed, 18 Aug 1999 16:34:44 -0700 (PDT) (envelope-from ludwigp@bigfoot.com) Received: (qmail 16940 invoked from network); 18 Aug 1999 23:34:52 -0000 Received: from speedy.chip-web.com (HELO speedy) (172.16.1.1) by inet.chip-web.com with SMTP; 18 Aug 1999 23:34:52 -0000 Message-Id: <4.2.0.58.19990818161522.00bdf630@toy> X-Sender: ludwigp@toy (Unverified) X-Mailer: QUALCOMM Windows Eudora Pro Version 4.2.0.58 Date: Wed, 18 Aug 1999 16:33:19 -0700 To: "Alejandro Ramirez" From: Ludwig Pummer Subject: RE: How to reset the log file in free-bsd. Cc: "Lane Covington, Distance Education/Multi-Media Specilist" , In-Reply-To: <006501bee9a9$5b876fa0$d4630a0a@megared.net.mx> References: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Except Apache is special. http://www.apache.org/docs/misc/howto.html#logreset >How to reset your log files >Sooner or later, you'll want to reset your log files (access_log and >error_log) because they are too big, or full of old information you don't need. >access.log typically grows by 1Mb for each 10,000 requests. >Most people's first attempt at replacing the logfile is to just move the >logfile or remove the logfile. This doesn't work. >Apache will continue writing to the logfile at the same offset as before >the logfile moved. This results in a new logfile being created which is >just as big as the old one, but it now contains thousands (or millions) of >null characters. >The correct procedure is to move the logfile, then signal Apache to tell >it to reopen the logfiles. For example: mv access_log access_log.old apachectl restart (apachectl may not be in your path, so you may have to specify the full path to it on the command line) At 01:42 PM 8/18/1999 -0500, Alejandro Ramirez wrote: > If you just want to clean up your file without deleting the file or >having to kill the process, you coul try the following "cat /dev/null > >httpd-access.log" and your file will be 0 length and working. > > > On 18-Aug-99 Lane Covington, Distance Education/Multi-Media Specilist >wrote: > > > I have a really large 85meg httpd-access.log file. How do I reset this > > > log file after I have moved the file with mv httpd-access.log > > > http-access.old and then compressed it. But could not determine how to > > > signal free-bsd a process id with the kill -TERM 'cat httpd.pid' to > > > start a new file. Did not see any reference to this in the handbooks. > > > Could you reply please. > > > Lane, Distance Education Tech --Ludwig Pummer To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 16:39:56 1999 Delivered-To: freebsd-questions@freebsd.org Received: from buffnet4.buffnet.net (buffnet4.buffnet.net [205.246.19.13]) by hub.freebsd.org (Postfix) with ESMTP id AF37F1501F for ; Wed, 18 Aug 1999 16:39:47 -0700 (PDT) (envelope-from shovey@buffnet.net) Received: from buffnet11.buffnet.net (buffnet11.buffnet.net [205.246.19.55]) by buffnet4.buffnet.net (8.8.7/8.8.7) with ESMTP id TAA00782; Wed, 18 Aug 1999 19:39:44 -0400 (EDT) (envelope-from shovey@buffnet.net) Date: Wed, 18 Aug 1999 19:39:44 -0400 (EDT) From: Steve Hovey To: Shawn Ramsey Cc: Evren Yurtesen , Kent Stewart , questions@FreeBSD.ORG Subject: Re: "shutdown -h now" risk? In-Reply-To: <37BB2E9B.F3E4C705@megadeth.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I always do: sync;sync;shutdown -r now the sync;sync part is a habit from the old NCR days when lookin at it sideway was dangerous :) On Wed, 18 Aug 1999, Shawn Ramsey wrote: > > I did not know that "shutdown -h now" is dangerous, > > what is the problem with it? > > He said anything OTHER than "shutdown -h now" is dangerous. I've always > used just "reboot", and I've never lost data. This does the equivalent > of a showdown -r now", at least I thought it did, and I would not call > it dangerous either. > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 16:40:31 1999 Delivered-To: freebsd-questions@freebsd.org Received: from scientia.demon.co.uk (scientia.demon.co.uk [212.228.14.13]) by hub.freebsd.org (Postfix) with ESMTP id 6A9D7152DD for ; Wed, 18 Aug 1999 16:40:08 -0700 (PDT) (envelope-from ben@scientia.demon.co.uk) Received: from lithium.scientia.demon.co.uk ([192.168.0.3] ident=exim) by scientia.demon.co.uk with esmtp (Exim 3.024 #3) id 11HE1l-000CJC-00; Wed, 18 Aug 1999 23:17:49 +0100 Received: (from ben) by lithium.scientia.demon.co.uk (Exim 3.024 #3) id 11HE1h-0002Au-00; Wed, 18 Aug 1999 23:17:45 +0100 Date: Wed, 18 Aug 1999 23:17:45 +0100 From: Ben Smithurst To: "David B. Aas" Cc: questions@freebsd.org Subject: Re: Where is Apache? Message-ID: <19990818231744.A8286@lithium.scientia.demon.co.uk> References: <000701bee9b6$346f9480$0fc8a8c0@dave.ciminot.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.6i In-Reply-To: <000701bee9b6$346f9480$0fc8a8c0@dave.ciminot.com> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG David B. Aas wrote: > I am attempting to install Apache on FBSD3.2. I installed the port from the > FTP site, and set up the confguration file. My trusty "The Complete FreeBSD" > says to run Apache by typing > > /usr/local/www/server/httpd > > at the command prompt. It does not work. I did a FIND for "httpd" and it is > nowhere on my system. > > Did the name change? I searched the logical places, and do not see it. I think it should be in /usr/local/sbin, and the packing list agrees with me. The right way to start/stop Apache is with `apachectl stop` or `apachectl start`. Apachectl is also under /usr/local/sbin. -- Ben Smithurst | PGP: 0x99392F7D ben@scientia.demon.co.uk | key available from keyservers and | ben+pgp@scientia.demon.co.uk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 16:46:34 1999 Delivered-To: freebsd-questions@freebsd.org Received: from dt011n65.san.rr.com (dt010nb9.san.rr.com [204.210.12.185]) by hub.freebsd.org (Postfix) with ESMTP id 7085314F50 for ; Wed, 18 Aug 1999 16:46:21 -0700 (PDT) (envelope-from Doug@gorean.org) Received: from gorean.org (master [10.0.0.2]) by dt011n65.san.rr.com (8.9.3/8.8.8) with ESMTP id QAA47980; Wed, 18 Aug 1999 16:46:49 -0700 (PDT) (envelope-from Doug@gorean.org) Message-ID: <37BB45F2.71B6FFD3@gorean.org> Date: Wed, 18 Aug 1999 16:46:58 -0700 From: Doug Organization: Triborough Bridge & Tunnel Authority X-Mailer: Mozilla 4.61 [en] (X11; U; FreeBSD 4.0-CURRENT-0815 i386) X-Accept-Language: en MIME-Version: 1.0 To: "Bill A. K." Cc: FreeBSD Questions Subject: Re: roots shell References: <002b01bee97f$2a3fdf60$01010101@bopper> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG "Bill A. K." wrote: > > hi, > > is there any way to change root's default shell from csh to bash. Yes there is, but it's a bad idea. Several people have already pointed out some reasons why. An additional alternative to su -m is to put the following in /root/.login: [ -x /usr/local/bin/bash] && exec /usr/local/bin/bash That will start bash for you if it's available, and if it isn't you can still log in. > i've already changed the path to my shell in both /etc/passwd and > /etc/master.passwd but it didn't change it. You should use vipw for editing, don't ever edit them directly. > and i would also like to know how to customize my bash prompt with my > current directory for example. http://freebsd.simplenet.com/Bash-prompts.txt Good luck, Doug To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 16:55:28 1999 Delivered-To: freebsd-questions@freebsd.org Received: from nowcool.dhs.org (FX3-1-119.mgfairfax.rr.com [24.28.200.119]) by hub.freebsd.org (Postfix) with ESMTP id 9FEB015915 for ; Wed, 18 Aug 1999 16:55:11 -0700 (PDT) (envelope-from question@blink.dhs.org) Received: from localhost (question@localhost) by nowcool.dhs.org (8.9.3/8.9.3) with ESMTP id TAA01173; Wed, 18 Aug 1999 19:54:34 -0400 (EDT) (envelope-from question@blink.dhs.org) Date: Wed, 18 Aug 1999 19:54:34 -0400 (EDT) From: FreeBSD Question X-Sender: question@nowcool.dhs.org To: Patrick Seal Cc: freebsd-questions@FreeBSD.ORG Subject: Re: ATAPI burning audio with burnaudio In-Reply-To: <19990817220524.A8937@hyperhost.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Maybe nobody cared about this IDE CDR BS(as what SCSI users would say)..and whenever I asked people "how" to burn cdroms, all they said was "it's not supported yet" Maybe we(?) are the first ones who discovered all this IDE mess. Byung On Tue, 17 Aug 1999, Patrick Seal wrote: > I haven't tried it yet, but thank you. I did read the man page thoroughly and > tried modifying the script myself. If there is a problem with the script why > hasn't it been fixed? > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 17:46:30 1999 Delivered-To: freebsd-questions@freebsd.org Received: from allegro.lemis.com (allegro.lemis.com [192.109.197.134]) by hub.freebsd.org (Postfix) with ESMTP id 0DA7214F87 for ; Wed, 18 Aug 1999 17:46:25 -0700 (PDT) (envelope-from grog@freebie.lemis.com) Received: from freebie.lemis.com (freebie.lemis.com [192.109.197.137]) by allegro.lemis.com (8.9.1/8.9.0) with ESMTP id KAA20419; Thu, 19 Aug 1999 10:16:41 +0930 (CST) Received: (from grog@localhost) by freebie.lemis.com (8.9.3/8.9.0) id KAA17553; Thu, 19 Aug 1999 10:16:40 +0930 (CST) Date: Thu, 19 Aug 1999 10:16:40 +0930 From: Greg Lehey To: Arifin Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Resizing Filesystem Message-ID: <19990819101640.K14964@freebie.lemis.com> References: <37BA3EEE.8928EF87@yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: <37BA3EEE.8928EF87@yahoo.com>; from Arifin on Wed, Aug 18, 1999 at 12:04:46PM +0700 WWW-Home-Page: http://www.lemis.com/~grog X-PGP-Fingerprint: 6B 7B C3 8C 61 CD 54 AF 13 24 52 F8 6D A4 95 EF Organization: LEMIS, PO Box 460, Echunga SA 5153, Australia Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-41-739-7062 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wednesday, 18 August 1999 at 12:04:46 +0700, Arifin wrote: > Hello FreeBSD People, > > Can I resizing my / Filesystem?. Because capacity of / filesystem only 32 MB > and now full if i run df a / f/s capacity now 108% and I want to resize with > /usr f/s. Can I do it without erase all FreeBSD partition? Not currently, but we're working on it. I'd be interested to know why you need more than 32 MB. I'd guess you've got stuff there which doesn't belong on the root file system. My root file system, with a lot of extras, runs to 25 MB. Greg -- When replying to this message, please copy the original recipients. For more information, see http://www.lemis.com/questions.html See complete headers for address, home page and phone numbers finger grog@lemis.com for PGP public key To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 17:59:38 1999 Delivered-To: freebsd-questions@freebsd.org Received: from europe.std.com (europe.std.com [199.172.62.20]) by hub.freebsd.org (Postfix) with ESMTP id 6A88D15066 for ; Wed, 18 Aug 1999 17:59:33 -0700 (PDT) (envelope-from cmascott@world.std.com) Received: from world.std.com (root@world-f.std.com [199.172.62.5]) by europe.std.com (8.9.3/8.9.3) with ESMTP id UAA05159 for ; Wed, 18 Aug 1999 20:59:42 -0400 (EDT) Received: from europa.local (root@world-f.std.com [199.172.62.5]) by world.std.com (8.9.3/8.9.3) with ESMTP id UAA06584 for ; Wed, 18 Aug 1999 20:57:32 -0400 (EDT) Received: (from cmascott@localhost) by europa.local (8.8.8/8.8.8) id UAA00386 for freebsd-questions@freebsd.org; Wed, 18 Aug 1999 20:57:07 -0400 (EDT) (envelope-from cmascott) Date: Wed, 18 Aug 1999 20:57:07 -0400 (EDT) From: Carl Mascott Message-Id: <199908190057.UAA00386@europa.local> To: freebsd-questions@freebsd.org Subject: Is 3.2-R soft updates still considered alpha? Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Is soft updates in FreeBSD 3.2-R still considered alpha? (That's what the README says, but the README is quite old.) Is it not yet recommended for general use? Thanks! P.S. Please e-mail me directly. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 18:12:31 1999 Delivered-To: freebsd-questions@freebsd.org Received: from voicenet.com (mail12.voicenet.com [207.103.0.6]) by hub.freebsd.org (Postfix) with SMTP id C439C14BD6 for ; Wed, 18 Aug 1999 18:12:28 -0700 (PDT) (envelope-from Abe@Nerdy.Org) Received: (qmail 29012 invoked from network); 19 Aug 1999 01:12:33 -0000 Received: from nnjdialup150-pri.voicenet.com (HELO jaspa) (207.103.135.113) by mail12.voicenet.com with SMTP; 19 Aug 1999 01:12:33 -0000 Message-ID: <001301bee9df$d66d03c0$718767cf@jaspa> From: "Abe Rooter" To: Subject: PPP help Date: Wed, 18 Aug 1999 21:11:57 -0400 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0010_01BEE9BE.4E1C7B20" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 4.72.3110.1 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3110.3 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0010_01BEE9BE.4E1C7B20 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable I'm switching from Linux to FreeBSD. I looked at the ppp man, I'm not = understanding it all that well. I'm used to writing the scripts, and = running pppd. Can someone give me a clue ? ------=_NextPart_000_0010_01BEE9BE.4E1C7B20 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
I'm switching from Linux to FreeBSD. = I looked at=20 the ppp man, I'm not understanding it all that well. I'm used to writing = the=20 scripts, and running pppd. Can someone give me a clue=20 ?
------=_NextPart_000_0010_01BEE9BE.4E1C7B20-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 18:16:44 1999 Delivered-To: freebsd-questions@freebsd.org Received: from gershwin.tera.com (gershwin.tera.com [207.224.230.28]) by hub.freebsd.org (Postfix) with ESMTP id 34C4F15079 for ; Wed, 18 Aug 1999 18:16:42 -0700 (PDT) (envelope-from kline@tera.com) Received: from athena.tera.com (athena.tera.com [207.224.230.169]) by gershwin.tera.com (8.8.8/8.8.8) with ESMTP id SAA28489; Wed, 18 Aug 1999 18:17:04 -0700 (PDT) Received: (from kline@localhost) by athena.tera.com (8.7.5/8.7.3) id SAA03264; Wed, 18 Aug 1999 18:17:03 -0700 (PDT) Date: Wed, 18 Aug 1999 18:17:02 -0700 From: Gary Kline To: Ludwig Pummer Cc: Christopher Michaels , questions@FreeBSD.ORG Subject: Re: "shutdown -h now" risk? Message-ID: <19990818181702.A3248@athena.tera.com> References: <6C37EE640B78D2118D2F00A0C90FCB4401105BA8@site2s1> <4.2.0.58.19990818161828.00bdc8e0@toy> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95us In-Reply-To: <4.2.0.58.19990818161828.00bdc8e0@toy>; from Ludwig Pummer on Wed, Aug 18, 1999 at 04:19:50PM -0700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, Aug 18, 1999 at 04:19:50PM -0700, Ludwig Pummer wrote: > At 06:35 PM 8/18/1999 -0400, Christopher Michaels wrote: > >Can someone explain to me why a "shutdown -r now" would be dangerous? > >-Chris > > It's not. > > Longer answer: > It pops down to single user mode (killing running daemons in the process), > syncs the disks, and umounts the filesystems. Those last 2 are the > important ones. > ``shutdown -r now'' does a shutdown and reboot immediately. It's ``shutdown now'' that lowers the system from multi-user to single-user. (Unless there was a recent change from 2.2.8 -> 3.2) gary To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 18:56:19 1999 Delivered-To: freebsd-questions@freebsd.org Received: from metrotel.net.co (metrotel.metrotel.net.co [200.30.54.1]) by hub.freebsd.org (Postfix) with ESMTP id 36554150C2 for ; Wed, 18 Aug 1999 18:56:12 -0700 (PDT) (envelope-from fmiranda@metrotel.net.co) Received: from metrotel.net.co (telasy132.metrotel.net.co [200.21.38.142]) by metrotel.net.co (8.8.8+Sun/8.8.8) with ESMTP id UAA24266 for ; Wed, 18 Aug 1999 20:43:55 +0500 (GMT) Message-ID: <37BB6177.F3892B4D@metrotel.net.co> Date: Wed, 18 Aug 1999 20:44:23 -0500 From: Fabio Andres Miranda X-Mailer: Mozilla 4.07 [en] (X11; I; Linux 2.0.36 i686) MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: How to emulate a IBM 9370 terminal with FreeBSD ? Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, I am using FreeBSD and i want to connect to a IBM 9370 mainframe that contains a computing database. On windows nt using netscape, i can execute a program that emulate the IBM terminal but i don't know how to do it with FreeBSD. I post this question in a "right" place, a netscape mailing list, but i did no recive any response. I hope someone helps me... thanks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 18:59:39 1999 Delivered-To: freebsd-questions@freebsd.org Received: from awfulhak.org (dynamic-12.max1-du-ws.dialnetwork.pavilion.co.uk [212.74.8.12]) by hub.freebsd.org (Postfix) with ESMTP id D11D61506B for ; Wed, 18 Aug 1999 18:59:33 -0700 (PDT) (envelope-from brian@Awfulhak.org) Received: from keep.lan.Awfulhak.org (root@keep.lan.Awfulhak.org [172.16.0.8]) by awfulhak.org (8.9.3/8.9.3) with ESMTP id AAA03784; Thu, 19 Aug 1999 00:08:07 +0100 (BST) (envelope-from brian@lan.awfulhak.org) Received: from keep.lan.Awfulhak.org (brian@localhost.lan.Awfulhak.org [127.0.0.1]) by keep.lan.Awfulhak.org (8.9.3/8.9.3) with ESMTP id UAA00557; Wed, 18 Aug 1999 20:40:05 +0100 (BST) (envelope-from brian@keep.lan.Awfulhak.org) Message-Id: <199908181940.UAA00557@keep.lan.Awfulhak.org> X-Mailer: exmh version 2.0.2 2/24/98 To: Fro Joe Cc: freebsd-questions@FreeBSD.ORG Subject: Re: I'm glad I gave FreeBSD one last chance In-reply-to: Your message of "Tue, 17 Aug 1999 22:13:12 CDT." <001001bee927$9d55e100$69e336ce@mypc.myhost.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 18 Aug 1999 20:40:03 +0100 From: Brian Somers Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > I was a moron... thanks for the help my problem was my IRQ was set improperly... okay now I've got some more questions though... I am setting up a network on an ethernet... and I want to allow everyone access to the PPP connection I'd make via modem off one of hte computers running FreeBSD... but the querks are that I would like to link together 2 modems on the same copmuter connecting to the same ISP... and everyone on the network would like to use ICQ from their own computer... for the ICQ problem I thought a socks 5 server was the way to go, but I don't know if this will allow for multiple people using ICQ at once... and could I use MPPP for this and how do I use MPPP? [.....] Posting in ascii would be nice :-] I believe your best bet for ICQ is to use some sort of proxy. If ICQ reckons it can be used thorough a socks proxy, it should work for as many machines as you want. WRT MP, ppp(8) is your friend. There are examples in /usr/share/examples/ppp/ too. -- Brian Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 19:54:20 1999 Delivered-To: freebsd-questions@freebsd.org Received: from www.keycomp.net (www.keycomp.net [207.44.1.33]) by hub.freebsd.org (Postfix) with ESMTP id 7BC8E14D1B for ; Wed, 18 Aug 1999 19:54:16 -0700 (PDT) (envelope-from billieakay@yahoo.com) Received: from bopper (kc-rmt09.keycomp.net [207.44.1.11]) by www.keycomp.net (8.8.5/SCO5) with SMTP id XAA25413 for ; Wed, 18 Aug 1999 23:00:27 -0400 (EDT) Message-ID: <006401bee9ec$fe8f2420$01010101@bopper> From: "Bill A. K." To: "FreeBSD Questions" Subject: Re: APCI ens1370 Date: Wed, 18 Aug 1999 22:46:09 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit 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-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG yes, if you are running a fairly recent version of freebsd (i've used 3.2 or later for it successfully), just add the line device pcm0 to your kernel configuration file and recompile your kernel. when its done, reboot and do this cd /dev ./MAKEDEV pcm1 (for FreeBSD 3.2) or ./MAKEDEV pcm0 (for FreeBSD 4.0-current) then to see if its working, type cat /dev/audio and if you see garbage its working. if you don't get garbage but an error message or something, make the other pcm (0 or 1) to kill the garbage use Ctrl + C next type mixer vol 100 mixer pcm 100 (this turns the volume up so you can hear it) and you're done!!! good luck any more questions, email me. Bill billieakay@yahoo.com ----- Original Message ----- From: Martin Lefebvre To: Sent: Wednesday, August 18, 1999 5:46 PM Subject: APCI ens1370 > > Hi > > I am writing because I need to know if there's is any ways for my > AudioPCI Ensoniq 1370 Creative Labs PCI128 Sound card under FreeBSD? > > -- > Martin Lefebvre (mlefebvr@taima.on.ca) > > "I have a bad feeling about this..." Everyone in every Star Wars Movie > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 20: 0:22 1999 Delivered-To: freebsd-questions@freebsd.org Received: from www.keycomp.net (www.keycomp.net [207.44.1.33]) by hub.freebsd.org (Postfix) with ESMTP id B1F6714D1B for ; Wed, 18 Aug 1999 20:00:13 -0700 (PDT) (envelope-from billieakay@yahoo.com) Received: from bopper (kc-rmt09.keycomp.net [207.44.1.11]) by www.keycomp.net (8.8.5/SCO5) with SMTP id XAA25421; Wed, 18 Aug 1999 23:04:22 -0400 (EDT) Message-ID: <008201bee9ed$8a380280$01010101@bopper> From: "Bill A. K." To: "Sebastian Hartig" , "FreeBSD Questions" References: <37BB17E1.B693483A@gmx.de> Subject: Re: Ethernet Card Date: Wed, 18 Aug 1999 22:50:03 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit 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-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG maybe its a resource conflict (e.g. irq or something)???? Bill billieakay@yahoo.com ----- Original Message ----- From: Sebastian Hartig To: Sent: Wednesday, August 18, 1999 4:30 PM Subject: Ethernet Card > Hello, > > I've installed different Ethernet Card on a 486 Machine with an ISA > Board. > When i try to access the installed Card i always get the message : > /kernel Device Timeout > > ifconfig -a show me the Card correctly, but when i try ifconfig ed0 > 192.168.0.180 > i get the Device Timeout again > I really dont know what to do . > > > SH > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 20:35:32 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail.greatbasin.net (mail.greatbasin.net [207.228.35.39]) by hub.freebsd.org (Postfix) with ESMTP id 1FA1214A12 for ; Wed, 18 Aug 1999 20:35:26 -0700 (PDT) (envelope-from dan@jgl.reno.nv.us) Received: from pandora.home (rno-max5-59.gbis.net [207.228.61.123]) by mail.greatbasin.net (8.9.3/8.9.3) with ESMTP id UAA15335 for ; Wed, 18 Aug 1999 20:35:24 -0700 (PDT) Received: from danco (danco.home [10.0.0.2]) by pandora.home (8.9.3/8.9.2) with SMTP id UAA40299 for ; Wed, 18 Aug 1999 20:34:44 -0700 (PDT) (envelope-from dan@jgl.reno.nv.us) Message-ID: <005101bee9f3$de5cc8e0$0200000a@home> From: "Dan O'Connor" To: References: <6C37EE640B78D2118D2F00A0C90FCB4401105BA8@site2s1> <4.2.0.58.19990818161828.00bdc8e0@toy> <19990818181702.A3248@athena.tera.com> Subject: Re: "shutdown -h now" risk? Date: Wed, 18 Aug 1999 20:34:43 -0700 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit 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-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG The 'reboot' man page says this: "The halt and reboot utilities flush the file system cache to disk, send all running processes a SIGTERM (and subsequently a SIGKILL) and, respectively, halt or restart the system...." Then the 'shutdown' man page says this: "The following options are available: ... -o If one of the -h, -p or -r is specified, shutdown will execute halt(8) or reboot(8) instead of sending signal to init(8)." So, I guess the new question is: What's the difference between the way "halt" and "reboot" handle shutdowns versus the way "init" does it? And is one method preferable over the other? Enquiring minds want to know... --Dan ** The thing I like most about Windows 98 is... ** You can download FreeBSD with it! > ``shutdown -r now'' does a shutdown and reboot immediately. > It's ``shutdown now'' that lowers the system from multi-user > to single-user. > > (Unless there was a recent change from 2.2.8 -> 3.2) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 20:56:56 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail.greatbasin.net (mail.greatbasin.net [207.228.35.39]) by hub.freebsd.org (Postfix) with ESMTP id A4F6414BD2 for ; Wed, 18 Aug 1999 20:56:50 -0700 (PDT) (envelope-from dan@jgl.reno.nv.us) Received: from pandora.home (rno-max7-18.gbis.net [207.228.61.210]) by mail.greatbasin.net (8.9.3/8.9.3) with ESMTP id UAA17156; Wed, 18 Aug 1999 20:56:46 -0700 (PDT) Received: from danco (danco.home [10.0.0.2]) by pandora.home (8.9.3/8.9.2) with SMTP id UAA46930; Wed, 18 Aug 1999 20:56:10 -0700 (PDT) (envelope-from dan@jgl.reno.nv.us) Message-ID: <00e301bee9f6$dadd10a0$0200000a@home> From: "Dan O'Connor" To: , "Bill Maniatty" References: <199908171920.PAA58400@cs.rpi.edu> Subject: Re: FreeBSD printing hardware Date: Wed, 18 Aug 1999 20:56:09 -0700 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit 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-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > 2) Is there any recommendations regarding PCI cards providing an > extra parallel port that I should be aware of (one vendor > here is pushing SIIG cards)? I converted our Windows 95 server with a SIIG PCI parallel port card to a FreeBSD 3.2 machine. I couldn't get FreeBSD to find the card, not matter what I did. But the $29 SIIG High-IRQ ISA parallel card works great! If you have an open ISA slot and a free IRQ, I'd go that route (cheaper, too). The card is selectable between IRQ 3,4,5,7,9,10,11,12 and 15, DMA 0, 1 and 3, and I/O 3BCh, 378h, 268h, 280h and 288h. I've got a HP LaserJet 5 running off this card and an HP DesignJet 600 plotter off the motherboard's port running just fine under FreeBSD. --Dan ** The thing I like most about Windows 98 is... ** You can download FreeBSD with it! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 20:56:59 1999 Delivered-To: freebsd-questions@freebsd.org Received: from inet.chip-web.com (c1003518-a.plstn1.sfba.home.com [24.1.82.47]) by hub.freebsd.org (Postfix) with SMTP id 8EBC914BD3 for ; Wed, 18 Aug 1999 20:56:55 -0700 (PDT) (envelope-from ludwigp@bigfoot.com) Received: (qmail 17725 invoked from network); 19 Aug 1999 03:57:11 -0000 Received: from speedy.chip-web.com (HELO speedy) (172.16.1.1) by inet.chip-web.com with SMTP; 19 Aug 1999 03:57:11 -0000 Message-Id: <4.2.0.58.19990818194025.0098b430@toy> X-Sender: ludwigp@toy (Unverified) X-Mailer: QUALCOMM Windows Eudora Pro Version 4.2.0.58 Date: Wed, 18 Aug 1999 20:55:41 -0700 To: Gary Kline From: Ludwig Pummer Subject: Re: "shutdown -h now" risk? Cc: Christopher Michaels , questions@FreeBSD.ORG In-Reply-To: <19990818181702.A3248@athena.tera.com> References: <4.2.0.58.19990818161828.00bdc8e0@toy> <6C37EE640B78D2118D2F00A0C90FCB4401105BA8@site2s1> <4.2.0.58.19990818161828.00bdc8e0@toy> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG At 06:17 PM 8/18/1999 -0700, Gary Kline wrote: >On Wed, Aug 18, 1999 at 04:19:50PM -0700, Ludwig Pummer wrote: > > At 06:35 PM 8/18/1999 -0400, Christopher Michaels wrote: > > >Can someone explain to me why a "shutdown -r now" would be dangerous? > > >-Chris > > > > It's not. > > > > Longer answer: > > It pops down to single user mode (killing running daemons in the process), > > syncs the disks, and umounts the filesystems. Those last 2 are the > > important ones. > > > ``shutdown -r now'' does a shutdown and reboot immediately. > It's ``shutdown now'' that lowers the system from multi-user > to single-user. To clarify that "shutdown and reboot immediately": it does first do all that stuff I mentioned above (except going to single user mode). Although I'm no longer so sure about the umounting of the disks. There's no mention of that in either reboot.c or shutdown.c, but it may be in the reboot() system call. In any case, fsck doesn't complain when you reboot after one of the shutdown commands mentioned above. Yes, you're right. It doesn't go to single user mode. I was mistakenly associating that with killing all of the other processes. Looking through the shutdown.c source, I see that 'shutdown -r' just calls 'reboot -l' and 'shutdown -h' just calls 'halt -l' (and reboot and halt are just hardlinks to the same program). Reboot does do all of the nice killing processes and syncing disks, though. --Ludwig Pummer To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 20:59: 4 1999 Delivered-To: freebsd-questions@freebsd.org Received: from revolution.3-cities.com (revolution.3-cities.com [204.203.224.155]) by hub.freebsd.org (Postfix) with ESMTP id D3A3714BD3 for ; Wed, 18 Aug 1999 20:59:00 -0700 (PDT) (envelope-from kstewart@3-cities.com) Received: from 3-cities.com (kenn2167.bossig.com [208.26.242.167]) by revolution.3-cities.com (8.9.3/8.9.3) with ESMTP id UAA02182; Wed, 18 Aug 1999 20:57:30 -0700 (PDT) Message-ID: <37BB80A6.DDB7111E@3-cities.com> Date: Wed, 18 Aug 1999 20:57:26 -0700 From: Kent Stewart Organization: BOSSig X-Mailer: Mozilla 4.61 [en] (WinNT; U) X-Accept-Language: en MIME-Version: 1.0 To: Evren Yurtesen Cc: questions@FreeBSD.ORG Subject: Re: "shutdown -h now" risk? References: <99081723302100.00453@Tomer.Home.Org> <37B9D09B.3224B635@3-cities.com> <37BB1F37.EBE94366@ispro.net.tr> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Evren Yurtesen wrote: > > I did not know that "shutdown -h now" is dangerous, > what is the problem with it? You misunderstood. If you don't do a shutdown, you put your system at risk. Anything short is hitting the reset button or the power switch. Kent > > Kent Stewart wrote: > > > > Tomer Weller wrote: > > > > > > Does FreeBSD do a hard reset or a soft reset ? (sorry for the newbie question) > > > If it soft resets, how can I change that to hard ? > > > > If you do anything short of a "shutdown -h now", you are putting your > > system at risk. How big a chance do you feel like taking. Is your > > system important? > > > > Kent > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > with "unsubscribe freebsd-questions" in the body of the message > > > > -- > > Kent Stewart > > Richland, WA > > > > mailto:kstewart@3-cities.com > > http://www.3-cities.com/~kstewart/index.html > > > > SETI (Search for Extraterrestrial Intelligence) @ Home > > http://setiathome.ssl.berkeley.edu/ > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message -- Kent Stewart Richland, WA mailto:kstewart@3-cities.com http://www.3-cities.com/~kstewart/index.html SETI (Search for Extraterrestrial Intelligence) @ Home http://setiathome.ssl.berkeley.edu/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 21:36:53 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail-01.cdsnet.net (mail-01.cdsnet.net [206.107.16.35]) by hub.freebsd.org (Postfix) with SMTP id E4D6D14DBD for ; Wed, 18 Aug 1999 21:36:51 -0700 (PDT) (envelope-from mrcpu@internetcds.com) Received: (qmail 8989 invoked from network); 19 Aug 1999 04:36:07 -0000 Received: from schizo.cdsnet.net (204.118.244.32) by mail.cdsnet.net with SMTP; 19 Aug 1999 04:36:07 -0000 Date: Wed, 18 Aug 1999 21:34:43 -0700 (PDT) From: Jaye Mathisen X-Sender: mrcpu@schizo.cdsnet.net To: Ben Smithurst Cc: mcwong@ascend.com, questions@FreeBSD.ORG Subject: Re: Safe upgrade from 2.2.5 --> 3.2 ? In-Reply-To: <19990818080734.A4333@lithium.scientia.demon.co.uk> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG mergemaster from ports is your friend. Makes the whole process pretty painless. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 21:37:54 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail.greatbasin.net (mail.greatbasin.net [207.228.35.39]) by hub.freebsd.org (Postfix) with ESMTP id 80790150C7 for ; Wed, 18 Aug 1999 21:37:45 -0700 (PDT) (envelope-from dan@jgl.reno.nv.us) Received: from pandora.home (rno-max7-18.gbis.net [207.228.61.210]) by mail.greatbasin.net (8.9.3/8.9.3) with ESMTP id VAA20749; Wed, 18 Aug 1999 21:37:40 -0700 (PDT) Received: from danco (danco.home [10.0.0.2]) by pandora.home (8.9.3/8.9.2) with SMTP id VAA62184; Wed, 18 Aug 1999 21:37:36 -0700 (PDT) (envelope-from dan@jgl.reno.nv.us) Message-ID: <02bb01bee9fc$911d4ec0$0200000a@home> From: "Dan O'Connor" To: "Kenneth Wayne Culver" , References: Subject: Re: shutdown -p now Date: Wed, 18 Aug 1999 21:37:31 -0700 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit 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-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > I want shutdown to make my computer turn off without pushing the power > button. I looked in the manpage for shutdown, and shutdown -p now is > supposed to turn off the computer. However it doesn't. I have a PII 450 > with the apm device turned on. Windows, and Redhat both do what I'm asking > so I was just wondering what I'm doing wrong in FreeBSD. I'm not sure, 'cause I don't have a new-enough computer :-( But... Do you have APM support compiled into your kernel? From LINT: # Miscellaneous hardware: ... # apm: Laptop Advanced Power Management (experimental) ... device apm0 at isa? Also, see the apm(8) man page. Hope this helps, --Dan ** The thing I like most about Windows 98 is... ** You can download FreeBSD with it! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 21:37:56 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail.greatbasin.net (mail.greatbasin.net [207.228.35.39]) by hub.freebsd.org (Postfix) with ESMTP id 2AF72150CA for ; Wed, 18 Aug 1999 21:37:42 -0700 (PDT) (envelope-from dan@jgl.reno.nv.us) Received: from pandora.home (rno-max7-18.gbis.net [207.228.61.210]) by mail.greatbasin.net (8.9.3/8.9.3) with ESMTP id VAA20754; Wed, 18 Aug 1999 21:37:40 -0700 (PDT) Received: from danco (danco.home [10.0.0.2]) by pandora.home (8.9.3/8.9.2) with SMTP id VAA62163; Wed, 18 Aug 1999 21:37:34 -0700 (PDT) (envelope-from dan@jgl.reno.nv.us) Message-ID: <02ba01bee9fc$8ff856c0$0200000a@home> From: "Dan O'Connor" To: "Doug" Cc: "FreeBSD Questions" References: <002b01bee97f$2a3fdf60$01010101@bopper> <37BB45F2.71B6FFD3@gorean.org> Subject: Re: roots shell Date: Wed, 18 Aug 1999 21:27:31 -0700 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit 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-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > is there any way to change root's default shell from csh to bash. > > Yes there is, but it's a bad idea. Several people have already pointed out > some reasons why. An additional alternative to su -m is to put the > following in /root/.login: > > [ -x /usr/local/bin/bash] && exec /usr/local/bin/bash > > That will start bash for you if it's available, and if it isn't you can > still log in. What a great idea! I can't believe I've been living with csh all this time when, if not in single user mode, I didn't have too... Thanks for making my day! --Dan ** The thing I like most about Windows 98 is... ** You can download FreeBSD with it! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 21:43:14 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail.rdc1.sfba.home.com (ha1.rdc1.sfba.home.com [24.0.0.66]) by hub.freebsd.org (Postfix) with ESMTP id 37E1B15048 for ; Wed, 18 Aug 1999 21:43:04 -0700 (PDT) (envelope-from ibjoe@home.com) Received: from c392156-a.cstvl1.sfba.home.com ([24.1.95.226]) by mail.rdc1.sfba.home.com (InterMail v4.01.01.00 201-229-111) with SMTP id <19990819044138.GJVI8807.mail.rdc1.sfba.home.com@c392156-a.cstvl1.sfba.home.com> for ; Wed, 18 Aug 1999 21:41:38 -0700 Message-Id: <2.2.32.19990819044118.006b5c70@mail> X-Sender: ibjoe@mail X-Mailer: Windows Eudora Pro Version 2.2 (32) Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Date: Wed, 18 Aug 1999 21:41:18 -0700 To: freebsd-questions@FreeBSD.ORG From: Joe Subject: Re: sio boot / console configuration? Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG OK, Joe, if you would just RTFM you would know... refer to the file: /usr/src/sys/i386/boot/biosboot/README.serial There you see, all you have to do is make sure that sio0 is configured with flags 0x10 in the kernel. Then create a file in / called boot.config with one line containing -P Now when you unplug the keyboard the serial terminal will be a console. But oops, once it boots up that console doesn't work anymore. So edit the file /etc/ttys for ttyd0 "/usr/libexec/getty std.9600" vt100 on secure so the serial port still works after boot. That's all there is to it! duh.... At 11:24 AM 8/18/99 -0700, Joe wrote: >Hi, > >I want to use a VT100 emulator program on my PC serial port >as the console for my FreeBSD machine. > >And I would like to also have the sco (vga/keyboard) terminal >available too. > >Best would be autodetect, >if the keyboard is plugged in it would use the sco terminal, but >if the keyboard is not plugged in it would use the sio terminal. > >I think that I can do this from the boot prompt with the -P argument. > >But I want to make that the default behavior. And when the keyboard >is not plugged in I would like to start output to sio terminal >at the lowest possible boot level. Dual (sco and sio) would be OK too. > >Does anyone have any hints on how to do this? >So far all I can do is to use the sio to login after bootup. >I had to change this line in /etc/ttys >ttyd0 "/usr/libexec/getty std.9600" vt100 on secure > >Thanks, >Joe > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 21:43:18 1999 Delivered-To: freebsd-questions@freebsd.org Received: from br3-de0.dnsmgr.net (br3-de0.dnsmgr.net [198.145.92.3]) by hub.freebsd.org (Postfix) with ESMTP id 9219A1504A for ; Wed, 18 Aug 1999 21:43:10 -0700 (PDT) (envelope-from hamellr@hamell.hpc1.com) Received: from heorot.hamell.hpc1.com (host74-1.iwbc.net [216.228.74.1]) by br3-de0.dnsmgr.net (8.9.3/8.9.3) with SMTP id VAA42257; Wed, 18 Aug 1999 21:42:26 -0700 (PDT) (envelope-from hamellr@hamell.hpc1.com) Date: Tue, 17 Aug 1999 14:06:41 -0700 (PDT) From: Rick Hamell To: pdx-freebsd@toybox.placo.com Cc: freebsd-questions@freebsd.org, Jay Becker , Jeff Hunt Subject: Portland FreeBSD Users Group Meeting Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello everyone! Our August meeting will be tommorrow night. As usual, things will be informal so bring a computer and we'll help you get installed or get something configured. We'll be meeting at my office, SE 9th and Oak, just two blocks south of the Sandy and Burnside intersection at 7pm in Suite #106 (StoreChek Systems.) See you there! Rick --- "27 million years of evolution, and we still resort to violence." http://www.grendal.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 21:43:27 1999 Delivered-To: freebsd-questions@freebsd.org Received: from inet.chip-web.com (c1003518-a.plstn1.sfba.home.com [24.1.82.47]) by hub.freebsd.org (Postfix) with SMTP id B6DFA15078 for ; Wed, 18 Aug 1999 21:43:22 -0700 (PDT) (envelope-from ludwigp@bigfoot.com) Received: (qmail 17900 invoked from network); 19 Aug 1999 04:43:28 -0000 Received: from speedy.chip-web.com (HELO speedy) (172.16.1.1) by inet.chip-web.com with SMTP; 19 Aug 1999 04:43:28 -0000 Message-Id: <4.2.0.58.19990818210623.00a3dd30@toy> X-Sender: ludwigp@toy (Unverified) X-Mailer: QUALCOMM Windows Eudora Pro Version 4.2.0.58 Date: Wed, 18 Aug 1999 21:41:25 -0700 To: "Dan O'Connor" From: Ludwig Pummer Subject: Re: "shutdown -h now" risk? Cc: In-Reply-To: <005101bee9f3$de5cc8e0$0200000a@home> References: <6C37EE640B78D2118D2F00A0C90FCB4401105BA8@site2s1> <4.2.0.58.19990818161828.00bdc8e0@toy> <19990818181702.A3248@athena.tera.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG At 08:34 PM 8/18/1999 -0700, Dan O'Connor wrote: >So, I guess the new question is: What's the difference between the way >"halt" and "reboot" handle shutdowns versus the way "init" does it? And is >one method preferable over the other? > >Enquiring minds want to know... Enquiring minds should look in the source. If you don't have a local copy of it, you can browse it via the CVS web interface on www.freebsd.org /usr/src/sbin/init/init.c /usr/src/sbin/reboot/reboot.c /usr/src/sbin/shutdown/shutdown.c I was going to read through the sources and answer your question, but I feel I'm woefully inadequate for that task. One thing I haven't been able to track down was the reboot() system call. I found /usr/src/lib/libc/i386/sys/reboot.S and /usr/src/lib/libc/i386/SYS.h, but nowhere could I find what reboot() does. --Ludwig Pummer To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 22: 1:34 1999 Delivered-To: freebsd-questions@freebsd.org Received: from qmail.dnet.net.id (qmail.dnet.net.id [202.148.1.18]) by hub.freebsd.org (Postfix) with SMTP id 2635D14F0F for ; Wed, 18 Aug 1999 22:01:17 -0700 (PDT) (envelope-from arifin98@yahoo.com) Received: (qmail 31900 invoked from network); 19 Aug 1999 04:55:46 -0000 Received: from netsvr1s42.dnet.net.id (HELO yahoo.com) (202.148.0.217) by qmail.dnet.net.id with SMTP; 19 Aug 1999 04:55:46 -0000 Message-ID: <37BB8EC9.97A0BC8C@yahoo.com> Date: Thu, 19 Aug 1999 11:57:45 +0700 From: Arifin X-Mailer: Mozilla 4.05 [en] (Win95; I) MIME-Version: 1.0 To: Greg Lehey Cc: freebsd-questions@freebsd.org Subject: Re: Resizing Filesystem References: <37BA3EEE.8928EF87@yahoo.com> <19990819101640.K14964@freebie.lemis.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG When I am installing linux compatible [/compat/linux], a capacity root filesystem become 108%, My partition on harddisk are: 2000MB wd0s1 -> FAT32 1000MB wd0s2 -> FreeBSD / -> 32MB /usr -> 900MB /var -> 32MB swap -> 64MB Can I am moving a "linux compat" directory to /usr directory? thank you, -arifin Greg Lehey wrote: > > On Wednesday, 18 August 1999 at 12:04:46 +0700, Arifin wrote: > > Hello FreeBSD People, > > > > Can I resizing my / Filesystem?. Because capacity of / filesystem only 32 MB > > and now full if i run df a / f/s capacity now 108% and I want to resize with > > /usr f/s. Can I do it without erase all FreeBSD partition? > > Not currently, but we're working on it. > > I'd be interested to know why you need more than 32 MB. I'd guess > you've got stuff there which doesn't belong on the root file system. > My root file system, with a lot of extras, runs to 25 MB. > > Greg > -- > When replying to this message, please copy the original recipients. > For more information, see http://www.lemis.com/questions.html > See complete headers for address, home page and phone numbers > finger grog@lemis.com for PGP public key To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 22:40:18 1999 Delivered-To: freebsd-questions@freebsd.org Received: from smtp6.mindspring.com (smtp6.mindspring.com [207.69.200.74]) by hub.freebsd.org (Postfix) with ESMTP id 4031F15082 for ; Wed, 18 Aug 1999 22:40:15 -0700 (PDT) (envelope-from molee@mindspring.com) Received: from emulsive (user-38lcae9.dialup.mindspring.com [209.86.41.201]) by smtp6.mindspring.com (8.8.5/8.8.5) with SMTP id BAA02582 for ; Thu, 19 Aug 1999 01:40:15 -0400 (EDT) From: "Ian Molee" To: Subject: CFLAGS for building ports? Date: Thu, 19 Aug 1999 01:39:44 -0400 Message-ID: <000001beea05$3de27560$c92956d1@molee.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.2232.26 Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2014.211 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I've been happily building ports on my 3.2-stable system since I got it basically working several weeks ago. Recently I built the gnome-1.0.0. meta port (which in turn built everything it required). I was upset to find that--among other things (does enlightenment work reliably for anyone? ack!)--everything seemed to be running rather sluggishly. Upon further reflection, I realized that I've been building _everything_ without having any CFLAGS or CXXFLAGS environment variables set (or passing them as in "make CFLAGS=-O2 install"). A rookie question indeed, but do most folks have C[XX]FLAGS defined to their favorite optimization (and miscellaneous) settings before building ports (e.g., set in your .profile, .shrc, or equivalent) or set them at build time? If so, I expect definitely explain a lot of the sluggishness I'm witnessing: I even had to build XFree86 as a port (I upgraded via CVSup from 3.1-release). Additionally, is there a way to easily rebuild only the ports that you've already built and installed? I thought that issuing a "make reinstall" from /usr/ports might do it, but this appears to not do anything differently from "make install" in the same location--at least not before the point at which I utilized Ctrl-C. I've looked through the ports sections of the Handbook and The Complete FreeBSD and didn't see anything on this. Funny, because I think it might be useful when you perform a make world, thereby updating the build tools, or to rebuild the installed ports after a CVSup has updated your /usr/ports hierarchy. Gratefully, Ian Molee To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 22:42:49 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail.goes.com (mail.goes.com [208.208.69.5]) by hub.freebsd.org (Postfix) with ESMTP id 7189914F15 for ; Wed, 18 Aug 1999 22:42:45 -0700 (PDT) (envelope-from pmelici@goes.com) Received: from goes.com (d153.goes.com [208.195.247.153]) by mail.goes.com (8.9.1a/8.9.1) with ESMTP id BAA03378 for ; Thu, 19 Aug 1999 01:42:44 -0400 (EDT) Message-ID: <37BB9959.9F0839FE@goes.com> Date: Thu, 19 Aug 1999 01:42:49 -0400 From: Paul Melici X-Mailer: Mozilla 4.61 [en] (X11; I; Linux 2.2.5-22 i686) X-Accept-Language: en MIME-Version: 1.0 To: questions@freebsd.org Subject: ip masq Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG is there ip masquerading support in freebsd (similar to that of linux) ? Thanks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 22:47:47 1999 Delivered-To: freebsd-questions@freebsd.org Received: from fingers.shocking.com (shocking.com [216.111.111.11]) by hub.freebsd.org (Postfix) with ESMTP id 1677414F15 for ; Wed, 18 Aug 1999 22:47:44 -0700 (PDT) (envelope-from doemill@shocking.com) Received: from shocking.com (doemill@shocking.com [216.111.111.11]) by fingers.shocking.com (8.9.0/8.9.0) with ESMTP id WAA12789; Wed, 18 Aug 1999 22:42:29 -0700 (PDT) Date: Wed, 18 Aug 1999 22:42:29 -0700 (PDT) From: Doug To: Paul Melici Cc: questions@FreeBSD.ORG Subject: Re: ip masq In-Reply-To: <37BB9959.9F0839FE@goes.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG yes, its called natd (network address translation). its in the faq at freebsd.org/faq if your interested. On Thu, 19 Aug 1999, Paul Melici wrote: > is there ip masquerading support in freebsd (similar to that of linux) ? > > Thanks > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > | Doug | unix9.org admin | shocking.com/~doemill/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 22:50:10 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail1.twcny.rr.com (mail1-0.nyroc.rr.com [24.92.226.74]) by hub.freebsd.org (Postfix) with ESMTP id 0460D14F15 for ; Wed, 18 Aug 1999 22:50:07 -0700 (PDT) (envelope-from reichman@twcny.rr.com) Received: from twcny.rr.com ([24.95.188.113]) by mail1.twcny.rr.com (Post.Office MTA v3.5.2 release 221 ID# 0-53939U80000L80000S0V35) with ESMTP id com; Thu, 19 Aug 1999 01:50:11 -0400 Message-ID: <37BB9D49.5D103691@twcny.rr.com> Date: Thu, 19 Aug 1999 01:59:37 -0400 From: "Mark S. Reichman" X-Mailer: Mozilla 4.61 [en] (X11; I; FreeBSD 3.2-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: Arifin Cc: freebsd-questions@freebsd.org Subject: Re: Resizing Filesystem References: <37BA3EEE.8928EF87@yahoo.com> <19990819101640.K14964@freebie.lemis.com> <37BB8EC9.97A0BC8C@yahoo.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Try this.. lrwx------ 1 root wheel 11 Feb 21 20:05 compat -> /usr/compat Arifin wrote: > > When I am installing linux compatible [/compat/linux], a capacity root > filesystem become 108%, My partition on harddisk are: > > 2000MB wd0s1 -> FAT32 > 1000MB wd0s2 -> FreeBSD > / -> 32MB > /usr -> 900MB > /var -> 32MB > swap -> 64MB > > Can I am moving a "linux compat" directory to /usr directory? > > thank you, > -arifin > > Greg Lehey wrote: > > > > On Wednesday, 18 August 1999 at 12:04:46 +0700, Arifin wrote: > > > Hello FreeBSD People, > > > > > > Can I resizing my / Filesystem?. Because capacity of / filesystem only 32 MB > > > and now full if i run df a / f/s capacity now 108% and I want to resize with > > > /usr f/s. Can I do it without erase all FreeBSD partition? > > > > Not currently, but we're working on it. > > > > I'd be interested to know why you need more than 32 MB. I'd guess > > you've got stuff there which doesn't belong on the root file system. > > My root file system, with a lot of extras, runs to 25 MB. > > > > Greg > > -- > > When replying to this message, please copy the original recipients. > > For more information, see http://www.lemis.com/questions.html > > See complete headers for address, home page and phone numbers > > finger grog@lemis.com for PGP public key > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 22:55: 9 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail1.twcny.rr.com (mail1-1.nyroc.rr.com [24.92.226.139]) by hub.freebsd.org (Postfix) with ESMTP id 9C24D14F15 for ; Wed, 18 Aug 1999 22:55:05 -0700 (PDT) (envelope-from reichman@twcny.rr.com) Received: from twcny.rr.com ([24.95.188.113]) by mail1.twcny.rr.com (Post.Office MTA v3.5.2 release 221 ID# 0-53939U80000L80000S0V35) with ESMTP id com; Thu, 19 Aug 1999 01:54:13 -0400 Message-ID: <37BB9E3B.C80BBB15@twcny.rr.com> Date: Thu, 19 Aug 1999 02:03:40 -0400 From: "Mark S. Reichman" X-Mailer: Mozilla 4.61 [en] (X11; I; FreeBSD 3.2-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: Andrew Fremantle Cc: freebsd-questions@freebsd.org Subject: Re: DHCP and Bootstrapping References: <19990818223241.29140.rocketmail@web214.mail.yahoo.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is what I'm doing.. Doesnt mean its correct... -Current has it in a conf file. I think rc.conf.. -Stable does not.. Hence this... mark@slugo:/usr/local/etc/rc.d:>cat roadrunner.sh #!/bin/sh #Makes a connection.. or attempts to make a connection.. to roadrunner #internet services. Beep-Beep... echo "Connecting to Roadrunner ISP..." echo /sbin/dhclient xl0 /usr/local/bin/rrd -u Andrew Fremantle wrote: > > First off, yes I know the two questions are totally unrelated :) > > Please snip accordingly when responding... > > 1) What/Is there a "proper" way to specify the use of DHCP for ed0 on startup > in 3.2-RELEASE? I know it can be hacked in, and I have identified several > spots where that could be done, but if there's a proper way i'd like to know > about it. > > 2) My FreeBSD box is currently running on a somewhat glitchy 2GB Sumsung drive. > I have a rock solid 2.5GB Quantum drive coming back from loan soon, and i'm > going to be moving the system over to that. I've done this with Linux before, > but never with FreeBSD. What additional concerns are there? I am aware of the > need to watch /etc/fstab very closely, and make sure it stays accurate to the > way the system will be the next time it boots up. The thing i am very uncertain > about it bootstrapping the new drive. This was done on the Samsung at install > time by sysinstall, how do I do it after install on a new drive? > > Please make sure I receive an email of your reply, I am not currently > subscribed to the list. > > Thanks. > > === > "Binaries may die but source code lives forever" > -- Unknown > > SkyHawk > Andrew Fremantle > starslab@yahoo.com > > _________________________________________________________ > Do You Yahoo!? > Get your free @yahoo.com address at http://mail.yahoo.com > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 22:56:15 1999 Delivered-To: freebsd-questions@freebsd.org Received: from ecis.com (ecis.ecis.com [207.201.2.2]) by hub.freebsd.org (Postfix) with ESMTP id 50A7C150A0 for ; Wed, 18 Aug 1999 22:56:08 -0700 (PDT) (envelope-from arch@ecis.com) Received: from atlas (ant1-1-ecis-dyn247.ecis.com [209.128.71.247]) by ecis.com (8.9.1a/8.9.1) with SMTP id WAA28668 for ; Wed, 18 Aug 1999 22:56:06 -0700 Message-ID: <000101bd1747$53ce7c80$f74780d1@atlas> From: "avenger" To: Subject: MVP3 Date: Thu, 1 Jan 1998 22:26:13 -0800 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 4.72.3155.0 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3155.0 Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG in the kernel file, would i classify a pII as a cpu_586 or 686? how about a k6/ or k6/2 perhaps? also, are there any known problems with the via mvp3 chipset? thanks for your time.. dan arch@ecis.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 23:41:16 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail.utexas.edu (wb3-a.mail.utexas.edu [128.83.126.138]) by hub.freebsd.org (Postfix) with SMTP id 6EDC514ECE for ; Wed, 18 Aug 1999 23:41:14 -0700 (PDT) (envelope-from kevin.weiss@mail.utexas.edu) Received: (qmail 23848 invoked by uid 0); 19 Aug 1999 06:41:08 -0000 Received: from cs9350-178.austin.rr.com (HELO windows) (24.93.50.178) by umbs-smtp-3 with SMTP; 19 Aug 1999 06:41:08 -0000 X-Sender: kevin.weiss@mail.utexas.edu X-Mailer: QUALCOMM Windows Eudora Pro Version 4.0.2 Date: Fri, 20 Aug 1999 01:41:48 -0500 To: "avenger" From: Kevin Weiss Subject: Re: MVP3 Cc: freebsd-questions@freebsd.org In-Reply-To: <000101bd1747$53ce7c80$f74780d1@atlas> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Message-Id: <19990819064114.6EDC514ECE@hub.freebsd.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG At 10:26 PM 1/1/98 -0800, you wrote: >in the kernel file, would i classify a pII as a cpu_586 or 686? how about a >k6/ or k6/2 perhaps? also, are there any known problems with the via mvp3 >chipset? thanks for your time.. > > >dan >arch@ecis.com > > > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-questions" in the body of the message > mvp3 should work fine... ...as for AMD K6/K62...use cpu_586 in the kernel ...686 is for Pentium Pro processors To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 23:42:22 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail.utexas.edu (wb1-a.mail.utexas.edu [128.83.126.134]) by hub.freebsd.org (Postfix) with SMTP id CCD69150D6 for ; Wed, 18 Aug 1999 23:42:06 -0700 (PDT) (envelope-from kevin.weiss@mail.utexas.edu) Received: (qmail 23407 invoked from network); 19 Aug 1999 06:42:06 -0000 Received: from cs9350-178.austin.rr.com (HELO windows) (24.93.50.178) by umbs-smtp-1 with SMTP; 19 Aug 1999 06:42:06 -0000 X-Sender: kevin.weiss@mail.utexas.edu X-Mailer: QUALCOMM Windows Eudora Pro Version 4.0.2 Date: Fri, 20 Aug 1999 01:42:46 -0500 To: Paul Melici From: Kevin Weiss Subject: Re: ip masq Cc: freebsd-questions@freebsd.org In-Reply-To: <37BB9959.9F0839FE@goes.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Message-Id: <19990819064212.CCD69150D6@hub.freebsd.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG At 01:42 AM 8/19/99 -0400, you wrote: >is there ip masquerading support in freebsd (similar to that of linux) ? > >Thanks > > > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-questions" in the body of the message > yes, either through natd or through ppp with the -alias switch To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 23:47: 6 1999 Delivered-To: freebsd-questions@freebsd.org Received: from saturn.math.uaa.alaska.edu (saturn.math.uaa.alaska.edu [137.229.134.205]) by hub.freebsd.org (Postfix) with ESMTP id 9B02714EB8 for ; Wed, 18 Aug 1999 23:47:00 -0700 (PDT) (envelope-from fred@saturn.math.uaa.alaska.edu) Received: by saturn.math.uaa.alaska.edu id WAA0000019495; Wed, 18 Aug 1999 22:45:48 -0800 (AKDT) Date: Wed, 18 Aug 1999 22:45:48 -0800 (AKDT) From: "Frederick J Polsky v1.0" To: Kevin Weiss Cc: avenger , freebsd-questions@freebsd.org Subject: Re: MVP3 In-Reply-To: <19990819064114.6EDC514ECE@hub.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG CPU_586: Pentium, Pentium MMX, K6, K6-2, K6-3, 6x86 non-mmx CPU_686: Pentium Pro, Pentium II/III, 6x86MX, MII -- Frederick J. Polsky v1.0 Chair, UAA ACM Student Chapter > mvp3 should work fine... > ...as for AMD K6/K62...use cpu_586 in the kernel > ...686 is for Pentium Pro processors To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 23:49:15 1999 Delivered-To: freebsd-questions@freebsd.org Received: from nix.dialup.com.au (nix.dialup.com.au [203.58.96.2]) by hub.freebsd.org (Postfix) with ESMTP id C152C14F06 for ; Wed, 18 Aug 1999 23:48:54 -0700 (PDT) (envelope-from mynet@uq.net.au) Received: from uq.net.au (upstairs.dialup.com.au [203.58.96.30]) by nix.dialup.com.au (8.9.3/8.8.7) with ESMTP id QAA04813; Thu, 19 Aug 1999 16:43:58 +1000 Message-ID: <37BBA8A9.73350872@uq.net.au> Date: Thu, 19 Aug 1999 16:48:09 +1000 From: Andrew X-Mailer: Mozilla 4.6 [en] (WinNT; I) X-Accept-Language: en MIME-Version: 1.0 To: avenger Cc: freebsd-questions@FreeBSD.ORG Subject: Re: MVP3 References: <000101bd1747$53ce7c80$f74780d1@atlas> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG P2,P3,Celery,6x86 = 686 K6x,P,PMMX,K5 = 586 The mvp3 chipset is good I think its just the Aladdin V that had a few probs. Cheers Andrew avenger wrote: > in the kernel file, would i classify a pII as a cpu_586 or 686? how about a > k6/ or k6/2 perhaps? also, are there any known problems with the via mvp3 > chipset? thanks for your time.. > > dan > arch@ecis.com > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 23:54:58 1999 Delivered-To: freebsd-questions@freebsd.org Received: from relay.ucb.crimea.ua (relay.ucb.crimea.ua [212.110.138.1]) by hub.freebsd.org (Postfix) with ESMTP id 260C014F98 for ; Wed, 18 Aug 1999 23:53:56 -0700 (PDT) (envelope-from ru@ucb.crimea.ua) Received: (from ru@localhost) by relay.ucb.crimea.ua (8.9.3/8.9.3/UCB) id JAA25332; Thu, 19 Aug 1999 09:51:23 +0300 (EEST) (envelope-from ru) Date: Thu, 19 Aug 1999 09:51:23 +0300 From: Ruslan Ermilov To: Ludwig Pummer Cc: questions@FreeBSD.ORG Subject: Re: "shutdown -h now" risk? Message-ID: <19990819095123.B27684@relay.ucb.crimea.ua> Mail-Followup-To: Ludwig Pummer , questions@FreeBSD.ORG References: <6C37EE640B78D2118D2F00A0C90FCB4401105BA8@site2s1> <4.2.0.58.19990818161828.00bdc8e0@toy> <19990818181702.A3248@athena.tera.com> <005101bee9f3$de5cc8e0$0200000a@home> <4.2.0.58.19990818210623.00a3dd30@toy> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.3i In-Reply-To: <4.2.0.58.19990818210623.00a3dd30@toy>; from Ludwig Pummer on Wed, Aug 18, 1999 at 09:41:25PM -0700 X-Operating-System: FreeBSD 3.2-STABLE i386 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, Aug 18, 1999 at 09:41:25PM -0700, Ludwig Pummer wrote: > At 08:34 PM 8/18/1999 -0700, Dan O'Connor wrote: > >So, I guess the new question is: What's the difference between the way > >"halt" and "reboot" handle shutdowns versus the way "init" does it? And is > >one method preferable over the other? > > > >Enquiring minds want to know... > > Enquiring minds should look in the source. If you don't have a local copy > of it, you can browse it via the CVS web interface on www.freebsd.org > > /usr/src/sbin/init/init.c > /usr/src/sbin/reboot/reboot.c > /usr/src/sbin/shutdown/shutdown.c > > I was going to read through the sources and answer your question, but I > feel I'm woefully inadequate for that task. > > One thing I haven't been able to track down was the reboot() system call. I > found /usr/src/lib/libc/i386/sys/reboot.S and /usr/src/lib/libc/i386/SYS.h, > but nowhere could I find what reboot() does. > /usr/src/sys/kern/kern_shutdown.c, function reboot(). -- Ruslan Ermilov Sysadmin and DBA of the ru@ucb.crimea.ua United Commercial Bank, ru@FreeBSD.org FreeBSD committer, +380.652.247.647 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 23:55: 1 1999 Delivered-To: freebsd-questions@freebsd.org Received: from relay.ucb.crimea.ua (relay.ucb.crimea.ua [212.110.138.1]) by hub.freebsd.org (Postfix) with ESMTP id 77D3D14F06 for ; Wed, 18 Aug 1999 23:53:28 -0700 (PDT) (envelope-from ru@ucb.crimea.ua) Received: (from ru@localhost) by relay.ucb.crimea.ua (8.9.3/8.9.3/UCB) id JAA25303; Thu, 19 Aug 1999 09:50:03 +0300 (EEST) (envelope-from ru) Date: Thu, 19 Aug 1999 09:50:03 +0300 From: Ruslan Ermilov To: "Dan O'Connor" Cc: questions@FreeBSD.ORG Subject: Re: "shutdown -h now" risk? Message-ID: <19990819095003.A27684@relay.ucb.crimea.ua> Mail-Followup-To: Dan O'Connor , questions@FreeBSD.ORG References: <6C37EE640B78D2118D2F00A0C90FCB4401105BA8@site2s1> <4.2.0.58.19990818161828.00bdc8e0@toy> <19990818181702.A3248@athena.tera.com> <005101bee9f3$de5cc8e0$0200000a@home> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.3i In-Reply-To: <005101bee9f3$de5cc8e0$0200000a@home>; from Dan O'Connor on Wed, Aug 18, 1999 at 08:34:43PM -0700 X-Operating-System: FreeBSD 3.2-STABLE i386 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, Aug 18, 1999 at 08:34:43PM -0700, Dan O'Connor wrote: > The 'reboot' man page says this: > > "The halt and reboot utilities flush the file system cache > to disk, send all running processes a SIGTERM (and > subsequently a SIGKILL) and, respectively, halt or restart > the system...." > Yup. > Then the 'shutdown' man page says this: > > "The following options are available: > ... > -o If one of the -h, -p or -r is specified, shutdown will execute > halt(8) or reboot(8) instead of sending signal to init(8)." > And also it says: } At shutdown time a message is written to the system log, containing the } time of shutdown, the person who initiated the shutdown and the reason. } Corresponding signal is then sent to init(8) to respectively halt, reboot ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ } or bring the system down to single-user state (depending on the above op- } tions). The time of the shutdown and the warning message are placed in } /var/run/nologin and should be used to inform the users about when the } system will be back up and why it is going down (or anything else). > So, I guess the new question is: What's the difference between the way > "halt" and "reboot" handle shutdowns versus the way "init" does it? And is > one method preferable over the other? > > Enquiring minds want to know... > init(8) manpage says: } When shutting down the machine, init will try to run the /etc/rc.shutdown } script. This script can be used to cleanly terminate specific programs } such as innd (the InterNetNews server). This is the only significant difference in how init(8) and reboot/halt(8) handle the shutdown. Halt(8) won't execute rc.shutdown script. Also, the following functionality was recently added (both CURRENT and STABLE): init.c,v 1.32: date: 1999/06/16 20:01:19; author: ru; state: Exp; lines: +12 -5 Init(8) will halt the system if sent USR1 signal, or halt and turn the power off if sent SIGUSR2. PR: 5451 Submitted by: Leif Neland Reworked by: ru Reviewed by: -hackers shutdown.c,v 1.19: date: 1999/06/21 16:06:21; author: ru; state: Exp; lines: +52 -34 Signal init(8) instead of executing halt(8) or reboot(8) when halting or rebooting the system. It benefits from running /etc/rc.shutdown by init(8). ``-o'' flag is provided for backward compatibility. PR: 5451 Discussed with: des -- Ruslan Ermilov Sysadmin and DBA of the ru@ucb.crimea.ua United Commercial Bank, ru@FreeBSD.org FreeBSD committer, +380.652.247.647 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Wed Aug 18 23:56:39 1999 Delivered-To: freebsd-questions@freebsd.org Received: from jovita.jovita.net (jovita.jovita.net [209.150.128.146]) by hub.freebsd.org (Postfix) with ESMTP id 17A9714EAE for ; Wed, 18 Aug 1999 23:56:29 -0700 (PDT) (envelope-from sales@mcompu.com) Received: from mcompu.com (indy234.hit.net [206.252.173.124]) by jovita.jovita.net (8.8.5/8.8.5) with ESMTP id BAA07417 for ; Thu, 19 Aug 1999 01:51:54 -0500 Message-ID: <37BBAC4F.8943F4DF@mcompu.com> Date: Thu, 19 Aug 1999 02:03:43 -0500 From: Andrew DeFever Reply-To: sales@mcompu.com X-Mailer: Mozilla 4.51 [en] (Win98; I) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: Hardware Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello I am kinda new to FreeBSD have worked with RedHat Linux in the past but not much I was kind of wondering how do you install sound cards, video cards, network cards, etc. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 0: 1:48 1999 Delivered-To: freebsd-questions@freebsd.org Received: from relay.ucb.crimea.ua (relay.ucb.crimea.ua [212.110.138.1]) by hub.freebsd.org (Postfix) with ESMTP id 61FD014FA5 for ; Thu, 19 Aug 1999 00:01:06 -0700 (PDT) (envelope-from ru@ucb.crimea.ua) Received: (from ru@localhost) by relay.ucb.crimea.ua (8.9.3/8.9.3/UCB) id JAA26729; Thu, 19 Aug 1999 09:56:02 +0300 (EEST) (envelope-from ru) Date: Thu, 19 Aug 1999 09:56:02 +0300 From: Ruslan Ermilov To: Ludwig Pummer Cc: Gary Kline , Christopher Michaels , questions@FreeBSD.ORG Subject: Re: "shutdown -h now" risk? Message-ID: <19990819095602.C27684@relay.ucb.crimea.ua> Mail-Followup-To: Ludwig Pummer , Gary Kline , Christopher Michaels , questions@FreeBSD.ORG References: <4.2.0.58.19990818161828.00bdc8e0@toy> <6C37EE640B78D2118D2F00A0C90FCB4401105BA8@site2s1> <4.2.0.58.19990818161828.00bdc8e0@toy> <19990818181702.A3248@athena.tera.com> <4.2.0.58.19990818194025.0098b430@toy> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.3i In-Reply-To: <4.2.0.58.19990818194025.0098b430@toy>; from Ludwig Pummer on Wed, Aug 18, 1999 at 08:55:41PM -0700 X-Operating-System: FreeBSD 3.2-STABLE i386 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, Aug 18, 1999 at 08:55:41PM -0700, Ludwig Pummer wrote: > At 06:17 PM 8/18/1999 -0700, Gary Kline wrote: > >On Wed, Aug 18, 1999 at 04:19:50PM -0700, Ludwig Pummer wrote: > > > At 06:35 PM 8/18/1999 -0400, Christopher Michaels wrote: > > > >Can someone explain to me why a "shutdown -r now" would be dangerous? > > > >-Chris > > > > > > It's not. > > > > > > Longer answer: > > > It pops down to single user mode (killing running daemons in the process), > > > syncs the disks, and umounts the filesystems. Those last 2 are the > > > important ones. > > > > > ``shutdown -r now'' does a shutdown and reboot immediately. > > It's ``shutdown now'' that lowers the system from multi-user > > to single-user. > To clarify that "shutdown and reboot immediately": it does first do all > that stuff I mentioned above (except going to single user mode). > > Although I'm no longer so sure about the umounting of the disks. There's no > mention of that in either reboot.c or shutdown.c, but it may be in the > reboot() system call. In any case, fsck doesn't complain when you reboot > after one of the shutdown commands mentioned above. > Exactly, look into /sys/kern/kern_shutdown.c. Syscall reboot() calls boot(), which then calls vfs_unmountall(). > Yes, you're right. It doesn't go to single user mode. I was mistakenly > associating that with killing all of the other processes. > > Looking through the shutdown.c source, I see that 'shutdown -r' just calls > 'reboot -l' and 'shutdown -h' just calls 'halt -l' (and reboot and halt are > just hardlinks to the same program). Reboot does do all of the nice killing > processes and syncing disks, though. > Try looking into the most recent RELENG_3 or HEAD sources. -- Ruslan Ermilov Sysadmin and DBA of the ru@ucb.crimea.ua United Commercial Bank, ru@FreeBSD.org FreeBSD committer, +380.652.247.647 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 0: 9:27 1999 Delivered-To: freebsd-questions@freebsd.org Received: from fingers.shocking.com (shocking.com [216.111.111.11]) by hub.freebsd.org (Postfix) with ESMTP id 97EEC14FA5 for ; Thu, 19 Aug 1999 00:09:24 -0700 (PDT) (envelope-from doemill@shocking.com) Received: from shocking.com (doemill@shocking.com [216.111.111.11]) by fingers.shocking.com (8.9.0/8.9.0) with ESMTP id AAA17975; Thu, 19 Aug 1999 00:05:53 -0700 (PDT) Date: Thu, 19 Aug 1999 00:05:52 -0700 (PDT) From: Doug To: Andrew DeFever Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Hardware In-Reply-To: <37BBAC4F.8943F4DF@mcompu.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG By compiling support for them into a kernel. On Thu, 19 Aug 1999, Andrew DeFever wrote: > Hello I am kinda new to FreeBSD have worked with RedHat Linux in the > past but not much I was kind of wondering how do you install sound > cards, video cards, network cards, etc. | Doug | unix9.org admin | shocking.com/~doemill/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 0:13:38 1999 Delivered-To: freebsd-questions@freebsd.org Received: from gus.orgus.ru (gus.orgus.ru [195.16.115.189]) by hub.freebsd.org (Postfix) with ESMTP id DED3114FA5 for ; Thu, 19 Aug 1999 00:13:20 -0700 (PDT) (envelope-from vit@gus.orgus.ru) Received: from localhost (vit@localhost) by gus.orgus.ru (8.9.3/8.9.3) with SMTP id NAA07223 for ; Thu, 19 Aug 1999 13:08:32 +0600 (ESS) Date: Thu, 19 Aug 1999 13:08:32 +0600 (ESS) From: Victor M To: questions@freebsd.org Subject: modem Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG My FreeBSD2.2.8 serves as a terminal server for the dialup clients using ppp protocol. For that I run daemon pppd (not tunnel ppp). The question is is it possible to reset the modem directly from shell without powering it off? These modems (analog Courier V.34) sometimes sticks, that is not put the receiver down after the connection is terminated and I want to reset them automatically. Victor. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 0:39:29 1999 Delivered-To: freebsd-questions@freebsd.org Received: from bastuba.partitur.se (bastuba.partitur.se [193.219.246.194]) by hub.freebsd.org (Postfix) with ESMTP id 3134B14E9B for ; Thu, 19 Aug 1999 00:39:19 -0700 (PDT) (envelope-from jeppe@partitur.se) Received: from partitur.se (xylofon.partitur.se [193.219.246.251]) by bastuba.partitur.se (8.8.8/8.8.8) with ESMTP id JAA25743 for ; Thu, 19 Aug 1999 09:37:19 +0200 (CEST) (envelope-from jeppe@partitur.se) Message-ID: <37BBB42E.12ACDE2D@partitur.se> Date: Thu, 19 Aug 1999 09:37:19 +0200 From: Jesper Blomstrom Organization: KTH/Partitur X-Mailer: Mozilla 4.61 [en] (X11; I; FreeBSD 3.2-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: Big problem for me, not for you? Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, I have installed FreeBSD on a separate harddisk, and my other disk contains Windows. TheWindows-disk is set to primary master and the FreeBSD-disk is set to primary slave. I have also installed a bootMGR. If I want to run Windows everything is o.k, and Windows starts without problem. But I do not want to run Windows ;) and when I choose FreeBSD it seems to boot normal but then it fails with the error: Panic:cant mount root I understand that this error comes from confusion between the boot block´s and the kernel´s understanding of the disk devices. I have therefore tried to stop the OS from booting and at the boot-prompt I have tried to start the system with the following combinations: 1:wd(1,a)kernel = This one I think is the correct way to boot, but it fails with the messages: Changing root device to wd1s1a Swapon: /dev/wd0s1: Invalid argument Automatic reeboot in progress Can´t open /dev/wd0s1a: Invalid argument Can´t check file system Unexpected Inconsistency Automatic file system check faild, HELP! Then the os wants me to show him the path to another shell the Bourne-Shell but if I want to use sh I shall press return. If I then try to run stand/sysinstall I get the message Error opening terminal: cons25 1:wd(2,a)kernel = panic:cant mount root... ( it boots ) 1:wd(0,a)kernel = panic:cant mount root... ( it boots ) Everything else generates something with "wrong labels" ( does not boot ) What should I do and how should I do it? If you can help me I shall never use another OS then FreeBSD, promise! / Many Greetings from Sweden Jesper Blomstroem To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 1:27:21 1999 Delivered-To: freebsd-questions@freebsd.org Received: from web601.yahoomail.com (web2004.mail.yahoo.com [128.11.68.204]) by hub.freebsd.org (Postfix) with SMTP id EBE51150A5 for ; Thu, 19 Aug 1999 01:27:18 -0700 (PDT) (envelope-from pek_yee@yahoo.com) Message-ID: <19990819082636.4066.rocketmail@web601.yahoomail.com> Received: from [203.106.4.2] by web2004.mail.yahoo.com; Thu, 19 Aug 1999 01:26:36 PDT Date: Thu, 19 Aug 1999 01:26:36 -0700 (PDT) From: Pek Yee Subject: To capture installation screen of FreeBSD To: freebsd-questions@FreeBSD.ORG MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Could you tell me what software that i could use to capture the installation screens of FreeBSD? I am currently developing a project to teach user step-by-step on FreeBSD Installation. Thank you. __________________________________________________ Do You Yahoo!? Bid and sell for free at http://auctions.yahoo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 1:54: 4 1999 Delivered-To: freebsd-questions@freebsd.org Received: from krasnavi.scn.ru (krasnavi.scn.ru [195.151.16.109]) by hub.freebsd.org (Postfix) with ESMTP id C3969150CC for ; Thu, 19 Aug 1999 01:53:53 -0700 (PDT) (envelope-from vlad@krasnavi.scn.ru) Received: from sysop (sysop.krasnavi.scn.ru [192.168.1.3]) by krasnavi.scn.ru (8.8.8/8.8.8) with SMTP id QAA00323 for ; Thu, 19 Aug 1999 16:53:16 +0800 (KRSS) (envelope-from vlad@krasnavi.scn.ru) Message-ID: <001a01beea24$46512d80$0301a8c0@sysop.krasnavi.scn.ru> From: "Vladislav N.Ponomarev" To: Subject: One moment ! Date: Thu, 19 Aug 1999 16:21:20 +0700 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0017_01BEEA5E.DF789680" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 4.72.3110.1 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3110.3 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0017_01BEEA5E.DF789680 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: quoted-printable Please, if you will have a little time, send me the file: "id-elf.so.1", = very much is necessary. Beforehand thank you. Yours faithfully Vlad. ------=_NextPart_000_0017_01BEEA5E.DF789680 Content-Type: text/html; charset="koi8-r" Content-Transfer-Encoding: quoted-printable

Please, if you will have a little time, send me the file:=20 "id-elf.so.1", very much is necessary.

 Beforehand thank you.

 Yours faithfully Vlad.

------=_NextPart_000_0017_01BEEA5E.DF789680-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 2: 0:32 1999 Delivered-To: freebsd-questions@freebsd.org Received: from volodya.prime.net.ua (volodya.prime.net.ua [195.64.229.17]) by hub.freebsd.org (Postfix) with ESMTP id D274B14C47 for ; Thu, 19 Aug 1999 02:00:27 -0700 (PDT) (envelope-from andyo@prime.net.ua) Received: from prime.net.ua (localhost [127.0.0.1]) by volodya.prime.net.ua (8.9.3/8.8.8) with ESMTP id MAA48614; Thu, 19 Aug 1999 12:00:37 +0300 (EEST) (envelope-from andyo@prime.net.ua) Message-ID: <37BBC7AC.3380D93A@prime.net.ua> Date: Thu, 19 Aug 1999 12:00:30 +0300 From: "Andy V. Oleynik" Organization: M-Info X-Mailer: Mozilla 4.61 [en] (X11; I; FreeBSD 3.2-STABLE i386) X-Accept-Language: en, ru, uk MIME-Version: 1.0 To: Victor M Cc: questions@FreeBSD.ORG Subject: Re: modem References: Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I have same situation. And after consulting with a lot of experts and investigating by myself I've got an answer- "If CD is up - no software tools to reset sticky modem but the hardware reset". Some of guys made an hardware/software equipment that recognizes sticky modem and makes hardware reset automatically. Their cost is to big for my pocket :) Victor M wrote: > My FreeBSD2.2.8 serves as a terminal server for the dialup clients using > ppp protocol. For that I run daemon pppd (not tunnel ppp). > > The question is is it possible to reset the modem directly from shell > without powering it off? > These modems (analog Courier V.34) sometimes sticks, that is not put the > receiver down after the connection is terminated and I want to reset them > automatically. > > Victor. > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- WBW Andy V. Oleynik (When U work in virtual office prime.net.ua's U have good chance to obtain system administrator virtual money ö%-) +380442448363 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 2: 1:28 1999 Delivered-To: freebsd-questions@freebsd.org Received: from nwss.sd40.bc.ca (gateway.nwss.sd40.bc.ca [207.194.32.13]) by hub.freebsd.org (Postfix) with ESMTP id 5656D14C47 for ; Thu, 19 Aug 1999 02:01:25 -0700 (PDT) (envelope-from bpepa@gateway.nwss.sd40.bc.ca) Received: from localhost (bpepa@localhost) by nwss.sd40.bc.ca (8.9.3/8.9.1) with ESMTP id CAA87728 for ; Thu, 19 Aug 1999 02:03:22 -0700 (PDT) (envelope-from bpepa@gateway.nwss.sd40.bc.ca) Date: Thu, 19 Aug 1999 02:03:22 -0700 (PDT) From: Ben Pepa To: freebsd-questions@freebsd.org Subject: multiple webcams Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, The company I work for is looking to have 4 webcams in various parts of our facilities. We currently run FreeBSD boxes for servers and is there a way to hook them up to my server. QuickCam's are probably not going to work because the cameras are going to be 20-30 feet away from the servers, so would there be a video capture card solutions that supports FreeBSD that could use ordinary NTSC camera's and stream the images over the internet? If anyone has any experience with webcams, I'd be very interested to talking to you. Thanks, Ben Pepa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 2: 7:10 1999 Delivered-To: freebsd-questions@freebsd.org Received: from Bespin.worldnet.net (bespin.worldnet.net [195.3.3.4]) by hub.freebsd.org (Postfix) with ESMTP id 5E01714D16 for ; Thu, 19 Aug 1999 02:07:01 -0700 (PDT) (envelope-from pcasidy@worldnet.fr) Received: from greatoak.home (p14-048.province.worldnet.fr [195.3.14.48]) by Bespin.worldnet.net (8.8.8/8.8.8) with ESMTP id LAA00875; Thu, 19 Aug 1999 11:02:45 +0200 (CEST) Received: (from pcasidy@localhost) by greatoak.home (8.9.3/8.9.3) id KAA03029; Thu, 19 Aug 1999 10:52:05 +0200 (CEST) (envelope-from pcasidy) Message-Id: <199908190852.KAA03029@greatoak.home> Date: Thu, 19 Aug 1999 10:52:05 +0200 (CEST) From: Philippe CASIDY Subject: RE: How to update CVS repository ? To: ChrisMic@clientlogic.com Cc: questions@FreeBSD.org In-Reply-To: <6C37EE640B78D2118D2F00A0C90FCB4401105BA5@site2s1> MIME-Version: 1.0 Content-Type: TEXT/plain; CHARSET=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On 18 Aug, Christopher Michaels wrote: > I personally use the steps on the following page to keep my CVS repository > up to date. > > http://www.freebsd.org/FAQ/FAQ249.html Thank you very much! I did not get that this FAQ would help me ;-) Phil. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 2: 7:57 1999 Delivered-To: freebsd-questions@freebsd.org Received: from cygnus.rush.net (cygnus.rush.net [209.45.245.133]) by hub.freebsd.org (Postfix) with ESMTP id 9A80414D16 for ; Thu, 19 Aug 1999 02:07:51 -0700 (PDT) (envelope-from bright@rush.net) Received: from localhost (bright@localhost) by cygnus.rush.net (8.9.3/8.9.3) with SMTP id FAA27728; Thu, 19 Aug 1999 05:15:20 -0400 (EDT) Date: Thu, 19 Aug 1999 05:15:19 -0400 (EDT) From: Alfred Perlstein To: Pek Yee Cc: freebsd-questions@FreeBSD.ORG Subject: Re: To capture installation screen of FreeBSD In-Reply-To: <19990819082636.4066.rocketmail@web601.yahoomail.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, 19 Aug 1999, Pek Yee wrote: > Could you tell me what software that i could use to > capture the installation screens of FreeBSD? > > I am currently developing a project to teach user > step-by-step on FreeBSD Installation. you can install via a serial cable, put the boot disk in, remove keyboard, attach a null-modem cable from com1 on the install machine to a serial port you can run a capture program on, power-up the install machine. good luck, and keep us updated on the tutorial :) -Alfred Perlstein - [bright@rush.net|bright@wintelcom.net] systems administrator and programmer Wintelcom - http://www.wintelcom.net/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 2:12:28 1999 Delivered-To: freebsd-questions@freebsd.org Received: from cygnus.rush.net (cygnus.rush.net [209.45.245.133]) by hub.freebsd.org (Postfix) with ESMTP id E237314E74 for ; Thu, 19 Aug 1999 02:12:24 -0700 (PDT) (envelope-from bright@rush.net) Received: from localhost (bright@localhost) by cygnus.rush.net (8.9.3/8.9.3) with SMTP id FAA17148; Thu, 19 Aug 1999 05:18:06 -0400 (EDT) Date: Thu, 19 Aug 1999 05:18:05 -0400 (EDT) From: Alfred Perlstein To: Ben Pepa Cc: freebsd-questions@FreeBSD.ORG Subject: Re: multiple webcams In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, 19 Aug 1999, Ben Pepa wrote: > Hi, > > The company I work for is looking to have 4 webcams in various parts of > our facilities. We currently run FreeBSD boxes for servers and is there > a way to hook them up to my server. > > QuickCam's are probably not going to work because the cameras are going > to be 20-30 feet away from the servers, so would there be a video capture > card solutions that supports FreeBSD that could use ordinary NTSC camera's > and stream the images over the internet? > > If anyone has any experience with webcams, I'd be very interested to > talking to you. I'm not exactly a "web-cam kind of guy" :) however, I do know that my brooktree based card is wicked cool, it takes various video in, and captures at a very nice framerate: http://www.hauppage.com/ you'll want to look at the "fxtv" port in /usr/ports enjoy, -Alfred Perlstein - [bright@rush.net|bright@wintelcom.net] systems administrator and programmer Wintelcom - http://www.wintelcom.net/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 2:38:45 1999 Delivered-To: freebsd-questions@freebsd.org Received: from smtp7.xs4all.nl (smtp7.xs4all.nl [194.109.127.50]) by hub.freebsd.org (Postfix) with ESMTP id EBFE014C8C for ; Thu, 19 Aug 1999 02:38:39 -0700 (PDT) (envelope-from arnout@tomcat.xs4all.nl) Received: from tomcat.xs4all.nl (tomcat.xs4all.nl [194.109.15.187]) by smtp7.xs4all.nl (8.9.3/8.9.3) with ESMTP id LAA28319; Thu, 19 Aug 1999 11:37:44 +0200 (CEST) Received: (from arnout@localhost) by tomcat.xs4all.nl (8.9.3/8.9.1) id LAA34911; Thu, 19 Aug 1999 11:39:19 +0200 (CEST) Date: Thu, 19 Aug 1999 11:39:19 +0200 From: Arnout Boer To: freebsd-questions@freebsd.org Cc: arnout@xs4all.nl Subject: Strange printing thing with apsfilter Message-ID: <19990819113919.B10539@tomcat.xs4all.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.6i X-Operating-System: FreeBSD 3.2-STABLE i386 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I reinstalled my system with 3.2-stable... (lots of config changes..) but I'm experience a strange thing when I print... (using the latest apsfilter from ports-current) on my Laserjet 5p.... On (almost) every page something goes wrong.. Sometimes some letters/figures which should't be there (pretty random) or sometimes some 'bad letter'.... I already swapped the extra ram.. no change... I use the laserjet4 driver (works the best).... The problem get's less if I lower the resolution to 300dpi... ANy suggestions are welcome...... Please cc to me... Greetz, Arnout --- dmesg -- Copyright (c) 1992-1999 FreeBSD Inc. Copyright (c) 1982, 1986, 1989, 1991, 1993 The Regents of the University of California. All rights reserved. FreeBSD 3.2-STABLE #0: Thu Aug 19 01:10:25 CEST 1999 root@tomcat.xs4all.nl:/usr/src/sys/compile/TOMCAT Timecounter "i8254" frequency 1193182 Hz CPU: Pentium/P55C (586-class CPU) Origin = "GenuineIntel" Id = 0x544 Stepping = 4 Features=0x8003bf real memory = 134217728 (131072K bytes) avail memory = 127348736 (124364K bytes) Programming 24 pins in IOAPIC #0 FreeBSD/SMP: Multiprocessor motherboard cpu0 (BSP): apic id: 0, version: 0x00030010, at 0xfee00000 cpu1 (AP): apic id: 1, version: 0x00030010, at 0xfee00000 io0 (APIC): apic id: 2, version: 0x00170011, at 0xfec00000 Preloaded elf kernel "kernel" at 0xc02e2000. Preloaded userconfig_script "/boot/kernel.conf" at 0xc02e209c. Probing for devices on PCI bus 0: chip0: rev 0x03 on pci0.0.0 chip1: rev 0x01 on pci0.7.0 vga0: rev 0x9a on pci0.8.0 ncr0: rev 0x23 int a irq 17 on pci0.9.0 fxp0: rev 0x08 int a irq 18 on pci0.10.0 fxp0: Ethernet address 00:90:27:42:d9:b7 ahc0: rev 0x00 int a irq 19 on pci0.12.0 ahc0: Using left over BIOS settings ahc0: aic7880 Wide Channel A, SCSI Id=7, 16/255 SCBs Probing for PnP devices: CSN 1 Vendor ID: CTL00c5 [0xc5008c0e] Serial 0x1d3f30af Comp ID: PNPb02f [0x2fb0d041] Probing for devices on the ISA bus: sc0 on isa sc0: VGA color <16 virtual consoles, flags=0x0> sio0 at 0x3f8-0x3ff irq 4 flags 0x10 on isa sio0: type 16550A sio1 at 0x2f8-0x2ff irq 3 on isa sio1: type 16550A atkbdc0 at 0x60-0x6f on motherboard atkbd0 irq 1 on isa psm0 irq 12 on isa psm0: model MouseMan+, device ID 0 fdc0 at 0x3f0-0x3f7 irq 6 drq 2 on isa fdc0: FIFO enabled, 8 bytes threshold fd0: 1.44MB 3.5in ppc0 at 0x378 irq 7 flags 0x40 on isa ppc0: SMC-like chipset (ECP/EPP/PS2/NIBBLE) in COMPATIBLE mode ppc0: FIFO with 16/16/16 bytes threshold lpt0: on ppbus 0 lpt0: Interrupt-driven port ppi0: on ppbus 0 vga0 at 0x3b0-0x3df maddr 0xa0000 msize 131072 on isa npx0 on motherboard npx0: INT 16 interface sb0 at 0x220 irq 5 drq 1 on isa snd0: sbxvi0 at drq 5 on isa snd0: sbmidi0 at 0x330 on isa snd0: opl0 at 0x388 on isa snd0: Intel Pentium detected, installing workaround for F00F bug APIC_IO: Testing 8254 interrupt delivery APIC_IO: routing 8254 via pin 2 Waiting 15 seconds for SCSI devices to settle SMP: AP CPU #1 Launched! da4 at ncr0 bus 0 target 0 lun 0 da4: Fixed Direct Access SCSI-2 device da4: 10.000MB/s transfers (10.000MHz, offset 8), Tagged Queueing Enabled da4: 1021MB (2091144 512 byte sectors: 64H 32S/T 1021C) da2 at ncr0 bus 0 target 1 lun 0 da2: Fixed Direct Access SCSI-2 device da2: 10.000MB/s transfers (10.000MHz, offset 8) da2: 699MB (1431760 512 byte sectors: 64H 32S/T 699C) da3 at ncr0 bus 0 target 6 lun 0 da3: Fixed Direct Access SCSI-2 device da3: 10.000MB/s transfers (10.000MHz, offset 8) da3: 696MB (1427328 512 byte sectors: 64H 32S/T 696C) changing root device to da0s2a cd0 at ahc0 bus 0 target 3 lun 0 cd0: Removable CD-ROM SCSI-2 device cd0: 20.000MB/s transfers (20.000MHz, offset 15) cd0: Attempt to query device size failed: NOT READY, Medium not present cd1 at ahc0 bus 0 target 5 lun 0 cd1: Removable CD-ROM SCSI-2 device cd1: 3.300MB/s transfers cd1: Attempt to query device size failed: NOT READY, Medium not present cd2 at ncr0 bus 0 target 4 lun 0 cd2: Removable CD-ROM SCSI-2 device cd2: 4.237MB/s transfers (4.237MHz, offset 8) cd2: Attempt to query device size failed: NOT READY, Medium not present da0 at ahc0 bus 0 target 0 lun 0 da0: Fixed Direct Access SCSI-2 device da0: 40.000MB/s transfers (20.000MHz, offset 8, 16bit), Tagged Queueing Enabled da0: 2063MB (4226725 512 byte sectors: 64H 32S/T 2063C) da1 at ahc0 bus 0 target 1 lun 0 da1: Fixed Direct Access SCSI-2 device da1: 40.000MB/s transfers (20.000MHz, offset 8, 16bit), Tagged Queueing Enabled da1: 8715MB (17850000 512 byte sectors: 64H 32S/T 8715C) ffs_mountfs: superblock updated for soft updates ffs_mountfs: superblock updated for soft updates ffs_mountfs: superblock updated for soft updates ffs_mountfs: superblock updated for soft updates ffs_mountfs: superblock updated for soft updates ffs_mountfs: superblock updated for soft updates To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 2:38:52 1999 Delivered-To: freebsd-questions@freebsd.org Received: from smtp7.xs4all.nl (smtp7.xs4all.nl [194.109.127.50]) by hub.freebsd.org (Postfix) with ESMTP id 5E8EA14D16 for ; Thu, 19 Aug 1999 02:38:43 -0700 (PDT) (envelope-from arnout@tomcat.xs4all.nl) Received: from tomcat.xs4all.nl (tomcat.xs4all.nl [194.109.15.187]) by smtp7.xs4all.nl (8.9.3/8.9.3) with ESMTP id LAA28364; Thu, 19 Aug 1999 11:37:49 +0200 (CEST) Received: (from arnout@localhost) by tomcat.xs4all.nl (8.9.3/8.9.1) id LAA15983; Thu, 19 Aug 1999 11:31:06 +0200 (CEST) Date: Thu, 19 Aug 1999 11:31:06 +0200 From: Arnout Boer To: freebsd-questions@freebsd.org Cc: arnout@xs4all.nl Subject: Samba on stable... a performance problem Message-ID: <19990819113106.A10539@tomcat.xs4all.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.6i X-Operating-System: FreeBSD 3.2-STABLE i386 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I'm using FreeBSD now since 2.0.x and I love it... But now I'm experimenting with samba and the performance drop is so big that I think I forget something... WIthout samba the 100mbit fxp0 link crossover was almost maximal used during ftp... With samba it drops to about 80kB/s I included some comfiguration info underneath.. Any advice is appreciated, please cc to me! Greetz, Arnout # Samba config file created using SWAT # from (127.0.0.1) # Date: 1999/08/18 19:17:25 # Global parameters [global] workgroup = APPELDING netbios name = TOMCAT server string = Tomcat Samba Server encrypt passwords = Yes log file = /var/log/log.%m max log size = 500 max xmit = 16384 read prediction = Yes socket options = IPTOS_LOWDELAY TCP_NODELAY domain logons = Yes preferred master = Yes domain master = Yes dns proxy = No wins support = Yes hosts allow = 192.168.0. 127. 194.109.15.187 print command = lpr -P%p %s [tmp] comment = Temporary file space path = /samba/tmp/ read only = No guest ok = Yes Copyright (c) 1992-1999 FreeBSD Inc. Copyright (c) 1982, 1986, 1989, 1991, 1993 The Regents of the University of California. All rights reserved. FreeBSD 3.2-STABLE #0: Thu Aug 19 01:10:25 CEST 1999 root@tomcat.xs4all.nl:/usr/src/sys/compile/TOMCAT Timecounter "i8254" frequency 1193182 Hz CPU: Pentium/P55C (586-class CPU) Origin = "GenuineIntel" Id = 0x544 Stepping = 4 Features=0x8003bf real memory = 134217728 (131072K bytes) avail memory = 127348736 (124364K bytes) Programming 24 pins in IOAPIC #0 FreeBSD/SMP: Multiprocessor motherboard cpu0 (BSP): apic id: 0, version: 0x00030010, at 0xfee00000 cpu1 (AP): apic id: 1, version: 0x00030010, at 0xfee00000 io0 (APIC): apic id: 2, version: 0x00170011, at 0xfec00000 Preloaded elf kernel "kernel" at 0xc02e2000. Preloaded userconfig_script "/boot/kernel.conf" at 0xc02e209c. Probing for devices on PCI bus 0: chip0: rev 0x03 on pci0.0.0 chip1: rev 0x01 on pci0.7.0 vga0: rev 0x9a on pci0.8.0 ncr0: rev 0x23 int a irq 17 on pci0.9.0 fxp0: rev 0x08 int a irq 18 on pci0.10.0 fxp0: Ethernet address 00:90:27:42:d9:b7 ahc0: rev 0x00 int a irq 19 on pci0.12.0 ahc0: Using left over BIOS settings ahc0: aic7880 Wide Channel A, SCSI Id=7, 16/255 SCBs Probing for PnP devices: CSN 1 Vendor ID: CTL00c5 [0xc5008c0e] Serial 0x1d3f30af Comp ID: PNPb02f [0x2fb0d041] Probing for devices on the ISA bus: sc0 on isa sc0: VGA color <16 virtual consoles, flags=0x0> sio0 at 0x3f8-0x3ff irq 4 flags 0x10 on isa sio0: type 16550A sio1 at 0x2f8-0x2ff irq 3 on isa sio1: type 16550A atkbdc0 at 0x60-0x6f on motherboard atkbd0 irq 1 on isa psm0 irq 12 on isa psm0: model MouseMan+, device ID 0 fdc0 at 0x3f0-0x3f7 irq 6 drq 2 on isa fdc0: FIFO enabled, 8 bytes threshold fd0: 1.44MB 3.5in ppc0 at 0x378 irq 7 flags 0x40 on isa ppc0: SMC-like chipset (ECP/EPP/PS2/NIBBLE) in COMPATIBLE mode ppc0: FIFO with 16/16/16 bytes threshold lpt0: on ppbus 0 lpt0: Interrupt-driven port ppi0: on ppbus 0 vga0 at 0x3b0-0x3df maddr 0xa0000 msize 131072 on isa npx0 on motherboard npx0: INT 16 interface sb0 at 0x220 irq 5 drq 1 on isa snd0: sbxvi0 at drq 5 on isa snd0: sbmidi0 at 0x330 on isa snd0: opl0 at 0x388 on isa snd0: Intel Pentium detected, installing workaround for F00F bug APIC_IO: Testing 8254 interrupt delivery APIC_IO: routing 8254 via pin 2 Waiting 15 seconds for SCSI devices to settle SMP: AP CPU #1 Launched! da4 at ncr0 bus 0 target 0 lun 0 da4: Fixed Direct Access SCSI-2 device da4: 10.000MB/s transfers (10.000MHz, offset 8), Tagged Queueing Enabled da4: 1021MB (2091144 512 byte sectors: 64H 32S/T 1021C) da2 at ncr0 bus 0 target 1 lun 0 da2: Fixed Direct Access SCSI-2 device da2: 10.000MB/s transfers (10.000MHz, offset 8) da2: 699MB (1431760 512 byte sectors: 64H 32S/T 699C) da3 at ncr0 bus 0 target 6 lun 0 da3: Fixed Direct Access SCSI-2 device da3: 10.000MB/s transfers (10.000MHz, offset 8) da3: 696MB (1427328 512 byte sectors: 64H 32S/T 696C) changing root device to da0s2a cd0 at ahc0 bus 0 target 3 lun 0 cd0: Removable CD-ROM SCSI-2 device cd0: 20.000MB/s transfers (20.000MHz, offset 15) cd0: Attempt to query device size failed: NOT READY, Medium not present cd1 at ahc0 bus 0 target 5 lun 0 cd1: Removable CD-ROM SCSI-2 device cd1: 3.300MB/s transfers cd1: Attempt to query device size failed: NOT READY, Medium not present cd2 at ncr0 bus 0 target 4 lun 0 cd2: Removable CD-ROM SCSI-2 device cd2: 4.237MB/s transfers (4.237MHz, offset 8) cd2: Attempt to query device size failed: NOT READY, Medium not present da0 at ahc0 bus 0 target 0 lun 0 da0: Fixed Direct Access SCSI-2 device da0: 40.000MB/s transfers (20.000MHz, offset 8, 16bit), Tagged Queueing Enabled da0: 2063MB (4226725 512 byte sectors: 64H 32S/T 2063C) da1 at ahc0 bus 0 target 1 lun 0 da1: Fixed Direct Access SCSI-2 device da1: 40.000MB/s transfers (20.000MHz, offset 8, 16bit), Tagged Queueing Enabled da1: 8715MB (17850000 512 byte sectors: 64H 32S/T 8715C) ffs_mountfs: superblock updated for soft updates ffs_mountfs: superblock updated for soft updates ffs_mountfs: superblock updated for soft updates ffs_mountfs: superblock updated for soft updates ffs_mountfs: superblock updated for soft updates ffs_mountfs: superblock updated for soft updates I'm using FreeBSD now since 2.0.x and I love it... But now I'm experimenting with samba and the performance drop is so big that I think I forget something... WIthout samba the 100mbit fxp0 link crossover was almost maximal used during ftp... With samba it drops to about 80kB/s I included some comfiguration info underneath.. Any advice is appreciated, please cc to me! Greetz, Arnout To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 2:40:23 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mobil.surnet.ru (mobil.surnet.ru [195.54.2.7]) by hub.freebsd.org (Postfix) with ESMTP id 199D314D16 for ; Thu, 19 Aug 1999 02:40:06 -0700 (PDT) (envelope-from ilia@cgilh.chel.su) Received: (from uucgilh@localhost) by mobil.surnet.ru (8.9.1a/8.9.1) with UUCP id PAA02327; Thu, 19 Aug 1999 15:42:54 +0600 (UDT) Received: (from uucp@localhost) by cgilh.chel.su (8.8.7/8.8.7) with UUCP id KAA00420; Thu, 19 Aug 1999 10:49:01 +0600 Received: from localhost (ilia@localhost) by localhost.cgu.chel.su (8.9.2/8.9.2) with ESMTP id BAA01755; Wed, 18 Aug 1999 01:39:26 +0600 (ESS) (envelope-from ilia@cgilh.chel.su) X-Authentication-Warning: localhost.cgu.chel.su: ilia owned process doing -bs Date: Wed, 18 Aug 1999 01:39:23 +0600 (ESS) From: Ilia Chipitsine X-Sender: ilia@localhost.cgu.chel.su To: Mohit Aron Cc: freebsd-questions@FreeBSD.ORG Subject: Re: ext2fs filesystem In-Reply-To: <199908171844.NAA28562@cs.rice.edu> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=koi8-r Content-Transfer-Encoding: 8BIT Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG $ grep -i ext2 /usr/src/sys/i386/conf/LINT options "EXT2FS" Regards, (îÁÉÌÕÞÛÉÅ ÐÏÖÅÌÁÎÉÑ) Ilia Chipitsine (éÌØÑ ûÉÐÉÃÉÎ) On Tue, 17 Aug 1999, Mohit Aron wrote: > Hi, > I want to compile my kernel with support for the ext2fs filesystem. > Can someone tell me how to do this. Thanks, > > > > - Mohit > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 2:41:26 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mobil.surnet.ru (mobil.surnet.ru [195.54.2.7]) by hub.freebsd.org (Postfix) with ESMTP id 54B0114D16 for ; Thu, 19 Aug 1999 02:40:59 -0700 (PDT) (envelope-from ilia@cgilh.chel.su) Received: (from uucgilh@localhost) by mobil.surnet.ru (8.9.1a/8.9.1) with UUCP id PAA02328; Thu, 19 Aug 1999 15:42:55 +0600 (UDT) Received: (from uucp@localhost) by cgilh.chel.su (8.8.7/8.8.7) with UUCP id KAA00423; Thu, 19 Aug 1999 10:49:01 +0600 Received: from localhost (ilia@localhost) by localhost.cgu.chel.su (8.9.2/8.9.2) with ESMTP id BAA01763; Wed, 18 Aug 1999 01:44:00 +0600 (ESS) (envelope-from ilia@cgilh.chel.su) X-Authentication-Warning: localhost.cgu.chel.su: ilia owned process doing -bs Date: Wed, 18 Aug 1999 01:43:57 +0600 (ESS) From: Ilia Chipitsine X-Sender: ilia@localhost.cgu.chel.su To: Reinoud Koornstra Cc: freebsd-questions@FreeBSD.ORG Subject: Re: bug wich crashes freebsd 3.2 In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=koi8-r Content-Transfer-Encoding: 8BIT Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG 1. do not remove floppy, UNMOUNT it first 2. try to compile you kernel with built-in debugger a) add "options DDB" to YOUR_KERNEL_CONFIG_FILE b) # config -g YOUR_KERNEL_CONFIG_FILE Regards, (îÁÉÌÕÞÛÉÅ ÐÏÖÅÌÁÎÉÑ) Ilia Chipitsine (éÌØÑ ûÉÐÉÃÉÎ) On Tue, 17 Aug 1999, Reinoud Koornstra wrote: > Hi, > > I run into a annoying bug in the freebsd 3.2 > Maybe it is known to you, but freebsd 3.1 also crashes on this point. > > It's simple, take a i386 machine with freebsd 3.2 installed on it. > Put an 1.44 inch disk in the drive wich is formatted with the ms dos fs. > then mount_msdos /dev/fd0 /mnt > then cd /mnt > then ls > I tryed to copy a file from my hd to the disk, but the disk was write > protected, so it didnt work. > I had one file on the floppy and tryed to remove it, but i got an error > cause the disk was write protected. > Then i took the floppy out and remove the write protection and put the > floppy in again and typed ls again. > On that moment freebsd 3.2 hangs. > I tryed this 3 times and everytime i had the same result. > Do you know this bug? > Is this fixed in 4.0? > Sincerely, > > Reinoud. > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 3:18:58 1999 Delivered-To: freebsd-questions@freebsd.org Received: from shell2.la.best.com (shell2.la.best.com [209.24.216.141]) by hub.freebsd.org (Postfix) with ESMTP id 1E2FA14FF5 for ; Thu, 19 Aug 1999 03:18:55 -0700 (PDT) (envelope-from nugundam@shell2.la.best.com) Received: (from nugundam@localhost) by shell2.la.best.com (8.9.3/8.9.2/best.sh) id DAA06015; Thu, 19 Aug 1999 03:17:08 -0700 (PDT) Message-ID: <19990819031707.A5500@la.best.com> Date: Thu, 19 Aug 1999 03:17:08 -0700 From: "Joseph T. Lee" To: Doug , FreeBSD Question Cc: Kenny Drobnack , Eric Lee Green , freebsd-questions@FreeBSD.ORG Subject: Re: Ensoniq AudioPCI Not Werking References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.93.2i In-Reply-To: ; from Doug on Wed, Aug 11, 1999 at 02:25:07PM -0700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, Aug 11, 1999 at 02:25:07PM -0700, Doug wrote: > Wel, This didnt work for me either! Here is what i get relating to my sound > card in dmesg: > > es1: rev 0x00 int a irq 9 on pci0.10.0 > pcm1: using I/O space register mapping at 0xdcc0 > .... > pcm0 not found > > and in my kernel config file for STINKY i have: > > device pcm0 at isa ? port ? tty irq 9 drq 1 flags 0x0 you can get rid of the pcm0 not found by changing it to: device pcm0 and that's it. It's a pci device - the isa? stuff is unnecessary. pnp0 should exist, and pnp os be off in the bios. Joseph To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 3:28:24 1999 Delivered-To: freebsd-questions@freebsd.org Received: from ferao.jungle.bt.co.uk (ferao.jungle.bt.co.uk [132.146.107.45]) by hub.freebsd.org (Postfix) with ESMTP id 375E714DDC for ; Thu, 19 Aug 1999 03:28:17 -0700 (PDT) (envelope-from jtorrico@jungle.bt.co.uk) Received: from jungle.bt.co.uk (james.futures.bt.co.uk [132.146.109.72]) by ferao.jungle.bt.co.uk (8.9.1b+Sun/Jungle-8.9.1-03) with ESMTP id LAA29335; Thu, 19 Aug 1999 11:24:49 +0100 (BST) Message-ID: <37BBDD22.629418DF@jungle.bt.co.uk> Date: Thu, 19 Aug 1999 11:32:02 +0100 From: Jaime Gil X-Mailer: Mozilla 4.61 [en] (X11; I; FreeBSD 3.2-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@freebsd.org, jjm@chtts.ru Subject: PPP+RADIUS Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi everybody. I have just joined the list. I would like to know if anybody knows a way to use RADIUS as the protocol to make authentication and accounting for ppp. As far as I know, there is a radius client inside the ppp protocol. However, after some trials, this client seems to be uncompatible with the merit RADIUS server. At the moment I'm using mgetty-1.1.11 to pickup dial in calls, which are later handled by ppp. But the authentication is done through ppp.secret instead of RADIUS. How can I change this ? Any suggestion would be welcome ...... Thanks in advance, Jaime Gil To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 3:58: 0 1999 Delivered-To: freebsd-questions@freebsd.org Received: from smtp1.vnet.net (smtp1.vnet.net [166.82.1.31]) by hub.freebsd.org (Postfix) with ESMTP id 5027214BD5 for ; Thu, 19 Aug 1999 03:57:57 -0700 (PDT) (envelope-from rivers@dignus.com) Received: from dignus.com (ponds.vnet.net [166.82.177.48]) by smtp1.vnet.net (8.9.1a/8.9.1) with ESMTP id GAA04692; Thu, 19 Aug 1999 06:56:35 -0400 (EDT) Received: from lakes.dignus.com (lakes.dignus.com [10.0.0.3]) by dignus.com (8.9.2/8.8.5) with ESMTP id GAA09534; Thu, 19 Aug 1999 06:56:34 -0400 (EDT) Received: (from rivers@localhost) by lakes.dignus.com (8.9.2/8.6.9) id GAA49050; Thu, 19 Aug 1999 06:56:34 -0400 (EDT) Date: Thu, 19 Aug 1999 06:56:34 -0400 (EDT) From: Thomas David Rivers Message-Id: <199908191056.GAA49050@lakes.dignus.com> To: fmiranda@metrotel.net.co, freebsd-questions@FreeBSD.ORG Subject: Re: How to emulate a IBM 9370 terminal with FreeBSD ? In-Reply-To: <37BB6177.F3892B4D@metrotel.net.co> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Take a look at the x3270 program. There is a package you can install. - Dave Rivers - To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 4:17:52 1999 Delivered-To: freebsd-questions@freebsd.org Received: from drawbridge.ascend.com (drawbridge.ascend.com [198.4.92.1]) by hub.freebsd.org (Postfix) with ESMTP id 07E7814E8A for ; Thu, 19 Aug 1999 04:17:42 -0700 (PDT) (envelope-from mcwong@ascend.com) Received: from fw-ext.ascend.com (fw-ext [198.4.92.5]) by drawbridge.ascend.com (8.9.1a/8.9.1) with SMTP id EAA17092; Thu, 19 Aug 1999 04:10:37 -0700 (PDT) From: mcwong@ascend.com Received: from russet.ascend.com by fw-ext.ascend.com via smtpd (for drawbridge.ascend.com [198.4.92.1]) with SMTP; 19 Aug 1999 11:15:15 UT Received: from colton.ascend.com (colton.ascend.com [192.207.23.40]) by russet.ascend.com (8.9.1a/8.9.1) with SMTP id EAA04196; Thu, 19 Aug 1999 04:15:14 -0700 (PDT) Received: by colton.ascend.com(Lotus SMTP MTA Internal build v4.6.2 (651.2 6-10-1998)) id 882567D2.003DC1B5 ; Thu, 19 Aug 1999 04:14:32 -0700 X-Lotus-FromDomain: ASCEND To: Ben Smithurst Cc: questions@freebsd.org Message-ID: <882567D2.003DC09F.00@colton.ascend.com> Date: Thu, 19 Aug 1999 21:17:48 +1000 Subject: Re: Safe upgrade from 2.2.5 --> 3.2 ? Mime-Version: 1.0 Content-type: text/plain; charset=us-ascii Content-Disposition: inline Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Ben One more question before I begin. Since 2.2.5 is a.out only system and 3.2 will be elf by default, now that I have the 3.2. src what target should I be building first ? I look at the Makefile explanation but am not able to follow exactly which one I should run. THere are buildworld - which is something which I will need since I cannot afford to overwrite all binaries just yet. installworld - done after above after certain level of confidence upgrade - should this be done before or after the above 2 ? Also, about the mergemaster util. Should this be run before or after the above build process ? I did try running is *before* the build (which I am quite reluctant to do for now until I know which target to build) but got the following error: .... [snip] missing: ./tmp (created) missing: ./tmp/vi.recover (created) missing: ./yp (created) if [ -d /var/tmp/temproot/usr/share/locale ] ; then cd /var/tmp/temproot/usr/ share/locale; for l in da_DK de_AT de_CH de_DE en_AU en_CA en_GB en_US es_ES fi_FI fr_BE fr_CA fr_CH fr_FR is_IS it_CH it_IT nl_BE nl_NL no_NO pt_PT sv_SE; do if [ -h $l.ISO_8859-1 ]; then rm $l.ISO_8859-1; fi ; done; fi mtree -deU -f /usr/src/etc/mtree/BSD.usr.dist -p /var/tmp/temproot/usr mtree: line 156: unknown keyword nochange *** Error code 1 Stop. *** FATAL ERROR: Cannot 'cd' to /usr/src/etc and install files to the temproot environment At this point I stop and decide to ask before proceeding further. TIA MCW Ben Smithurst on 08/18/99 11:49:58 PM To: MC Wong/Ascend/US cc: Subject: Re: Safe upgrade from 2.2.5 --> 3.2 ? mcwong@ascend.com wrote: > THanks for sharing the experience. When you said you forgot > to upgrade /etc, what exactly do you mean ? Do you mean > /etc in 3.2 has changed dramatically ? So what is correct > procedure for upgrading this /etc ? Not dramatically, as such. Just that 3.2 has both ELF and a.out binary formats, while 2.2.5 has just a.out. Because of this, /etc/rc in 3.2 needs to run ldconfig to configure both formats of libraries. A program called mergemaster is supposed to be good for upgrading /etc, but I haven't looked at it much. I think it's in the ports tree, either under sysutils or misc, IIRC. -- Ben Smithurst | PGP: 0x99392F7D ben@scientia.demon.co.uk | key available from keyservers and | ben+pgp@scientia.demon.co.uk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 4:58:42 1999 Delivered-To: freebsd-questions@freebsd.org Received: from virtual.kraft-s.ru (www.kraft-s.ru [195.128.153.195]) by hub.freebsd.org (Postfix) with ESMTP id 5AA73158F7 for ; Thu, 19 Aug 1999 04:58:21 -0700 (PDT) (envelope-from sting@hippo.ru) Received: from sting (grata.hippo.ru [195.128.154.112]) by virtual.kraft-s.ru (8.9.3/8.9.0) with SMTP id QAA21000 for ; Thu, 19 Aug 1999 16:58:13 +0500 Message-ID: <000901beea42$a9226fa0$0201a8c0@sting.grata.hippo.ru> From: "Korchagin, Dmitry" To: Subject: Permissions playing :-( Date: Thu, 19 Aug 1999 16:58:51 +0400 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0006_01BEEA64.1CD1E720" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 4.72.3110.5 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3110.3 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0006_01BEEA64.1CD1E720 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: quoted-printable Hello, I have changed permissions on several files and directories in way of testing user access. In result, I can't SU to root from any user of wheel group: $ su $ Password: (I've correct password typed here) $ Sorry! But I still success login with root account, so password, I typed, is = correct. I have some permissions restored, but I not sure that all. And, may be, = another reason? What can I do in way of reanimating SU? Sorry for my english. Best regards, Dmitry Korchagin sting@hippo.ru ------=_NextPart_000_0006_01BEEA64.1CD1E720 Content-Type: text/html; charset="koi8-r" Content-Transfer-Encoding: quoted-printable
Hello,
I have changed = permissions on=20 several files and directories
in way of testing = user access.=20 In result, I can't SU to root from any
user of wheel=20 group:
 
$ su
$ = Password:   =20 (I've correct password typed here)
$ = Sorry!
 
But I still = success login with=20 root account, so password, I typed, is correct.
I have some = permissions=20 restored, but I not sure that all. And, may be, another = reason?
 
What can I do in = way of=20 reanimating SU?
 
Sorry for my=20 english.
Best regards, = Dmitry=20 Korchagin
 
sting@hippo.ru
 
------=_NextPart_000_0006_01BEEA64.1CD1E720-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 5: 4:50 1999 Delivered-To: freebsd-questions@freebsd.org Received: from list.wildcoast.co.za (list.wildcoast.co.za [196.25.82.3]) by hub.freebsd.org (Postfix) with ESMTP id 9016714C8D for ; Thu, 19 Aug 1999 05:04:38 -0700 (PDT) (envelope-from evablunted@earthling.net) Received: from impakt (uta36-01-p30.ec.saix.NET [155.239.168.30]) by list.wildcoast.co.za (8.9.3/8.9.3) with SMTP id OAA07356; Thu, 19 Aug 1999 14:08:49 +0200 Message-ID: <001401beea38$41c28d90$0a01a8c0@sunshine.co.za> From: "Langa Kentane" To: "Cisco" Cc: "FreeBSD" Subject: router and firewall question Date: Thu, 19 Aug 1999 13:34:39 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit 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-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I have a cisco 2511 connected to the internet thru s0. The ip adress of s0 is set to unnumbered (eth0). Eth0's ip address is x.y.25.1 255.255.255.192. My isp has assigned me 64 ip addresses. I want to put up a freebsd firewall between the router and the rest of the network. All hosts will be behind the firewall. What should the ip address of the interfaces on the firewall machine be? And how will this affect the rest of my network's ip addresses? Thanks in advance. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 5:20:40 1999 Delivered-To: freebsd-questions@freebsd.org Received: from NetMint.COM (netmint.com [207.106.21.130]) by hub.freebsd.org (Postfix) with ESMTP id DCD6814C57 for ; Thu, 19 Aug 1999 05:20:36 -0700 (PDT) (envelope-from andriss@andriss.com) Received: from localhost (andriss@localhost) by NetMint.COM (8.9.3/8.9.3) with ESMTP id IAA52770 for ; Thu, 19 Aug 1999 08:19:56 -0400 (EDT) Date: Thu, 19 Aug 1999 08:19:51 -0400 (EDT) From: Andriss X-Sender: andriss@NetMint.COM To: questions@freebsd.org Subject: recompile daemons after SMP? Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG -----BEGIN PGP SIGNED MESSAGE----- Hello, I have a couple boxes upgrading from single CPU to dual CPUs. After I recompile the kernel with SMP support, do I have to recompile all the system daemons (www, ftp, mail) for better performance, or will the new kernel be able to run two different threads on two CPUs simulteneously, thus giving me a performance boost without a major recompile? It would be really great if I don't have to recompile all the system software.. but it just sounds too easy to be true. - From my experience, top shows threads on both CPUs after going SMP without re-doing most of the system, but is it better to recompile anyway? I hope this question makes sense. The systems in question run 3.2-R (with scsi). Andriss - -- ______________________________________________________________ Andrey Kholodenko http://www.andriss.com Download My Public PGP Key From http://www.andriss.com/pgp.txt ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -----BEGIN PGP SIGNATURE----- Version: 2.6.3a Charset: noconv iQCVAwUBN7v2bCQe9jf/ODl9AQHZBgP/akOM2ChT+yYWJ40e8pXhpF3978D3k71L uXyHei7auHfeg60gYtqKye1PO9VnIl3CCc+/MzoR043vTn5GZh3MhpWbbsmZ0qJs W8zZ37Q63rG/re0aUnvHVmqUuDVTU2+N++vqf6NdurL9SDs3EumYlvZ+i+/y0B0w cnFIxCP4O7k= =F2z5 -----END PGP SIGNATURE----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 5:31:54 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail-smtp.socket.net (mail-smtp.socket.net [216.106.1.32]) by hub.freebsd.org (Postfix) with ESMTP id 38F6A15102 for ; Thu, 19 Aug 1999 05:31:51 -0700 (PDT) (envelope-from nathanm@socket.net) Received: from mail.socket.net (mail.socket.net [216.106.1.7]) by mail-smtp.socket.net (8.9.3/8.9.3) with SMTP id UAA26006 for ; Thu, 19 Aug 1999 20:35:29 -0500 Received: from tcc ([216.106.0.22]) by mail.socket.net ; Thu, 19 Aug 1999 06:14:05 -0600 From: "Nathan Mahon" To: Subject: Small Install. Date: Thu, 19 Aug 1999 07:29:18 -0500 Message-ID: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_NextPart_000_0008_01BEEA14.8BEF16A0" X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 X-MS-TNEF-Correlator: Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0008_01BEEA14.8BEF16A0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit I'm limited by the hardware that I will be using to 40MB. Linux has the capability of installing in this (and smaller) size. Is this possible w/ freebsd? and if so, what's the best way to get it installed? Are there any tutorials about tiny installs? Nathan Mahon ------=_NextPart_000_0008_01BEEA14.8BEF16A0 Content-Type: application/ms-tnef; name="winmail.dat" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="winmail.dat" eJ8+IhIMAQaQCAAEAAAAAAABAAEAAQeQBgAIAAAA5AQAAAAAAADoAAEIgAcAGAAAAElQTS5NaWNy b3NvZnQgTWFpbC5Ob3RlADEIAQ2ABAACAAAAAgACAAEGgAMADgAAAM8HCAATAAcAHQAAAAQAGQEB A5AGAKgFAAAlAAAACwACAAEAAAALACMAAAAAAAMAJgAAAAAACwApAAAAAAADADYAAAAAAB4AcAAB AAAADwAAAFNtYWxsIEluc3RhbGwuAAACAXEAAQAAABYAAAABvuo+dLvHDLvXVgIR044OAICtmAHt AAACAR0MAQAAABgAAABTTVRQOk5BVEhBTk1AU09DS0VULk5FVAALAAEOAAAAAEAABg4AzvxpPuq+ AQIBCg4BAAAAGAAAAAAAAAArq/NrnE/TEY4NAMAmiSoBwoAAAAsAHw4BAAAAAgEJEAEAAABdAQAA WQEAAJMBAABMWkZ1HU+W3AMACgByY3BnMTI1FjIA+Atgbg4QMDMzTwH3AqQD4wIAY2gKwHOwZXQw IAcTAoB9CoGSdgiQd2sLgGQ0DGAOYwBQCwMLtSBJJ20kIGwHcGl0CYAgYkB5IHRoZSAQ8WQudwrA FOAUwGEFQEkg1QPwbAMgYhTgdQCQDyABFLBvIDQwTUIuyCAgTAuAdXgU8QQg6RTCY2EKsGIDEBRA FKDob2YgC4BzAZAWIBaiZwuAFLEEACAoAHAUcHMXAMAWIASQKRqwaXplTRdRSRgCGkFwbwQQaWMC YBTgdy8gA1AJ4GJwc2Q/IBqCBpAasG/2LBXwFaEnGAQWUBlgFfD2YRShFvBnETAZMB/RGVT/CYAd cBFhFXIEkBTgAHAUoX51FuAHIgQgAaAIYAVAdOcLgBSgGUVzPwqiCoQKgI5OFbAQ8AOgTWFoAiAL I6oR4QAmIAAAAAsAAYAIIAYAAAAAAMAAAAAAAABGAAAAAAOFAAAAAAAAAwADgAggBgAAAAAAwAAA AAAAAEYAAAAAEIUAAAAAAAADAAeACCAGAAAAAADAAAAAAAAARgAAAABShQAAJ2oBAB4ACYAIIAYA AAAAAMAAAAAAAABGAAAAAFSFAAABAAAABAAAADkuMAAeAAqACCAGAAAAAADAAAAAAAAARgAAAAA2 hQAAAQAAAAEAAAAAAAAAHgALgAggBgAAAAAAwAAAAAAAAEYAAAAAN4UAAAEAAAABAAAAAAAAAB4A DIAIIAYAAAAAAMAAAAAAAABGAAAAADiFAAABAAAAAQAAAAAAAAALAA2ACCAGAAAAAADAAAAAAAAA RgAAAACChQAAAQAAAAsAOoAIIAYAAAAAAMAAAAAAAABGAAAAAA6FAAAAAAAAAwA8gAggBgAAAAAA wAAAAAAAAEYAAAAAEYUAAAAAAAADAD2ACCAGAAAAAADAAAAAAAAARgAAAAAYhQAAAAAAAAsAW4AI IAYAAAAAAMAAAAAAAABGAAAAAAaFAAAAAAAAAwBcgAggBgAAAAAAwAAAAAAAAEYAAAAAAYUAAAAA AAACAfgPAQAAABAAAAArq/NrnE/TEY4NAMAmiSoBAgH6DwEAAAAQAAAAK6vza5xP0xGODQDAJokq AQIB+w8BAAAAggAAAAAAAAA4obsQBeUQGqG7CAArKlbCAABQU1RQUlguRExMAAAAAAAAAABOSVRB +b+4AQCqADfZbgAAAEM6XFdJTkRPV1NcTG9jYWwgU2V0dGluZ3NcQXBwbGljYXRpb24gRGF0YVxN aWNyb3NvZnRcT3V0bG9va1xvdXRsb29rLnBzdAAAAAMA/g8FAAAAAwANNP03AAACAX8AAQAAADIA AAA8TkRCQklPQU5DTEdMTkZPQ0xHRU9HRURFQ0FBQS5uYXRoYW5tQHNvY2tldC5uZXQ+AAAAAwAG EJSPvnMDAAcQ1AAAAAMAEBAAAAAAAwAREAAAAAAeAAgQAQAAAGUAAABJTUxJTUlURURCWVRIRUhB UkRXQVJFVEhBVElXSUxMQkVVU0lOR1RPNDBNQkxJTlVYSEFTVEhFQ0FQQUJJTElUWU9GSU5TVEFM TElOR0lOVEhJUyhBTkRTTUFMTEVSKVNJWkVJAAAAACMf ------=_NextPart_000_0008_01BEEA14.8BEF16A0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 5:37:11 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail-smtp.socket.net (mail-smtp.socket.net [216.106.1.32]) by hub.freebsd.org (Postfix) with ESMTP id CC64C15120 for ; Thu, 19 Aug 1999 05:37:08 -0700 (PDT) (envelope-from nathanm@socket.net) Received: from mail.socket.net (mail.socket.net [216.106.1.7]) by mail-smtp.socket.net (8.9.3/8.9.3) with SMTP id UAA26519 for ; Thu, 19 Aug 1999 20:39:55 -0500 Received: from tcc ([216.106.0.22]) by mail.socket.net ; Thu, 19 Aug 1999 06:18:29 -0600 From: "Nathan Mahon" To: Subject: RE: Small Install-Clarification. Date: Thu, 19 Aug 1999 07:33:42 -0500 Message-ID: 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 IMO, Build 9.0.2416 (9.0.2910.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 In-Reply-To: Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG 40 MB HDD Space. > I'm limited by the hardware that I will be using to 40MB. Linux has the capability of installing in this (and smaller) size. Is this possible w/ freebsd? and if so, what's the best way to get it installed? Are there any tutorials about tiny installs? > > Nathan Mahon > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 5:39: 7 1999 Delivered-To: freebsd-questions@freebsd.org Received: from londonind.com (homer.londonind.com [207.238.195.18]) by hub.freebsd.org (Postfix) with ESMTP id 1AE4915120 for ; Thu, 19 Aug 1999 05:39:00 -0700 (PDT) (envelope-from rgrieselhuber@londonind.com) Message-ID: <37BBFB5F.B7036C2D@londonind.com> Date: Thu, 19 Aug 1999 08:41:04 -0400 From: Ray Grieselhuber MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: Root Password Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi. I tried to log on to my system, and it said login incorrect. But I know I was using the right password, so I don't understand the problem. How do I change the password without being logged in, or how do I get past this? The FAQ said to do this from the Boot: command, but how do I get to this if I can't log on? Thanks. Ray Grieselhuber rgrieselhuber@londonind.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 5:48:11 1999 Delivered-To: freebsd-questions@freebsd.org Received: from locutus.omen.com.au (reggae-15-242.nv.iinet.net.au [203.59.74.242]) by hub.freebsd.org (Postfix) with ESMTP id 315E214E36 for ; Thu, 19 Aug 1999 05:47:34 -0700 (PDT) (envelope-from deece@newmillennium.net.au) Received: from picard (picard [203.8.109.107]) by locutus.omen.com.au (8.9.3/8.9.2) with SMTP id UAA51017 for ; Thu, 19 Aug 1999 20:47:34 +0800 (WST) (envelope-from deece@newmillennium.net.au) Message-ID: <00ae01beeabe$664a8c40$6b6d08cb@omen.com.au> From: "Alastair D'Silva" To: References: Subject: FreeBSD and Floppies Date: Thu, 19 Aug 1999 20:45:04 -0700 Organization: New Millennium Networking MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2615.200 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2615.200 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is somewhat related to "bug which crashes FreeBSD 3.2" thread. I've been interested in making dumb-ish workstations with FreeBSD for a while, and would really like it if someone mentioned how to auotomatically mount/unmount removable media like cds and floppies. Cheers. Alastair D'Silva Networking Consultant New Millennium Networking deece@newmillennium.net.au 0413 485 733 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 5:56:39 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail.tucows.com (mail.tucows.com [208.229.216.23]) by hub.freebsd.org (Postfix) with ESMTP id EF72314E36 for ; Thu, 19 Aug 1999 05:56:35 -0700 (PDT) (envelope-from arthur@tucows.com) Received: from Arthur.Linuxberg (starwars.linuxberg.org [208.229.216.41]) by mail.tucows.com (8.9.3/8.9.1) with ESMTP id IAA17138; Thu, 19 Aug 1999 08:55:48 -0400 Received: from localhost (arthur@localhost) by Arthur.Linuxberg (8.9.3/8.9.3) with ESMTP id IAA00346; Thu, 19 Aug 1999 08:55:30 -0400 (EDT) X-Authentication-Warning: Arthur.Linuxberg: arthur owned process doing -bs Date: Thu, 19 Aug 1999 08:55:30 -0400 (EDT) From: "Arthur H. Johnson II" X-Sender: arthur@Arthur.Linuxberg To: Abe Rooter Cc: freebsd-questions@FreeBSD.ORG Subject: Re: PPP help In-Reply-To: <001301bee9df$d66d03c0$718767cf@jaspa> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG You can set up PPP the same way that Linux sets it up. Its called Kernel PPP. Arthur H. Johnson II http://www.linuxberg.com Linuxberg Manager arthur@tucows.com On Wed, 18 Aug 1999, Abe Rooter wrote: > I'm switching from Linux to FreeBSD. I looked at the ppp man, I'm not understanding it all that well. I'm used to writing the scripts, and running pppd. Can someone give me a clue ? > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 6: 1:33 1999 Delivered-To: freebsd-questions@freebsd.org Received: from gwdu60.gwdg.de (gwdu60.gwdg.de [134.76.10.60]) by hub.freebsd.org (Postfix) with ESMTP id 8BAFF14E36 for ; Thu, 19 Aug 1999 06:01:26 -0700 (PDT) (envelope-from kheuer@gwdu60.gwdg.de) Received: from localhost (kheuer@localhost) by gwdu60.gwdg.de (8.9.2/8.9.2) with ESMTP id PAA40335; Thu, 19 Aug 1999 15:00:05 +0200 (CEST) (envelope-from kheuer@gwdu60.gwdg.de) Date: Thu, 19 Aug 1999 15:00:05 +0200 (CEST) From: Konrad Heuer To: Andriss Cc: questions@FreeBSD.ORG Subject: Re: recompile daemons after SMP? In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=X-UNKNOWN Content-Transfer-Encoding: QUOTED-PRINTABLE Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, 19 Aug 1999, Andriss wrote: > I have a couple boxes upgrading from single CPU to dual CPUs. >=20 > After I recompile the kernel with SMP support, do I have to > recompile all the system daemons (www, ftp, mail) for better > performance, or will the new kernel be able to run two different > threads on two CPUs simulteneously, thus giving me a performance > boost without a major recompile? >=20 > It would be really great if I don't have to recompile all the > system software.. but it just sounds too easy to be true. >=20 > - From my experience, top shows threads on both CPUs after going > SMP without re-doing most of the system, but is it better to > recompile anyway? You don't need to recompile. It doesn't even make sense. The kernel will balance load on both cpus. There's no hidden flag set at compile time within the binaries about the number of cpus. :-) Regards // // Konrad Heuer ____ ___ _____= __=20 // Gesellschaft f=FCr wissenschaftliche / __/______ ___ / _ )/ __= / _ \ // Datenverarbeitung mbH G=D6ttingen / _// __/ -_) -_) _ |\ \/= // / // Am Fa=DFberg, D-37077 G=D6ttingen /_/ /_/ \__/\__/____/___= /____/=20 // Deutschland (Germany) ----- The Power to Serve ----= - // http://www.freebsd.org // kheuer@gwdu60.gwdg.de // To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 6: 3:21 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail.tucows.com (mail.tucows.com [208.229.216.23]) by hub.freebsd.org (Postfix) with ESMTP id 36D6214C36 for ; Thu, 19 Aug 1999 06:03:08 -0700 (PDT) (envelope-from arthur@tucows.com) Received: from Arthur.Linuxberg (starwars.linuxberg.org [208.229.216.41]) by mail.tucows.com (8.9.3/8.9.1) with ESMTP id JAA17423 for ; Thu, 19 Aug 1999 09:03:02 -0400 Received: from localhost (arthur@localhost) by Arthur.Linuxberg (8.9.3/8.9.3) with ESMTP id JAA00392 for ; Thu, 19 Aug 1999 09:02:46 -0400 (EDT) X-Authentication-Warning: Arthur.Linuxberg: arthur owned process doing -bs Date: Thu, 19 Aug 1999 09:02:46 -0400 (EDT) From: "Arthur H. Johnson II" X-Sender: arthur@Arthur.Linuxberg To: questions@FreeBSD.org Subject: Natd question. Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Can you get Natd to work with Kernel PPP? Arthur H. Johnson II http://www.linuxberg.com Linuxberg Manager arthur@tucows.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 6: 3:43 1999 Delivered-To: freebsd-questions@freebsd.org Received: from bastuba.partitur.se (bastuba.partitur.se [193.219.246.194]) by hub.freebsd.org (Postfix) with ESMTP id 7791914D23 for ; Thu, 19 Aug 1999 06:03:34 -0700 (PDT) (envelope-from jeppe@partitur.se) Received: from partitur.se (xylofon.partitur.se [193.219.246.251]) by bastuba.partitur.se (8.8.8/8.8.8) with ESMTP id PAA23879 for ; Thu, 19 Aug 1999 15:03:33 +0200 (CEST) (envelope-from jeppe@partitur.se) Message-ID: <37BC00A4.71E90CA8@partitur.se> Date: Thu, 19 Aug 1999 15:03:32 +0200 From: Jesper Blomstrom Organization: KTH/Partitur X-Mailer: Mozilla 4.61 [en] (X11; I; FreeBSD 3.2-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: (no subject) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG unsubscribe freebsd-questions To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 6:22:25 1999 Delivered-To: freebsd-questions@freebsd.org Received: from list.wildcoast.co.za (list.wildcoast.co.za [196.25.82.3]) by hub.freebsd.org (Postfix) with ESMTP id AF37B14D36 for ; Thu, 19 Aug 1999 06:21:59 -0700 (PDT) (envelope-from evablunted@earthling.net) Received: from impakt (uta36-01-p23.ec.saix.NET [155.239.168.23]) by list.wildcoast.co.za (8.9.3/8.9.3) with SMTP id PAA07481 for ; Thu, 19 Aug 1999 15:25:48 +0200 Message-ID: <01a201beea43$00caed40$0a01a8c0@sunshine.co.za> From: "Langa Kentane" To: "FreeBSD" Subject: Best pop3 server daemon Date: Thu, 19 Aug 1999 13:58:39 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit 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-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Which pop3 daemon would you recommend for my server that is easy to configure and stuff that will make it a breeze for this newbie to setup pop3 on my network. Langa Kentane System Administrator Sunshine Networks cc Tel +27 82 928 1952 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 6:22:43 1999 Delivered-To: freebsd-questions@freebsd.org Received: from ic.delmarva.com (ic.delmarva.com [138.39.7.3]) by hub.freebsd.org (Postfix) with SMTP id D743414CEA for ; Thu, 19 Aug 1999 06:22:29 -0700 (PDT) (envelope-from @conectiv.com:clendaniel@conectiv.com) Received: from blackhole.delmarva.com by ic.delmarva.com via smtpd (for hub.FreeBSD.ORG [204.216.27.18]) with SMTP; 19 Aug 1999 13:22:30 UT Received: from devnull.delmarva.com by blackhole.conectiv.com id aa28191; 19 Aug 99 9:21 EDT Date: Thu, 19 Aug 1999 09:21:34 -0400 (EDT) From: Ian Clendaniel To: freebsd-questions@freebsd.org Subject: Diamond V770 Ultra & X?!? Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I've got a question that's really starting to bug me...I just finished upgrading my machine to a PII with a Diamond V770 Ultra video card (TNT2 chipset). From everything I see it _should_ be supported under XFree86 however I can't get the thing to work. Never had a problem with my old Number9 card under various versions of fbsd and X for the past three or four years. Is anyone using this card...or one with the TNT chipset...that would be willing to share their XF86Config? I'm really starting to get desperate... --Ian ______________________________________________________________ Ian Clendaniel Conectiv Systems Architect Infrastructure Management Int:235-5577 Ext:451-5577 http://www.conectiv.com Pager/Cell:302-750-3574 mailto:clendaniel@conectiv.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 6:29:31 1999 Delivered-To: freebsd-questions@freebsd.org Received: from jasper.heartland.ab.ca (jasper.heartland.ab.ca [207.107.228.1]) by hub.freebsd.org (Postfix) with ESMTP id CC5A514D6E for ; Thu, 19 Aug 1999 06:29:28 -0700 (PDT) (envelope-from dkwiebe@heartland.ab.ca) Received: from freebsd.hagens.ab.ca (ppp5.heartland.ab.ca [207.107.228.133]) by jasper.heartland.ab.ca (8.9.0/8.8.5) with ESMTP id HAA13725; Thu, 19 Aug 1999 07:21:06 -0600 (MDT) Received: from heartland.ab.ca (dkwiebe.hagens.ab.ca [10.0.1.3]) by freebsd.hagens.ab.ca (8.9.2/8.9.2) with ESMTP id GAA09291; Thu, 19 Aug 1999 06:39:06 -0600 (MDT) (envelope-from dkwiebe@heartland.ab.ca) Message-ID: <37BC077D.88E50203@heartland.ab.ca> Date: Thu, 19 Aug 1999 07:32:45 -0600 From: Darren WIebe Reply-To: dkwiebe@hagenhomes.com X-Mailer: Mozilla 4.61 [en] (X11; U; FreeBSD 3.2-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: Abe Rooter Cc: freebsd-questions@FreeBSD.ORG Subject: Re: PPP help References: <001301bee9df$d66d03c0$718767cf@jaspa> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Have you looked at the Handbook? It can be found at http://www.freebsd.org/handbook/index.html. Also you should probably run ppp and not pppd. Darren Wiebe dkwiebe@hagenhomes.com > I'm switching from Linux to FreeBSD. I looked at the ppp man, I'm not > understanding it all that well. I'm used to writing the scripts, and > running pppd. Can someone give me a clue ? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 6:49:12 1999 Delivered-To: freebsd-questions@freebsd.org Received: from majordomo2.umd.edu (majordomo2.umd.edu [128.8.10.7]) by hub.freebsd.org (Postfix) with ESMTP id 8EDDB14EAF for ; Thu, 19 Aug 1999 06:48:58 -0700 (PDT) (envelope-from culverk@wam.umd.edu) Received: from rac1.wam.umd.edu (root@rac1.wam.umd.edu [128.8.10.141]) by majordomo2.umd.edu (8.9.3/8.9.3) with ESMTP id JAA29628; Thu, 19 Aug 1999 09:48:45 -0400 (EDT) Received: from rac1.wam.umd.edu (sendmail@localhost [127.0.0.1]) by rac1.wam.umd.edu (8.9.3/8.9.3) with SMTP id JAA14006; Thu, 19 Aug 1999 09:48:46 -0400 (EDT) Received: from localhost (culverk@localhost) by rac1.wam.umd.edu (8.9.3/8.9.3) with ESMTP id JAA14002; Thu, 19 Aug 1999 09:48:46 -0400 (EDT) X-Authentication-Warning: rac1.wam.umd.edu: culverk owned process doing -bs Date: Thu, 19 Aug 1999 09:48:46 -0400 (EDT) From: Kenneth Wayne Culver To: Ian Clendaniel Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Diamond V770 Ultra & X?!? In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > I've got a question that's really starting to bug me...I just finished > upgrading my machine to a PII with a Diamond V770 Ultra video card (TNT2 > chipset). From everything I see it _should_ be supported under XFree86 > however I can't get the thing to work. Never had a problem with my old > Number9 card under various versions of fbsd and X for the past three or > four years. > > Is anyone using this card...or one with the TNT chipset...that would be > willing to share their XF86Config? I'm really starting to get > desperate... > What version of X are you using.. You may have to upgrade XFree86 to version 3.3.4 Kenneth Culver To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 7: 0:42 1999 Delivered-To: freebsd-questions@freebsd.org Received: from nowcool.dhs.org (FX3-1-119.mgfairfax.rr.com [24.28.200.119]) by hub.freebsd.org (Postfix) with ESMTP id 4EFD6150CC for ; Thu, 19 Aug 1999 07:00:39 -0700 (PDT) (envelope-from question@blink.dhs.org) Received: from localhost (question@localhost) by nowcool.dhs.org (8.9.3/8.9.3) with ESMTP id JAA03459; Thu, 19 Aug 1999 09:58:25 -0400 (EDT) (envelope-from question@blink.dhs.org) Date: Thu, 19 Aug 1999 09:58:25 -0400 (EDT) From: Byung Yang X-Sender: question@nowcool.dhs.org To: "Bill A. K." Cc: FreeBSD Questions Subject: Re: APCI ens1370 In-Reply-To: <006401bee9ec$fe8f2420$01010101@bopper> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, 18 Aug 1999, Bill A. K. wrote: > > cd /dev > ./MAKEDEV pcm1 (for FreeBSD 3.2) > or > ./MAKEDEV pcm0 (for FreeBSD 4.0-current) > it should be: ./MAKEDEV snd0 IF your sound is detected as pcm0 and ./MAKEDEV snd1 IF your sound is detected as pcm1 run dmesg | grep pcm to see what you have Byung Yang To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 7: 8:35 1999 Delivered-To: freebsd-questions@freebsd.org Received: from volodya.prime.net.ua (volodya.prime.net.ua [195.64.229.17]) by hub.freebsd.org (Postfix) with ESMTP id 24CD5150E3 for ; Thu, 19 Aug 1999 07:08:30 -0700 (PDT) (envelope-from andyo@prime.net.ua) Received: from prime.net.ua (localhost [127.0.0.1]) by volodya.prime.net.ua (8.9.3/8.8.8) with ESMTP id RAA00599; Thu, 19 Aug 1999 17:08:00 +0300 (EEST) (envelope-from andyo@prime.net.ua) Message-ID: <37BC0FBD.189D2EC6@prime.net.ua> Date: Thu, 19 Aug 1999 17:07:58 +0300 From: "Andy V. Oleynik" Organization: M-Info X-Mailer: Mozilla 4.61 [en] (X11; I; FreeBSD 3.2-STABLE i386) X-Accept-Language: en, ru, uk MIME-Version: 1.0 To: Langa Kentane Cc: FreeBSD Subject: Re: Best pop3 server daemon References: <01a201beea43$00caed40$0a01a8c0@sunshine.co.za> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG cucipop from ports. it runs from inetd - replace popper with cucipop in inetd.conf man cucipop man inetd Langa Kentane wrote: > Which pop3 daemon would you recommend for my server that is easy to > configure and stuff that will make it a breeze for this newbie to setup pop3 > on my network. > > Langa Kentane > System Administrator > Sunshine Networks cc > Tel +27 82 928 1952 > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- WBW Andy V. Oleynik (When U work in virtual office prime.net.ua's U have good chance to obtain system administrator virtual money ö%-) +380442448363 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 7:15:39 1999 Delivered-To: freebsd-questions@freebsd.org Received: from dns.ie-online.it (dns.ie-online.it [194.133.148.8]) by hub.freebsd.org (Postfix) with ESMTP id 483C2150F5 for ; Thu, 19 Aug 1999 07:15:34 -0700 (PDT) (envelope-from sriva@alice.it) Received: from dns.ie-interna.it (host-ie-trezzano.ie-online.it [194.133.148.44]) by dns.ie-online.it (8.8.8/8.8.8) with ESMTP id QAA18726; Thu, 19 Aug 1999 16:12:20 +0200 (CEST) (envelope-from sriva@alice.it) Received: from stefano (stefano.ie-interna.it [192.168.0.33]) by dns.ie-interna.it (8.8.8/8.8.8) with SMTP id QAA09884; Thu, 19 Aug 1999 16:12:19 +0200 (CEST) (envelope-from sriva@alice.it) Message-Id: <3.0.5.32.19990819161320.009d73c0@relay.alice.it> X-Sender: riva@relay.alice.it X-Mailer: QUALCOMM Windows Eudora Pro Version 3.0.5 (32) Date: Thu, 19 Aug 1999 16:13:20 +0200 To: "Langa Kentane" From: Stefano Riva Subject: Re: router and firewall question Cc: freebsd-questions@FreeBSD.ORG In-Reply-To: <001401beea38$41c28d90$0a01a8c0@sunshine.co.za> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG At 13.34 19/08/99 +0200, you wrote: >I have a cisco 2511 connected to the internet thru s0. The ip adress of s0 >is set to unnumbered (eth0). Eth0's ip address is x.y.25.1 255.255.255.192. >My isp has assigned me 64 ip addresses. >I want to put up a freebsd firewall between the router and the rest of the >network. All hosts will be behind the firewall. >What should the ip address of the interfaces on the firewall machine be? And >how will this affect the rest of my network's ip addresses? As for software, there are mainly two choices: you may use the "original" ipfw + natd mechanism bundled with FreeBSD (take a look at /etc/rc.firewall) or Darren Reed's IP-Filter package, also bundled with FreeBSD 3.x. Start enabling gateway in your /etc/rc.conf: gateway_enable = "YES". I'd suggest IP-Filter, because IMO it's more powerful; take a look at http://cheops.anu.edu.au/~avalon/ip-filter.html. You would have to enable it in your kernel configuration file and recompile the kernel (look at /sys/i386/conf/LINT about enabling it and at www.freebsd.org about recompiling the kernel). Anyway, maybe ipfw + natd are more documented and you would easily find more people able to help you on this list (I tried both ipfw + natd and IP-Filter in the past, but currently I don't manage a firewall with FreeBSD, so I can't help you about details). It's up to you. First of all read the Handbook's intro to firewalls at http://www.freebsd.org/handbook/firewalls.html. You'll have to set up the "public" interface on your machine with a public IP, i.e. one assigned to you by your ISP. Then you have to choose if you want to use NAT (Network Address Translation) or not: with NAT you would use a private class of IP addresses for your private network (192.168.0.0/24 for example, if a C class is enough for you) and they would be translated into a pool of public addresses or into a single public address by your BSD box. I'd suggest using NAT for flexibility; for example changing ISP would be almost painless... You could also have much more than 64 private IPs with your 64 public addresses only. Example for your case: Cisco's eth0 x.y.25.1/26, BSD public interface x.y.25.2/26, BSD private interface 192.168.0.1/24, your machines from 192.168.0.2/24 to 192.168.0.254/24. If you're using UTP on your LAN, you may connect the Cisco router and the BSD box directly with a cross-over cable. Probably it sounds complicated... Well, it is, at least a little bit. ;-) --- Stefano Riva Software Engineer - Systems Administrator Informazioni Editoriali I.E. Srl Voice +39-02283151, Fax +39-0228315900 Email sriva@alice.it To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 7:23:41 1999 Delivered-To: freebsd-questions@freebsd.org Received: from ic.delmarva.com (ic.delmarva.com [138.39.7.3]) by hub.freebsd.org (Postfix) with SMTP id E2E7B15959 for ; Thu, 19 Aug 1999 07:23:29 -0700 (PDT) (envelope-from @conectiv.com:clendaniel@conectiv.com) Received: from blackhole.delmarva.com by ic.delmarva.com via smtpd (for hub.FreeBSD.ORG [204.216.27.18]) with SMTP; 19 Aug 1999 14:23:31 UT Received: from devnull.delmarva.com by blackhole.conectiv.com id aa03677; 19 Aug 99 10:23 EDT Date: Thu, 19 Aug 1999 10:23:14 -0400 (EDT) From: Ian Clendaniel To: Kenneth Wayne Culver Cc: freebsd-questions@freebsd.org Subject: Re: Diamond V770 Ultra & X?!? In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, 19 Aug 1999, Kenneth Wayne Culver wrote: > > > > Is anyone using this card...or one with the TNT chipset...that would be > > willing to share their XF86Config? I'm really starting to get > > desperate... > > > What version of X are you using.. You may have to upgrade XFree86 to > version 3.3.4 Right now the machine is running 3.3.3.1...I was going to try upgrading if there weren't any other suggestions but from what I've heard it should already be supported in 3.3.3.1. My only other option if I can't get that to work would be XiG's X server... --Ian ______________________________________________________________ Ian Clendaniel Conectiv Systems Architect Infrastructure Management Int:235-5577 Ext:451-5577 http://www.conectiv.com Pager/Cell:302-750-3574 mailto:clendaniel@conectiv.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 7:28: 3 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail.tucows.com (mail.tucows.com [208.229.216.23]) by hub.freebsd.org (Postfix) with ESMTP id ABF4414C59 for ; Thu, 19 Aug 1999 07:27:57 -0700 (PDT) (envelope-from arthur@tucows.com) Received: from Arthur.Linuxberg (starwars.linuxberg.org [208.229.216.41]) by mail.tucows.com (8.9.3/8.9.1) with ESMTP id KAA19906 for ; Thu, 19 Aug 1999 10:25:40 -0400 Received: from localhost (arthur@localhost) by Arthur.Linuxberg (8.9.3/8.9.3) with ESMTP id KAA00672 for ; Thu, 19 Aug 1999 10:25:23 -0400 (EDT) X-Authentication-Warning: Arthur.Linuxberg: arthur owned process doing -bs Date: Thu, 19 Aug 1999 10:25:23 -0400 (EDT) From: "Arthur H. Johnson II" X-Sender: arthur@Arthur.Linuxberg To: questions@FreeBSD.org Subject: FreeBSD and Glibc2.1 programs. Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I have been having a hard time getting Glibc2.1 programs to compile. Is this at all possible under FreeBSD? If so, how? Arthur H. Johnson II http://www.linuxberg.com Linuxberg Manager arthur@tucows.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 7:44:20 1999 Delivered-To: freebsd-questions@freebsd.org Received: from scientia.demon.co.uk (scientia.demon.co.uk [212.228.14.13]) by hub.freebsd.org (Postfix) with ESMTP id 8B85514CCF for ; Thu, 19 Aug 1999 07:43:47 -0700 (PDT) (envelope-from ben@scientia.demon.co.uk) Received: from lithium.scientia.demon.co.uk ([192.168.0.3] ident=exim) by scientia.demon.co.uk with esmtp (Exim 3.024 #3) id 11HS14-000DQm-00; Thu, 19 Aug 1999 14:14:02 +0100 Received: (from ben) by lithium.scientia.demon.co.uk (Exim 3.024 #3) id 11HS12-00031i-00; Thu, 19 Aug 1999 14:14:00 +0100 Date: Thu, 19 Aug 1999 14:14:00 +0100 From: Ben Smithurst To: mcwong@ascend.com Cc: questions@freebsd.org Subject: Re: Safe upgrade from 2.2.5 --> 3.2 ? Message-ID: <19990819141400.A11333@lithium.scientia.demon.co.uk> References: <882567D2.003DC09F.00@colton.ascend.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.6i In-Reply-To: <882567D2.003DC09F.00@colton.ascend.com> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG mcwong@ascend.com wrote: > One more question before I begin. Since 2.2.5 is a.out only system > and 3.2 will be elf by default, now that I have the 3.2. src what target > should I be building first ? I look at the Makefile explanation but am > not able to follow exactly which one I should run. THere are > > buildworld - which is something which I will need since I cannot > afford to overwrite all binaries just yet. > installworld - done after above after certain level of confidence > upgrade - should this be done before or after the above 2 ? You want `aout-to-elf', I think this is the same as `upgrade'. I think it builds an aout world, and uses that to build an ELF world, which it then installs. So aout-to-elf is the only target you need, though I'd suggest breaking it up, see below. > Also, about the mergemaster util. Should this be run before or > after the above build process ? I'd suggest aout-to-elf-build, mergemaster, aout-to-elf-install, but I don't use mergemaster. > mtree -deU -f /usr/src/etc/mtree/BSD.usr.dist -p /var/tmp/temproot/usr > mtree: line 156: unknown keyword nochange > *** Error code 1 That's presumably because you are using an older version of mtree. Just do the aout-to-elf-build, upgrade /etc manually (all you should need to update are the rc scripts), and then do the aout-to-elf-install. This should work. You could upgrade /etc with mergemaster after the upgrade if you wish. In fact, you can probably skip upgrading /etc until after the upgrade. The only reason not updating /etc caused a problem for me was that the machine in question doesn't have a video card, so I have to do everything over the network. After the upgrade, the system came back up OK, and I could telnet to it, but my shell was an aout zsh, and the old rc scripts hadn't configured aout libs (the old ones didn't know about the two binary formats, so they just configure the default format -- ELF). Because of this, I could enter my login and password, but the shell wouldn't run. Since root cannot login over the network, I couldn't do that even though root's shell was /bin/sh. If you can login on the console as root after the upgrade, just do `aout-to-elf', and let it get on with it. -- Ben Smithurst | PGP: 0x99392F7D ben@scientia.demon.co.uk | key available from keyservers and | ben+pgp@scientia.demon.co.uk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 7:48:37 1999 Delivered-To: freebsd-questions@freebsd.org Received: from IPGATE.sls.co.uk (IPGATE.sls.co.uk [194.201.82.1]) by hub.freebsd.org (Postfix) with ESMTP id 2575715002 for ; Thu, 19 Aug 1999 07:48:22 -0700 (PDT) (envelope-from woodruff_g@sls.co.uk) Received: from SLSNT2.sls.co.uk (SLSNT2.sls.co.uk [194.201.82.110]) by IPGATE.sls.co.uk (8.9.3/8.9.3) with SMTP id PAA07230 for ; Thu, 19 Aug 1999 15:46:59 +0100 Received: from Tim.SLS.CO.UK (194.201.82.209) by SLSNT2.sls.co.uk (EMWAC SMTPRS 0.81) with SMTP id ; Thu, 19 Aug 1999 15:49:23 +0100 Message-ID: <014301beea52$0608a400$d152c9c2@SLS.CO.UK> From: "Graham Woodruff" To: Subject: ftp hangs during install Date: Thu, 19 Aug 1999 15:49:18 +0100 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit 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-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi all Trying to find a solution to a few (possibly related) problems 1. Set up 'basic' 486/25 with 2*130Mb disks, 8Mb and DEC DE101 (DEPCA) IRQ5 0x300 0xD8000, everything probed OK, into the ftp install, connect to my WIN95 box (with ftp download site) everything installs OK... 2. Set up a 'larger' box 486/100 500MB disk 32Mb CDROM etc, add SAME DEC DE101 again, everything probes ok, into ftp install, connects, starts to transfer the first disk image BANG nothing... system hung... swap out for another DE101 again nothing, swap out DE101 for a DE205 (same IRQ etc) again same null response, ftp connects ok starts transfer then nothing, server log indicates nothing amiss. 3. Swap out the larger disk into box 1., put back original DE101, build system via ftp OK, swap disk into larger box, add the DE205 (same IRQ...) seems OK, network up, pings OK, telnets to/from OK but any ftp session freezes after 1024K transferred. a) What am I doing wrong... b) How 'generic' is the NE2000 support, as if the DEC cards have let me down I need an alternative (although I also tried an Accton 1602, which RedHat probes/uses OK as an NE2000) failed dismally with FreeBSD. Graham Woodruff SLS (Information Systems) Ltd +44 (0)117 975 1013 graham.woodruff@iii-europe.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 7:56:26 1999 Delivered-To: freebsd-questions@freebsd.org Received: from relay.ucb.crimea.ua (relay.ucb.crimea.ua [212.110.138.1]) by hub.freebsd.org (Postfix) with ESMTP id C0AB51515E for ; Thu, 19 Aug 1999 07:55:43 -0700 (PDT) (envelope-from ru@ucb.crimea.ua) Received: (from ru@localhost) by relay.ucb.crimea.ua (8.9.3/8.9.3/UCB) id RAA47885; Thu, 19 Aug 1999 17:53:01 +0300 (EEST) (envelope-from ru) Date: Thu, 19 Aug 1999 17:52:56 +0300 From: Ruslan Ermilov To: "Arthur H. Johnson II" Cc: questions@FreeBSD.ORG Subject: Re: Natd question. Message-ID: <19990819175256.A42142@relay.ucb.crimea.ua> Mail-Followup-To: "Arthur H. Johnson II" , questions@FreeBSD.ORG References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.3i In-Reply-To: ; from Arthur H. Johnson II on Thu, Aug 19, 1999 at 09:02:46AM -0400 X-Operating-System: FreeBSD 3.2-STABLE i386 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, Aug 19, 1999 at 09:02:46AM -0400, Arthur H. Johnson II wrote: > Can you get Natd to work with Kernel PPP? > Sure. What are you trying to do and what doesn't work for you? -- Ruslan Ermilov Sysadmin and DBA of the ru@ucb.crimea.ua United Commercial Bank, ru@FreeBSD.org FreeBSD committer, +380.652.247.647 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 8:13: 8 1999 Delivered-To: freebsd-questions@freebsd.org Received: from shasta.eclipse.net (shasta.eclipse.net [207.207.193.17]) by hub.freebsd.org (Postfix) with ESMTP id 94B08150B0 for ; Thu, 19 Aug 1999 08:13:04 -0700 (PDT) (envelope-from chrismar@shasta.eclipse.net) Received: from localhost (chrismar@localhost) by shasta.eclipse.net (8.9.2/8.9.2) with ESMTP id LAA42958; Thu, 19 Aug 1999 11:10:13 -0400 (EDT) (envelope-from chrismar@shasta.eclipse.net) Date: Thu, 19 Aug 1999 11:10:10 -0400 (EDT) From: Chris To: Graham Woodruff Cc: freebsd-questions@FreeBSD.ORG Subject: Re: ftp hangs during install In-Reply-To: <014301beea52$0608a400$d152c9c2@SLS.CO.UK> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG -----BEGIN PGP SIGNED MESSAGE----- Hi, I had a similar problem not too long ago. I have a 486DX/25 170MB disk, 12MB w/ LinkSys EtherLan 16 and a P100, 6GB, 40MB w/ LinkSys EtherLan 16. On both machines I booted w/ the same boot disks and set each one up to use the same FTP server and even the same IP address (I did them at different times). The P100 completed flawlessly, everything downloaded and installed fine. The problem came when I tried installed over ftp on the 486 w/ the same NIC, FTP server, IP, etc... It turns out for some reason the 486 didn't like the FTP server I wanted to use for some odd reason. I simply changed to a different one and everything worked. Just an idea. As far as the NE2000 compatable NICs, I've used both LinkSys and SMC bottom line NICs ($15-$20 US) under FreeBSD and Linux. They both use the NE2000 drivers in each OS, and have performed thus far w/out a hitch. Chris On Thu, 19 Aug 1999, Graham Woodruff wrote: > Hi all > > Trying to find a solution to a few (possibly related) problems > > 1. Set up 'basic' 486/25 with 2*130Mb disks, 8Mb and DEC DE101 (DEPCA) IRQ5 > 0x300 0xD8000, everything probed OK, into the ftp install, connect to my > WIN95 box (with ftp download site) everything installs OK... > > 2. Set up a 'larger' box 486/100 500MB disk 32Mb CDROM etc, add SAME DEC > DE101 again, everything probes ok, into ftp install, connects, starts to > transfer the first disk image BANG nothing... system hung... swap out for > another DE101 again nothing, swap out DE101 for a DE205 (same IRQ etc) again > same null response, ftp connects ok starts transfer then nothing, server log > indicates nothing amiss. > > 3. Swap out the larger disk into box 1., put back original DE101, build > system via ftp OK, swap disk into larger box, add the DE205 (same IRQ...) > seems OK, network up, pings OK, telnets to/from OK but any ftp session > freezes after 1024K transferred. > > a) What am I doing wrong... > > b) How 'generic' is the NE2000 support, as if the DEC cards have let me down > I need an alternative (although I also tried an Accton 1602, which RedHat > probes/uses OK as an NE2000) failed dismally with FreeBSD. > > Graham Woodruff > SLS (Information Systems) Ltd > +44 (0)117 975 1013 > graham.woodruff@iii-europe.com > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > -----BEGIN PGP SIGNATURE----- Version: 2.6.2 iQB1AwUBN7weVfbh8rV07zbRAQGZagMA5uZLG8NIx4MC+FituVFogws7yRxUL2bC COSo+MFK49KCvDBq9G8JEt+7JcDiikjMpvf20YNEuhvFEmdU15YIXHKJDQ4ZCFRg W69P49px/LUyCybvF3whhmi9Gm6SMS7a =zrg+ -----END PGP SIGNATURE----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 8:14:59 1999 Delivered-To: freebsd-questions@freebsd.org Received: from ns.clientlogic.com (ns.clientlogic.com [207.51.66.75]) by hub.freebsd.org (Postfix) with ESMTP id 401941518E for ; Thu, 19 Aug 1999 08:14:54 -0700 (PDT) (envelope-from ChrisMic@clientlogic.com) Received: by site0s1 with Internet Mail Service (5.5.2448.0) id ; Thu, 19 Aug 1999 11:14:28 -0400 Message-ID: <6C37EE640B78D2118D2F00A0C90FCB4401105BAC@site2s1> From: Christopher Michaels To: 'Arnout Boer' , freebsd-questions@freebsd.org Subject: RE: Samba on stable... a performance problem Date: Thu, 19 Aug 1999 11:17:01 -0400 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2448.0) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I'm sorry to say this is starting to look a like a compatibility issue with FreeBSD and samba. Many people have stated that they have the same problem, but no one has been able to provide any solutions. I've been having this trouble since I installed 3.2, and have asked a couple times. Unfortunately I still have the problem as well. If anyone comes up with a solution to this, I beg of you, please let me know what the solution is too. Thanks, -Chris > -----Original Message----- > From: Arnout Boer [SMTP:arnout@xs4all.nl] > Sent: Thursday, August 19, 1999 5:31 AM > To: freebsd-questions@freebsd.org > Cc: arnout@xs4all.nl > Subject: Samba on stable... a performance problem > > > > > I'm using FreeBSD now since 2.0.x and I love it... > > But now I'm experimenting with samba and the performance > drop is so big that I think I forget something... > > WIthout samba the 100mbit fxp0 link crossover was > almost maximal used during ftp... > > With samba it drops to about 80kB/s > > I included some comfiguration info underneath.. > > Any advice is appreciated, please cc to me! > > Greetz, > > Arnout > > # Samba config file created using SWAT > # from (127.0.0.1) > # Date: 1999/08/18 19:17:25 > > # Global parameters > [global] > workgroup = APPELDING > netbios name = TOMCAT > server string = Tomcat Samba Server > encrypt passwords = Yes > log file = /var/log/log.%m > max log size = 500 > max xmit = 16384 > read prediction = Yes > socket options = IPTOS_LOWDELAY TCP_NODELAY > domain logons = Yes > preferred master = Yes > domain master = Yes > dns proxy = No > wins support = Yes > hosts allow = 192.168.0. 127. 194.109.15.187 > print command = lpr -P%p %s > > [tmp] > comment = Temporary file space > path = /samba/tmp/ > read only = No > guest ok = Yes > > > > Copyright (c) 1992-1999 FreeBSD Inc. > Copyright (c) 1982, 1986, 1989, 1991, 1993 > The Regents of the University of California. All rights reserved. > FreeBSD 3.2-STABLE #0: Thu Aug 19 01:10:25 CEST 1999 > root@tomcat.xs4all.nl:/usr/src/sys/compile/TOMCAT > Timecounter "i8254" frequency 1193182 Hz > CPU: Pentium/P55C (586-class CPU) > Origin = "GenuineIntel" Id = 0x544 Stepping = 4 > Features=0x8003bf > real memory = 134217728 (131072K bytes) > avail memory = 127348736 (124364K bytes) > Programming 24 pins in IOAPIC #0 > FreeBSD/SMP: Multiprocessor motherboard > cpu0 (BSP): apic id: 0, version: 0x00030010, at 0xfee00000 > cpu1 (AP): apic id: 1, version: 0x00030010, at 0xfee00000 > io0 (APIC): apic id: 2, version: 0x00170011, at 0xfec00000 > Preloaded elf kernel "kernel" at 0xc02e2000. > Preloaded userconfig_script "/boot/kernel.conf" at 0xc02e209c. > Probing for devices on PCI bus 0: > chip0: rev 0x03 on pci0.0.0 > chip1: rev 0x01 on pci0.7.0 > vga0: rev 0x9a on pci0.8.0 > ncr0: rev 0x23 int a irq 17 on pci0.9.0 > fxp0: rev 0x08 int a irq 18 on > pci0.10.0 > fxp0: Ethernet address 00:90:27:42:d9:b7 > ahc0: rev 0x00 int a irq 19 on > pci0.12.0 > ahc0: Using left over BIOS settings > ahc0: aic7880 Wide Channel A, SCSI Id=7, 16/255 SCBs > Probing for PnP devices: > CSN 1 Vendor ID: CTL00c5 [0xc5008c0e] Serial 0x1d3f30af Comp ID: PNPb02f > [0x2fb0d041] > Probing for devices on the ISA bus: > sc0 on isa > sc0: VGA color <16 virtual consoles, flags=0x0> > sio0 at 0x3f8-0x3ff irq 4 flags 0x10 on isa > sio0: type 16550A > sio1 at 0x2f8-0x2ff irq 3 on isa > sio1: type 16550A > atkbdc0 at 0x60-0x6f on motherboard > atkbd0 irq 1 on isa > psm0 irq 12 on isa > psm0: model MouseMan+, device ID 0 > fdc0 at 0x3f0-0x3f7 irq 6 drq 2 on isa > fdc0: FIFO enabled, 8 bytes threshold > fd0: 1.44MB 3.5in > ppc0 at 0x378 irq 7 flags 0x40 on isa > ppc0: SMC-like chipset (ECP/EPP/PS2/NIBBLE) in COMPATIBLE mode > ppc0: FIFO with 16/16/16 bytes threshold > lpt0: on ppbus 0 > lpt0: Interrupt-driven port > ppi0: on ppbus 0 > vga0 at 0x3b0-0x3df maddr 0xa0000 msize 131072 on isa > npx0 on motherboard > npx0: INT 16 interface > sb0 at 0x220 irq 5 drq 1 on isa > snd0: > sbxvi0 at drq 5 on isa > snd0: > sbmidi0 at 0x330 on isa > snd0: > opl0 at 0x388 on isa > snd0: > Intel Pentium detected, installing workaround for F00F bug > APIC_IO: Testing 8254 interrupt delivery > APIC_IO: routing 8254 via pin 2 > Waiting 15 seconds for SCSI devices to settle > SMP: AP CPU #1 Launched! > da4 at ncr0 bus 0 target 0 lun 0 > da4: Fixed Direct Access SCSI-2 device > da4: 10.000MB/s transfers (10.000MHz, offset 8), Tagged Queueing Enabled > da4: 1021MB (2091144 512 byte sectors: 64H 32S/T 1021C) > da2 at ncr0 bus 0 target 1 lun 0 > da2: Fixed Direct Access SCSI-2 device > da2: 10.000MB/s transfers (10.000MHz, offset 8) > da2: 699MB (1431760 512 byte sectors: 64H 32S/T 699C) > da3 at ncr0 bus 0 target 6 lun 0 > da3: Fixed Direct Access SCSI-2 device > da3: 10.000MB/s transfers (10.000MHz, offset 8) > da3: 696MB (1427328 512 byte sectors: 64H 32S/T 696C) > changing root device to da0s2a > cd0 at ahc0 bus 0 target 3 lun 0 > cd0: Removable CD-ROM SCSI-2 device > cd0: 20.000MB/s transfers (20.000MHz, offset 15) > cd0: Attempt to query device size failed: NOT READY, Medium not present > cd1 at ahc0 bus 0 target 5 lun 0 > cd1: Removable CD-ROM SCSI-2 device > cd1: 3.300MB/s transfers > cd1: Attempt to query device size failed: NOT READY, Medium not present > cd2 at ncr0 bus 0 target 4 lun 0 > cd2: Removable CD-ROM SCSI-2 device > cd2: 4.237MB/s transfers (4.237MHz, offset 8) > cd2: Attempt to query device size failed: NOT READY, Medium not present > da0 at ahc0 bus 0 target 0 lun 0 > da0: Fixed Direct Access SCSI-2 device > da0: 40.000MB/s transfers (20.000MHz, offset 8, 16bit), Tagged Queueing > Enabled > da0: 2063MB (4226725 512 byte sectors: 64H 32S/T 2063C) > da1 at ahc0 bus 0 target 1 lun 0 > da1: Fixed Direct Access SCSI-2 device > da1: 40.000MB/s transfers (20.000MHz, offset 8, 16bit), Tagged Queueing > Enabled > da1: 8715MB (17850000 512 byte sectors: 64H 32S/T 8715C) > ffs_mountfs: superblock updated for soft updates > ffs_mountfs: superblock updated for soft updates > ffs_mountfs: superblock updated for soft updates > ffs_mountfs: superblock updated for soft updates > ffs_mountfs: superblock updated for soft updates > ffs_mountfs: superblock updated for soft updates > > > > I'm using FreeBSD now since 2.0.x and I love it... > > But now I'm experimenting with samba and the performance > drop is so big that I think I forget something... > > WIthout samba the 100mbit fxp0 link crossover was > almost maximal used during ftp... > > With samba it drops to about 80kB/s > > I included some comfiguration info underneath.. > > Any advice is appreciated, please cc to me! > > Greetz, > > Arnout > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 8:15: 3 1999 Delivered-To: freebsd-questions@freebsd.org Received: from nola.srrc.usda.gov (nola.srrc.usda.gov [199.133.86.21]) by hub.freebsd.org (Postfix) with ESMTP id 4263815238 for ; Thu, 19 Aug 1999 08:14:57 -0700 (PDT) (envelope-from gjohnson@nola.srrc.usda.gov) Received: from localhost (gjohnson@localhost) by nola.srrc.usda.gov (AIX4.3/UCB 8.8.8/8.8.8) with SMTP id KAA23840 for ; Thu, 19 Aug 1999 10:10:44 -0500 Date: Thu, 19 Aug 1999 10:10:44 -0500 (CDT) From: Glenn Johnson To: freebsd-questions@freebsd.org Subject: concatenated drives with vinum or ccd Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I have a couple of questions regarding ccd and vinum. I have used both on different machines so configuration is not a problem. Yay! Is there any benefit to using vinum instead of ccd for concatenated drives? An extension to this, should I bother changing a fairly large ccd volume into a vinum volume? Is there a benfit to using ccd over vinum? Also, is vinum slated to replace ccd? Thanks in advance. -- Glenn P. Johnson USDA, ARS, SRRC 504-286-4252 gjohnson@nola.srrc.usda.gov To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 8:34:57 1999 Delivered-To: freebsd-questions@freebsd.org Received: from gold.wvnet.edu (gold.wvnet.edu [129.71.2.25]) by hub.freebsd.org (Postfix) with ESMTP id EC9F515317 for ; Thu, 19 Aug 1999 08:34:42 -0700 (PDT) (envelope-from sce04020@mail.wvnet.edu) Received: from myname.my.domain (IP227153.DIALUP.WVNET.EDU) by gold.wvnet.edu (LSMTP for Windows NT v1.1b) with SMTP id <0.41CC70D5@gold.wvnet.edu>; Thu, 19 Aug 1999 11:40:35 -0400 From: Kenneth Legg To: freebsd-questions@FreeBSD.ORG Subject: ppp Date: Thu, 19 Aug 1999 11:31:22 -0400 X-Mailer: KMail [version 1.0.21] Content-Type: text/plain MIME-Version: 1.0 Message-Id: <99081911350700.01144@myname.my.domain> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG My ppp works great when I'm loged on as root, but gives me "permission denied" when I'm loged on as myself. What causes this and where in the handbook can I find how to fix it? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 8:37:36 1999 Delivered-To: freebsd-questions@freebsd.org Received: from adsl-216-102-203-44.dsl.snfc21.pacbell.net (adsl-216-102-203-44.dsl.snfc21.pacbell.net [216.102.203.44]) by hub.freebsd.org (Postfix) with ESMTP id E389C150B0 for ; Thu, 19 Aug 1999 08:37:34 -0700 (PDT) (envelope-from bri@sonicboom.org) Received: from localhost (bri@localhost) by adsl-216-102-203-44.dsl.snfc21.pacbell.net (8.9.3/8.9.3) with ESMTP id IAA46157; Thu, 19 Aug 1999 08:35:41 -0700 (PDT) (envelope-from bri@sonicboom.org) Date: Thu, 19 Aug 1999 08:35:41 -0700 (PDT) From: Brian X-Sender: bri@adsl-216-102-203-44.dsl.snfc21.pacbell.net To: "Gregory D. Moncreaff" Cc: FreeBSD Questions Subject: Re: Dial out attempt every 30 minutes, why? In-Reply-To: <37B6C9AA.8DC2F13C@ma.ultranet.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG A user with a mail program set to check every 30 minutes?? Bri On Sun, 15 Aug 1999, Gregory D. Moncreaff wrote: > On a fairly recent 3.2-stable (end of July) > I am noticing a ppp dial attempt about > every 30 minutes, all day long. > > Any idea what might be causing this? > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 8:40:16 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail2.quintiles.com (ns2.quintiles.com [205.139.234.2]) by hub.freebsd.org (Postfix) with SMTP id F1293150B0 for ; Thu, 19 Aug 1999 08:40:14 -0700 (PDT) (envelope-from jwelsh@qrtp.quintiles.com) Received: (qmail 15294 invoked from network); 19 Aug 1999 15:39:15 -0000 Received: from unknown (HELO qrtplc01.qrtp.quintiles.com) (10.1.54.11) by 10.1.131.20 with SMTP; 19 Aug 1999 15:39:15 -0000 Received: by qrtplc01.qrtp.quintiles.com(Lotus SMTP MTA v4.6.3 (778.2 1-4-1999)) id 852567D2.00553404 ; Thu, 19 Aug 1999 11:30:38 -0400 X-Lotus-FromDomain: QUINTILES From: jwelsh@qrtp.quintiles.com To: freebsd-questions@freebsd.org Message-ID: <852567D2.00553162.00@qrtplc01.qrtp.quintiles.com> Date: Thu, 19 Aug 1999 11:39:45 -0400 Subject: ftpd config? Mime-Version: 1.0 Content-type: text/plain; charset=us-ascii Content-Disposition: inline Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ive looked in the man pages and cant seem to find this one. im running 3.2 stable, and running the stock ftp server. When anonymous users ftp to my box, how/where do I set up the file permissions that the incoming file will have? for example, someone puts a file in my /var/ftp/incoming and it has the following permissions -rw-r--r-- 1 ftp operator 86 Aug 19 11:34 setuplog.txt I would rather it have the following permissions -rw------- 1 ftp operator 925725 Aug 19 11:02 GWSWN11P.ZIP or should I go to wu-ftpd?? regards, Jason To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 8:40:53 1999 Delivered-To: freebsd-questions@freebsd.org Received: from dart.sr.se (dart.SR.SE [193.12.91.98]) by hub.freebsd.org (Postfix) with ESMTP id 842DB151DC for ; Thu, 19 Aug 1999 08:40:49 -0700 (PDT) (envelope-from gunnar@pluto.sr.se) Received: from honken.sr.se ([134.25.128.27]) by dart.sr.se (8.9.3/8.9.3) with ESMTP id RAA01652; Thu, 19 Aug 1999 17:40:42 +0200 (MET DST) Received: from pluto.sr.se (pluto.SR.SE [134.25.193.91]) by honken.sr.se (8.7.5/8.7.3) with ESMTP id RAA08372; Thu, 19 Aug 1999 17:40:41 +0200 (MET DST) Received: (from gunnar@localhost) by pluto.sr.se (8.9.3/8.9.1) id RAA69670; Thu, 19 Aug 1999 17:40:41 +0200 (CEST) (envelope-from gunnar) Date: Thu, 19 Aug 1999 17:40:41 +0200 From: Gunnar Flygt To: Kenneth Legg Cc: FreeBSD Questions Subject: Re: ppp Message-ID: <19990819174041.A66605@sr.se> Reply-To: Gunnar Flygt References: <99081911350700.01144@myname.my.domain> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.6i In-Reply-To: <99081911350700.01144@myname.my.domain>; from Kenneth Legg on Thu, Aug 19, 1999 at 11:31:22AM -0400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, Aug 19, 1999 at 11:31:22AM -0400, Kenneth Legg wrote: > My ppp works great when I'm loged on as root, but gives me "permission denied" > when I'm loged on as myself. What causes this and where in the handbook can I > find how to fix it? It's all in the man pages. You should add yourself to the network group, and also make an entry in ppp.conf like: default: # set log Phase Chat LCP IPCP CCP command allow user gunnar set device /dev/cuaa0 . . etc -- __o regards, Gunnar ---_ \<,_ email: flygt@sr.se ---- (_)/ (_) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 8:48:30 1999 Delivered-To: freebsd-questions@freebsd.org Received: from ns.clientlogic.com (ns.clientlogic.com [207.51.66.75]) by hub.freebsd.org (Postfix) with ESMTP id CF7C4151DC for ; Thu, 19 Aug 1999 08:48:16 -0700 (PDT) (envelope-from ChrisMic@clientlogic.com) Received: by site0s1 with Internet Mail Service (5.5.2448.0) id ; Thu, 19 Aug 1999 11:47:37 -0400 Message-ID: <6C37EE640B78D2118D2F00A0C90FCB4401105BAE@site2s1> From: Christopher Michaels To: 'Arnout Boer' , freebsd-questions@freebsd.org Subject: RE: Samba on stable... a performance problem Date: Thu, 19 Aug 1999 11:50:10 -0400 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2448.0) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hate to reply to my own reply. But there is a nice discussion on comp.protocols.smb about this very issue. aparently, this is an issue with 2.0.5a on FreeBSD 3.x, and there are several possible solutions. The thread name is: Samba 2.0.5 on FreeBSD 3.1-RELEASE - very very slo I was using deja.news and the url to that thread is http://x32.deja.com/viewthread.xp?thitnum=20&mhitnum=0&toffset=0&CONTEXT=935 077409.354549772&frpage=threadmsg_if.xp&back=comp.protocols.smb&rok=1 I hope some of this stuff helps, I'm going to try it after work tonight. -Chris > -----Original Message----- > From: Christopher Michaels [SMTP:ChrisMic@clientlogic.com] > Sent: Thursday, August 19, 1999 11:17 AM > To: 'Arnout Boer'; freebsd-questions@freebsd.org > Subject: RE: Samba on stable... a performance problem > > I'm sorry to say this is starting to look a like a compatibility issue > with > FreeBSD and samba. Many people have stated that they have the same > problem, > but no one has been able to provide any solutions. I've been having this > trouble since I installed 3.2, and have asked a couple times. > Unfortunately > I still have the problem as well. > > If anyone comes up with a solution to this, I beg of you, please let me > know > what the solution is too. > > Thanks, > -Chris > > > -----Original Message----- > > From: Arnout Boer [SMTP:arnout@xs4all.nl] > > Sent: Thursday, August 19, 1999 5:31 AM > > To: freebsd-questions@freebsd.org > > Cc: arnout@xs4all.nl > > Subject: Samba on stable... a performance problem > > > > > > > > > > I'm using FreeBSD now since 2.0.x and I love it... > > > > But now I'm experimenting with samba and the performance > > drop is so big that I think I forget something... > > > > WIthout samba the 100mbit fxp0 link crossover was > > almost maximal used during ftp... > > > > With samba it drops to about 80kB/s > > > > I included some comfiguration info underneath.. > > > > Any advice is appreciated, please cc to me! > > > > Greetz, > > > > Arnout > > > > # Samba config file created using SWAT > > # from (127.0.0.1) > > # Date: 1999/08/18 19:17:25 > > > > # Global parameters > > [global] > > workgroup = APPELDING > > netbios name = TOMCAT > > server string = Tomcat Samba Server > > encrypt passwords = Yes > > log file = /var/log/log.%m > > max log size = 500 > > max xmit = 16384 > > read prediction = Yes > > socket options = IPTOS_LOWDELAY TCP_NODELAY > > domain logons = Yes > > preferred master = Yes > > domain master = Yes > > dns proxy = No > > wins support = Yes > > hosts allow = 192.168.0. 127. 194.109.15.187 > > print command = lpr -P%p %s > > > > [tmp] > > comment = Temporary file space > > path = /samba/tmp/ > > read only = No > > guest ok = Yes > > > > > > > > Copyright (c) 1992-1999 FreeBSD Inc. > > Copyright (c) 1982, 1986, 1989, 1991, 1993 > > The Regents of the University of California. All rights reserved. > > FreeBSD 3.2-STABLE #0: Thu Aug 19 01:10:25 CEST 1999 > > root@tomcat.xs4all.nl:/usr/src/sys/compile/TOMCAT > > Timecounter "i8254" frequency 1193182 Hz > > CPU: Pentium/P55C (586-class CPU) > > Origin = "GenuineIntel" Id = 0x544 Stepping = 4 > > Features=0x8003bf > > real memory = 134217728 (131072K bytes) > > avail memory = 127348736 (124364K bytes) > > Programming 24 pins in IOAPIC #0 > > FreeBSD/SMP: Multiprocessor motherboard > > cpu0 (BSP): apic id: 0, version: 0x00030010, at 0xfee00000 > > cpu1 (AP): apic id: 1, version: 0x00030010, at 0xfee00000 > > io0 (APIC): apic id: 2, version: 0x00170011, at 0xfec00000 > > Preloaded elf kernel "kernel" at 0xc02e2000. > > Preloaded userconfig_script "/boot/kernel.conf" at 0xc02e209c. > > Probing for devices on PCI bus 0: > > chip0: rev 0x03 on pci0.0.0 > > chip1: rev 0x01 on pci0.7.0 > > vga0: rev 0x9a on pci0.8.0 > > ncr0: rev 0x23 int a irq 17 on pci0.9.0 > > fxp0: rev 0x08 int a irq 18 on > > pci0.10.0 > > fxp0: Ethernet address 00:90:27:42:d9:b7 > > ahc0: rev 0x00 int a irq 19 on > > pci0.12.0 > > ahc0: Using left over BIOS settings > > ahc0: aic7880 Wide Channel A, SCSI Id=7, 16/255 SCBs > > Probing for PnP devices: > > CSN 1 Vendor ID: CTL00c5 [0xc5008c0e] Serial 0x1d3f30af Comp ID: PNPb02f > > [0x2fb0d041] > > Probing for devices on the ISA bus: > > sc0 on isa > > sc0: VGA color <16 virtual consoles, flags=0x0> > > sio0 at 0x3f8-0x3ff irq 4 flags 0x10 on isa > > sio0: type 16550A > > sio1 at 0x2f8-0x2ff irq 3 on isa > > sio1: type 16550A > > atkbdc0 at 0x60-0x6f on motherboard > > atkbd0 irq 1 on isa > > psm0 irq 12 on isa > > psm0: model MouseMan+, device ID 0 > > fdc0 at 0x3f0-0x3f7 irq 6 drq 2 on isa > > fdc0: FIFO enabled, 8 bytes threshold > > fd0: 1.44MB 3.5in > > ppc0 at 0x378 irq 7 flags 0x40 on isa > > ppc0: SMC-like chipset (ECP/EPP/PS2/NIBBLE) in COMPATIBLE mode > > ppc0: FIFO with 16/16/16 bytes threshold > > lpt0: on ppbus 0 > > lpt0: Interrupt-driven port > > ppi0: on ppbus 0 > > vga0 at 0x3b0-0x3df maddr 0xa0000 msize 131072 on isa > > npx0 on motherboard > > npx0: INT 16 interface > > sb0 at 0x220 irq 5 drq 1 on isa > > snd0: > > sbxvi0 at drq 5 on isa > > snd0: > > sbmidi0 at 0x330 on isa > > snd0: > > opl0 at 0x388 on isa > > snd0: > > Intel Pentium detected, installing workaround for F00F bug > > APIC_IO: Testing 8254 interrupt delivery > > APIC_IO: routing 8254 via pin 2 > > Waiting 15 seconds for SCSI devices to settle > > SMP: AP CPU #1 Launched! > > da4 at ncr0 bus 0 target 0 lun 0 > > da4: Fixed Direct Access SCSI-2 device > > da4: 10.000MB/s transfers (10.000MHz, offset 8), Tagged Queueing Enabled > > da4: 1021MB (2091144 512 byte sectors: 64H 32S/T 1021C) > > da2 at ncr0 bus 0 target 1 lun 0 > > da2: Fixed Direct Access SCSI-2 device > > da2: 10.000MB/s transfers (10.000MHz, offset 8) > > da2: 699MB (1431760 512 byte sectors: 64H 32S/T 699C) > > da3 at ncr0 bus 0 target 6 lun 0 > > da3: Fixed Direct Access SCSI-2 device > > da3: 10.000MB/s transfers (10.000MHz, offset 8) > > da3: 696MB (1427328 512 byte sectors: 64H 32S/T 696C) > > changing root device to da0s2a > > cd0 at ahc0 bus 0 target 3 lun 0 > > cd0: Removable CD-ROM SCSI-2 device > > cd0: 20.000MB/s transfers (20.000MHz, offset 15) > > cd0: Attempt to query device size failed: NOT READY, Medium not present > > cd1 at ahc0 bus 0 target 5 lun 0 > > cd1: Removable CD-ROM SCSI-2 device > > cd1: 3.300MB/s transfers > > cd1: Attempt to query device size failed: NOT READY, Medium not present > > cd2 at ncr0 bus 0 target 4 lun 0 > > cd2: Removable CD-ROM SCSI-2 device > > cd2: 4.237MB/s transfers (4.237MHz, offset 8) > > cd2: Attempt to query device size failed: NOT READY, Medium not present > > da0 at ahc0 bus 0 target 0 lun 0 > > da0: Fixed Direct Access SCSI-2 device > > da0: 40.000MB/s transfers (20.000MHz, offset 8, 16bit), Tagged Queueing > > Enabled > > da0: 2063MB (4226725 512 byte sectors: 64H 32S/T 2063C) > > da1 at ahc0 bus 0 target 1 lun 0 > > da1: Fixed Direct Access SCSI-2 device > > da1: 40.000MB/s transfers (20.000MHz, offset 8, 16bit), Tagged Queueing > > Enabled > > da1: 8715MB (17850000 512 byte sectors: 64H 32S/T 8715C) > > ffs_mountfs: superblock updated for soft updates > > ffs_mountfs: superblock updated for soft updates > > ffs_mountfs: superblock updated for soft updates > > ffs_mountfs: superblock updated for soft updates > > ffs_mountfs: superblock updated for soft updates > > ffs_mountfs: superblock updated for soft updates > > > > > > > > I'm using FreeBSD now since 2.0.x and I love it... > > > > But now I'm experimenting with samba and the performance > > drop is so big that I think I forget something... > > > > WIthout samba the 100mbit fxp0 link crossover was > > almost maximal used during ftp... > > > > With samba it drops to about 80kB/s > > > > I included some comfiguration info underneath.. > > > > Any advice is appreciated, please cc to me! > > > > Greetz, > > > > Arnout > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 8:56:31 1999 Delivered-To: freebsd-questions@freebsd.org Received: from one.zutom.sk (one.zutom.sk [195.98.5.11]) by hub.freebsd.org (Postfix) with ESMTP id BFD8A15277 for ; Thu, 19 Aug 1999 08:56:26 -0700 (PDT) (envelope-from roman@one.zutom.sk) Received: from localhost (roman@localhost) by one.zutom.sk (8.9.3/8.9.3) with ESMTP id RAA14388 for ; Thu, 19 Aug 1999 17:55:53 +0200 (CEST) Date: Thu, 19 Aug 1999 17:55:53 +0200 (CEST) From: Roman Mikus To: freebsd-questions@FreeBSD.ORG Subject: apache-php3-1.3.6 Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; CHARSET=US-ASCII Content-ID: Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello! I'm running FreeBSD 2.2.8-STABLE. I can't compile apache-php3-1.3.6 port with MySQL support, beceause following error occurs: ... cc -DHARD_SERVER_LIMIT=512 -DDEFAULT_PATH=\"/usr/local/bin:/bin:/usr/bin\" -fun signed-char -DTARGET=\"apache\" -O `./apaci` -o apache buildmark.o modules.o modules/standard/libstandard.a modules/php3/libphp3.a main/libmain.a ./os/u nix/libos.a ap/libap.a -L/usr/local/lib -L/usr/local/lib/mysql -Lmodules/php3 -L../modules/php3 -L../../modules/php3 -lmodphp3 -lpcre -lz -lm -lcrypt -lbind -lcrypt -lgd -L/usr/local/lib/mysql -lmysqlclient posix.o: Undefined symbol `_getpgid' referenced from text segment posix.o: Undefined symbol `_getpgid' referenced from text segment *** Error code 1 Stop. To compile I used word 'make'. Please help me to get this port working. Thanks for any suggestions, Roman Mikus To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 9:13:45 1999 Delivered-To: freebsd-questions@freebsd.org Received: from styx.aic.net (Styx.AIC.NET [195.250.64.68]) by hub.freebsd.org (Postfix) with ESMTP id A114D1529D for ; Thu, 19 Aug 1999 09:13:33 -0700 (PDT) (envelope-from ran@styx.aic.net) Received: (from ran@localhost) by styx.aic.net (8.9.2/8.9.2) id VAA22128; Thu, 19 Aug 1999 21:11:10 +0500 (AMST) From: "Ran d'Adi" Message-Id: <199908191611.VAA22128@styx.aic.net> Subject: Re: shutdown -p now In-Reply-To: from Kenneth Wayne Culver at "Aug 18, 1999 9:10:43 am" To: culverk@wam.umd.edu (Kenneth Wayne Culver) Date: Thu, 19 Aug 1999 21:11:10 +0500 (AMST) Cc: freebsd-questions@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-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > I want shutdown to make my computer turn off without pushing the power > button. I looked in the manpage for shutdown, and shutdown -p now is > supposed to turn off the computer. However it doesn't. I have a PII 450 > with the apm device turned on. Windows, and Redhat both do what I'm asking > so I was just wondering what I'm doing wrong in FreeBSD. > You need apm support in your kernel, then enable apm in rc.conf apm_enable="YES" or from command line: apmconf -e But is there any chance to do clean shutdown when pressing power button ? I mean ATX box, of course ;) > > > Kenneth Culver > Computer Science Major at the University of Maryland, College Park. > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- Ran d'Adi ran@styx.aic.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 9:13:48 1999 Delivered-To: freebsd-questions@freebsd.org Received: from smtp-out.vma.verio.net (smtp-out.vma.verio.net [168.143.0.23]) by hub.freebsd.org (Postfix) with ESMTP id 57BCD1528F for ; Thu, 19 Aug 1999 09:13:45 -0700 (PDT) (envelope-from thomas@clark.net) Received: from smtp-gw2.vma.verio.net ([168.143.0.22]) by smtp-out.vma.verio.net with esmtp (Exim 2.10 #1) id 11HUkg-0004es-00 for freebsd-questions@freebsd.org; Thu, 19 Aug 1999 12:09:18 -0400 Received: from minotaur (thomas.clark.net [168.143.2.191]) by smtp-gw2.vma.verio.net (8.9.3/8.9.3) with SMTP id MAA11567 for ; Thu, 19 Aug 1999 12:12:56 -0400 (EDT) Message-Id: <3.0.6.32.19990819121312.008d8b20@pop3.clark.net> X-Sender: thomas@pop3.clark.net X-Mailer: QUALCOMM Windows Eudora Light Version 3.0.6 (32) Date: Thu, 19 Aug 1999 12:13:12 -0400 To: freebsd-questions@freebsd.org From: Mark Thomas Subject: Simple port blocking Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I have a dial up machine that I use for internet connectivity. It's running only basic services, ssh, sendmail, ftpd. I'd like to set it up so the ident port shows as blocked rather than timing out connections. I'm not running inetd. Is there a simple way of doing this? I'm guessing there's a port that does what I want, I just don't know what I'm looking for. Thanks, Mark --- thomas@clark.net ---> http://www.clark.net/pub/thomas PBEM Eldritch --------> http://www.pbegames.com [TM4463-ORG] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 9:23:48 1999 Delivered-To: freebsd-questions@freebsd.org Received: from adsl-216-102-203-44.dsl.snfc21.pacbell.net (adsl-216-102-203-44.dsl.snfc21.pacbell.net [216.102.203.44]) by hub.freebsd.org (Postfix) with ESMTP id 5CBEA14E52 for ; Thu, 19 Aug 1999 09:23:33 -0700 (PDT) (envelope-from bri@sonicboom.org) Received: from localhost (bri@localhost) by adsl-216-102-203-44.dsl.snfc21.pacbell.net (8.9.3/8.9.3) with ESMTP id JAA46392; Thu, 19 Aug 1999 09:23:01 -0700 (PDT) (envelope-from bri@sonicboom.org) Date: Thu, 19 Aug 1999 09:23:00 -0700 (PDT) From: Brian X-Sender: bri@adsl-216-102-203-44.dsl.snfc21.pacbell.net To: Forrest Aldrich Cc: freebsd-questions@FreeBSD.ORG Subject: Re: DELL servers and FreeBSD In-Reply-To: <4.2.0.58.19990817140100.00ada6f0@216.67.12.69> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG We set 1 up at my employer's site, an Optiplex PIII. Works well. Bri On Tue, 17 Aug 1999, Forrest Aldrich wrote: > Just as a pre-emptive question: has anyone run into problems running > FreeBSD on any DELL servers? Namely, the PowerEdge 6350's. > > Thanks. > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 9:36:57 1999 Delivered-To: freebsd-questions@freebsd.org Received: from phoenix.aye.net (phoenix.aye.net [206.185.8.134]) by hub.freebsd.org (Postfix) with SMTP id 46AE915A1E for ; Thu, 19 Aug 1999 09:36:39 -0700 (PDT) (envelope-from barrett@phoenix.aye.net) Received: (qmail 8499 invoked by uid 1000); 19 Aug 1999 16:29:06 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 19 Aug 1999 16:29:06 -0000 Date: Thu, 19 Aug 1999 12:29:06 -0400 (EDT) From: Barrett Richardson To: Ed Baxter Cc: freebsd-questions@freebsd.org Subject: Re: how to stop route redirects In-Reply-To: <9908161526560P.13614@redhat> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, 16 Aug 1999, Ed Baxter wrote: > How can I force freebsd 2.2.5 stable to ignore route redirects? Routed is turned off and > I tried specifying these routes as static routes but one of our routers sends redirects > when there is a WAN hiccup and internal traffic gets routed out to the internet > (default for the router). The static routes also get over ridden by the redirects. The > redirect would be fine except that when the WAN is back up the freebsd machine never > changes back. The Corp WAN guy has turned RIP off for the entire WAN so I think my only > option is to get the Freebsd machine to ignore the redirects. > > I noticed that even without routed my route table contains "learned" routes and keeps > growing. Is it possible to turn this behavior off (would probably solve my redirect > problem). We have Sun Solaris machines that without routed contain only a couple routes > in their route table and it never changes. I would prefer this behavior. > > Thanks for any help you can give... > > Ed Baxter > > Try running gated. With a config like: --- cut --- redirect off; rip off; --- cut -- You may want to toss any static routes you have in there. Gated will monitor the routing socket and attempt to undo any changes that redirects have done. - Barrett To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 9:37:15 1999 Delivered-To: freebsd-questions@freebsd.org Received: from adsl-216-102-203-44.dsl.snfc21.pacbell.net (adsl-216-102-203-44.dsl.snfc21.pacbell.net [216.102.203.44]) by hub.freebsd.org (Postfix) with ESMTP id 119AF151F9 for ; Thu, 19 Aug 1999 09:37:10 -0700 (PDT) (envelope-from bri@sonicboom.org) Received: from localhost (bri@localhost) by adsl-216-102-203-44.dsl.snfc21.pacbell.net (8.9.3/8.9.3) with ESMTP id JAA46410; Thu, 19 Aug 1999 09:36:53 -0700 (PDT) (envelope-from bri@sonicboom.org) Date: Thu, 19 Aug 1999 09:36:53 -0700 (PDT) From: Brian X-Sender: bri@adsl-216-102-203-44.dsl.snfc21.pacbell.net To: eiji@lilac.ocn.ne.jp Cc: FreeBSD-questions@FreeBSD.ORG Subject: Re: question In-Reply-To: <37BA8076.AE32E29D@lilac.ocn.ne.jp> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Huh, please clarify.. Bri On Wed, 18 Aug 1999 eiji@lilac.ocn.ne.jp wrote: > Can you make provider system by FreeBSD3.0? > > Useing livingston portmaster etc. > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 9:41: 1 1999 Delivered-To: freebsd-questions@freebsd.org Received: from diamondback.brooks.af.mil (diamondback.brooks.af.mil [140.140.58.5]) by hub.freebsd.org (Postfix) with ESMTP id 41048151F4 for ; Thu, 19 Aug 1999 09:40:50 -0700 (PDT) (envelope-from Norman.Barsalou@navy.brooks.af.mil) Received: from diamondback.brooks.af.mil (root@localhost) by diamondback.brooks.af.mil with ESMTP id LAA29572 for ; Thu, 19 Aug 1999 11:40:07 -0500 (CDT) Received: from eclipse.brooks.af.mil (eclipse.brooks.af.mil [140.140.188.24]) by diamondback.brooks.af.mil with ESMTP id LAA29568 for ; Thu, 19 Aug 1999 11:40:07 -0500 (CDT) Received: by eclipse.brooks.af.mil with Internet Mail Service (5.5.2448.0) id ; Thu, 19 Aug 1999 11:40:25 -0500 Message-ID: <34C01930DFC8D211BE220000F8064F1275FAC1@eclipse.brooks.af.mil> From: Barsalou Norman Contr NHRC-DET To: "'questions@freebsd.org'" Subject: Freebsd handbook in PDF Date: Thu, 19 Aug 1999 11:40:19 -0500 X-Mailer: Internet Mail Service (5.5.2448.0) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG HI Mark, Do you know the whereabouts of a PDF version of the FreeBSD Handbook? Please pass this along to me. Many thanks in advance, norm barsalou To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 9:45:44 1999 Delivered-To: freebsd-questions@freebsd.org Received: from petent.ocsny.com (petent.ocsny.com [204.107.76.50]) by hub.freebsd.org (Postfix) with ESMTP id 661BE151E9 for ; Thu, 19 Aug 1999 09:45:41 -0700 (PDT) (envelope-from pcollins@ocsny.com) Received: from ocsny.com (localhost [127.0.0.1]) by petent.ocsny.com (8.9.2/8.9.2) with ESMTP id MAA00462; Thu, 19 Aug 1999 12:42:47 -0400 (EDT) (envelope-from pcollins@ocsny.com) Message-ID: <37BC3407.B0B6BDC8@ocsny.com> Date: Thu, 19 Aug 1999 12:42:47 -0400 From: pete collins Organization: Optimized Computer Solutions X-Mailer: Mozilla 4.5 [en] (X11; I; FreeBSD 3.1-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: Brian Cc: Forrest Aldrich , freebsd-questions@FreeBSD.ORG Subject: Re: DELL servers and FreeBSD References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG i set up a dell PowerEdge 2300 dual CPU for my main home machine. the easiest freeBSD install i've ever done. i jams. pete Brian wrote: > We set 1 up at my employer's site, an Optiplex PIII. Works well. > > Bri > > On Tue, 17 Aug 1999, Forrest Aldrich wrote: > > > Just as a pre-emptive question: has anyone run into problems running > > FreeBSD on any DELL servers? Namely, the PowerEdge 6350's. > > > > Thanks. > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- Pete Collins To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 9:48:50 1999 Delivered-To: freebsd-questions@freebsd.org Received: from adsl-216-102-203-44.dsl.snfc21.pacbell.net (adsl-216-102-203-44.dsl.snfc21.pacbell.net [216.102.203.44]) by hub.freebsd.org (Postfix) with ESMTP id AC737151E9 for ; Thu, 19 Aug 1999 09:48:48 -0700 (PDT) (envelope-from bri@sonicboom.org) Received: from localhost (bri@localhost) by adsl-216-102-203-44.dsl.snfc21.pacbell.net (8.9.3/8.9.3) with ESMTP id JAA46445; Thu, 19 Aug 1999 09:48:27 -0700 (PDT) (envelope-from bri@sonicboom.org) Date: Thu, 19 Aug 1999 09:48:27 -0700 (PDT) From: Brian X-Sender: bri@adsl-216-102-203-44.dsl.snfc21.pacbell.net To: cjc26@cornell.edu Cc: Zhihui Zhang , "James F. Young" , FreeBSD Questions Subject: Re: swap size with 256mb ram(newbie) In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I'd probably recommend trying it with 256 mb swap, starting all the typical stuff you do, then examining swap usage via top or other methodology. Bri On Wed, 18 Aug 1999 cjc26@cornell.edu wrote: > On Wed, 18 Aug 1999, Zhihui Zhang wrote: > > > > I set bsd up using the automatic settings which defaulted to double my > > > physical ram. I am trying to determine if a 500+mb swap is actually > > > necessary with that much or if I can just make one thats is linux style > > > (e.g equal to my physical mem of 256) > > > > Making the swap space twice as large as your memory is a thumb of rule, > > which is said in many CS text books I believe. > > And probably not a good rule to follow for >128M or so, especially if > you're not using your machine as a heavy duty server or something. Why > don't you just try it with 256M of swap, see how it works. > > -- > cliff crawford http://www.people.cornell.edu/pages/cjc26/ > main(q){6-q&&main(q+1),putchar(67+3*(19%q-q/4));} > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 9:57:26 1999 Delivered-To: freebsd-questions@freebsd.org Received: from topsecret.net (gill.apk.net [207.54.148.62]) by hub.freebsd.org (Postfix) with SMTP id 0F06D14E52 for ; Thu, 19 Aug 1999 09:57:23 -0700 (PDT) (envelope-from gill@topsecret.net) Received: from stumpy by topsecret.net with SMTP (MDaemon.v2.7.SP5.R) for ; Thu, 19 Aug 1999 12:52:40 -0400 From: "James Gill" To: "freebsd-questions@FreeBSD. ORG" Subject: natd redirects not happening Date: Thu, 19 Aug 1999 12:52:18 -0400 Message-ID: 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 IMO, Build 9.0.2416 (9.0.2910.0) X-Mimeole: Produced By Microsoft MimeOLE V5.00.2314.1300 Importance: Normal X-MDaemon-Deliver-To: freebsd-questions@FreeBSD.ORG X-Return-Path: gill@topsecret.net Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I'm having trouble trying to redirect incoming connections to my firewall on specific ports to other machines on my network. In looking at my natd stuff in rc.conf and it seems (to me) to be right: -------------------------------------- ### FIREWALL AND NATD CONFIG ### firewall_enable="YES" firewall_type="open" natd_program="/sbin/natd" natd_enable="YES" #firewall_enable must also be set to yes # #and ipdivert must also be in kernel natd_interface="ed1" natd_flags="-f /etc/rc.natd" -------------------------------------- and the file rc.natd is long and full of comments, but here's the relevant section: -------------------------------------- ### redirected ports ### # redirect_port proto tergetIP:targetPORT [aliasIP:]aliasPORT \ # [remoteIP[:remotePORT]] # example: redirect_port tcp inside1:telnet 6666 # means that tcp packets destines for port 6666 on this machine will be sent # to the telnet port on the inside1 machine #redirect_port redirect_port tcp 10.101.101.33:21 21 #ftp redirect_port tcp 10.101.101.131:23 23 #telnet redirect_port tcp 10.101.101.33:25 25 #smtp redirect_port tcp 10.101.101.33:80 80 #www-tcp redirect_port udp 10.101.101.33:80 80 #www-udp redirect_port tcp 10.101.101.33:110 110 #pop3-tcp redirect_port udp 10.101.101.33:110 110 #pop3-udp -------------------------------------- What am i missing? Why are my redirects not happening? --gill To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 10:23:34 1999 Delivered-To: freebsd-questions@freebsd.org Received: from dt010nb9.san.rr.com (dt010nb9.san.rr.com [204.210.12.185]) by hub.freebsd.org (Postfix) with ESMTP id 92F17151EE for ; Thu, 19 Aug 1999 10:23:31 -0700 (PDT) (envelope-from Doug@gorean.org) Received: from localhost (doug@localhost) by dt010nb9.san.rr.com (8.9.3/8.8.8) with ESMTP id KAA56076; Thu, 19 Aug 1999 10:23:20 -0700 (PDT) (envelope-from Doug@gorean.org) Date: Thu, 19 Aug 1999 10:23:20 -0700 (PDT) From: Doug X-Sender: doug@dt010nb9.san.rr.com To: "Dan O'Connor" Cc: FreeBSD Questions Subject: Re: roots shell In-Reply-To: <02ba01bee9fc$8ff856c0$0200000a@home> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, 18 Aug 1999, Dan O'Connor wrote: > > > is there any way to change root's default shell from csh to bash. > > > > Yes there is, but it's a bad idea. Several people have already pointed out > > some reasons why. An additional alternative to su -m is to put the > > following in /root/.login: > > > > [ -x /usr/local/bin/bash] && exec /usr/local/bin/bash > > > > That will start bash for you if it's available, and if it isn't you can > > still log in. > > What a great idea! Well I can't take credit for it, but I'm happy to pass it along. IIRC I heard it first from Dag-Erling. > Thanks for making my day! Any time. :) Doug -- On account of being a democracy and run by the people, we are the only nation in the world that has to keep a government four years, no matter what it does. -- Will Rogers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 10:31:50 1999 Delivered-To: freebsd-questions@freebsd.org Received: from sand5.global.net.uk (sand5.global.net.uk [194.126.80.249]) by hub.freebsd.org (Postfix) with ESMTP id 901CF1522C for ; Thu, 19 Aug 1999 10:31:41 -0700 (PDT) (envelope-from marko@globalnet.co.uk) Received: from p91s06a06.client.global.net.uk ([195.147.214.146] helo=marder-1.) by sand5.global.net.uk with esmtp (Exim 2.05 #1) id 11HW1r-0003Ri-00; Thu, 19 Aug 1999 18:31:08 +0100 Received: (from marko@localhost) by marder-1. (8.9.2/8.8.8) id SAA00352; Thu, 19 Aug 1999 18:24:12 +0100 (BST) (envelope-from marko) Date: Thu, 19 Aug 1999 18:24:12 +0100 From: Mark Ovens To: Barsalou Norman Contr NHRC-DET Cc: "'questions@freebsd.org'" Subject: Re: Freebsd handbook in PDF Message-ID: <19990819182412.A268@marder-1> References: <34C01930DFC8D211BE220000F8064F1275FAC1@eclipse.brooks.af.mil> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.3i In-Reply-To: <34C01930DFC8D211BE220000F8064F1275FAC1@eclipse.brooks.af.mil>; from Barsalou Norman Contr NHRC-DET on Thu, Aug 19, 1999 at 11:40:19AM -0500 Organization: Total lack of Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, Aug 19, 1999 at 11:40:19AM -0500, Barsalou Norman Contr NHRC-DET wrote: > HI Mark, > > Do you know the whereabouts of a PDF version of the FreeBSD Handbook? > Please pass this along to me. Many thanks in advance, norm barsalou > ftp://ftp.freebsd.org/pub/FreeBSD/doc/ Choose from a wide selection of compression methods :-) handbook.pdf.bz2 1274 Kb Sun Aug 15 22:13:00 1999 handbook.pdf.gz 1369 Kb Sun Aug 15 22:14:00 1999 handbook.pdf.zip 1369 Kb Sun Aug 15 22:14:00 1999 > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > -- STATE-OF-THE-ART: Any computer you can't afford. OBSOLETE: Any computer you own. ________________________________________________________________ FreeBSD - The Power To Serve http://www.freebsd.org My Webpage http://http://ukug.uk.freebsd.org/~mark/ mailto:mark@ukug.uk.freebsd.org http://www.radan.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 10:33:12 1999 Delivered-To: freebsd-questions@freebsd.org Received: from adsl-216-102-203-44.dsl.snfc21.pacbell.net (adsl-216-102-203-44.dsl.snfc21.pacbell.net [216.102.203.44]) by hub.freebsd.org (Postfix) with ESMTP id 0097B15143 for ; Thu, 19 Aug 1999 10:33:10 -0700 (PDT) (envelope-from bri@sonicboom.org) Received: from localhost (bri@localhost) by adsl-216-102-203-44.dsl.snfc21.pacbell.net (8.9.3/8.9.3) with ESMTP id KAA46515 for ; Thu, 19 Aug 1999 10:32:24 -0700 (PDT) (envelope-from bri@sonicboom.org) Date: Thu, 19 Aug 1999 10:32:24 -0700 (PDT) From: Brian X-Sender: bri@adsl-216-102-203-44.dsl.snfc21.pacbell.net To: freebsd-questions@freebsd.org Subject: natd Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; CHARSET=US-ASCII Content-ID: Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Whats with the natd_ lines people are submitting with their rc.conf files. The self described howot, the man page, says nothing of these. I am also having a problem where whatever settings I apply to 1 nic get applied to the other. So as a result, this machine cannot access the outside world. Bri To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 11: 4:41 1999 Delivered-To: freebsd-questions@freebsd.org Received: from hotmail.com (law2-f68.hotmail.com [216.32.181.68]) by hub.freebsd.org (Postfix) with SMTP id 66BC5152C5 for ; Thu, 19 Aug 1999 11:04:34 -0700 (PDT) (envelope-from rogerken@hotmail.com) Received: (qmail 54968 invoked by uid 0); 19 Aug 1999 18:04:11 -0000 Message-ID: <19990819180411.54967.qmail@hotmail.com> Received: from 203.34.176.3 by www.hotmail.com with HTTP; Thu, 19 Aug 1999 11:04:11 PDT X-Originating-IP: [203.34.176.3] From: "Roger Kennell" To: freebsd-questions@FreeBSD.ORG Subject: Download via dial up modem on ppp Date: Thu, 19 Aug 1999 18:04:11 GMT Mime-Version: 1.0 Content-Type: text/plain; format=flowed Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I am currently attempting to download freebsd via a dial up connection (ppp). I have connected to my isp but the connection is refused due to a problem with pap. (It seems to think I'm using Win 95) I have read all the docs I can find but none of the are very clear to me. Is there a doc that is easy to understand for a non tech dummie like myself? Thanks for any help. ______________________________________________________ Get Your Private, Free Email at http://www.hotmail.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 11:13:41 1999 Delivered-To: freebsd-questions@freebsd.org Received: from ginger.kf7nn.com (mti-r1-aptis-4-p1990.cybertrails.com [162.42.15.197]) by hub.freebsd.org (Postfix) with ESMTP id 1FF0A15081 for ; Thu, 19 Aug 1999 11:13:25 -0700 (PDT) (envelope-from root@ginger.kf7nn.com) Received: (from root@localhost) by ginger.kf7nn.com (8.9.3/8.9.3) id LAA06228 for questions@freebsd.org; Thu, 19 Aug 1999 11:12:19 -0700 (MST) (envelope-from root) Message-ID: X-Mailer: XFMail 1.3 [p0] on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 Date: Thu, 19 Aug 1999 11:12:18 -0700 (MST) From: root@vetex.dhis.org To: questions@freebsd.org Subject: 3.2 wont install Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I previously had 2.2.7 installed on my TI 4000E laptop and working fine, there is one peculiar thing about this laptop though, the hard drive is 810 meg and the bios only supports 504 meg but 2.2.7 worked fine after setting the bios to 504 meg freebsd just figured it out on its own. I went and made 22 floppies for 3.2 and proceed to install bin from floppy and it gets all the way to "extracting bin into / directory" and just stops with "1024 bytes read from bin dist chunk 1 of 106 @ 1kb/sec" I tried this with a cdrom mounted on another ftp server and parrallel port connection with the same exact result. am i stuck with 2.2.whatever for now? ---------------------------------- E-Mail: root@vetex.dhis.org or kf7nn@kf7nn.com Date: 19-Aug-99 Time: 11:04:23 If money can't buy happiness, I guess you'll just have to rent it. This message was sent using FreeBSD Unix. ---------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 11:24:59 1999 Delivered-To: freebsd-questions@freebsd.org Received: from s86.onix.com (s86.onix.com [198.70.176.86]) by hub.freebsd.org (Postfix) with ESMTP id 3412C153AB for ; Thu, 19 Aug 1999 11:24:54 -0700 (PDT) (envelope-from root@s86.onix.com) Received: (from root@localhost) by s86.onix.com (8.8.7/8.8.7) id BAA24487; Thu, 19 Aug 1999 01:00:23 -0400 Date: Thu, 19 Aug 1999 01:00:23 -0400 From: root Message-Id: <199908190500.BAA24487@s86.onix.com> To: freebsd-questions@FreeBSD.ORG Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-URL: http://www.freebsd.org/mailto.html X-Mailer: Lynx, Version 2.8.3dev.2 Subject: http://www.freebsd.org/mailto.html Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Greetings, I don't know who this would be directed to, or who would read it, but I would like to ask a question of FreeBSD it's self. Recently, I have setup multiple message boards from the webpages at, http://cmweb.virtualave.net/, which basically is a menu for the message boards that are hosted on EzBoard, Inc. I would like to know a couple of questions, if at all possible: 1) I already have a forum setup, but would like to know before that specific forum begins to have activity. Is it ok to have the "FreeBSD" forum on there? 2) Is their any possible way that I could have the FreeBSD forum setup on FreeBSD's pages? (If none already exist.) The link is: http://server2.ezboard.com:8080/fthecomputerdiscussiongroupfreebsd Instead, it can also be accessed by going to, http://cmweb.virtualave.net and clicking on, FreeBSD. If this went to the wrong person, could you please send this to the approiate person to review this message. Thank you for your time reading this message, and any comments or ideas regarding this would be greatly appreciated. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 11:44:22 1999 Delivered-To: freebsd-questions@freebsd.org Received: from list.wildcoast.co.za (list.wildcoast.co.za [196.25.82.3]) by hub.freebsd.org (Postfix) with ESMTP id BFAAD1530E for ; Thu, 19 Aug 1999 11:43:58 -0700 (PDT) (envelope-from evablunted@earthling.net) Received: from impakt (uta36-01-p40.ec.saix.NET [155.239.168.40]) by list.wildcoast.co.za (8.9.3/8.9.3) with SMTP id UAA07893; Thu, 19 Aug 1999 20:47:30 +0200 Message-ID: <000001beea6f$f4a64780$0a01a8c0@sunshine.co.za> From: "Langa Kentane" To: Cc: "Cisco" , "FreeBSD" References: <6D1C7F13995FD11181C108002BB48A1CCDB873@HQASCEXC5> Subject: Re: router and firewall question Date: Thu, 19 Aug 1999 19:39:59 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit 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-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Now the other thing I would like to know is how I would go about is that if I use a private network address of 192.168.1.0 and put up my all my servers behind it ie: http server, ftp server, mail server (pop3 and smtp) and a dns server, will I not have problems with that, coz I need the stuff of the company to be able to connect to these from the internet and the other idea is that I want them to dial into the C2511 if the don't have a net connection. The others will work, I think, the http server and stuff by using the host name instead of the ip but then how will the be able to use the dns server since that uses an ip address instead of a host name? PLease help > Actually what you have below won't work. The router will think that hosts > 1-62 are on the local e0 segment - depending on the subnet mask used. The > firewall will create subnets on both the secure and unsecure side. To make > it work this is what I would do: > > R1: > > ip subnet-zero > ! > interface e0 > ip address 192.168.25.1 255.255.255.252 > > Give the ISP the rest of the address space back and use private addresses > for local hosts. The firewall should do the address translation for you. > Keep in mind that if you are going to be putting hosts in the unsecure side > of the firewall you'll want to keep some registered addresses. > > > Kenny Sallee > Army Network Systems Operation Center > Ft. Huachuca, AZ > DSN: 879-8212 > COM: 520-538-8212 > HelpDesk: 1-800-305-3036 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 12: 1:19 1999 Delivered-To: freebsd-questions@freebsd.org Received: from unix.megared.net.mx (megared.net.mx [207.249.162.252]) by hub.freebsd.org (Postfix) with ESMTP id D942915183 for ; Thu, 19 Aug 1999 12:01:16 -0700 (PDT) (envelope-from ales@megared.net.mx) Received: from ales (pix.megared.net.mx [207.249.162.253]) by unix.megared.net.mx (8.9.3/8.9.3) with SMTP id OAA28474 for ; Thu, 19 Aug 1999 14:00:23 -0500 (CDT) (envelope-from ales@megared.net.mx) Message-ID: <01cd01beea75$0ef0fc20$d4630a0a@megared.net.mx> From: "Alejandro Ramirez" To: "FreeBSD Questions" Subject: RAID Controller!!! Date: Thu, 19 Aug 1999 14:00:09 -0500 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-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, I just want to know if there are plans for having a driver for the following RAID card, "Dual Channel Wide Ultra SCSI RAID ( IBM ServeRAID II on planar)", its a built-in Card on a IBM Netfinity 5500 Server, and I am going to receive one of this servers in two months, its there any chance to make it work with FreeBSD, without having to install another SCSI Card in the system???. P.S. BTW its there any page where we can see the work in progress of the projects developed by the freebsd development team, it would be very good to know where are we going to, and what are the projects & status of them. Thanks in Advance Ales To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 12: 5:16 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail.qcislands.net (mail.qcislands.net [209.53.238.6]) by hub.freebsd.org (Postfix) with ESMTP id 144CF15183 for ; Thu, 19 Aug 1999 12:05:13 -0700 (PDT) (envelope-from ccstore@qcislands.net) Received: from wwwa ([209.53.238.8] helo=wwwa.qcislands.net) by mail.qcislands.net with esmtp (Exim 3.03 #1) id 11HXUg-0002Cm-00 for freebsd-questions@freebsd.org; Thu, 19 Aug 1999 12:04:58 -0700 Received: from ccstore by wwwa.qcislands.net with local (Exim 3.01 #3) id 11HXUg-0003AT-00 for freebsd-questions@freebsd.org; Thu, 19 Aug 1999 19:04:58 +0000 From: Jim Pazarena To: freebsd-questions@freebsd.org Subject: setting up mail server X-Mailer: SCO Shell Date: Thu, 19 Aug 1999 12:07:53 -0700 (PDT) Message-ID: <9908191207.aa08657@dick.ccstores.com> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG If you are creating a (FreeBSD) mail server on the net, is it 'required' to utilize an IP for an address named "smtp.XX.XX" ? I've got the machine's REAL name, and a second IP for "mail.XX.XX". It seems to me that if my DNS always points at "MX mail.XX.XX", then "smtp." doesn't enter the picture but I don't want to miss something. The reason I ask is a few years ago I hired a consultant to set up my original email and he created both mail & smtp... I've always left it as such but never understood why. BTW, my customers point at "mail.XX.XX" for both POP & smtp services. -- Jim Pazarena mailto:paz@ccstores.com http://www.qcislands.net/paz To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 12:24:32 1999 Delivered-To: freebsd-questions@freebsd.org Received: from ns.clientlogic.com (ns.clientlogic.com [207.51.66.75]) by hub.freebsd.org (Postfix) with ESMTP id 0240714F1F for ; Thu, 19 Aug 1999 12:24:27 -0700 (PDT) (envelope-from ChrisMic@clientlogic.com) Received: by site0s1 with Internet Mail Service (5.5.2448.0) id ; Thu, 19 Aug 1999 15:23:49 -0400 Message-ID: <6C37EE640B78D2118D2F00A0C90FCB4401105BB1@site2s1> From: Christopher Michaels To: 'Jim Pazarena' , freebsd-questions@freebsd.org Subject: RE: setting up mail server Date: Thu, 19 Aug 1999 15:26:22 -0400 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2448.0) Content-Type: text/plain Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG It's just one of those common practices that people perform, there's almost always an alias 'smtp.domain.org' to the actual mail server. It is not explicitly "required"! -Chris > -----Original Message----- > From: Jim Pazarena [SMTP:paz@ccstores.com] > Sent: Thursday, August 19, 1999 3:08 PM > To: freebsd-questions@freebsd.org > Subject: setting up mail server > > If you are creating a (FreeBSD) mail server on the net, is it 'required' > to utilize an IP for an address named "smtp.XX.XX" ? > > I've got the machine's REAL name, and a second IP for "mail.XX.XX". It > seems > to me that if my DNS always points at "MX mail.XX.XX", then "smtp." > doesn't > enter the picture but I don't want to miss something. > > The reason I ask is a few years ago I hired a consultant to set up my > original email and he created both mail & smtp... I've always left it > as such but never understood why. BTW, my customers point at "mail.XX.XX" > for both POP & smtp services. > > > -- > Jim Pazarena mailto:paz@ccstores.com > http://www.qcislands.net/paz To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 12:32:12 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail.hrn.ascend.com (mail.hrn.ascend.com [149.52.1.88]) by hub.freebsd.org (Postfix) with ESMTP id 0C88D14E5C for ; Thu, 19 Aug 1999 12:32:10 -0700 (PDT) (envelope-from tomas@hrn.ascend.com) Received: from [149.52.12.137] (bitbucket.eng.hrn.ascend.com [149.52.12.137]) by mail.hrn.ascend.com (8.8.5/8.8.5) with ESMTP id PAA28943 for ; Thu, 19 Aug 1999 15:31:38 -0400 (EDT) Message-Id: <199908191931.PAA28943@mail.hrn.ascend.com> X-Mailer: Microsoft Outlook Express Macintosh Edition - 4.5 (0410) Date: Thu, 19 Aug 1999 15:30:33 -0500 Subject: Reboot during install From: "Thomas Inskip" To: freebsd-questions@freebsd.org Mime-version: 1.0 X-Priority: 3 Content-type: text/plain; charset="US-ASCII" Content-transfer-encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I'm trying to install FreeBSD 3.2-RELEASE onto a Gateway Pentium Pro box with 128M of RAM, an Adapted 2940 PCI SCSI controller, and an S3V video card. I'm installing onto a separate partition on a drive already containing NT, and which uses System Commander (I've tried this configuration before with 2.2.8 with no problems). I configure the kernel, partition the drive, label the partitions, and do a custom installation. Everything seems to go well until it comes to decompressing the ports packages, which causes a lot of disk activity, during which the machine just reboots, leaving me with an invalid installation (no kernel for one thing). Is this a known problem? Is there a workaround? Thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 12:36:17 1999 Delivered-To: freebsd-questions@freebsd.org Received: from list.wildcoast.co.za (list.wildcoast.co.za [196.25.82.3]) by hub.freebsd.org (Postfix) with ESMTP id 85CA014E32 for ; Thu, 19 Aug 1999 12:35:48 -0700 (PDT) (envelope-from evablunted@earthling.net) Received: from impakt (uta36-01-p39.ec.saix.NET [155.239.168.39]) by list.wildcoast.co.za (8.9.3/8.9.3) with SMTP id VAA08000 for ; Thu, 19 Aug 1999 21:40:08 +0200 Message-ID: <000201beea77$457fbe00$0a01a8c0@sunshine.co.za> From: "Langa Kentane" To: "FreeBSD" Subject: Installation woes... about to get fired for incompetence! Date: Thu, 19 Aug 1999 21:12:15 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit 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-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I have been trying to install FreeBSD 2.2.8 for the past 5 days and everytime I get stuck trying to boot from the FreeBSD boot disk. I made the boot image from boot.flp and tried to boot the machine. What I got was error: D:0x0 C:43 H:0 S:3. I have since replaced every bit of hardware on the system and even tried a new machine with no change. I tried to use different floppies but still I get the same message while trying to boot. The machine I am using is a P200MMX with 128 meg ram and 2 hard drives (1 two gig drive and one 650 meg drive). I have installed FreeBSD on the same machine before with no problems. Please help me before my boss fires me for incompetence. Thanks in advace Langa Kentane System Administrator Sunshine Networks cc Tel +27 82 928 1952 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 12:44: 7 1999 Delivered-To: freebsd-questions@freebsd.org Received: from dt010nb9.san.rr.com (dt010nb9.san.rr.com [204.210.12.185]) by hub.freebsd.org (Postfix) with ESMTP id DA2CC152A4 for ; Thu, 19 Aug 1999 12:43:56 -0700 (PDT) (envelope-from Doug@gorean.org) Received: from localhost (doug@localhost) by dt010nb9.san.rr.com (8.9.3/8.8.8) with ESMTP id MAA57456; Thu, 19 Aug 1999 12:43:07 -0700 (PDT) (envelope-from Doug@gorean.org) Date: Thu, 19 Aug 1999 12:43:07 -0700 (PDT) From: Doug X-Sender: doug@dt010nb9.san.rr.com To: Ben Smithurst Cc: mcwong@ascend.com, questions@freebsd.org Subject: Re: Safe upgrade from 2.2.5 --> 3.2 ? In-Reply-To: <19990819141400.A11333@lithium.scientia.demon.co.uk> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, 19 Aug 1999, Ben Smithurst wrote: > You want `aout-to-elf', I think this is the same as `upgrade'. Nope. :) Please see the web page I mentioned in the previous post. The only target that should be used is make upgrade. Doug -- On account of being a democracy and run by the people, we are the only nation in the world that has to keep a government four years, no matter what it does. -- Will Rogers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 12:44:44 1999 Delivered-To: freebsd-questions@freebsd.org Received: from dt010nb9.san.rr.com (dt010nb9.san.rr.com [204.210.12.185]) by hub.freebsd.org (Postfix) with ESMTP id 1C66115273 for ; Thu, 19 Aug 1999 12:44:36 -0700 (PDT) (envelope-from Doug@gorean.org) Received: from localhost (doug@localhost) by dt010nb9.san.rr.com (8.9.3/8.8.8) with ESMTP id MAA57425; Thu, 19 Aug 1999 12:41:39 -0700 (PDT) (envelope-from Doug@gorean.org) Date: Thu, 19 Aug 1999 12:41:39 -0700 (PDT) From: Doug X-Sender: doug@dt010nb9.san.rr.com To: mcwong@ascend.com Cc: Ben Smithurst , questions@freebsd.org Subject: Re: Safe upgrade from 2.2.5 --> 3.2 ? In-Reply-To: <882567D2.003DC09F.00@colton.ascend.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, 19 Aug 1999 mcwong@ascend.com wrote: > One more question before I begin. Since 2.2.5 is a.out only system > and 3.2 will be elf by default, now that I have the 3.2. src what target > should I be building first ? Please take a look at http://freebsd.simplenet.com/make-upgrade.html before you proceed. Specifically, you should not try to upgrade from 2.2.5 straight to 3.2-Stable since I've seen people run into trouble with a system older than 2.2.6. Also, the ONLY targe you should build is make upgrade. More details are on that web page. > Also, about the mergemaster util. Should this be run before or > after the above build process ? This question is also answered on that page. > I did try running is *before* the > build (which I am quite reluctant to do for now until I know which > target to build) but got the following error: > > mtree -deU -f /usr/src/etc/mtree/BSD.usr.dist -p /var/tmp/temproot/usr > mtree: line 156: unknown keyword nochange > *** Error code 1 > > Stop. > > *** FATAL ERROR: Cannot 'cd' to /usr/src/etc and install files to the > temproot environment > > > At this point I stop and decide to ask before proceeding further. IIRC this problem occurs because your vertion of mtree (and maybe make too) is too old. Upgrading to 2.2.8-Stable before doing the 3.2-Stable upgrade will solve this problem for you. Good luck, Doug To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 12:47:36 1999 Delivered-To: freebsd-questions@freebsd.org Received: from linuxbear.hip.berkeley.edu (linuxbear.HIP.Berkeley.EDU [136.152.130.38]) by hub.freebsd.org (Postfix) with ESMTP id E8A6F15252 for ; Thu, 19 Aug 1999 12:47:24 -0700 (PDT) (envelope-from bear@linuxbear.hip.berkeley.edu) Received: (from bear@localhost) by linuxbear.hip.berkeley.edu (8.9.3/14.32.12) id MAA09617 for freebsd-questions@FreeBSD.ORG; Thu, 19 Aug 1999 12:43:45 -0700 (PDT) (envelope-from bear) Date: Thu, 19 Aug 1999 12:43:45 -0700 From: The Bear To: freebsd-questions@FreeBSD.ORG Subject: Installing FreeBSD from DOS w/out floppy or cd Message-ID: <19990819124345.A9583@linuxbear.hip.berkeley.edu> Reply-To: bear@vividata.com Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.3i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I am trying to install FreeBSD on a laptop which has no cd-rom and no floppy. I have seen utilities like fbsdboot.exe and I have heard about setup.exe, both of which seem like they are supposed to be able to do some sort of install from dos. I have not had any luck with fbsdboot.exe ( it always complains about invalid kernel format [ I've tried fbsdboot -D c:\kernel\kernel < a fbsd3.2 kernel, and fbsdboot -D c:\kernel\boot.flp ] ), and I have been unable to find setup.exe. I also know a utility for netbooting computer's is available, but, I doubt it would work with a pcmcia ethetnet card ( although it is ne2000 compatible ), and I would really like to avoid having to set up a bootp server ( Although I would if I have to ), does anyone know if this would work? The Laptop is a Zenith Z-note 486/66 running dos 6.2. Dos is completly useless to me, so I would like to wipe the partition, and put FBSD in it's place. Any help would be appreciated. Thanks, Charles Shiflett To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 12:57:13 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail4.kscable.com (fe4.rdc-kc.rr.com [24.94.163.51]) by hub.freebsd.org (Postfix) with ESMTP id DCD9A14BEC for ; Thu, 19 Aug 1999 12:57:05 -0700 (PDT) (envelope-from bfs@kscable.com) Received: from kscable.com ([24.94.196.182]) by mail4.kscable.com with Microsoft SMTPSVC(5.5.1875.185.18); Thu, 19 Aug 1999 14:49:43 -0500 Message-ID: <37BC6118.56EBD3DF@kscable.com> Date: Thu, 19 Aug 1999 14:55:04 -0500 From: Ben Salem Organization: Wichita Area FreeBSD User's Group X-Mailer: Mozilla 4.6 [en] (Win98; I) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: System Halted Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Recently, when my system was working just fine, no problems at all - I even had a 30 day uptime, I had to reboot my system to adjust some NIC card settings with a DOS diskette I have. So I did that ( I don't know if this had any effect on what my problem is or not) then I rebooted, and at the time FreeBSD should be giving me a boot prompt "-" it spits out alot of what seem to be memory addresss, quite a few in rows, then under all of that says "System Halted" and that's it. I've never seen this before, maybe someone could assist me in troubleshooting this problem. I run 3.2-RELEASE on a 486 DX/2 with 12mb RAM. Thanks, Ben Salem bfs@kscable.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 13: 0:47 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail.tucows.com (mail.tucows.com [208.229.216.23]) by hub.freebsd.org (Postfix) with ESMTP id 25B0114C24 for ; Thu, 19 Aug 1999 13:00:36 -0700 (PDT) (envelope-from arthur@tucows.com) Received: from Arthur.Linuxberg (starwars.linuxberg.org [208.229.216.41]) by mail.tucows.com (8.9.3/8.9.1) with ESMTP id PAA04221; Thu, 19 Aug 1999 15:58:30 -0400 Received: from localhost (arthur@localhost) by Arthur.Linuxberg (8.9.3/8.9.3) with ESMTP id PAA02429; Thu, 19 Aug 1999 15:58:17 -0400 (EDT) X-Authentication-Warning: Arthur.Linuxberg: arthur owned process doing -bs Date: Thu, 19 Aug 1999 15:58:16 -0400 (EDT) From: "Arthur H. Johnson II" X-Sender: arthur@Arthur.Linuxberg To: Langa Kentane Cc: FreeBSD Subject: Re: Installation woes... about to get fired for incompetence! In-Reply-To: <000201beea77$457fbe00$0a01a8c0@sunshine.co.za> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG The boot floppies are kernel.flp and mfsroot.flp. boot.flp is a rescue disk executed after booting into the kernel and mfs. Arthur H. Johnson II http://www.linuxberg.com Linuxberg Manager arthur@tucows.com On Thu, 19 Aug 1999, Langa Kentane wrote: > I have been trying to install FreeBSD 2.2.8 for the past 5 days and > everytime I get stuck trying to boot from the FreeBSD boot disk. > > I made the boot image from boot.flp and tried to boot the machine. What I > got was error: D:0x0 C:43 H:0 S:3. > > I have since replaced every bit of hardware on the system and even tried a > new machine with no change. I tried to use different floppies but still I > get the same message while trying to boot. The machine I am using is a > P200MMX with 128 meg ram and 2 hard drives (1 two gig drive and one 650 meg > drive). > > I have installed FreeBSD on the same machine before with no problems. Please > help me before my boss fires me for incompetence. > > Thanks in advace > > Langa Kentane > System Administrator > Sunshine Networks cc > Tel +27 82 928 1952 > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 13: 1: 6 1999 Delivered-To: freebsd-questions@freebsd.org Received: from jasper.heartland.ab.ca (jasper.heartland.ab.ca [207.107.228.1]) by hub.freebsd.org (Postfix) with ESMTP id 62BEF15007 for ; Thu, 19 Aug 1999 13:00:54 -0700 (PDT) (envelope-from dkwiebe@heartland.ab.ca) Received: from freebsd.hagens.ab.ca (ppp1.heartland.ab.ca [207.107.228.129]) by jasper.heartland.ab.ca (8.9.0/8.8.5) with ESMTP id NAA19273; Thu, 19 Aug 1999 13:51:21 -0600 (MDT) Received: from heartland.ab.ca (dkwiebe.hagens.ab.ca [10.0.1.3]) by freebsd.hagens.ab.ca (8.9.2/8.9.2) with ESMTP id NAA19388; Thu, 19 Aug 1999 13:09:22 -0600 (MDT) (envelope-from dkwiebe@heartland.ab.ca) Message-ID: <37BC62F3.1FF3F4F@heartland.ab.ca> Date: Thu, 19 Aug 1999 14:02:59 -0600 From: Darren WIebe Reply-To: dkwiebe@hagenhomes.com X-Mailer: Mozilla 4.61 [en] (X11; U; FreeBSD 3.2-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: Langa Kentane Cc: FreeBSD Subject: Re: Installation woes... about to get fired for incompetence! References: <000201beea77$457fbe00$0a01a8c0@sunshine.co.za> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I would recommend trying a different version of FreeBSD if possible. You could download the diskettes for a different version and try them. Darren Wiebe dkwiebe@hagenhomes.com > > I have been trying to install FreeBSD 2.2.8 for the past 5 days and > everytime I get stuck trying to boot from the FreeBSD boot disk. > > I made the boot image from boot.flp and tried to boot the machine. What I > got was error: D:0x0 C:43 H:0 S:3. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 13: 6:13 1999 Delivered-To: freebsd-questions@freebsd.org Received: from freedom.com (ocr.freedom.com [141.242.9.50]) by hub.freebsd.org (Postfix) with SMTP id A6DE915007 for ; Thu, 19 Aug 1999 13:06:00 -0700 (PDT) (envelope-from ljj@link.freedom.com) Received: from smtp_gateway (link.freedom.com) by freedom.com (4.1/SMI-4.1) id AA00273; Thu, 19 Aug 99 13:08:44 PDT From: ljj@link.freedom.com (Lisa Johnson) To: FreeBSD-questions@freebsd.org Date: Thu, 19 Aug 1999 13:05:08 -0700 Subject: Problems w/ CD-Rom Installation Message-Id: Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Content-Id: X-Gateway: NASTA Gate 2.0 for FirstClass(R) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Why would BSD recognize a Toshiba XM-6102D and not a Toshiba XM-6402D? Both are ATAPI IDE drives. Thanks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 13: 7:14 1999 Delivered-To: freebsd-questions@freebsd.org Received: from hqascexc1.army.mil (HQASCEXC1.ARMY.MIL [138.27.190.15]) by hub.freebsd.org (Postfix) with ESMTP id 4568C15007 for ; Thu, 19 Aug 1999 13:06:44 -0700 (PDT) (envelope-from salleek@hqasc.army.mil) Received: by hqascexc1.army.mil with Internet Mail Service (5.5.2650.10) id ; Thu, 19 Aug 1999 20:05:56 -0000 Message-ID: <6D1C7F13995FD11181C108002BB48A1CCE705E@HQASCEXC5> From: salleek@hqasc.army.mil To: salleek@hqasc.army.mil, evablunted@earthling.net Cc: cisco@groupstudy.com, freebsd-questions@freebsd.org Subject: RE: router and firewall question Date: Thu, 19 Aug 1999 20:05:57 -0000 X-Mailer: Internet Mail Service (5.5.2650.10) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I don't have direct experience with firewalls, but from what I've seen, the firewall software should do it for you. You can make a rule that any incoming requests to destination port 80 are forwarded to the actual IP of the web server for example. Not sure how the NAT side works from a firewall either. You should contact the vendor and get a rep to come out and help you install it. Sorry I can't help anymore. Kenny Sallee Army Network Systems Operation Center Ft. Huachuca, AZ DSN: 879-8212 COM: 520-538-8212 HelpDesk: 1-800-305-3036 > ---------- > From: Langa Kentane[SMTP:evablunted@earthling.net] > Sent: Thursday, August 19, 1999 10:39 AM > To: salleek@hqasc.army.mil > Cc: Cisco; FreeBSD > Subject: Re: router and firewall question > > Now the other thing I would like to know is how I would go about is that > if > I use a private network address of 192.168.1.0 and put up my all my > servers > behind it ie: http server, ftp server, mail server (pop3 and smtp) and a > dns > server, will I not have problems with that, coz I need the stuff of the > company to be able to connect to these from the internet and the other > idea > is that I want them to dial into the C2511 if the don't have a net > connection. > > The others will work, I think, the http server and stuff by using the host > name instead of the ip but then how will the be able to use the dns server > since that uses an ip address instead of a host name? > > PLease help > > > Actually what you have below won't work. The router will think that > hosts > > 1-62 are on the local e0 segment - depending on the subnet mask used. > The > > firewall will create subnets on both the secure and unsecure side. To > make > > it work this is what I would do: > > > > R1: > > > > ip subnet-zero > > ! > > interface e0 > > ip address 192.168.25.1 255.255.255.252 > > > > Give the ISP the rest of the address space back and use private > addresses > > for local hosts. The firewall should do the address translation for > you. > > Keep in mind that if you are going to be putting hosts in the unsecure > side > > of the firewall you'll want to keep some registered addresses. > > > > > > Kenny Sallee > > Army Network Systems Operation Center > > Ft. Huachuca, AZ > > DSN: 879-8212 > > COM: 520-538-8212 > > HelpDesk: 1-800-305-3036 > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 13:16:54 1999 Delivered-To: freebsd-questions@freebsd.org Received: from rackmount.ORG (grill.rackmount.ORG [209.79.28.99]) by hub.freebsd.org (Postfix) with SMTP id EA82B15235 for ; Thu, 19 Aug 1999 13:16:52 -0700 (PDT) (envelope-from steve@grill.rackmount.ORG) Received: (qmail 88095 invoked by uid 1050); 19 Aug 1999 13:19:18 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 19 Aug 1999 13:19:18 -0000 Date: Thu, 19 Aug 1999 13:19:18 +0000 (GMT) From: steve To: Ian Clendaniel Cc: freebsd-questions@freebsd.org Subject: Re: Diamond V770 Ultra & X?!? In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Greetings, To my understanding, currently the Viper 770 chipset is not fully supported in any of the recent version of XFree86.[ofcourse I may be wrong] I've had the same problem trying to get it to work (I use a Viper 770), and no go until I went ahead and installed Accelerated X 5.0 with a Viper 770/770 ultra support driver from http://www.xig.com It couldn't be running any better now, (: I'd be glad to share my Configuration with you if you still need the help! --Steve steve@rackmount.org On Thu, 19 Aug 1999, Ian Clendaniel wrote: > I've got a question that's really starting to bug me...I just finished > upgrading my machine to a PII with a Diamond V770 Ultra video card (TNT2 > chipset). From everything I see it _should_ be supported under XFree86 > however I can't get the thing to work. Never had a problem with my old > Number9 card under various versions of fbsd and X for the past three or > four years. > > Is anyone using this card...or one with the TNT chipset...that would be > willing to share their XF86Config? I'm really starting to get > desperate... > > --Ian > > > ______________________________________________________________ > Ian Clendaniel Conectiv > Systems Architect Infrastructure Management > Int:235-5577 Ext:451-5577 http://www.conectiv.com > Pager/Cell:302-750-3574 mailto:clendaniel@conectiv.com > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 13:19:22 1999 Delivered-To: freebsd-questions@freebsd.org Received: from charleston.softhome.net (charleston.SoftHome.net [204.144.231.41]) by hub.freebsd.org (Postfix) with SMTP id B5DB215235 for ; Thu, 19 Aug 1999 13:19:09 -0700 (PDT) (envelope-from coders@softhome.net) Received: (qmail 16932 invoked by uid 417); 19 Aug 1999 20:43:17 -0000 Received: from dc2-isdn294.dial.xs4all.nl (HELO mail.cnn.com) (194.109.149.38) by smtp.softhome.net with SMTP; 19 Aug 1999 20:43:17 -0000 Message-Id: <3.0.6.32.19990819221740.007ad800@pop.softhome.net> X-Sender: coders@pop.softhome.net X-Mailer: QUALCOMM Windows Eudora Light Version 3.0.6 (32) Date: Thu, 19 Aug 1999 22:17:40 +0200 To: questions@FreeBSD.ORG From: Melissa Hendriks Subject: FreeBSD FAQ in pfd format not there :( Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi all, I tried to download the FreeBSD faq, but it's not on the FTP server. The link on the FreeBSD web site says: ftp://ftp.FreeBSD.org/pub/FreeBSD/doc/FAQ.pdf Is there another site / url where I can download this file? Regards, Melissa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 13:21:43 1999 Delivered-To: freebsd-questions@freebsd.org Received: from squid.dvs.org (tach.dvs.org [212.114.66.9]) by hub.freebsd.org (Postfix) with ESMTP id 1D07515235 for ; Thu, 19 Aug 1999 13:21:33 -0700 (PDT) (envelope-from Holger@vanKoll.de) Received: from kelly.eyeonline.de ([212.114.66.56]) by squid.dvs.org (Post.Office MTA v3.5.3 release 223 ID# 127-60294U3000L300S0V35) with ESMTP id org for ; Thu, 19 Aug 1999 22:20:07 +0200 Received: from kserver.localdomain ([193.159.34.115]) by kelly.eyeonline.de (Post.Office MTA v3.5.3 release 223 ID# 127-60294U3000L300S0V35) with ESMTP id de for ; Thu, 19 Aug 1999 22:18:52 +0200 Received: (qmail 25404 invoked from network); 19 Aug 1999 20:15:10 -0000 Received: from holger.localdomain (HELO holler) (192.168.0.10) by kserver.localdomain with SMTP; 19 Aug 1999 20:15:10 -0000 Message-ID: <016601beea7f$e4f721a0$0a00a8c0@holler.localdomain> From: "Holger van Koll" To: Subject: ed1 insted of ed0... Date: Thu, 19 Aug 1999 22:17:42 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 4.72.3110.5 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3110.3 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Setup: FreeBSD 3.2, installed via FTP today. NE2000 PCI-Ethernetcard (Realtek 8029) Problem: At boot-time I get ed1: rev 0x00 int a irq 3 on pci0.9.0 ed1: address 00:40:05:65:15:5b, type NE2000 (16 bit) Fine so far, but why is ed1 instead of ed0 assigned? If I add device ed0 at isa port 0xb000 net irq 11 iomem 0xd8000 to my kernel-config and en ed0 po ed0 0xd000 ir ed0 3 iom ed0 0xd8000 f ed0 0 q to /boot/kernel.conf (where is doku about that???) then I also get ed0 at 0xd000-0xd01f irq 11 on eisa slot 13 ed0: address 00:40:05:65:15:5b, type NE2000 (16 bit) later in the boot-process (it finds the same card 2 x). However, only ed1 is RUNNING (ifconfig) ; flags=8802 (ed0) ; 8843 (ed1). What is going on here? How can I tell the kernel to assign ed0 ? Furthermore I got many errors on startup after installing like real memory = 134217728 (131072K bytes) config> di zp0 No such device: zp0 Invalid command or syntax. Type `?' for help. config> di ze0 No such device: ze0 Invalid command or syntax. Type `?' for help. I just removed all those lines in /boot/kernel.config and the errors were gone. Anything to note here? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 13:27:18 1999 Delivered-To: freebsd-questions@freebsd.org Received: from ns.clientlogic.com (ns.clientlogic.com [207.51.66.75]) by hub.freebsd.org (Postfix) with ESMTP id 879F315235 for ; Thu, 19 Aug 1999 13:27:14 -0700 (PDT) (envelope-from ChrisMic@clientlogic.com) Received: by site0s1 with Internet Mail Service (5.5.2448.0) id ; Thu, 19 Aug 1999 16:26:31 -0400 Message-ID: <6C37EE640B78D2118D2F00A0C90FCB4401105BB5@site2s1> From: Christopher Michaels To: Langa Kentane Cc: FreeBSD , "'Arthur H. Johnson II'" Subject: RE: Installation woes... about to get fired for incompetence! Date: Thu, 19 Aug 1999 16:29:04 -0400 Importance: low X-Priority: 5 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2448.0) Content-Type: text/plain Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Arthur, No! On 2.2.8 it is bool.flp. On 3.x it is kernel.flp and mfsroot.flp. Langa, Where are you obtaining the floppies? How are you creating them? Have you tried re-downloading the floppy images? -Chris > -----Original Message----- > From: Arthur H. Johnson II [SMTP:arthur@tucows.com] > Sent: Thursday, August 19, 1999 3:58 PM > To: Langa Kentane > Cc: FreeBSD > Subject: Re: Installation woes... about to get fired for > incompetence! > > The boot floppies are kernel.flp and mfsroot.flp. boot.flp is a rescue > disk executed after booting into the kernel and mfs. > > Arthur H. Johnson II > http://www.linuxberg.com > Linuxberg Manager > arthur@tucows.com > > On Thu, 19 Aug 1999, Langa Kentane wrote: > > > I have been trying to install FreeBSD 2.2.8 for the past 5 days and > > everytime I get stuck trying to boot from the FreeBSD boot disk. > > > > I made the boot image from boot.flp and tried to boot the machine. What > I > > got was error: D:0x0 C:43 H:0 S:3. > > > > I have since replaced every bit of hardware on the system and even tried > a > > new machine with no change. I tried to use different floppies but still > I > > get the same message while trying to boot. The machine I am using is a > > P200MMX with 128 meg ram and 2 hard drives (1 two gig drive and one 650 > meg > > drive). > > > > I have installed FreeBSD on the same machine before with no problems. > Please > > help me before my boss fires me for incompetence. > > > > Thanks in advace > > > > Langa Kentane > > System Administrator > > Sunshine Networks cc > > Tel +27 82 928 1952 > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 13:38:36 1999 Delivered-To: freebsd-questions@freebsd.org Received: from peloton.runet.edu (peloton.runet.edu [137.45.96.205]) by hub.freebsd.org (Postfix) with ESMTP id 1762C14C99 for ; Thu, 19 Aug 1999 13:38:32 -0700 (PDT) (envelope-from brett@peloton.runet.edu) Received: from localhost (brett@localhost) by peloton.runet.edu (8.9.3/8.9.3) with ESMTP id QAA02091 for ; Thu, 19 Aug 1999 16:38:30 -0400 (EDT) (envelope-from brett@peloton.runet.edu) Date: Thu, 19 Aug 1999 16:38:30 -0400 (EDT) From: Brett Taylor To: freebsd-questions@freebsd.org Subject: sound problems Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi all, I've recently upgraded one of my machines from 2.2.8 to 3.2-STABLE and my sound has gone south. I am now using Luigi's sound code (compiled into the kernel) and under 2.2.8 I was using the standard sound code. Here's the problem - I can use xmcd or cdcontrol to play sounds through my speakers just fine. However I can no longer hear WAV files (while either using splay or waveplay) and cannot hear mp3 using amp or x11amp. Splay and waveplay have different errors : splay - Failed to open sound device. waveplay - openDSP: Device busy Both x11amp and amp say that they can't open up the audio device. Here's the relevant lines out of the dmesg: pcm0 at 0x220 irq 10 drq 1 on isa ESS1868 (rev 11) If I recall correctly this is a Yamaha OPL card. Any ideas on what's happening? Brett ***************************************************** Brett Taylor brett@peloton.runet.edu * Dept of Chem and Physics * Curie 39A (540) 831-6147 * ***************************************************** To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 13:45:11 1999 Delivered-To: freebsd-questions@freebsd.org Received: from www.keycomp.net (www.keycomp.net [207.44.1.33]) by hub.freebsd.org (Postfix) with ESMTP id B231D14BD4 for ; Thu, 19 Aug 1999 13:45:06 -0700 (PDT) (envelope-from billieakay@yahoo.com) Received: from bopper (kc-rmt03.keycomp.net [207.44.1.5]) by www.keycomp.net (8.8.5/SCO5) with SMTP id QAA03174; Thu, 19 Aug 1999 16:50:28 -0400 (EDT) Message-ID: <000d01beea82$78f7b3e0$01010101@bopper> From: "Bill A. K." To: "Byung Yang" , "FreeBSD Questions" References: Subject: Re: APCI ens1370 Date: Thu, 19 Aug 1999 16:36:08 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit 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-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sorry about the pcm instead of snd thing.........i don't know what i was thinking :) Bill billieakay@yahoo.com ----- Original Message ----- From: Byung Yang To: Bill A. K. Cc: FreeBSD Questions Sent: Thursday, August 19, 1999 9:58 AM Subject: Re: APCI ens1370 > > > On Wed, 18 Aug 1999, Bill A. K. wrote: > > > > > cd /dev > > ./MAKEDEV pcm1 (for FreeBSD 3.2) > > or > > ./MAKEDEV pcm0 (for FreeBSD 4.0-current) > > > > it should be: > ./MAKEDEV snd0 IF your sound is detected as pcm0 > > and > > ./MAKEDEV snd1 IF your sound is detected as pcm1 > > run dmesg | grep pcm > to see what you have > > Byung Yang > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 13:47:16 1999 Delivered-To: freebsd-questions@freebsd.org Received: from smtp6.mindspring.com (smtp6.mindspring.com [207.69.200.74]) by hub.freebsd.org (Postfix) with ESMTP id 4461C151D9 for ; Thu, 19 Aug 1999 13:47:09 -0700 (PDT) (envelope-from jonathanek@mindspring.com) Received: from default (user-2ive8ad.dialup.mindspring.com [165.247.33.77]) by smtp6.mindspring.com (8.8.5/8.8.5) with SMTP id QAA28654; Thu, 19 Aug 1999 16:47:09 -0400 (EDT) Message-ID: <002001beea84$007b0f00$e723f7a5@default> Reply-To: "Jonathan Kopka" From: "Jonathan Kopka" To: , Subject: Re: Installing FreeBSD from DOS w/out floppy or cd Date: Thu, 19 Aug 1999 16:46:36 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 4.72.3155.0 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3155.0 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I installed yesterday (or the day before, where does the time go?) the 3.2 release from a dos partition, but had a floppy. The 00_index.txt from the \tools directory lists a setup.exe -> defined as "Prepare for installation from a DOS partition" which you are aware of but haven't found. Perhaps ftp://ftp.internat.freebsd.org/pub/FreeBSD/tools/ Has a setup.exe (46.2K) and a setup.hlp (5.4K) -----Original Message----- From: The Bear To: freebsd-questions@FreeBSD.ORG Date: Thursday, August 19, 1999 3:47 PM Subject: Installing FreeBSD from DOS w/out floppy or cd >I am trying to install FreeBSD on a laptop which has no cd-rom and no >floppy. I have seen utilities like fbsdboot.exe and I have heard about >setup.exe, both of which seem like they are supposed to be able to do >some sort of install from dos. > >I have not had any luck with fbsdboot.exe ( it always complains about >invalid kernel format [ I've tried fbsdboot -D c:\kernel\kernel < a fbsd3.2 >kernel, and fbsdboot -D c:\kernel\boot.flp ] ), and I have been unable >to find setup.exe. > >I also know a utility for netbooting computer's is available, but, I doubt >it would work with a pcmcia ethetnet card ( although it is ne2000 compatible ), >and I would really like to avoid having to set up a bootp server ( Although >I would if I have to ), does anyone know if this would work? > >The Laptop is a Zenith Z-note 486/66 running dos 6.2. Dos is completly >useless to me, so I would like to wipe the partition, and put FBSD in >it's place. Any help would be appreciated. > > Thanks, > Charles Shiflett > > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 14: 9:53 1999 Delivered-To: freebsd-questions@freebsd.org Received: from alpha.netvision.net.il (alpha.netvision.net.il [194.90.1.13]) by hub.freebsd.org (Postfix) with ESMTP id 0508314EC0; Thu, 19 Aug 1999 14:09:42 -0700 (PDT) (envelope-from spud@i.am) Received: from Tomer.Home.Org (RAS10-p27.hfa.netvision.net.il [62.0.150.155]) by alpha.netvision.net.il (8.9.3/8.8.6) with SMTP id AAA17410; Fri, 20 Aug 1999 00:08:00 +0300 (IDT) From: Tomer Weller To: questions@FreeBSD.org, current@FreeBSD.org Subject: Weird X problem Date: Fri, 20 Aug 1999 00:06:18 +0300 X-Mailer: KMail [version 1.0.21] Content-Type: text/plain MIME-Version: 1.0 Message-Id: <99082000075900.50541@Tomer.Home.Org> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG very weird X problem, I can only load an X server if I have a ppp connection upi and running... Xfree86 3.4, -CURRENT(made world today) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 14:10:18 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail4.kscable.com (fe4.rdc-kc.rr.com [24.94.163.51]) by hub.freebsd.org (Postfix) with ESMTP id 6A145151EF for ; Thu, 19 Aug 1999 14:10:03 -0700 (PDT) (envelope-from bfs@kscable.com) Received: from kscable.com ([24.94.196.182]) by mail4.kscable.com with Microsoft SMTPSVC(5.5.1875.185.18); Thu, 19 Aug 1999 16:01:14 -0500 Message-ID: <37BC71DB.4665E61F@kscable.com> Date: Thu, 19 Aug 1999 16:06:35 -0500 From: Ben Salem Organization: Wichita Area FreeBSD User's Group X-Mailer: Mozilla 4.6 [en] (Win98; I) X-Accept-Language: en MIME-Version: 1.0 To: Evren Yurtesen , freebsd-questions@freebsd.org Subject: Re: System Halted References: <37BC6118.56EBD3DF@kscable.com> <37BC67A0.FA9DF172@ispro.net.tr> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Yes, I have tried pulling it out, and setting the settings back to the original. When the NIC card is out, it does the same thing. Im wondering, has anyone every used the "Fix It" option in the sysintsall menu before? What exactly does that do? Evren Yurtesen wrote: > did you try to set those NIC card settings back to how they were? > or even tried to take it out? > > Ben Salem wrote: > > > > Recently, when my system was working just fine, no problems at all - I > > even had a 30 day uptime, I had to reboot my system to adjust some NIC > > card settings with a DOS diskette I have. So I did that ( I don't know > > if this had any effect on what my problem is or not) then I rebooted, > > and at the time FreeBSD should be giving me a boot prompt "-" it spits > > out alot of what seem to be memory addresss, quite a few in rows, then > > under all of that says "System Halted" and that's it. > > > > I've never seen this before, maybe someone could assist me in > > troubleshooting this problem. I run 3.2-RELEASE on a 486 DX/2 with 12mb > > RAM. > > > > Thanks, > > Ben Salem > > bfs@kscable.com > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 14:11:20 1999 Delivered-To: freebsd-questions@freebsd.org Received: from pinnacle.co.nz (pinnacle.co.nz [202.37.163.1]) by hub.freebsd.org (Postfix) with ESMTP id 5441D154CB for ; Thu, 19 Aug 1999 14:11:11 -0700 (PDT) (envelope-from jonc@pinnacle.co.nz) Received: (from jonc@localhost) by pinnacle.co.nz (8.9.3/8.9.3) id JAA16872; Fri, 20 Aug 1999 09:09:30 +1200 (NZST) Date: Fri, 20 Aug 1999 09:09:30 +1200 (NZST) From: Jonathan Chen To: Ray Grieselhuber Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Root Password In-Reply-To: <37BBFB5F.B7036C2D@londonind.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, 19 Aug 1999, Ray Grieselhuber wrote: > Hi. > I tried to log on to my system, and it said login incorrect. But I know > I was using the right password, so I don't understand the problem. How > do I change the password without being logged in, or how do I get past > this? The FAQ said to do this from the Boot: command, but how do I get > to this if I can't log on? You boot into single user. If you're using 2.2.*, supply a "-s" option on Boot:. If you're using 3.1+, hit the space-bar and then "boot -s". Then: mount -a passwd root -- Jonathan Chen. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 14:11:22 1999 Delivered-To: freebsd-questions@freebsd.org Received: from pinnacle.co.nz (pinnacle.co.nz [202.37.163.1]) by hub.freebsd.org (Postfix) with ESMTP id 626CC1550F for ; Thu, 19 Aug 1999 14:11:15 -0700 (PDT) (envelope-from jonc@pinnacle.co.nz) Received: (from jonc@localhost) by pinnacle.co.nz (8.9.3/8.9.3) id JAA16877; Fri, 20 Aug 1999 09:09:43 +1200 (NZST) Date: Fri, 20 Aug 1999 09:09:43 +1200 (NZST) From: Jonathan Chen To: Ray Grieselhuber Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Root Password In-Reply-To: <37BBFB5F.B7036C2D@londonind.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, 19 Aug 1999, Ray Grieselhuber wrote: > Hi. > I tried to log on to my system, and it said login incorrect. But I know > I was using the right password, so I don't understand the problem. How > do I change the password without being logged in, or how do I get past > this? The FAQ said to do this from the Boot: command, but how do I get > to this if I can't log on? You boot into single user. If you're using 2.2.*, supply a "-s" option on Boot:. If you're using 3.1+, hit the space-bar and then "boot -s". Then: mount -a passwd root -- Jonathan Chen. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 14:11:28 1999 Delivered-To: freebsd-questions@freebsd.org Received: from pinnacle.co.nz (pinnacle.co.nz [202.37.163.1]) by hub.freebsd.org (Postfix) with ESMTP id E0546155C2 for ; Thu, 19 Aug 1999 14:11:22 -0700 (PDT) (envelope-from jonc@pinnacle.co.nz) Received: (from jonc@localhost) by pinnacle.co.nz (8.9.3/8.9.3) id JAA16882; Fri, 20 Aug 1999 09:09:52 +1200 (NZST) Date: Fri, 20 Aug 1999 09:09:52 +1200 (NZST) From: Jonathan Chen To: Ray Grieselhuber Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Root Password In-Reply-To: <37BBFB5F.B7036C2D@londonind.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, 19 Aug 1999, Ray Grieselhuber wrote: > Hi. > I tried to log on to my system, and it said login incorrect. But I know > I was using the right password, so I don't understand the problem. How > do I change the password without being logged in, or how do I get past > this? The FAQ said to do this from the Boot: command, but how do I get > to this if I can't log on? You boot into single user. If you're using 2.2.*, supply a "-s" option on Boot:. If you're using 3.1+, hit the space-bar and then "boot -s". Then: mount -a passwd root -- Jonathan Chen. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 14:20:46 1999 Delivered-To: freebsd-questions@freebsd.org Received: from penelope.skunk.org (penelope.skunk.org [208.133.204.51]) by hub.freebsd.org (Postfix) with ESMTP id 210C014DE6 for ; Thu, 19 Aug 1999 14:20:37 -0700 (PDT) (envelope-from ben@penelope.skunk.org) Received: from localhost (ben@localhost) by penelope.skunk.org (8.9.3/8.9.3) with ESMTP id RAA94635 for ; Thu, 19 Aug 1999 17:22:18 -0400 (EDT) Date: Thu, 19 Aug 1999 17:22:18 -0400 (EDT) From: Ben Rosengart To: questions@freebsd.org Subject: make world 3.2-RELEASE --> 3.2-STABLE failing Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG My make world is bombing out with: cc -O -pipe -I/usr/src/gnu/usr.bin/cc/cc1/../../../../contrib/gcc -I/usr/src/gnu/usr.bin/cc/cc1/../../../../contrib/gcc/config -DFREEBSD_NATIVE -DDEFAULT_TARGET_VERSION=\"2.7.2.3\" -DDEFAULT_TARGET_MACHINE=\"i386-unknown-freebsd\" -I/usr/src/gnu/usr.bin/cc/cc1/obj/../cc_tools -I/usr/obj/usr/src/tmp/usr/include -static -o cc1 c-parse.o c-aux-info.o c-convert.o c-decl.o c-iterate.o c-lang.o c-lex.o c-typeck.o /usr/src/gnu/usr.bin/cc/cc1/obj/../cc_int/libcc_int.a c-typeck.o: In function `finish_init': c-typeck.o(.text+0x5bd3): undefined reference to `gonstnuctor_subconstants_deferred' *** Error code 1 Can anyone tell me what the problem is? This is a fresh install of 3.2-RELEASE, with source cvsupped a few minutes ago, on vanilla Intel hardware. No funny make flags, I just uncommented a few entries in /etc/make.conf (NOPROFILE, CFLAGS, COPTFLAGS, OBJLINK). I very much wonder what a gonstnuctor is, it has a great ring to it. I imagine it as some unhappy union of a constructor and a platypus. -- Ben UNIX Systems Engineer, Skunk Group StarMedia Network, Inc. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 14:45:49 1999 Delivered-To: freebsd-questions@freebsd.org Received: from awfulhak.org (dynamic-110.max1-du-ws.dialnetwork.pavilion.co.uk [212.74.8.110]) by hub.freebsd.org (Postfix) with ESMTP id 9664B1535C for ; Thu, 19 Aug 1999 14:45:43 -0700 (PDT) (envelope-from brian@Awfulhak.org) Received: from keep.lan.Awfulhak.org (root@keep.lan.Awfulhak.org [172.16.0.8]) by awfulhak.org (8.9.3/8.9.3) with ESMTP id AAA03779; Thu, 19 Aug 1999 00:07:41 +0100 (BST) (envelope-from brian@lan.awfulhak.org) Received: from keep.lan.Awfulhak.org (brian@localhost.lan.Awfulhak.org [127.0.0.1]) by keep.lan.Awfulhak.org (8.9.3/8.9.3) with ESMTP id UAA00602; Wed, 18 Aug 1999 20:47:26 +0100 (BST) (envelope-from brian@keep.lan.Awfulhak.org) Message-Id: <199908181947.UAA00602@keep.lan.Awfulhak.org> X-Mailer: exmh version 2.0.2 2/24/98 To: Antonio Bemfica Cc: freebsd-questions@FreeBSD.org Subject: Re: PPP over Ethernet Client for FreeBSD? In-reply-to: Your message of "Wed, 18 Aug 1999 13:03:10 EDT." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 18 Aug 1999 20:47:26 +0100 From: Brian Somers Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > Is there a way to talk PPPoE (RFC 2516) in FreeBSD? The nice folks at Bell > Canada decided to have that running on their ADSL lines now (just as I had > finished setting up my onw little network at home with dhcp, NAT, ipfw, > etc). I've looked around quite a bit, but so far no clients for anything > other than Win9? and MAC. This was discussed a couple of weeks ago - probably either on -current or -hackers. In short, there's no way at the moment. > Antonio -- Brian Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 14:46: 1 1999 Delivered-To: freebsd-questions@freebsd.org Received: from awfulhak.org (dynamic-110.max1-du-ws.dialnetwork.pavilion.co.uk [212.74.8.110]) by hub.freebsd.org (Postfix) with ESMTP id 75E471535C for ; Thu, 19 Aug 1999 14:45:57 -0700 (PDT) (envelope-from brian@Awfulhak.org) Received: from keep.lan.Awfulhak.org (root@keep.lan.Awfulhak.org [172.16.0.8]) by awfulhak.org (8.9.3/8.9.3) with ESMTP id AAA03782; Thu, 19 Aug 1999 00:07:56 +0100 (BST) (envelope-from brian@lan.awfulhak.org) Received: from keep.lan.Awfulhak.org (brian@localhost.lan.Awfulhak.org [127.0.0.1]) by keep.lan.Awfulhak.org (8.9.3/8.9.3) with ESMTP id UAA00571; Wed, 18 Aug 1999 20:43:06 +0100 (BST) (envelope-from brian@keep.lan.Awfulhak.org) Message-Id: <199908181943.UAA00571@keep.lan.Awfulhak.org> X-Mailer: exmh version 2.0.2 2/24/98 To: Philippe CASIDY Cc: freebsd-questions@FreeBSD.ORG Subject: Re: How to update CVS repository ? In-reply-to: Your message of "Wed, 18 Aug 1999 11:58:06 +0200." <199908180958.LAA04220@greatoak.home> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 18 Aug 1999 20:43:05 +0100 From: Brian Somers Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > Hi! > > Now I am able to use the 800 Mb hard drive I have added to my system, I > have extracted on it the whole CVS repository from the Walnet Creek > CDROM 3.2-RELEASE. > > I have read the handbook about how to synchronize the sources. But as > far as I understand, CTM or CVSup update checked out sources. They do > not update the CVS repository. > > Am I right? > > Is there a way to synchronize my CVS repository ? With cvsup-mirror ? Just make sure that you've got ``release=cvs'' (probably as a default) and you'll get the cvs files rather than the checked out versions. > Thanks a lot!! > > Phil. -- Brian Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 14:56:24 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail.chromatix.com (mail.chromatix.com [207.97.115.130]) by hub.freebsd.org (Postfix) with ESMTP id 07CAC1520B for ; Thu, 19 Aug 1999 14:55:56 -0700 (PDT) (envelope-from nick@chromatix.com) Received: from dogwood (dogwood.chromatix.com [207.97.115.140]) by mail.chromatix.com (8.8.8/8.8.8) with SMTP id RAA23694 for ; Thu, 19 Aug 1999 17:51:59 -0400 (EDT) (envelope-from nick@chromatix.com) Message-ID: <001801beea8d$8db043a0$8c7361cf@dogwood.chromatix.com> From: "Nick LoPresti" To: Subject: Please help with sendmail Date: Thu, 19 Aug 1999 17:55:27 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 4.72.3110.5 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3110.3 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I already sent this one out, but no one sent me any replies... I am out of resources for this one, please help. I am currently running FreeBSD 3.2. Some of my users to my sendmail(smtp) server from the internet to send mail from their clients. Just recently it stopped working... All messages sent(except those sent to the local machine) are rejected do to the following error: --- Relaying Denied --- Also, I can send mail out from the local machine... I don't quite understand. I did not set up any relaying? Did something change? A specific rule I should look at? Any help would be wonderful. This is sorta on a high priority. Thanks guys, your great! Let me know if I can provide you with any other info. THANX AGAIN!!! ================================================ Nick nick@chromatix.com Web Page: http://www.lopresti.dhs.org/users/nick To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 15:16:59 1999 Delivered-To: freebsd-questions@freebsd.org Received: from jasper.heartland.ab.ca (jasper.heartland.ab.ca [207.107.228.1]) by hub.freebsd.org (Postfix) with ESMTP id EE21514D64 for ; Thu, 19 Aug 1999 15:16:54 -0700 (PDT) (envelope-from dkwiebe@heartland.ab.ca) Received: from freebsd.hagens.ab.ca (ppp3.heartland.ab.ca [207.107.228.131]) by jasper.heartland.ab.ca (8.9.0/8.8.5) with ESMTP id QAA21055; Thu, 19 Aug 1999 16:07:52 -0600 (MDT) Received: from heartland.ab.ca (dkwiebe.hagens.ab.ca [10.0.1.3]) by freebsd.hagens.ab.ca (8.9.2/8.9.2) with ESMTP id PAA00679; Thu, 19 Aug 1999 15:25:41 -0600 (MDT) (envelope-from dkwiebe@heartland.ab.ca) Message-ID: <37BC82F7.2BDD6AA4@heartland.ab.ca> Date: Thu, 19 Aug 1999 16:19:35 -0600 From: Darren WIebe Reply-To: dkwiebe@hagenhomes.com X-Mailer: Mozilla 4.61 [en] (X11; U; FreeBSD 3.2-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: Nick LoPresti Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Please help with sendmail References: <001801beea8d$8db043a0$8c7361cf@dogwood.chromatix.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello: Do you have a file called relay-domains in your /etc/mail directory? The hosts that you want to relay for have to be listed in that file as follows: 10.0.1.1 foo.bar.com Also did you look at the sendmail site?? Darren Wiebe dkwiebe@hagenhomes.com > Some of my users to my sendmail(smtp) server from the internet to send mail > from their clients. Just recently it stopped working... All messages > sent(except those sent to the local machine) are rejected do to the > following error: > --- Relaying Denied --- > > Also, I can send mail out from the local machine... I don't quite > understand. > > I did not set up any relaying? Did something change? A specific rule I > should look at? > > Any help would be wonderful. This is sorta on a high priority. Thanks > guys, your great! > Let me know if I can provide you with any other info. THANX AGAIN!!! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 15:29: 1 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail1.twcny.rr.com (mail1-0.nyroc.rr.com [24.92.226.74]) by hub.freebsd.org (Postfix) with ESMTP id 138B2151BD for ; Thu, 19 Aug 1999 15:28:56 -0700 (PDT) (envelope-from reichman@twcny.rr.com) Received: from twcny.rr.com ([24.95.188.113]) by mail1.twcny.rr.com (Post.Office MTA v3.5.2 release 221 ID# 0-53939U80000L80000S0V35) with ESMTP id com; Thu, 19 Aug 1999 18:27:25 -0400 Message-ID: <37BC8707.C925F32D@twcny.rr.com> Date: Thu, 19 Aug 1999 18:36:55 -0400 From: "Mark S. Reichman" X-Mailer: Mozilla 4.61 [en] (X11; I; FreeBSD 3.2-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: Jesper Blomstrom , freebsd-questions@freebsd.org Subject: Re: Big problem for me, not for you? References: <37BBB42E.12ACDE2D@partitur.se> Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Is your swap partition on wd1 or wd0.. See below.. Jesper Blomstrom wrote: > > Hi, > > I have installed FreeBSD on a separate harddisk, and my other disk > contains Windows. > TheWindows-disk is set to primary master and the FreeBSD-disk is set to > primary slave. > I have also installed a bootMGR. > If I want to run Windows everything is o.k, and Windows starts without > problem. But I do not want > to run Windows ;) and when I choose FreeBSD it seems to boot normal but > then it fails with the error: > Panic:cant mount root > I understand that this error comes from confusion between the boot > block´s and the kernel´s understanding of the disk devices. I have > therefore > tried to stop the OS from booting and at the boot-prompt I have tried to > start the system with the following combinations: > > 1:wd(1,a)kernel = This one I think is the correct way to boot, but it > fails with the messages: > > Changing root device to wd1s1a It seems to have found your root partition OK.. No errors.. > Swapon: /dev/wd0s1: Invalid argument > Automatic reeboot in progress > Can´t open /dev/wd0s1a: Invalid argument Isnt your swap partition on wd1 not wd0... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 15:38:20 1999 Delivered-To: freebsd-questions@freebsd.org Received: from relay.pair.com (relay1.pair.com [209.68.1.20]) by hub.freebsd.org (Postfix) with ESMTP id 7279A14D4E for ; Thu, 19 Aug 1999 15:38:06 -0700 (PDT) (envelope-from hiddink@galileo.or.cr) Received: from galileo ([207.1.114.185]) by relay.pair.com (8.8.7/8.8.5) with SMTP id SAA17741 for ; Thu, 19 Aug 1999 18:46:54 -0400 (EDT) Message-Id: <199908192246.SAA17741@relay.pair.com> From: "Bert Hiddink" To: freebsd-questions@FreeBSD.ORG Date: Thu, 19 Aug 1999 16:27:37 -0600 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: How do WEB-->Apache-FreeBSD Server? X-mailer: Pegasus Mail for Win32 (v3.01b) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello, I am a novice user of FreeBSD. I achieved to install the 2.2.6 on a DOS partition of my laptop (Toshiba 2100; dual boot W95/FreeBSD). This works fine. I now want to install Apache 1.3.6. on this machine. How should I proceed if I want to communicate with a browser from Windows 95 to my FreeBSD server through a local network (the server and the workstation have both a Ethernet card; in a Windows environment, they connect fine). Many thanks for you help in advance! Regards, -brt Bert Hiddink, FUNDACION GALILEO Correo electronico: hiddink@galileo.or.cr Sitio: http://www.sipromicro.com Tel. (506) 280 8683, telefax. (506) 280 8847 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 16: 3:55 1999 Delivered-To: freebsd-questions@freebsd.org Received: from allegro.lemis.com (allegro.lemis.com [192.109.197.134]) by hub.freebsd.org (Postfix) with ESMTP id 41DEC14E9B for ; Thu, 19 Aug 1999 16:03:48 -0700 (PDT) (envelope-from grog@freebie.lemis.com) Received: from freebie.lemis.com (freebie.lemis.com [192.109.197.137]) by allegro.lemis.com (8.9.1/8.9.0) with ESMTP id IAA25267; Fri, 20 Aug 1999 08:31:49 +0930 (CST) Received: (from grog@localhost) by freebie.lemis.com (8.9.3/8.9.0) id IAA61037; Fri, 20 Aug 1999 08:31:47 +0930 (CST) Date: Fri, 20 Aug 1999 08:31:47 +0930 From: Greg Lehey To: Glenn Johnson Cc: freebsd-questions@FreeBSD.ORG Subject: Re: concatenated drives with vinum or ccd Message-ID: <19990820083147.Y14964@freebie.lemis.com> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: ; from Glenn Johnson on Thu, Aug 19, 1999 at 10:10:44AM -0500 WWW-Home-Page: http://www.lemis.com/~grog X-PGP-Fingerprint: 6B 7B C3 8C 61 CD 54 AF 13 24 52 F8 6D A4 95 EF Organization: LEMIS, PO Box 460, Echunga SA 5153, Australia Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-41-739-7062 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thursday, 19 August 1999 at 10:10:44 -0500, Glenn Johnson wrote: > I have a couple of questions regarding ccd and vinum. I have used both on > different machines so configuration is not a problem. Yay! > > Is there any benefit to using vinum instead of ccd for concatenated > drives? As long as you're using simple concatenated drives, probably not. But with vinum you can change your config on the fly (like adding mirroring while the volume is running). It's basically more flexible. > An extension to this, should I bother changing a fairly large ccd > volume into a vinum volume? Not necessarily, if it's just concatenated. If it's mirrored, you'll see better performance out of Vinum, because it reads alternately from each half of the mirror. ccd always reads from the first half. > Is there a benfit to using ccd over vinum? Not really. I believe ccd will give you more space: Vinum uses 131.5 kB of each drive for configuration information. > Also, is vinum slated to replace ccd? I'd like to think so, but it's not my decision. Greg -- When replying to this message, please copy the original recipients. For more information, see http://www.lemis.com/questions.html See complete headers for address, home page and phone numbers finger grog@lemis.com for PGP public key To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 16:13:24 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail4.svr.pol.co.uk (mail4.svr.pol.co.uk [195.92.193.211]) by hub.freebsd.org (Postfix) with ESMTP id 6DDD615099 for ; Thu, 19 Aug 1999 16:13:20 -0700 (PDT) (envelope-from andrew@grillet98.freeserve.co.uk) Received: from modem-66.clown.dialup.pol.co.uk ([62.136.109.194] helo=grillet98.freeserve.co.uk) by mail4.svr.pol.co.uk with esmtp (Exim 2.12 #2) id 11HbMe-0003yr-00 for freebsd-questions@FreeBSD.ORG; Fri, 20 Aug 1999 00:12:57 +0100 Message-ID: <37BC91B7.292182A3@grillet98.freeserve.co.uk> Date: Fri, 20 Aug 1999 00:22:31 +0100 From: Andrew Grillet X-Mailer: Mozilla 4.6 [en] (Win95; I) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: CDRom writer/worm Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi I run BSD 2.2.8. I have a Yamaha 4416 S scsi cdrom writer. Although I have been told that this is a supported device,and even saw it in some places, I have sopend more than 40 hourws getting nowhwere with it. (Well not quite nowhere - I now know loads more about Un*x than anyone really wants to :-) After reading http://www.best.com/~spadger.CDR-cdrecord.html I decided my only hope was the worm device. However, it seems it does not support my drive. How do I make it support my drive? I am expericned at writing device drivers, and can do almost anything needed (including designing SCSI hardware, though I would prever to use my AHA1542). I cannot find the required info, and need a push in the right direction. I'd really rather download working code though :-) Andrew To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 16:21: 8 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail.chromatix.com (mail.chromatix.com [207.97.115.130]) by hub.freebsd.org (Postfix) with ESMTP id 8E1C81525A for ; Thu, 19 Aug 1999 16:21:04 -0700 (PDT) (envelope-from nick@chromatix.com) Received: from dogwood (dogwood.chromatix.com [207.97.115.140]) by mail.chromatix.com (8.8.8/8.8.8) with SMTP id TAA24018; Thu, 19 Aug 1999 19:17:42 -0400 (EDT) (envelope-from nick@chromatix.com) Message-ID: <004a01beea99$8788d4e0$8c7361cf@dogwood.chromatix.com> From: "Nick LoPresti" To: "T.J. Arrowsmith" Cc: Subject: Re: Please help with sendmail Date: Thu, 19 Aug 1999 19:21:11 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 4.72.3110.5 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3110.3 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG works good. Two questions: Is there a way to do wildcarding? Does foo.com work for a.foo.com, b.foo.com, etc.? Is there a way to allow all relaying? Everything can go? Thanks for your help. ================================================ Nick nick@chromatix.com Web Page: http://www.lopresti.dhs.org/users/nick -----Original Message----- From: T.J. Arrowsmith To: Nick LoPresti Date: Thursday, August 19, 1999 6:11 PM Subject: RE: Please help with sendmail >Nick, > >I'm no expert (hell, on FreeBSD i'm not even a power user yet), but if you >have recently upgraded your Sendmail (from 8.8.x to 8.9.x), you need to know >that the newer version of Sendmail denies relaying by default. Older >versions didn't. If you do have the newer version of sendmail, you'll need >to check the relay-domains file in /etc/mail and add in the domains from >which users are sending mail through your server. Then, restart sendmail. >It's a pain in the ass, but necessary if you don't want some spammer using >your box to flood the world with their drivel. > >Good luck and let me know if that works. > >T.J. Arrowsmith > >> -----Original Message----- >> From: owner-freebsd-questions@FreeBSD.ORG >> [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Nick LoPresti >> Sent: Thursday, August 19, 1999 5:55 PM >> To: freebsd-questions@FreeBSD.ORG >> Subject: Please help with sendmail >> >> >> I already sent this one out, but no one sent me any replies... I >> am out of >> resources for this one, please help. >> >> I am currently running FreeBSD 3.2. >> Some of my users to my sendmail(smtp) server from the internet to >> send mail >> from their clients. Just recently it stopped working... All messages >> sent(except those sent to the local machine) are rejected do to the >> following error: >> --- Relaying Denied --- >> >> Also, I can send mail out from the local machine... I don't quite >> understand. >> >> I did not set up any relaying? Did something change? A specific rule I >> should look at? >> >> Any help would be wonderful. This is sorta on a high priority. Thanks >> guys, your great! >> Let me know if I can provide you with any other info. THANX AGAIN!!! >> >> ================================================ >> >> Nick >> nick@chromatix.com >> Web Page: http://www.lopresti.dhs.org/users/nick >> >> >> >> To Unsubscribe: send mail to majordomo@FreeBSD.org >> with "unsubscribe freebsd-questions" in the body of the message >> > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 16:33:31 1999 Delivered-To: freebsd-questions@freebsd.org Received: from adsl-216-102-203-44.dsl.snfc21.pacbell.net (adsl-216-102-203-44.dsl.snfc21.pacbell.net [216.102.203.44]) by hub.freebsd.org (Postfix) with ESMTP id 077A2152BB for ; Thu, 19 Aug 1999 16:33:25 -0700 (PDT) (envelope-from bri@sonicboom.org) Received: from localhost (bri@localhost) by adsl-216-102-203-44.dsl.snfc21.pacbell.net (8.9.3/8.9.3) with ESMTP id QAA47174; Thu, 19 Aug 1999 16:33:20 -0700 (PDT) (envelope-from bri@sonicboom.org) Date: Thu, 19 Aug 1999 16:33:20 -0700 (PDT) From: Brian X-Sender: bri@adsl-216-102-203-44.dsl.snfc21.pacbell.net To: Nick LoPresti Cc: "T.J. Arrowsmith" , freebsd-questions@FreeBSD.ORG Subject: Re: Please help with sendmail In-Reply-To: <004a01beea99$8788d4e0$8c7361cf@dogwood.chromatix.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG You don't want to allow all relay. Spammers will eventually find out, and then your server winds up on ORBS and other lists of that type, and then your legitimate mail gets blocked. Only allow relay from hosts that are yours or that you have an arrangement with. Bri On Thu, 19 Aug 1999, Nick LoPresti wrote: > works good. Two questions: > > Is there a way to do wildcarding? Does foo.com work for a.foo.com, > b.foo.com, etc.? > Is there a way to allow all relaying? Everything can go? > > Thanks for your help. > > ================================================ > > Nick > nick@chromatix.com > Web Page: http://www.lopresti.dhs.org/users/nick > -----Original Message----- > From: T.J. Arrowsmith > To: Nick LoPresti > Date: Thursday, August 19, 1999 6:11 PM > Subject: RE: Please help with sendmail > > > >Nick, > > > >I'm no expert (hell, on FreeBSD i'm not even a power user yet), but if you > >have recently upgraded your Sendmail (from 8.8.x to 8.9.x), you need to > know > >that the newer version of Sendmail denies relaying by default. Older > >versions didn't. If you do have the newer version of sendmail, you'll need > >to check the relay-domains file in /etc/mail and add in the domains from > >which users are sending mail through your server. Then, restart sendmail. > >It's a pain in the ass, but necessary if you don't want some spammer using > >your box to flood the world with their drivel. > > > >Good luck and let me know if that works. > > > >T.J. Arrowsmith > > > >> -----Original Message----- > >> From: owner-freebsd-questions@FreeBSD.ORG > >> [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Nick LoPresti > >> Sent: Thursday, August 19, 1999 5:55 PM > >> To: freebsd-questions@FreeBSD.ORG > >> Subject: Please help with sendmail > >> > >> > >> I already sent this one out, but no one sent me any replies... I > >> am out of > >> resources for this one, please help. > >> > >> I am currently running FreeBSD 3.2. > >> Some of my users to my sendmail(smtp) server from the internet to > >> send mail > >> from their clients. Just recently it stopped working... All messages > >> sent(except those sent to the local machine) are rejected do to the > >> following error: > >> --- Relaying Denied --- > >> > >> Also, I can send mail out from the local machine... I don't quite > >> understand. > >> > >> I did not set up any relaying? Did something change? A specific rule I > >> should look at? > >> > >> Any help would be wonderful. This is sorta on a high priority. Thanks > >> guys, your great! > >> Let me know if I can provide you with any other info. THANX AGAIN!!! > >> > >> ================================================ > >> > >> Nick > >> nick@chromatix.com > >> Web Page: http://www.lopresti.dhs.org/users/nick > >> > >> > >> > >> To Unsubscribe: send mail to majordomo@FreeBSD.org > >> with "unsubscribe freebsd-questions" in the body of the message > >> > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 16:40: 8 1999 Delivered-To: freebsd-questions@freebsd.org Received: from scientia.demon.co.uk (scientia.demon.co.uk [212.228.14.13]) by hub.freebsd.org (Postfix) with ESMTP id C363414BD8 for ; Thu, 19 Aug 1999 16:39:45 -0700 (PDT) (envelope-from ben@scientia.demon.co.uk) Received: from lithium.scientia.demon.co.uk ([192.168.0.3] ident=exim) by scientia.demon.co.uk with esmtp (Exim 3.024 #3) id 11HZcu-000Dwq-00; Thu, 19 Aug 1999 22:21:36 +0100 Received: (from ben) by lithium.scientia.demon.co.uk (Exim 3.024 #3) id 11HZcs-0003f3-00; Thu, 19 Aug 1999 22:21:34 +0100 Date: Thu, 19 Aug 1999 22:21:33 +0100 From: Ben Smithurst To: Doug Cc: "Bill A. K." , FreeBSD Questions Subject: Re: roots shell Message-ID: <19990819222133.B12658@lithium.scientia.demon.co.uk> References: <002b01bee97f$2a3fdf60$01010101@bopper> <37BB45F2.71B6FFD3@gorean.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.6i In-Reply-To: <37BB45F2.71B6FFD3@gorean.org> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Doug wrote: > Yes there is, but it's a bad idea. Several people have already pointed out > some reasons why. An additional alternative to su -m is to put the > following in /root/.login: > > [ -x /usr/local/bin/bash] && exec /usr/local/bin/bash > > That will start bash for you if it's available, and if it isn't you can > still log in. Wouldn't that fail (i.e. execute bash when it can't) if, say, bash existed and had the execute bit set, but a library it required on was trashed? I'd be tempted to try something like /usr/local/bin/bash --version >/dev/null 2>&1 && exec /usr/local/bin/bash to make sure it really can be executed, rather than just having the execute flag set. Or is that just paranoid? But a certain level of paranoia is a Good Thing, in my opinion. I just do this, what the hell, it saves me three keypresses :-) function su() { if [[ $# == 0 ]]; then command su -m else command su "$@" fi chpwd } I use zsh now, so I don't know if it knows about "function", "command" and "su". -- Ben Smithurst | PGP: 0x99392F7D ben@scientia.demon.co.uk | key available from keyservers and | ben+pgp@scientia.demon.co.uk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 16:40:13 1999 Delivered-To: freebsd-questions@freebsd.org Received: from scientia.demon.co.uk (scientia.demon.co.uk [212.228.14.13]) by hub.freebsd.org (Postfix) with ESMTP id C6F04151AB for ; Thu, 19 Aug 1999 16:39:45 -0700 (PDT) (envelope-from ben@scientia.demon.co.uk) Received: from lithium.scientia.demon.co.uk ([192.168.0.3] ident=exim) by scientia.demon.co.uk with esmtp (Exim 3.024 #3) id 11HZia-000Dwz-00; Thu, 19 Aug 1999 22:27:28 +0100 Received: (from ben) by lithium.scientia.demon.co.uk (Exim 3.024 #3) id 11HZiZ-0003fN-00; Thu, 19 Aug 1999 22:27:27 +0100 Date: Thu, 19 Aug 1999 22:27:27 +0100 From: Ben Smithurst To: Ray Grieselhuber Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Root Password Message-ID: <19990819222727.C12658@lithium.scientia.demon.co.uk> References: <37BBFB5F.B7036C2D@londonind.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.6i In-Reply-To: <37BBFB5F.B7036C2D@londonind.com> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Ray Grieselhuber wrote: > I tried to log on to my system, and it said login incorrect. But I know > I was using the right password, so I don't understand the problem. How > do I change the password without being logged in, or how do I get past > this? Were you logging in on the console? You cannot log in as root over telnet, for example. Either you weren't on the console, or you got the password wrong. > The FAQ said to do this from the Boot: command, but how do I get > to this if I can't log on? Reboot by pressing ctrl-alt-del on the console. When it's coming back up, you should get a boot prompt. This allows you to specify a kernel to boot from, and flags to give to it. Just type `-s', and the system should give you a single-user root prompt. Just type `passwd root' to set root's password. -- Ben Smithurst | PGP: 0x99392F7D ben@scientia.demon.co.uk | key available from keyservers and | ben+pgp@scientia.demon.co.uk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 16:40:20 1999 Delivered-To: freebsd-questions@freebsd.org Received: from scientia.demon.co.uk (scientia.demon.co.uk [212.228.14.13]) by hub.freebsd.org (Postfix) with ESMTP id D528514BD8 for ; Thu, 19 Aug 1999 16:39:45 -0700 (PDT) (envelope-from ben@scientia.demon.co.uk) Received: from lithium.scientia.demon.co.uk ([192.168.0.3] ident=exim) by scientia.demon.co.uk with esmtp (Exim 3.024 #3) id 11HYv6-000DvG-00; Thu, 19 Aug 1999 21:36:20 +0100 Received: (from ben) by lithium.scientia.demon.co.uk (Exim 3.024 #3) id 11HYv7-0003dq-00; Thu, 19 Aug 1999 21:36:21 +0100 Date: Thu, 19 Aug 1999 21:36:21 +0100 From: Ben Smithurst To: Doug Cc: mcwong@ascend.com, questions@freebsd.org Subject: Re: Safe upgrade from 2.2.5 --> 3.2 ? Message-ID: <19990819213621.A12658@lithium.scientia.demon.co.uk> References: <882567D2.003DC09F.00@colton.ascend.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.6i In-Reply-To: Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Doug wrote: > Specifically, you should not try to upgrade from 2.2.5 straight to > 3.2-Stable since I've seen people run into trouble with a system older > than 2.2.6. Ah, sorry. I thought the differences between 2.2.5 and 2.2.6 wouldn't be much compared to the differences between 2.2.6 and 3.2. Evidently they are too much :-) -- Ben Smithurst | PGP: 0x99392F7D ben@scientia.demon.co.uk | key available from keyservers and | ben+pgp@scientia.demon.co.uk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 16:40:55 1999 Delivered-To: freebsd-questions@freebsd.org Received: from scientia.demon.co.uk (scientia.demon.co.uk [212.228.14.13]) by hub.freebsd.org (Postfix) with ESMTP id 54FCB1526D for ; Thu, 19 Aug 1999 16:40:41 -0700 (PDT) (envelope-from ben@scientia.demon.co.uk) Received: from lithium.scientia.demon.co.uk ([192.168.0.3] ident=exim) by scientia.demon.co.uk with esmtp (Exim 3.024 #3) id 11HZqP-000DxE-00; Thu, 19 Aug 1999 22:35:33 +0100 Received: (from ben) by lithium.scientia.demon.co.uk (Exim 3.024 #3) id 11HZqP-0003fd-00; Thu, 19 Aug 1999 22:35:33 +0100 Date: Thu, 19 Aug 1999 22:35:32 +0100 From: Ben Smithurst To: Holger van Koll Cc: freebsd-questions@freebsd.org Subject: Re: ed1 insted of ed0... Message-ID: <19990819223532.D12658@lithium.scientia.demon.co.uk> References: <016601beea7f$e4f721a0$0a00a8c0@holler.localdomain> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.6i In-Reply-To: <016601beea7f$e4f721a0$0a00a8c0@holler.localdomain> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Holger van Koll wrote: > Problem: > At boot-time I get > ed1: rev 0x00 int a irq 3 on pci0.9.0 > ed1: address 00:40:05:65:15:5b, type NE2000 (16 bit) > > Fine so far, but why is ed1 instead of ed0 assigned? Someone asked this a while back. The explanation given was that PCI cards are probed before ISA cards, so ed0 is reserved for an ISA card which might be found by the ed driver. > If I add > device ed0 at isa port 0xb000 net irq 11 iomem 0xd8000 > to my kernel-config That is unnecessary. Just use `device ed0 at pci?' for a PCI card. Apparantly using `device ed? at pci?' will make it show up as ed0, but I'm not bothered, ed1 is fine for me. > What is going on here? How can I tell the kernel to assign ed0 ? Why do you want it to? Are there problems with using ed1? -- Ben Smithurst | PGP: 0x99392F7D ben@scientia.demon.co.uk | key available from keyservers and | ben+pgp@scientia.demon.co.uk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 16:51:53 1999 Delivered-To: freebsd-questions@freebsd.org Received: from sign.chg.ru (sign.chg.ru [193.233.46.10]) by hub.freebsd.org (Postfix) with ESMTP id 618CD15208 for ; Thu, 19 Aug 1999 16:51:46 -0700 (PDT) (envelope-from fbsdmail@sign.chg.ru) Received: from localhost (fbsdmail@localhost) by sign.chg.ru (8.9.2/8.9.2) with ESMTP id DAA94946; Fri, 20 Aug 1999 03:51:35 +0400 (MSD) (envelope-from fbsdmail@sign.chg.ru) Date: Fri, 20 Aug 1999 03:51:35 +0400 (MSD) From: Guy who reads freebsd-questions To: Melissa Hendriks Cc: questions@FreeBSD.ORG Subject: Re: FreeBSD FAQ in pfd format not there :( In-Reply-To: <3.0.6.32.19990819221740.007ad800@pop.softhome.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, 19 Aug 1999, Melissa Hendriks wrote: > Hi all, > > I tried to download the FreeBSD faq, but it's not on the FTP server. > The link on the FreeBSD web site says: > > ftp://ftp.FreeBSD.org/pub/FreeBSD/doc/FAQ.pdf > > Is there another site / url where I can download this file? > > Regards, > > Melissa > Try this: ftp://ftp.chg.ru/pub/FreeBSD/doc/FAQ.pdf Andrew. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 16:53:16 1999 Delivered-To: freebsd-questions@freebsd.org Received: from adsl-216-102-203-44.dsl.snfc21.pacbell.net (adsl-216-102-203-44.dsl.snfc21.pacbell.net [216.102.203.44]) by hub.freebsd.org (Postfix) with ESMTP id 4632E14E1F for ; Thu, 19 Aug 1999 16:53:12 -0700 (PDT) (envelope-from bri@sonicboom.org) Received: from localhost (bri@localhost) by adsl-216-102-203-44.dsl.snfc21.pacbell.net (8.9.3/8.9.3) with ESMTP id QAA47221; Thu, 19 Aug 1999 16:51:42 -0700 (PDT) (envelope-from bri@sonicboom.org) Date: Thu, 19 Aug 1999 16:51:42 -0700 (PDT) From: Brian X-Sender: bri@adsl-216-102-203-44.dsl.snfc21.pacbell.net To: Langa Kentane Cc: salleek@hqasc.army.mil, Cisco , FreeBSD Subject: Re: router and firewall question In-Reply-To: <000001beea6f$f4a64780$0a01a8c0@sunshine.co.za> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG You can do port redirection with bsd as a firewall, redirecting port x of a public address to the same or different port of a private server. Check the freebsd-questions mailing list archive at www.freebsd.org. Actually, OpenBSD is slightly more secure. Bri On Thu, 19 Aug 1999, Langa Kentane wrote: > Now the other thing I would like to know is how I would go about is that if > I use a private network address of 192.168.1.0 and put up my all my servers > behind it ie: http server, ftp server, mail server (pop3 and smtp) and a dns > server, will I not have problems with that, coz I need the stuff of the > company to be able to connect to these from the internet and the other idea > is that I want them to dial into the C2511 if the don't have a net > connection. > > The others will work, I think, the http server and stuff by using the host > name instead of the ip but then how will the be able to use the dns server > since that uses an ip address instead of a host name? > > PLease help > > > Actually what you have below won't work. The router will think that hosts > > 1-62 are on the local e0 segment - depending on the subnet mask used. The > > firewall will create subnets on both the secure and unsecure side. To > make > > it work this is what I would do: > > > > R1: > > > > ip subnet-zero > > ! > > interface e0 > > ip address 192.168.25.1 255.255.255.252 > > > > Give the ISP the rest of the address space back and use private addresses > > for local hosts. The firewall should do the address translation for you. > > Keep in mind that if you are going to be putting hosts in the unsecure > side > > of the firewall you'll want to keep some registered addresses. > > > > > > Kenny Sallee > > Army Network Systems Operation Center > > Ft. Huachuca, AZ > > DSN: 879-8212 > > COM: 520-538-8212 > > HelpDesk: 1-800-305-3036 > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 17: 0:21 1999 Delivered-To: freebsd-questions@freebsd.org Received: from dt010nb9.san.rr.com (dt010nb9.san.rr.com [204.210.12.185]) by hub.freebsd.org (Postfix) with ESMTP id EE60C14E1F for ; Thu, 19 Aug 1999 17:00:17 -0700 (PDT) (envelope-from Doug@gorean.org) Received: from localhost (doug@localhost) by dt010nb9.san.rr.com (8.9.3/8.8.8) with ESMTP id QAA60216; Thu, 19 Aug 1999 16:59:57 -0700 (PDT) (envelope-from Doug@gorean.org) Date: Thu, 19 Aug 1999 16:59:57 -0700 (PDT) From: Doug X-Sender: doug@dt010nb9.san.rr.com To: Ben Smithurst Cc: Doug , mcwong@ascend.com, questions@freebsd.org Subject: Re: Safe upgrade from 2.2.5 --> 3.2 ? In-Reply-To: <19990819213621.A12658@lithium.scientia.demon.co.uk> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, 19 Aug 1999, Ben Smithurst wrote: > Doug wrote: > > > Specifically, you should not try to upgrade from 2.2.5 straight to > > 3.2-Stable since I've seen people run into trouble with a system older > > than 2.2.6. > > Ah, sorry. I thought the differences between 2.2.5 and 2.2.6 wouldn't be > much compared to the differences between 2.2.6 and 3.2. Evidently they are > too much :-) *Nod* Post 2.2.5 was when they started getting really serious about making the 2.2.x => 3.x upgrade work, AND had a stable enough API for the upgrade to make such efforts doable. In general, the safest bet is to just upgrade to 2.2.8 first. Doug -- On account of being a democracy and run by the people, we are the only nation in the world that has to keep a government four years, no matter what it does. -- Will Rogers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 17: 8:38 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail3.kscable.com (fe3.rdc-kc.rr.com [24.94.163.50]) by hub.freebsd.org (Postfix) with ESMTP id 2764414E1F for ; Thu, 19 Aug 1999 17:08:34 -0700 (PDT) (envelope-from bfs@kscable.com) Received: from kscable.com ([24.94.196.182]) by mail3.kscable.com with Microsoft SMTPSVC(5.5.1875.185.18); Thu, 19 Aug 1999 19:00:17 -0500 Message-ID: <37BC9BD3.14D05AFF@kscable.com> Date: Thu, 19 Aug 1999 19:05:40 -0500 From: Ben Salem Organization: Wichita Area FreeBSD User's Group X-Mailer: Mozilla 4.6 [en] (Win98; I) X-Accept-Language: en MIME-Version: 1.0 To: Evren Yurtesen , freebsd-questions@freebsd.org Subject: Re: System Halted References: <37BC6118.56EBD3DF@kscable.com> <37BC67A0.FA9DF172@ispro.net.tr> <37BC71DB.4665E61F@kscable.com> <37BC7C5C.7CAF81B6@ispro.net.tr> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I would, but it doesn't even get that far, before the boot prompt, it gives all of those weird memory addresses, then "System Halted" Evren Yurtesen wrote: > what happens if you press a key at the boot prompt when it is waiting > for 10 seconds for continuing and try to load the generic kernel from > there? (or you do not get that prompt at all? if not you probably have > a problem with the loader program I guess. I am not an expert on this > though) > you should give the command > load kernel.GENERIC > it would probably work... > > Evren > > Ben Salem wrote: > > > > Yes, I have tried pulling it out, and setting the settings back to the > > original. > > > > When the NIC card is out, it does the same thing. > > > > Im wondering, has anyone every used the "Fix It" option in the sysintsall menu > > before? What exactly does that do? > > > > Evren Yurtesen wrote: > > > > > did you try to set those NIC card settings back to how they were? > > > or even tried to take it out? > > > > > > Ben Salem wrote: > > > > > > > > Recently, when my system was working just fine, no problems at all - I > > > > even had a 30 day uptime, I had to reboot my system to adjust some NIC > > > > card settings with a DOS diskette I have. So I did that ( I don't know > > > > if this had any effect on what my problem is or not) then I rebooted, > > > > and at the time FreeBSD should be giving me a boot prompt "-" it spits > > > > out alot of what seem to be memory addresss, quite a few in rows, then > > > > under all of that says "System Halted" and that's it. > > > > > > > > I've never seen this before, maybe someone could assist me in > > > > troubleshooting this problem. I run 3.2-RELEASE on a 486 DX/2 with 12mb > > > > RAM. > > > > > > > > Thanks, > > > > Ben Salem > > > > bfs@kscable.com > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 17:17:13 1999 Delivered-To: freebsd-questions@freebsd.org Received: from gw-nl3.philips.com (gw-nl3.philips.com [192.68.44.35]) by hub.freebsd.org (Postfix) with ESMTP id 70AD715285 for ; Thu, 19 Aug 1999 17:17:08 -0700 (PDT) (envelope-from lawrence.hy.cheung@philips.com) Received: from smtprelay-nl1.philips.com (localhost.philips.com [127.0.0.1]) by gw-nl3.philips.com with ESMTP id CAA25515 for ; Fri, 20 Aug 1999 02:16:43 +0200 (MEST) (envelope-from lawrence.hy.cheung@philips.com) From: lawrence.hy.cheung@philips.com Received: from smtprelay-eur1.philips.com(130.139.36.3) by gw-nl3.philips.com via mwrap (4.0a) id xma025512; Fri, 20 Aug 99 02:16:43 +0200 Received: from notessmtp-nl1.philips.com (notessmtp-nl1.philips.com [130.139.36.10]) by smtprelay-nl1.philips.com (8.9.3/8.8.5-1.2.2m-19990317) with ESMTP id CAA03596 for ; Fri, 20 Aug 1999 02:16:42 +0200 (MET DST) Received: from APLMS01.DIAMOND.PHILIPS.COM (aplms01sv1.diamond.philips.com [130.147.79.213]) by notessmtp-nl1.philips.com (8.9.3/8.8.5-1.2.2m-19990317) with ESMTP id CAA07808 for ; Fri, 20 Aug 1999 02:16:40 +0200 (MET DST) Received: by APLMS01.DIAMOND.PHILIPS.COM (Soft-Switch LMS 4.0) with snapi via APAC id 0056920003021596; Fri, 20 Aug 1999 08:16:31 +0800 To: Subject: Do I need rebuild system with -lxpg4 library ? Message-ID: <0056920003021596000002L262*@MHS> Date: Fri, 20 Aug 1999 08:16:31 +0800 MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1; name="MEMO 08/20/99 08:16:30" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Dear folks, I am a user in Hong Kong. I want to set my system environment to use=20 multi-byte chinese locate. After changing LC_MESSAGE, LANG,....., Any base ulitites do not accept the new LOCATE. For example, type perl -v display a warning about locate setting and then throw back to C LOCATE. I want to have a FreeBSD native support chinese locate like some chinese linux distribution does. Do I need 'make world' with -lxpg4 to solve this problem? Is it possible to 'make world' with -lxpg4? Do the base distribution ulitities conflict with -lxpg4 ? Which file I need to make change for adding '-lxpg4' before make world?= Regards, Hon-Yu Lawrence Cheung = To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 17:22:43 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail.pchost.com (pchost.com [203.24.253.109]) by hub.freebsd.org (Postfix) with SMTP id D256515285 for ; Thu, 19 Aug 1999 17:22:31 -0700 (PDT) (envelope-from kyle@pchost.com) Received: (qmail 84796 invoked from network); 20 Aug 1999 00:35:41 -0000 Received: from bob.pchost.com (HELO pchost.com) (203.24.253.107) by pchost.com with SMTP; 20 Aug 1999 00:35:41 -0000 Message-ID: <37BCA086.BC7DFFF3@pchost.com> Date: Fri, 20 Aug 1999 10:25:42 +1000 From: Kyle Buttress X-Mailer: Mozilla 4.6 [en] (X11; I; Linux 2.0.36 i386) X-Accept-Language: en MIME-Version: 1.0 To: FreeBSD Questions List Subject: Mgetty problems Content-Type: multipart/alternative; boundary="------------83E305F9928E1759F6A027FD" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG --------------83E305F9928E1759F6A027FD Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit I have something wrong with mgetty or the process that it uses??? I can dialin and mgetty answers, then the call disconnects mgetty has the following in its log file. 08/20 10:19:42 aa1 mgetty: experimental test release 1.1.20-Jan17 08/20 10:19:43 aa1 check for lockfiles 08/20 10:19:43 aa1 locking the line 08/20 10:19:45 aa1 lowering DTR to reset Modem 08/20 10:19:46 aa1 send: ATS0=0Q0&D3&C1[0d] 08/20 10:19:46 aa1 waiting for ``OK'' ** found ** 08/20 10:19:46 aa1 mdm_send: 'ATI' 08/20 10:19:46 aa1 USR Courier/Sportster V.34(+) detected 08/20 10:19:47 aa1 mdm_send: 'ATI3' 08/20 10:19:47 aa1 additional info: 'Texas Instruments 33600/Fax V2.5' 08/20 10:19:47 aa1 mdm_send: 'AT+FCLASS=2.0' -> OK 08/20 10:19:47 aa1 mdm_send: 'AT+FAA=1;+FCR=1' -> OK 08/20 10:19:47 aa1 mdm_send: 'AT+FBO=1' -> OK 08/20 10:19:47 aa1 mdm_send: 'AT+FNR=1,1,1,0' -> OK 08/20 10:19:48 aa1 mdm_send: 'AT+FLI="00 00 000000"' -> OK 08/20 10:19:48 aa1 mdm_send: 'AT+FCC=1,5,0,2,0,0,0,0' -> OK 08/20 10:19:48 aa1 waiting... 08/20 10:20:35 aa1 wfr: waiting for ``RING'' 08/20 10:20:38 aa1 send: ATA[0d] 08/20 10:20:38 aa1 waiting for ``CONNECT'' ** found ** 08/20 10:20:50 aa1 send: 08/20 10:20:50 aa1 waiting for ``_'' ** found ** 08/20 10:20:52 ##### data dev=cuaa1, pid=1381, caller='none', conn='1440/ARQ/V32/LAPM/V42BIS', name='', cmd='/usr/bin/login', user='/AutoPPP/' ---- Does anyone know how to help or what other infor I may need to supply for this to work. Kyle -- Gauls! We have nothing to fear; except perhaps that the sky may fall on our heads tomorrow. But as we all know, tomorrow never comes!! -- Adventures of Asterix. --------------83E305F9928E1759F6A027FD Content-Type: text/html; charset=us-ascii Content-Transfer-Encoding: 7bit
I have something wrong with mgetty or the process that it uses???


I can dialin and mgetty answers, then the call disconnects mgetty has the following in its log file.


08/20 10:19:42 aa1  mgetty: experimental test release 1.1.20-Jan17
08/20 10:19:43 aa1  check for lockfiles
08/20 10:19:43 aa1  locking the line
08/20 10:19:45 aa1  lowering DTR to reset Modem
08/20 10:19:46 aa1  send: ATS0=0Q0&D3&C1[0d]
08/20 10:19:46 aa1  waiting for ``OK'' ** found **
08/20 10:19:46 aa1  mdm_send: 'ATI'
08/20 10:19:46 aa1  USR Courier/Sportster V.34(+) detected
08/20 10:19:47 aa1  mdm_send: 'ATI3'
08/20 10:19:47 aa1  additional info: 'Texas Instruments 33600/Fax V2.5'
08/20 10:19:47 aa1  mdm_send: 'AT+FCLASS=2.0' -> OK
08/20 10:19:47 aa1  mdm_send: 'AT+FAA=1;+FCR=1' -> OK
08/20 10:19:47 aa1  mdm_send: 'AT+FBO=1' -> OK
08/20 10:19:47 aa1  mdm_send: 'AT+FNR=1,1,1,0' -> OK
08/20 10:19:48 aa1  mdm_send: 'AT+FLI="00 00 000000"' -> OK
08/20 10:19:48 aa1  mdm_send: 'AT+FCC=1,5,0,2,0,0,0,0' -> OK
08/20 10:19:48 aa1  waiting...
08/20 10:20:35 aa1  wfr: waiting for ``RING''
08/20 10:20:38 aa1  send: ATA[0d]
08/20 10:20:38 aa1  waiting for ``CONNECT'' ** found **
08/20 10:20:50 aa1  send:
08/20 10:20:50 aa1  waiting for ``_'' ** found **
08/20 10:20:52 ##### data dev=cuaa1, pid=1381, caller='none', conn='1440/ARQ/V32/LAPM/V42BIS', name='', cmd='/usr/bin/login', user='/AutoPPP/'
----
Does anyone know how to help or what other infor I may need to supply for this to work.


Kyle


-- 
Gauls!  We have nothing to fear; except perhaps that the sky may fall
on our heads tomorrow.  But as we all know, tomorrow never comes!!
                -- Adventures of Asterix.
  --------------83E305F9928E1759F6A027FD-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 17:25:30 1999 Delivered-To: freebsd-questions@freebsd.org Received: from nina.dhs.org (c74763-a.aurora1.co.home.com [24.4.230.109]) by hub.freebsd.org (Postfix) with ESMTP id 4417A152F1 for ; Thu, 19 Aug 1999 17:25:25 -0700 (PDT) (envelope-from baram@home.com) Received: by nina.dhs.org (Postfix, from userid 1000) id 5F8D47F; Thu, 19 Aug 1999 18:25:21 -0600 (MDT) Received: from localhost (localhost [127.0.0.1]) by nina.dhs.org (Postfix) with ESMTP id 4EB4856 for ; Thu, 19 Aug 1999 18:25:21 -0600 (MDT) Date: Thu, 19 Aug 1999 18:24:56 -0600 (MDT) From: alex To: multimedia@freebsd.org Subject: this sucks Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Alright, this is pissing me off. # grep pcm /sys/i386/conf/IDE device pcm0 at isa? port 0x220 tty irq 5 drq 1 flags 0x0 # cat /dev/sndstat FreeBSD Audio Driver (981002) Aug 14 1999 14:06:00 Installed devices: pcm0: at 0x220 irq 5 dma 1:1 # dd if=/dev/audio of=test.au ^C ^C ( /dev/console after a short pause: ) SoundBlaster: DSP Command(0xd0) timeout. IRQ conflict ? SoundBlaster: DSP Command(0xd3) timeout. IRQ conflict ? SoundBlaster: DSP Command(0xd0) timeout. IRQ conflict ? SoundBlaster: DSP Command(0xd3) timeout. IRQ conflict ? SoundBlaster: DSP Command(0xd3) timeout. IRQ conflict ? # dmesg pcm0 at 0x220 irq 5 drq 1 on isa Unknown card 0x0 0x0 -- hope it is SBPRO Thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 17:44:48 1999 Delivered-To: freebsd-questions@freebsd.org Received: from scnc.jps.k12.mi.us (jps.k12.mi.us [204.38.102.2]) by hub.freebsd.org (Postfix) with ESMTP id 5554E15154 for ; Thu, 19 Aug 1999 17:44:26 -0700 (PDT) (envelope-from cache@scnc.jps.k12.mi.us) Received: from localhost (cache@localhost) by scnc.jps.k12.mi.us (8.8.5/8.8.7) with SMTP id UAA25253 for ; Thu, 19 Aug 1999 20:44:26 -0400 (EDT) (envelope-from cache@scnc.jps.k12.mi.us) Date: Thu, 19 Aug 1999 20:44:25 -0400 (EDT) From: cache manager To: freebsd-questions@freebsd.org Subject: Site-Map Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I apologize for the off topic message. Does any one know of a good script around that would generate a html site map of our web site on our FreeBsd server? Thanks Steve Devine Jackson Public Schools Jackson , Mich To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 18:38:50 1999 Delivered-To: freebsd-questions@freebsd.org Received: from unix.taipingcarpets.com (pc001.taipingcarpets.com [203.85.118.1]) by hub.freebsd.org (Postfix) with ESMTP id 8AF8415205 for ; Thu, 19 Aug 1999 18:38:45 -0700 (PDT) (envelope-from kelvin@taipingcarpets.com) Received: from taipingcarpets.com ([203.85.118.65]) by unix.taipingcarpets.com (8.9.3/8.9.1) with ESMTP id JAA66607 for ; Fri, 20 Aug 1999 09:46:39 +0800 (CST) (envelope-from kelvin@taipingcarpets.com) Message-ID: <37BCAF9C.2FE46627@taipingcarpets.com> Date: Fri, 20 Aug 1999 09:30:04 +0800 From: kelvin Liu X-Mailer: Mozilla 4.6 [en] (Win98; I) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: Mail server error msg Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Dear FQA, I have a problem that the mail cannot send to kevin@itinera.be. the system get following message. ... while talking to mail.itinera.be.: >>> HELO unix.taipingcarpets.com <<< 500 Failed to look up peer in DNS ... while talking to rome2.itinera.be.: >>> HELO unix.taipingcarpets.com <<< 500 Failed to look up peer in DNS ... while talking to mailf.itinera.be.: >>> HELO unix.taipingcarpets.com <<< 500 Failed to look up peer in DNS 554 ... Service unavailable When I send to open e-mail account. It is sucessful. Could you teach me how to solve it Thank you very much. Regards, Kelvin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 18:49:26 1999 Delivered-To: freebsd-questions@freebsd.org Received: from public.bta.net.cn (public.bta.net.cn [202.96.0.97]) by hub.freebsd.org (Postfix) with ESMTP id CB04A1518D for ; Thu, 19 Aug 1999 18:49:17 -0700 (PDT) (envelope-from worthope@public.bta.net.cn) Received: from public.bta.net.cn (TCE-E-7-179-95.bta.net.cn [202.106.179.95]) by public.bta.net.cn (8.9.1/8.9.1) with ESMTP id JAA27782 for ; Fri, 20 Aug 1999 09:46:43 +0800 (CST) Message-ID: <37BCB227.9345E859@public.bta.net.cn> Date: Fri, 20 Aug 1999 09:40:55 +0800 From: worthope Organization: worthope X-Mailer: Mozilla 4.04 [en] (WinNT; I) MIME-Version: 1.0 To: questions@freebsd.org Subject: freebsd vs nt and for ia64 merced Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > Hi, > I am leiyin. I am from china. I love freebsd because it is > unbelievable stable. I think it is > superior to linux in many respects. What I want to know is whether > Freebsd can outrun > winnt in the web test just like made in june by PC Week lab.I also know > the support for > smp in freebsd is not very good,however the data show that a > quadri-processor linux can > not rival with single-processor winnt,why? I wish I can get some > comparision data about > freebsd and winnt under some extreme workloads.Freebsd is under > development , so does windows.Can you supply some thing about winnt4.0 > vs freebsd 3.0. In addition to this, is there a plan for IA64 freebsd. I > know intel merced will appear next year. > > In china,freebsd is not well known. I believe the status would change > with time. > > Long live FreeBSD! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 19:59:19 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail.rdc1.sfba.home.com (ha1.rdc1.sfba.home.com [24.0.0.66]) by hub.freebsd.org (Postfix) with ESMTP id 858BC152D7 for ; Thu, 19 Aug 1999 19:59:09 -0700 (PDT) (envelope-from charon@freethought.org) Received: from c40948-a ([24.1.7.99]) by mail.rdc1.sfba.home.com (InterMail v4.01.01.00 201-229-111) with SMTP id <19990820025828.TJFV8807.mail.rdc1.sfba.home.com@c40948-a> for ; Thu, 19 Aug 1999 19:58:28 -0700 Message-Id: <3.0.5.32.19990819195821.00a5e580@mail> X-Sender: tuathadedanann@mail X-Mailer: QUALCOMM Windows Eudora Pro Version 3.0.5 (32) Date: Thu, 19 Aug 1999 19:58:21 -0700 To: questions@freebsd.org From: charon@freethought.org Subject: apsfilter install problems Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I can't seem to install apsfilter - first there's a checksum mismatch (I'm using apsfilter-5.1.2 with 3.2-STABLE, ports collection updated August 13), and then when I use "NO_CHECKSUM=yes" I get a "bzip2: Data integrity error when decompressing" error. I've been waiting for a while, but apsfilter hasn't show up in the distfiles of the FreeBSD server, so I downloaded it from http://www.FreeBSD.ORG/~andreas/download/apsfilter-5.1.2.tar.bz2, which is the other place the ports collection page notes. I've downloaded it several times, with no change in results. Suggestions would be appreciated. Thanks! -Charon To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 20: 9:51 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail.greatbasin.net (mail.greatbasin.net [207.228.35.39]) by hub.freebsd.org (Postfix) with ESMTP id 0119914DA0 for ; Thu, 19 Aug 1999 20:09:47 -0700 (PDT) (envelope-from dan@jgl.reno.nv.us) Received: from pandora.jgl.reno.nv.us (rno-max11-31.gbis.net [216.82.159.31]) by mail.greatbasin.net (8.9.3/8.9.3) with ESMTP id UAA28251; Thu, 19 Aug 1999 20:09:46 -0700 (PDT) Received: from danco (danco.home [10.0.0.2]) by pandora.jgl.reno.nv.us (8.9.3/8.9.3) with SMTP id UAA00306; Thu, 19 Aug 1999 20:09:43 -0700 (PDT) (envelope-from dan@jgl.reno.nv.us) Message-ID: <019401beeab9$73e9bce0$0200000a@home> From: "Dan O'Connor" To: "pete collins" Cc: References: <37BC3407.B0B6BDC8@ocsny.com> Subject: Re: DELL servers and FreeBSD Date: Thu, 19 Aug 1999 18:24:58 -0700 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit 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-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > i set up a dell PowerEdge 2300 dual CPU for my main home machine. > the easiest freeBSD install i've ever done. Mmmmm.... Nice *home* machine. The beauty of this is that the PowerEdges aren't that much more expensive than a top-of-the-line Dimension XPS machine. --Dan ** The thing I like most about Windows 98 is... ** You can download FreeBSD with it! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 21:21:22 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail.mato.com (Mail.mato.com [199.240.78.3]) by hub.freebsd.org (Postfix) with SMTP id 95A2314E9B for ; Thu, 19 Aug 1999 21:21:19 -0700 (PDT) (envelope-from dragonk@mato.com) Received: from dk1 [199.240.78.217] by mail.mato.com with smtp id 11Hg8g-0001L8-00; Thu, 19 Aug 1999 22:18:51 -0600 Message-ID: <000901beeac2$f8360f40$0201a8c0@dragonknight.yi.org> From: "Dragon Knight ][" To: Subject: KDE Date: Thu, 19 Aug 1999 22:17:50 -0600 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit 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-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I'm noticing this little Windows-like device thingermajigger thingy :) in the KDE 2.x screenshots. Does anyone know how this is going to work? Especially the Change Setting button, I would think that quite a bit of code would have to be rewritten to port it to another OS... Does anyone have any info. on this they would like to share? http://halley.jorsm.com/~mosfet/images/ksysctrl.jpg Thanks, Sam To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 21:21:38 1999 Delivered-To: freebsd-questions@freebsd.org Received: from vulcan.addy.com (vulcan.addy.com [207.239.68.7]) by hub.freebsd.org (Postfix) with ESMTP id 8AC7614E9B for ; Thu, 19 Aug 1999 21:21:34 -0700 (PDT) (envelope-from francisco@natserv.com) Received: from your-name (freyes.static.inch.com [207.240.212.43]) by vulcan.addy.com (8.8.5/8.6.12) with SMTP id AAA14261 for ; Fri, 20 Aug 1999 00:20:59 -0400 (EDT) Message-Id: <199908200420.AAA14261@vulcan.addy.com> From: "Francisco Reyes" To: "FreeBSD questions" Date: Fri, 20 Aug 1999 00:21:32 -0400 Reply-To: "Francisco Reyes" X-Mailer: PMMail 98 Professional (2.01.1600) For Windows 98 (4.10.1998) MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Subject: Fixit from CD rom no more? Says disk 2 is Alpha dist. Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I just trie to run the "fixit" option from the Install disk. When it asked for the second disk and I placed it, it said that this was the "Alpha Distribution CD". How can I run Fixit from CD? .. or will I have to prepare floppies? The archives have the same question, but did not find an answer. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 21:39:23 1999 Delivered-To: freebsd-questions@freebsd.org Received: from allegro.lemis.com (allegro.lemis.com [192.109.197.134]) by hub.freebsd.org (Postfix) with ESMTP id 42925151FA for ; Thu, 19 Aug 1999 21:39:16 -0700 (PDT) (envelope-from grog@freebie.lemis.com) Received: from freebie.lemis.com (freebie.lemis.com [192.109.197.137]) by allegro.lemis.com (8.9.1/8.9.0) with ESMTP id OAA26552; Fri, 20 Aug 1999 14:06:52 +0930 (CST) Received: (from grog@localhost) by freebie.lemis.com (8.9.3/8.9.0) id OAA62681; Fri, 20 Aug 1999 14:06:51 +0930 (CST) Date: Fri, 20 Aug 1999 14:06:50 +0930 From: Greg Lehey To: Francisco Reyes Cc: FreeBSD questions Subject: Re: Fixit from CD rom no more? Says disk 2 is Alpha dist. Message-ID: <19990820140649.Z14964@freebie.lemis.com> References: <199908200420.AAA14261@vulcan.addy.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: <199908200420.AAA14261@vulcan.addy.com>; from Francisco Reyes on Fri, Aug 20, 1999 at 12:21:32AM -0400 WWW-Home-Page: http://www.lemis.com/~grog X-PGP-Fingerprint: 6B 7B C3 8C 61 CD 54 AF 13 24 52 F8 6D A4 95 EF Organization: LEMIS, PO Box 460, Echunga SA 5153, Australia Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-41-739-7062 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Friday, 20 August 1999 at 0:21:32 -0400, Francisco Reyes wrote: > I just trie to run the "fixit" option from the Install disk. > When it asked for the second disk and I placed it, it said that > this was the "Alpha Distribution CD". > > How can I run Fixit from CD? > .. or will I have to prepare floppies? > > The archives have the same question, but did not find an answer. Unfortunately, this was an oversight in making the CD-ROMs. You won't be able to mount the CD-ROM in fixit mode in 3.2. It worked in 3.1, and it should work again in 3.3, but 3.2 fixit is broken. Greg -- When replying to this message, please copy the original recipients. For more information, see http://www.lemis.com/questions.html See complete headers for address, home page and phone numbers finger grog@lemis.com for PGP public key To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 21:59:19 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail.rdc1.sfba.home.com (ha1.rdc1.sfba.home.com [24.0.0.66]) by hub.freebsd.org (Postfix) with ESMTP id 48F2E150B1 for ; Thu, 19 Aug 1999 21:59:16 -0700 (PDT) (envelope-from ibjoe@home.com) Received: from c392156-a.cstvl1.sfba.home.com ([24.1.95.226]) by mail.rdc1.sfba.home.com (InterMail v4.01.01.00 201-229-111) with SMTP id <19990820045532.USIN8807.mail.rdc1.sfba.home.com@c392156-a.cstvl1.sfba.home.com> for ; Thu, 19 Aug 1999 21:55:32 -0700 Message-Id: <2.2.32.19990820045512.0073405c@mail> X-Sender: ibjoe@mail X-Mailer: Windows Eudora Pro Version 2.2 (32) Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Date: Thu, 19 Aug 1999 21:55:12 -0700 To: freebsd-questions@freebsd.org From: Joe Subject: Re: Boot manager Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG >> # disklabel -B wd0 didn't remove my boot manager. do i need to change the files /boot/boot[0,1,2] also? if so, where do i get them? i tried /stand/sysinstall but that was scary, i'm afraid i will trash my installation. thanks. Joe At 04:41 PM 8/13/99 -0500, you wrote: >I knew there was s simple way to do this :) > >Thanks Greg > >> Greg Lehey wrote: > >> On Friday, 13 August 1999 at 13:56:08 +1200, Jonathan Chen wrote: >> > On Thu, 12 Aug 1999, Len Huppe wrote: >> > >> >> Hi All, >> >> >> >> Is there a way to remove the boot manager and/or have FreeBSD boot >> >> automatically without any user input? I have a system with boot manager >> >> installed and I don't want to deal with the boot manager. >> > >> > During installation, if you don't request a boot manager, the FreeBSD >> > partition automatically becomes the active partition. >> > >> > If you already have a boot-manager installed, you can remove it by >> > using DOS's: >> > >> > fdisk /mbr >> >> That doesn't remove it, it replaces it with Microsoft's boot sector. >> This requires Microsoft, of course. You can also write a new >> bootstrap with FreeBSD's disklabel command: >> >> # disklabel -B wd0 >> >> Greg >> -- >> When replying to this message, please copy the original recipients. >> For more information, see http://www.lemis.com/questions.html >> See complete headers for address, home page and phone numbers >> finger grog@lemis.com for PGP public key > > > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 22: 8:14 1999 Delivered-To: freebsd-questions@freebsd.org Received: from boom.calcasieu.com (boom.calcasieu.com [209.99.46.80]) by hub.freebsd.org (Postfix) with ESMTP id 6E2F5150B1 for ; Thu, 19 Aug 1999 22:08:07 -0700 (PDT) (envelope-from dread@calcasieu.com) Received: from coypu.bb.calcasieu.com (coypu.bb.calcasieu.com [192.168.3.21]) by boom.calcasieu.com (8.9.3/8.9.3) with ESMTP id AAA05907; Fri, 20 Aug 1999 00:07:56 -0500 (CDT) Message-ID: X-Mailer: XFMail 1.3 [p0] on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <9908191207.aa08657@dick.ccstores.com> Date: Fri, 20 Aug 1999 00:07:54 -0500 (CDT) Organization: Calcasieu Lumber From: Don Read To: Jim Pazarena Subject: RE: setting up mail server Cc: freebsd-questions@FreeBSD.ORG Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On 19-Aug-99 Jim Pazarena wrote: > If you are creating a (FreeBSD) mail server on the net, is it 'required' > to utilize an IP for an address named "smtp.XX.XX" ? > Nope. > I've got the machine's REAL name, and a second IP for "mail.XX.XX". It seems > to me that if my DNS always points at "MX mail.XX.XX", then "smtp." doesn't > enter the picture but I don't want to miss something. > that'll be fine. Be sure to use an 'A' record for mail (| mx | smtp | whatever) no 'CNAME' target allowed. > The reason I ask is a few years ago I hired a consultant to set up my > original email and he created both mail & smtp... I've always left it > as such but never understood why. prolly thinking forward to in-bound & out-bound servers. ( but just a guess on my part.) Regards, --- Don Read dread@calcasieu.com EDP Manager dread@texas.net Calcasieu Lumber Co. Austin TX -- But I'm in good company, sendmail has kicked a great many butts in the past To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 22:13:59 1999 Delivered-To: freebsd-questions@freebsd.org Received: from tcsnpop1.tcsn.uswest.net (tcsn.uswest.net [207.108.112.1]) by hub.freebsd.org (Postfix) with SMTP id 8A5E9150B1 for ; Thu, 19 Aug 1999 22:13:57 -0700 (PDT) (envelope-from freebsd@mypad.com) Received: (qmail 9369 invoked by alias); 20 Aug 1999 05:13:56 -0000 Delivered-To: fixup-freebsd-questions@freebsd.org@fixme Received: (qmail 9363 invoked by uid 0); 20 Aug 1999 05:13:56 -0000 Received: from adslppp133.tcsn.uswest.net (HELO mypad.com) (216.161.144.133) by mail.tcsn.uswest.net with SMTP; 20 Aug 1999 05:13:56 -0000 Message-ID: <37BCE40C.1E9D3971@mypad.com> Date: Thu, 19 Aug 1999 22:13:48 -0700 From: Junon Organization: Junon.2y.net X-Mailer: Mozilla 4.51 [en] (X11; U; FreeBSD 3.2-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: telnet & login question Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG How can I make telnet daemon to drop connection if somebody already miss certain number (I would like to make it 3) of failure logins? Right now telnetd keeps asking login/password combo regardless multiple failure. I am running telnetd from inetd with -h options (telnetd -h) Or is it related to login program? thanks for the help To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 22:19:20 1999 Delivered-To: freebsd-questions@freebsd.org Received: from smtp13.bellglobal.com (smtp13.bellglobal.com [204.101.251.52]) by hub.freebsd.org (Postfix) with ESMTP id DA29615229 for ; Thu, 19 Aug 1999 22:19:13 -0700 (PDT) (envelope-from marion.sutcliffe@sympatico.ca) Received: from oemcomputer (ppp15804.on.bellglobal.com [206.172.141.124]) by smtp13.bellglobal.com (8.8.5/8.8.5) with SMTP id BAA08985 for ; Fri, 20 Aug 1999 01:19:01 -0400 (EDT) Message-Id: <3.0.2.32.19990820011732.0079a1a0@pop1.sympatico.ca> X-Sender: b1ffcy49@pop1.sympatico.ca (Unverified) X-Mailer: QUALCOMM Windows Eudora Light Version 3.0.2 (32) Date: Fri, 20 Aug 1999 01:17:32 -0400 To: freebsd-questions@FreeBSD.ORG From: Marion Sutcliffe Subject: Where are kern&mfsroot.flp? Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello, Just starting to work up the courage to install freeBSD, and I've got a few questions that I couldn't find answers for on the freeBSD site... - How do I download the kern.flp and mfsroot.flp files - are these on the freeBSD ftp site somewhere? - I've used fips on my single 10.G IDE drive (FAT32, LBA) to create a partition for Win98 (was already installed) and a second partition for unix. Do I need do anything to this 2nd partition e.g. format it, or partition it further before I install? - Any known compatability problems with Crystal PnP sound chip (on the motherboard) or 3D RagePro AGP video card or a Toshiba DVD-ROM SD-M1202? - I'm using LBA, and my first partition (for Win98) is about 5.5G - will unix have any problem booting on the 2nd partition? - About how long would it take to download freeBSD over a 56k modem (in the wee hours of the morning)? TIA, Marion To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 22:50:34 1999 Delivered-To: freebsd-questions@freebsd.org Received: from smtp1.ihug.co.nz (tk1.ihug.co.nz [203.29.160.13]) by hub.freebsd.org (Postfix) with ESMTP id B9E6F1528A; Thu, 19 Aug 1999 22:50:28 -0700 (PDT) (envelope-from mmuir@es.co.nz) Received: from es.co.nz (p37-max6.dun.ihug.co.nz [209.77.130.101]) by smtp1.ihug.co.nz (8.9.3/8.9.3/Debian/GNU) with ESMTP id RAA28826; Fri, 20 Aug 1999 17:49:22 +1200 Message-ID: <37BCEC5F.7D7EF0BD@es.co.nz> Date: Fri, 20 Aug 1999 17:49:19 +1200 From: Mike Muir X-Mailer: Mozilla 4.61 [en] (X11; I; FreeBSD 4.0-CURRENT i386) X-Accept-Language: en MIME-Version: 1.0 To: Tomer Weller Cc: questions@FreeBSD.ORG, current@FreeBSD.ORG Subject: Re: Weird X problem References: <99082000075900.50541@Tomer.Home.Org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Tomer Weller wrote: > > very weird X problem, I can only load an X server if I have a ppp connection > upi and running... > > Xfree86 3.4, -CURRENT(made world today) You might want to check your resolv.conf, having an ip that you cant access in there could be causing some things to load extremely slowly as they have to wait for a query to timeout or something - running ppp obviously lets you access your ISP's name server providing you have resolv.conf setup for that ip - you could always run your own caching only name server for that and chuck the boxes own ip into resolv.conf. Mebe upgrading /etc to be inline with -CURRENT you overwrote a few name resolution related files.. mike. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 23:37:31 1999 Delivered-To: freebsd-questions@freebsd.org Received: from virtual.kraft-s.ru (www.kraft-s.ru [195.128.153.195]) by hub.freebsd.org (Postfix) with ESMTP id DDA0A14DA8 for ; Thu, 19 Aug 1999 23:37:10 -0700 (PDT) (envelope-from sting@hippo.ru) Received: from sting (grata.hippo.ru [195.128.154.112]) by virtual.kraft-s.ru (8.9.3/8.9.0) with SMTP id LAA05659 for ; Fri, 20 Aug 1999 11:36:58 +0500 Message-ID: <000f01beeade$f28515c0$0201a8c0@sting.grata.hippo.ru> From: "Korchagin, Dmitry" To: Subject: Deadless file Date: Fri, 20 Aug 1999 11:37:37 +0400 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_000C_01BEEB00.66D4C4E0" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 4.72.3110.5 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3110.3 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_000C_01BEEB00.66D4C4E0 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: quoted-printable Hello & Help! I have created file with name "-z" in mistake and can't remove it. $ ls -z $ rm -z rm: illegal option -- z How can I remove such files? Best regards, Dmitry Korchagin =20 sting@hippo.ru =20 ------=_NextPart_000_000C_01BEEB00.66D4C4E0 Content-Type: text/html; charset="koi8-r" Content-Transfer-Encoding: quoted-printable
Hello & = Help!
 
I have created file with name = "-z"=20 in mistake and can't remove it.
 
$ ls
-z
$ rm -z
rm: illegal option -- = z
 
How can I remove such = files?
 
Best regards, = Dmitry=20 Korchagin
 
sting@hippo.ru
 
------=_NextPart_000_000C_01BEEB00.66D4C4E0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 23:42:39 1999 Delivered-To: freebsd-questions@freebsd.org Received: from smtp5.mindspring.com (smtp5.mindspring.com [207.69.200.82]) by hub.freebsd.org (Postfix) with ESMTP id 9CE3F14DA8 for ; Thu, 19 Aug 1999 23:42:16 -0700 (PDT) (envelope-from molee@mindspring.com) Received: from emulsive (user-38lcf15.dialup.mindspring.com [209.86.60.37]) by smtp5.mindspring.com (8.8.5/8.8.5) with SMTP id CAA10277; Fri, 20 Aug 1999 02:41:51 -0400 (EDT) From: "Ian Molee" To: "Glenn Johnson" Cc: Subject: RE: CFLAGS for building ports? and GNOME usage Date: Fri, 20 Aug 1999 02:41:25 -0400 Message-ID: <000401beead7$06026100$253c56d1@molee.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.2232.26 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2014.211 In-Reply-To: <19990819231746.A2023@gforce.johnson.home> Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Thanks, Glenn, for your response. > the CFLAGS and CXXFLAGS and many other variables are set in > '/usr/share/mk/sys.mk' on a system wide basis. So they are. Thanks for this info. I'm far more familiar with GNU make, so the concept of this sys.mk file is one that's new to me. :| I finally found where XFree86 does indeed set CFLAGS to -O2, but this took extracting the sources and a little digging in the work/ directory. > I don't know what to say about your observed sluggishness, but Well, in this case, perhaps I need to ask a more general question, and stop trying to analyze my problem: Is anyone here using GNOME? If so, are there aspects that seem unacceptably slow? For example, simple interaction with GTK+ widgets--in the GNOME Control Center, for example--like clicking a checkbox or selecting a radio button--does not seem to work properly. Specifically, a 1/4 to 1/2 second delay (approximately) occurs before the widget visually reflects my input. :( Additionally, moving windows around the desktop seems slightly jumpy--more so than when I log in as root and run BlackBox (sans GNOME). This last judgement is, though, a subjective analysis at best. Any feedback from folks running GNOME would be appreciated, although feedback from folks who have seen similar symptoms and fixed them would be _most_ appreciated. ;) I've seen GNOME running on slower Linux machines without the reported sluggishness, so I know it's nothing that GNOME itself is doing wrong. :| KDE doesn't seem to have the widget-level problems, but it still doesn't feel very snappy. This is all on a Celeron 300A (running at 387MHz currently) with 128 MB of RAM, primarily using WindowMaker as my window manager. I'd think that this ought to be plenty of computing resources for these environments. Since I was talking about GNOME, a couple more points: (1) is it common and expected to get bunches of errors from GTK and GDK? (2) are *.core files pretty much to be expected (gnome-cc seems to like to dump core)? and (3) has anyone gotten Enlightenment to run reliably for longer than ten or so minutes?! vtwm might not be such a bad idea. ;) (Although I want to be able to utilize the technologies being developed in environments like GNOME and KDE.) > > Additionally, is there a way to easily rebuild only the ports that > > you've already built and installed? > > [...] > called "FORCE_PKG_REGISTER= YES". Uncomment this line and then you can > do a 'make install', after a 'make clean', for your port and it will > force the port to reinstall after a rebuild. Right--I'm familiar with this, but what I'm really looking for is the ability to do something like "cd /usr/ports; make rebuild-and-reinstall-currently-installed-packages". I'd like for this make target to actually exist, but I know only of "reinstall" and "install," both of which will visit each directory in the ports tree and do an install. I'd like for it to visit only the directories from which I have previously installed ports. A pipe dream? Thanks again, Ian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 23:48:39 1999 Delivered-To: freebsd-questions@freebsd.org Received: from piper.kspu.kr.ua (piper.kspu.kr.ua [195.5.1.122]) by hub.freebsd.org (Postfix) with ESMTP id 7132014DA8; Thu, 19 Aug 1999 23:48:32 -0700 (PDT) (envelope-from john@piper.kspu.kr.ua) Received: (from john@localhost) by piper.kspu.kr.ua (8.9.3/8.9.3) id JAA15250; Fri, 20 Aug 1999 09:48:14 +0300 (EEST) Date: Fri, 20 Aug 1999 09:48:14 +0300 From: John Savitsky To: freebsd-questions@freebsd.org, freebsd-emulation@freebsd.org Subject: Can't get Quake2 MesaGL working Message-ID: <19990820094814.A15210@kspu.kr.ua> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-u X-Mailer: Mutt 0.95.6i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi! I have a 3.2 installed and nVIDIA RIVA TNT card w/ 8M onboard. I've made those steps that jkh wrote in the freebsdzine for getting working TNT under FreeBSD. Mesa3 demos works just fine. But I can't get Quake2 (and Q3Test) working. Every time I get similar errors: [cut here] [root@trident:/usr/games/quake2]# ./quake2 +set vid_ref glx +set gl_driver libGL.so.1 Added packfile ./baseq2/pak0.pak (3307 files) Added packfile ./baseq2/pak1.pak (279 files) Added packfile ./baseq2/pak2.pak (2 files) execing default.cfg execing config.cfg Console initialized. ------- sound initialization ------- /dev/dsp: Invalid argument Could not open /dev/dsp ------- Loading ref_glx.so ------- ref_gl version: GL 0.01 ./quake2: can't resolve symbol '__sF' Unable to resolve symbol ref_gl::R_Init() - could not load "libGL.so.1" [cut here] The same error (can't find __sF symbol) is in the Q3Test. Any ideas? -- Sincerely yours, John Savitsky To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Thu Aug 19 23:55:37 1999 Delivered-To: freebsd-questions@freebsd.org Received: from revolution.3-cities.com (revolution.3-cities.com [204.203.224.155]) by hub.freebsd.org (Postfix) with ESMTP id 1B0DC151A4 for ; Thu, 19 Aug 1999 23:55:15 -0700 (PDT) (envelope-from kstewart@3-cities.com) Received: from 3-cities.com (kenn2231.bossig.com [208.26.242.231]) by revolution.3-cities.com (8.9.3/8.9.3) with ESMTP id XAA18238; Thu, 19 Aug 1999 23:53:30 -0700 (PDT) Message-ID: <37BCFB74.97F6178F@3-cities.com> Date: Thu, 19 Aug 1999 23:53:40 -0700 From: Kent Stewart Organization: BOSSig X-Mailer: Mozilla 4.61 [en] (WinNT; U) X-Accept-Language: en MIME-Version: 1.0 To: "Korchagin, Dmitry" Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Deadless file References: <000f01beeade$f28515c0$0201a8c0@sting.grata.hippo.ru> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > "Korchagin, Dmitry" wrote: > > Hello & Help! > > I have created file with name "-z" in mistake and can't remove it. > > $ ls > -z > $ rm -z > rm: illegal option -- z > > How can I remove such files? Try rm -- -z The -- turns off the option field. Kent > > Best regards, Dmitry Korchagin > > sting@hippo.ru > -- Kent Stewart Richland, WA mailto:kstewart@3-cities.com http://www.3-cities.com/~kstewart/index.html SETI (Search for Extraterrestrial Intelligence) @ Home http://setiathome.ssl.berkeley.edu/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 0: 7:26 1999 Delivered-To: freebsd-questions@freebsd.org Received: from dart.sr.se (dart.SR.SE [193.12.91.98]) by hub.freebsd.org (Postfix) with ESMTP id AC7731518D for ; Fri, 20 Aug 1999 00:05:21 -0700 (PDT) (envelope-from gunnar@pluto.sr.se) Received: from honken.sr.se ([134.25.128.27]) by dart.sr.se (8.9.3/8.9.3) with ESMTP id JAA13872; Fri, 20 Aug 1999 09:05:10 +0200 (MET DST) Received: from pluto.sr.se (pluto.SR.SE [134.25.193.91]) by honken.sr.se (8.7.5/8.7.3) with ESMTP id JAA21680; Fri, 20 Aug 1999 09:05:10 +0200 (MET DST) Received: (from gunnar@localhost) by pluto.sr.se (8.9.3/8.9.1) id JAA24646; Fri, 20 Aug 1999 09:05:10 +0200 (CEST) (envelope-from gunnar) Date: Fri, 20 Aug 1999 09:05:09 +0200 From: Gunnar Flygt To: Marion Sutcliffe Cc: FreeBSD Questions Subject: Re: Where are kern&mfsroot.flp? Message-ID: <19990820090509.A24329@sr.se> Reply-To: Gunnar Flygt References: <3.0.2.32.19990820011732.0079a1a0@pop1.sympatico.ca> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.6i In-Reply-To: <3.0.2.32.19990820011732.0079a1a0@pop1.sympatico.ca>; from Marion Sutcliffe on Fri, Aug 20, 1999 at 01:17:32AM -0400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, Aug 20, 1999 at 01:17:32AM -0400, Marion Sutcliffe wrote: > Hello, > > Just starting to work up the courage to install freeBSD, and I've got a few > questions that I couldn't find answers for on the freeBSD site... > > - How do I download the kern.flp and mfsroot.flp files - are these on the > freeBSD ftp site somewhere? Use ftp! Yes, of course they are! In /pub/FreeBSD/3.2-RELEASE/floppies > - I've used fips on my single 10.G IDE drive (FAT32, LBA) to create a > partition for Win98 (was already installed) and a second partition for > unix. Do I need do anything to this 2nd partition e.g. format it, or > partition it further before I install? Don't do anything with the free space. Don't even make some kind of partition! Just see to that it is free space. FreeBSD will take care of the rest. > - Any known compatability problems with Crystal PnP sound chip (on the > motherboard) or 3D RagePro AGP video card or a Toshiba DVD-ROM SD-M1202? > - I'm using LBA, and my first partition (for Win98) is about 5.5G - will > unix have any problem booting on the 2nd partition? > - About how long would it take to download freeBSD over a 56k modem (in the > wee hours of the morning)? > > TIA, Marion > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- __o regards, Gunnar ---_ \<,_ email: flygt@sr.se ---- (_)/ (_) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 0: 8:59 1999 Delivered-To: freebsd-questions@freebsd.org Received: from dart.sr.se (dart.SR.SE [193.12.91.98]) by hub.freebsd.org (Postfix) with ESMTP id 96EA31518D for ; Fri, 20 Aug 1999 00:08:36 -0700 (PDT) (envelope-from gunnar@pluto.sr.se) Received: from honken.sr.se ([134.25.128.27]) by dart.sr.se (8.9.3/8.9.3) with ESMTP id JAA14012; Fri, 20 Aug 1999 09:08:22 +0200 (MET DST) Received: from pluto.sr.se (pluto.SR.SE [134.25.193.91]) by honken.sr.se (8.7.5/8.7.3) with ESMTP id JAA21822; Fri, 20 Aug 1999 09:08:21 +0200 (MET DST) Received: (from gunnar@localhost) by pluto.sr.se (8.9.3/8.9.1) id JAA24683; Fri, 20 Aug 1999 09:08:21 +0200 (CEST) (envelope-from gunnar) Date: Fri, 20 Aug 1999 09:08:21 +0200 From: Gunnar Flygt To: "Korchagin, Dmitry" Cc: FreeBSD Questions Subject: Re: Deadless file Message-ID: <19990820090821.B24329@sr.se> Reply-To: Gunnar Flygt References: <000f01beeade$f28515c0$0201a8c0@sting.grata.hippo.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.6i In-Reply-To: <000f01beeade$f28515c0$0201a8c0@sting.grata.hippo.ru>; from Korchagin, Dmitry on Fri, Aug 20, 1999 at 11:37:37AM +0400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, Aug 20, 1999 at 11:37:37AM +0400, Korchagin, Dmitry wrote: > Hello & Help! > > I have created file with name "-z" in mistake and can't remove it. > > $ ls > -z > $ rm -z > rm: illegal option -- z > > How can I remove such files? Start using the man pages! It's a real good source for knowledge! From the man page for rm: The rm command uses getopt(3) to parse its arguments, which allows it to accept the `--' option which will cause it to stop processing flag op- tions at that point. This will allow the removal of file names that be- gin with a dash (`-'). For example: rm -- -filename So in your case `rm -- -z` would do the trick -- __o regards, Gunnar ---_ \<,_ email: flygt@sr.se ---- (_)/ (_) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 0:10:34 1999 Delivered-To: freebsd-questions@freebsd.org Received: from finch-post-10.mail.demon.net (finch-post-10.mail.demon.net [194.217.242.38]) by hub.freebsd.org (Postfix) with ESMTP id E4B7A15222 for ; Fri, 20 Aug 1999 00:10:23 -0700 (PDT) (envelope-from freebsd-root@i-zone.demon.co.uk) Received: from i-zone.demon.co.uk ([158.152.227.78]) by finch-post-10.mail.demon.net with smtp (Exim 2.12 #1) id 11Hiod-000EO8-0A for freebsd-questions@freebsd.org; Fri, 20 Aug 1999 07:10:20 +0000 Message-ID: Date: Fri, 20 Aug 1999 08:00:06 +0100 To: freebsd-questions@freebsd.org From: John Subject: inetd & security - some simple questions MIME-Version: 1.0 X-Mailer: Turnpike Integrated Version 4.02 U Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello list A couple of newbie questions: [FreeBSD 3.2] The machine in question is on a permanent connection. I do not want it to go down if at all possible. I am enabling certain services one by one. In order to re-read inetd.conf, is it appropriate to kill -1 (inetd process number)? Will it cause a reboot? Are there any security issues in enabling talkd? Thanks -- John To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 0:26:50 1999 Delivered-To: freebsd-questions@freebsd.org Received: from nexus.plymovent.se (nexus.plymovent.se [212.247.77.253]) by hub.freebsd.org (Postfix) with ESMTP id B02E6151B9 for ; Fri, 20 Aug 1999 00:25:02 -0700 (PDT) (envelope-from thomas.uhrfelt@plymovent.se) Received: from tu ([192.168.1.21]) by nexus.plymovent.se (8.9.3/8.9.3) with SMTP id JAA19135; Fri, 20 Aug 1999 09:33:34 +0200 (CEST) (envelope-from thomas.uhrfelt@plymovent.se) From: "Thomas Uhrfelt" To: "John" Cc: "FreeBSD Questions" Subject: RE: inetd & security - some simple questions Date: Fri, 20 Aug 1999 09:24:47 +0200 Message-ID: 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 IMO, Build 9.0.2416 (9.0.2910.0) In-Reply-To: X-Mimeole: Produced By Microsoft MimeOLE V5.00.2314.1300 Importance: Normal Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG To restart inetd do a kill -HUP (inetd processnumber) This will cause inetd to restart and re-read its configurationfile. And no, it won't reboot your computer - after all .. this isn't Windows 95 ;-). Regards, Thomas Uhrfelt > -----Original Message----- > From: owner-freebsd-questions@FreeBSD.ORG > [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of John > Sent: den 20 augusti 1999 09:00 > To: freebsd-questions@FreeBSD.ORG > Subject: inetd & security - some simple questions > > > Hello list > > A couple of newbie questions: > > [FreeBSD 3.2] > > The machine in question is on a permanent connection. I do not want it > to go down if at all possible. I am enabling certain services one by > one. > > In order to re-read inetd.conf, is it appropriate to kill -1 (inetd > process number)? Will it cause a reboot? > > Are there any security issues in enabling talkd? > > Thanks > -- > John > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 0:29: 5 1999 Delivered-To: freebsd-questions@freebsd.org Received: from relay.ucb.crimea.ua (relay.ucb.crimea.ua [212.110.138.1]) by hub.freebsd.org (Postfix) with ESMTP id 19B8E15287 for ; Fri, 20 Aug 1999 00:27:46 -0700 (PDT) (envelope-from ru@ucb.crimea.ua) Received: (from ru@localhost) by relay.ucb.crimea.ua (8.9.3/8.9.3/UCB) id KAA53620; Fri, 20 Aug 1999 10:25:33 +0300 (EEST) (envelope-from ru) Date: Fri, 20 Aug 1999 10:25:33 +0300 From: Ruslan Ermilov To: Brian Cc: freebsd-questions@FreeBSD.ORG Subject: Re: natd Message-ID: <19990820102533.B44737@relay.ucb.crimea.ua> Mail-Followup-To: Brian , freebsd-questions@FreeBSD.ORG References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.3i In-Reply-To: ; from Brian on Thu, Aug 19, 1999 at 10:32:24AM -0700 X-Operating-System: FreeBSD 3.2-STABLE i386 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, Aug 19, 1999 at 10:32:24AM -0700, Brian wrote: > > Whats with the natd_ lines people are submitting with their rc.conf files. > The self described howot, the man page, says nothing of these. > See rc.conf(5) manpage. > I am also having a problem where whatever settings I apply to 1 nic get > applied to the other. So as a result, this machine cannot access the > outside world. > What exactly you're trying to do? -- Ruslan Ermilov Sysadmin and DBA of the ru@ucb.crimea.ua United Commercial Bank, ru@FreeBSD.org FreeBSD committer, +380.652.247.647 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 0:35:41 1999 Delivered-To: freebsd-questions@freebsd.org Received: from relay.ucb.crimea.ua (relay.ucb.crimea.ua [212.110.138.1]) by hub.freebsd.org (Postfix) with ESMTP id C9B99151B9 for ; Fri, 20 Aug 1999 00:31:40 -0700 (PDT) (envelope-from ru@ucb.crimea.ua) Received: (from ru@localhost) by relay.ucb.crimea.ua (8.9.3/8.9.3/UCB) id KAA52250; Fri, 20 Aug 1999 10:23:41 +0300 (EEST) (envelope-from ru) Date: Fri, 20 Aug 1999 10:23:30 +0300 From: Ruslan Ermilov To: James Gill Cc: questions@freebsd.org Subject: Re: natd redirects not happening Message-ID: <19990820102330.A44737@relay.ucb.crimea.ua> Mail-Followup-To: James Gill , questions@freebsd.org References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.3i In-Reply-To: ; from James Gill on Thu, Aug 19, 1999 at 12:52:18PM -0400 X-Operating-System: FreeBSD 3.2-STABLE i386 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, Aug 19, 1999 at 12:52:18PM -0400, James Gill wrote: > > I'm having trouble trying to redirect incoming connections to my > firewall on specific ports to other machines on my network. > > In looking at my natd stuff in rc.conf and it seems (to me) to be > right: > -------------------------------------- > ### FIREWALL AND NATD CONFIG ### > firewall_enable="YES" > firewall_type="open" > > natd_program="/sbin/natd" > natd_enable="YES" #firewall_enable must also be set to yes > # #and ipdivert must also be in kernel > natd_interface="ed1" > natd_flags="-f /etc/rc.natd" > -------------------------------------- > > and the file rc.natd is long and full of comments, but here's the > relevant section: > -------------------------------------- > ### redirected ports ### > # redirect_port proto tergetIP:targetPORT [aliasIP:]aliasPORT \ > # [remoteIP[:remotePORT]] > # example: redirect_port tcp inside1:telnet 6666 > # means that tcp packets destines for port 6666 on this machine will > be sent > # to the telnet port on the inside1 machine > #redirect_port > redirect_port tcp 10.101.101.33:21 21 #ftp > redirect_port tcp 10.101.101.131:23 23 #telnet > redirect_port tcp 10.101.101.33:25 25 #smtp > redirect_port tcp 10.101.101.33:80 80 #www-tcp > redirect_port udp 10.101.101.33:80 80 #www-udp > redirect_port tcp 10.101.101.33:110 110 #pop3-tcp > redirect_port udp 10.101.101.33:110 110 #pop3-udp > -------------------------------------- > > What am i missing? Why are my redirects not happening? > This is a bug in natd(8). Remove the comments (`#ftp', etc.) at the end of your redirect_port lines and you should be OK. This will be fixed soon. -- Ruslan Ermilov Sysadmin and DBA of the ru@ucb.crimea.ua United Commercial Bank, ru@FreeBSD.org FreeBSD committer, +380.652.247.647 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 0:40:30 1999 Delivered-To: freebsd-questions@freebsd.org Received: from sign.chg.ru (sign.chg.ru [193.233.46.10]) by hub.freebsd.org (Postfix) with ESMTP id 188A115239 for ; Fri, 20 Aug 1999 00:39:36 -0700 (PDT) (envelope-from fbsdmail@sign.chg.ru) Received: from localhost (fbsdmail@localhost) by sign.chg.ru (8.9.2/8.9.2) with ESMTP id LAA95637; Fri, 20 Aug 1999 11:39:06 +0400 (MSD) (envelope-from fbsdmail@sign.chg.ru) Date: Fri, 20 Aug 1999 11:39:06 +0400 (MSD) From: "Andrew L. Neporada" To: Marion Sutcliffe Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Where are kern&mfsroot.flp? In-Reply-To: <3.0.2.32.19990820011732.0079a1a0@pop1.sympatico.ca> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, 20 Aug 1999, Marion Sutcliffe wrote: > Hello, > > Just starting to work up the courage to install freeBSD, and I've got a few > questions that I couldn't find answers for on the freeBSD site... > > - How do I download the kern.flp and mfsroot.flp files - are these on the > freeBSD ftp site somewhere? If you want to install 3.2-RELEASE, try to look at ftp://ftp.freebsd.org/pub/FreeBSD/3.2-RELEASE/floppies > - I've used fips on my single 10.G IDE drive (FAT32, LBA) to create a > partition for Win98 (was already installed) and a second partition for > unix. Do I need do anything to this 2nd partition e.g. format it, or > partition it further before I install? No, nothing special. You have not to create partition for FreeBSD from DOS. Just keep enough free unused space. When you boot from floppy, FreeBSD will create partitions and install boot manager. > - Any known compatability problems with Crystal PnP sound chip (on the > motherboard) or 3D RagePro AGP video card or a Toshiba DVD-ROM SD-M1202? > - I'm using LBA, and my first partition (for Win98) is about 5.5G - will > unix have any problem booting on the 2nd partition? > - About how long would it take to download freeBSD over a 56k modem (in the > wee hours of the morning)? 3.2-RELEASE distribution is about 200M (with sources and X). So it is highly recommended to choose apropriate mirror ;-) > > TIA, Marion > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 0:41:20 1999 Delivered-To: freebsd-questions@freebsd.org Received: from relay.ucb.crimea.ua (relay.ucb.crimea.ua [212.110.138.1]) by hub.freebsd.org (Postfix) with ESMTP id 67923152AA for ; Fri, 20 Aug 1999 00:39:25 -0700 (PDT) (envelope-from ru@ucb.crimea.ua) Received: (from ru@localhost) by relay.ucb.crimea.ua (8.9.3/8.9.3/UCB) id KAA56522; Fri, 20 Aug 1999 10:37:51 +0300 (EEST) (envelope-from ru) Date: Fri, 20 Aug 1999 10:37:51 +0300 From: Ruslan Ermilov To: "Arthur H. Johnson II" Cc: FreeBSD Questions Subject: Re: Natd question. Message-ID: <19990820103751.C44737@relay.ucb.crimea.ua> Mail-Followup-To: "Arthur H. Johnson II" , FreeBSD Questions References: <19990819175256.A42142@relay.ucb.crimea.ua> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.3i In-Reply-To: ; from Arthur H. Johnson II on Thu, Aug 19, 1999 at 11:12:46AM -0400 X-Operating-System: FreeBSD 3.2-STABLE i386 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, Aug 19, 1999 at 11:12:46AM -0400, Arthur H. Johnson II wrote: > I haven't tried yet. I want to IP Masq through one of my FreeBSD Boxes > (former Slackware boxes ;) The only documentation I have seen so far has > only talked about User PPP which I haven't tried yet. I just want to make > sure it works before I try it. > Basicly, there is a ipfirewall(4), divert(4) sockets interface and the libalias(3) library. Natd(8) implements generic IP aliasing, which could be used with any of the network interfaces installed (Ethernet, SLIP, PPP, TUN, etc). Your kernel should be compiled with IPFIREWALL and IPDIVERT options. You should then configure your ipfw(8) to redirect the traffic through divert(4) socket to a natd(8). User-level ppp(8) has this functionality natively. It uses libalias(3) to implement IP aliasing internally, without need to run natd(8) and ipfirewall(4). So, if you will run user-level ppp(8) (highly recommended), use its native IP aliasing feature. In any other case, use natd(8). Cheers, -- Ruslan Ermilov Sysadmin and DBA of the ru@ucb.crimea.ua United Commercial Bank, ru@FreeBSD.org FreeBSD committer, +380.652.247.647 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 1: 4:49 1999 Delivered-To: freebsd-questions@freebsd.org Received: from smtp1.ihug.co.nz (tk1.ihug.co.nz [203.29.160.13]) by hub.freebsd.org (Postfix) with ESMTP id 745FF151E2 for ; Fri, 20 Aug 1999 01:04:43 -0700 (PDT) (envelope-from wji@ihug.co.nz) Received: from ihug.co.nz (p426-tnt4.akl.ihug.co.nz [216.132.189.186]) by smtp1.ihug.co.nz (8.9.3/8.9.3/Debian/GNU) with ESMTP id UAA26240; Fri, 20 Aug 1999 20:04:12 +1200 Message-ID: <37BD1255.2891AA58@ihug.co.nz> Date: Fri, 20 Aug 1999 20:31:17 +1200 From: William James Irwin X-Mailer: Mozilla 4.51 [en] (X11; I; FreeBSD 3.2-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: FreeBSD Questions , 11@ihug.co.nz Subject: Partition maintenance Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi All I've recently run out of space on my freebsd slice. The solution I've thought of is to create a new slice for /usr/local (on e), I also have a seperate slice on another disk drive that contains my /home directory and some swap. So I need to copy /usr/local across, preserving all symbolic links, permissions etc. Would 'tar cf - /usr/local/* | tar xf - /mnt' work? This is of course assuming all new ports install in /usr/local (I've noticed a few install things in /usr/X11R6) I've also thought of creating a new filesystem on another disk for /usr/ports. I have another more important question. I use both Linux and Freebsd (dualbooted). I wish to have the same home directorys on both. This means I either have to use ext2fs or ufs filesystems for the home partition. I have mounted ext2fs from freebsd but I haven't had much luck with mounting a ufs filesystem from linux. Apparantly the FreeBSD slice is meant to look like an extended partition to linux. However this doesn't happen. I suspect that it has something to do with the mark number of the slice. According to linux's fdisk 'a5' is the FreeBSD mark but my freebsd slice is marked with 'b5'. So in summary, what are the merits of sharing a filesystem between these two operating systems. Is ext2fs better supported under freebsd than ufs is under linux? Thanks for your time, Regards -- William James Irwin wji@ihug.co.nz wirw002@cs.auckland.ac.nz To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 1:10: 3 1999 Delivered-To: freebsd-questions@freebsd.org Received: from sign.chg.ru (sign.chg.ru [193.233.46.10]) by hub.freebsd.org (Postfix) with ESMTP id B7D71151E2 for ; Fri, 20 Aug 1999 01:09:28 -0700 (PDT) (envelope-from fbsdmail@sign.chg.ru) Received: from localhost (fbsdmail@localhost) by sign.chg.ru (8.9.2/8.9.2) with ESMTP id MAA95698; Fri, 20 Aug 1999 12:09:14 +0400 (MSD) (envelope-from fbsdmail@sign.chg.ru) Date: Fri, 20 Aug 1999 12:09:13 +0400 (MSD) From: "Andrew L. Neporada" To: John Cc: freebsd-questions@FreeBSD.ORG Subject: Re: inetd & security - some simple questions In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, 20 Aug 1999, John wrote: > Hello list > > A couple of newbie questions: > > [FreeBSD 3.2] > > The machine in question is on a permanent connection. I do not want it > to go down if at all possible. I am enabling certain services one by > one. > > In order to re-read inetd.conf, is it appropriate to kill -1 (inetd > process number)? Will it cause a reboot? > Yes. Sending signal 1 (aka HUP) to daemon will usually cause it to reread config files and will not cause a reboot ;-) > Are there any security issues in enabling talkd? > General rule: you should only run services, that you realy need. If this machine is your server, than I think it is better to disable it. And it is also a good idea to enable inetd logging (inetd -l). > Thanks > -- > John > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 1:17:55 1999 Delivered-To: freebsd-questions@freebsd.org Received: from avarice.riverstyx.net (hq-port-89.harbour-dhcp-pool.infinetgroup.com [207.23.37.89]) by hub.freebsd.org (Postfix) with ESMTP id 9C90A152B7 for ; Fri, 20 Aug 1999 01:17:45 -0700 (PDT) (envelope-from unknown@riverstyx.net) Received: from avarice (unknown@avarice [10.0.0.2]) by avarice.riverstyx.net (8.9.3/8.9.3) with ESMTP id BAA13786; Fri, 20 Aug 1999 01:19:02 -0700 Date: Fri, 20 Aug 1999 01:19:02 -0700 (PDT) From: Tani Hosokawa To: William James Irwin Cc: FreeBSD Questions , 11@ihug.co.nz Subject: Re: Partition maintenance In-Reply-To: <37BD1255.2891AA58@ihug.co.nz> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Just my two cents... I completely trashed a UFS partition from Linux once. That was on a stock 2.0.35 kernel. I dunno what caused it, but I never tried it again. I've heard from other people that UFS support under Linux isn't too hot... On Fri, 20 Aug 1999, William James Irwin wrote: > Hi All > > I've recently run out of space on my freebsd slice. > The solution I've thought of is to create a new slice for > /usr/local (on e), I also have a seperate slice on another > disk drive that contains my /home directory and some swap. > So I need to copy /usr/local across, preserving all > symbolic links, permissions etc. > Would 'tar cf - /usr/local/* | tar xf - /mnt' work? > > This is of course assuming all new ports install in > /usr/local (I've noticed a few install things in /usr/X11R6) > I've also thought of creating a new filesystem on another > disk for /usr/ports. > > I have another more important question. I use both Linux > and Freebsd (dualbooted). I wish to have the same home > directorys on both. This means I either have to use > ext2fs or ufs filesystems for the home partition. > > I have mounted ext2fs from freebsd but I haven't had much > luck with mounting a ufs filesystem from linux. Apparantly > the FreeBSD slice is meant to look like an extended partition > to linux. However this doesn't happen. I suspect that it > has something to do with the mark number of the slice. According to > linux's fdisk 'a5' is the FreeBSD mark but my > freebsd slice is marked with 'b5'. > > So in summary, what are the merits of sharing a filesystem > between these two operating systems. Is ext2fs better > supported under freebsd than ufs is under linux? > > Thanks for your time, > > Regards > > -- > William James Irwin > wji@ihug.co.nz > wirw002@cs.auckland.ac.nz > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > --- tani hosokawa river styx internet To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 1:23:12 1999 Delivered-To: freebsd-questions@freebsd.org Received: from 100mb.100mb.net (gateway.100mb.net [207.230.49.25]) by hub.freebsd.org (Postfix) with ESMTP id 12B5A1513E for ; Fri, 20 Aug 1999 01:23:04 -0700 (PDT) (envelope-from itm@itm.ru) Received: from p100 (c2-xp68.cyberax.ru [195.210.143.68]) by 100mb.100mb.net (8.9.3/8.8.5) with SMTP id DAA25143; Fri, 20 Aug 1999 03:22:06 -0500 Message-ID: <003301beeae5$2c7184c0$3948fea9@p100> From: "Andrew Yakubovich" To: Cc: Subject: RIPN database access authentication violation. Date: Fri, 20 Aug 1999 12:22:02 +0400 MIME-Version: 1.0 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: 8bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 4.72.3110.1 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3110.3 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ÷ÎÉÍÁÎÉÅ ! ó ÜÌÅËÔÒÏÎÎÏÇÏ ÁÄÒÅÓÁ : timson ÂÙÌÁ ÐÒÏÉÚ×ÅÄÅÎÁ ÎÅÓÁÎËÃÉÏÎÉÒÏ×ÁÎÎÁÑ ÐÏÐÙÔËÁ ÐÏÌÕÞÅÎÉÑ ÉÎÆÏÒÍÁÃÉÉ Ï ÏÂ'ÅËÔÅ TI-MNT-RIPN. ðÒÏÛÕ ÏÂ'ÑÓÎÉÔØ ÐÒÉÞÉÎÕ. TI-MNT-RIPN To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 1:29:55 1999 Delivered-To: freebsd-questions@freebsd.org Received: from piper.kspu.kr.ua (piper.kspu.kr.ua [195.5.1.122]) by hub.freebsd.org (Postfix) with ESMTP id 6F0081513E; Fri, 20 Aug 1999 01:29:47 -0700 (PDT) (envelope-from john@piper.kspu.kr.ua) Received: (from john@localhost) by piper.kspu.kr.ua (8.9.3/8.9.3) id LAA15662; Fri, 20 Aug 1999 11:28:46 +0300 (EEST) Date: Fri, 20 Aug 1999 11:28:46 +0300 From: John Savitsky To: mbermal@ucsd.edu, freebsd-multimedia@freebsd.org, shocking@prth.pgs.com, freebsd-questions@freebsd.org Subject: Re: Can't get Quake2 MesaGL working Message-ID: <19990820112846.A15606@kspu.kr.ua> References: Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-u X-Mailer: Mutt 0.95.6i In-Reply-To: ; from Mark Bermal on Fri, Aug 20, 1999 at 12:26:04AM -0700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, Aug 20, 1999 at 12:26:04AM -0700, Mark Bermal wrote: > I don't know why this happens (maybe somebody else can explain it), but it > seems that to use some Linux OpenGL apps you have to use the linux OpenGL > library (libGL.so). I have a TNT w/ 16 megs of RAM, and I got q3test I tried both, linux and FreeBSD versions of this library. With Linux version I get rnadom screen blinking (this is not the lost sync. of display, but random lines and rectangles drawing on the X, the mouse cursor drawn correctly when I'm pressing ~ and typing-in "quit") on Q3Test and Segmantation fault on Quake2. With FreeBSD library, I get undefined symbol __sF. :-( The hardware is: P-II 400, 384M RAM, Asus P2B-S w/Adaptec7890 and AsusV3400TNT both on 9 IRQ (might it be the problem?), 2xIBM DDRS-34560. Also, I added these lines in the /etc/make.conf to reach maximum optimization when compiling kernel and other stuff: CFLAGS= -fexpensive-optimization -fomit-frame-pionter -O2 -pipe COPTFLAGS= -fexpensive-optimization -fomit-frame-pionter -O2 -pipe > everything worked. I suppose a good idea is to put that libGL.so in > /compat/linux/usr/X11R6/lib/ directory and run ldconfig. The basic idea > though is that your OpenGL library has to be the linux shared library > (libGL.so). Done. -- Sincerely yours, John Savitsky To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 1:31:15 1999 Delivered-To: freebsd-questions@freebsd.org Received: from storm.FreeBSD.org.uk (storm.freebsd.org.uk [194.242.128.198]) by hub.freebsd.org (Postfix) with ESMTP id 41B2E1513E for ; Fri, 20 Aug 1999 01:31:12 -0700 (PDT) (envelope-from brian@Awfulhak.org) Received: from keep.lan.Awfulhak.org (root@localhost [127.0.0.1]) by storm.FreeBSD.org.uk (8.9.3/8.9.3) with ESMTP id JAA98253; Fri, 20 Aug 1999 09:31:10 +0100 (BST) (envelope-from brian@Awfulhak.org) Received: from keep.lan.Awfulhak.org (brian@localhost.lan.Awfulhak.org [127.0.0.1]) by keep.lan.Awfulhak.org (8.9.3/8.9.3) with ESMTP id JAA00599; Fri, 20 Aug 1999 09:05:07 +0100 (BST) (envelope-from brian@keep.lan.Awfulhak.org) Message-Id: <199908200805.JAA00599@keep.lan.Awfulhak.org> X-Mailer: exmh version 2.0.2 2/24/98 To: Parker Brown Cc: Tech Support Subject: Re: ppp: Can No Longer Complete Login To Internet In-reply-to: Your message of "Wed, 18 Aug 1999 13:56:27 PDT." <37BB1DFB.87FBAFCD@gte.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Fri, 20 Aug 1999 09:05:06 +0100 From: Brian Somers Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > This is new, and I can't recall any changes I've made to cause this. > > In ppp, after the adtd9999999 I get the usual "Connect 49333......" and > the the Login and Password prompts. As usual this gives me the > "Entering PPP...." statement, an IP address, and the the usual "MTU > 1524." > > All this is normal, but usually at this point I *always* have to press > enter (again) before the process is completed and the ppp prompt changes > to PPP. But now, it just hangs. No matter how many times I press > enter, it doesn't respond. Getting out of term (by entering ~.) just > hangs at that point, and I have to completely shut ppp down before > trying - unsuccessfully today - again. > > Can anyone help? What happens if you do ``~p'' instead of ``~.'' ? > PB -- Brian Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 2:21:56 1999 Delivered-To: freebsd-questions@freebsd.org Received: from drawbridge.ascend.com (drawbridge.ascend.com [198.4.92.1]) by hub.freebsd.org (Postfix) with ESMTP id 4669C14E1A for ; Fri, 20 Aug 1999 02:21:49 -0700 (PDT) (envelope-from mcwong@ascend.com) Received: from fw-ext.ascend.com (fw-ext [198.4.92.5]) by drawbridge.ascend.com (8.9.1a/8.9.1) with SMTP id CAA12386; Fri, 20 Aug 1999 02:14:59 -0700 (PDT) From: mcwong@ascend.com Received: from russet.ascend.com by fw-ext.ascend.com via smtpd (for drawbridge.ascend.com [198.4.92.1]) with SMTP; 20 Aug 1999 09:19:37 UT Received: from colton.ascend.com (colton.ascend.com [192.207.23.40]) by russet.ascend.com (8.9.1a/8.9.1) with SMTP id CAA06104; Fri, 20 Aug 1999 02:19:36 -0700 (PDT) Received: by colton.ascend.com(Lotus SMTP MTA Internal build v4.6.2 (651.2 6-10-1998)) id 882567D3.0033232A ; Fri, 20 Aug 1999 02:18:33 -0700 X-Lotus-FromDomain: ASCEND To: Ben Smithurst Cc: Doug , questions@freebsd.org Message-ID: <882567D2.00828B66.00@colton.ascend.com> Date: Fri, 20 Aug 1999 09:49:16 +1000 Subject: Re: Safe upgrade from 2.2.5 --> 3.2 ? Mime-Version: 1.0 Content-type: text/plain; charset=us-ascii Content-Disposition: inline Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Ok, Let me get this correct then. The steps for me should then be: 1) get 2.2.8 src for my 2.2.5 system make world reboot Are there any significant changes such as /etc/* stuff in 2.2.8 that requires mergemaster when doing this round of upgrade ? 2) On 2.2.8, get 3.2 src and follow the instruction on the web. mergemaster make upgrade reboot Is that correct ? I will properly document all the steps after my upgrade and should it be successful and send it to the list for others. Regards, MCW Ben Smithurst on 08/20/99 07:36:21 AM To: Doug cc: MC Wong/Ascend/US, questions@freebsd.org Subject: Re: Safe upgrade from 2.2.5 --> 3.2 ? Doug wrote: > Specifically, you should not try to upgrade from 2.2.5 straight to > 3.2-Stable since I've seen people run into trouble with a system older > than 2.2.6. Ah, sorry. I thought the differences between 2.2.5 and 2.2.6 wouldn't be much compared to the differences between 2.2.6 and 3.2. Evidently they are too much :-) -- Ben Smithurst | PGP: 0x99392F7D ben@scientia.demon.co.uk | key available from keyservers and | ben+pgp@scientia.demon.co.uk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 2:23:43 1999 Delivered-To: freebsd-questions@freebsd.org Received: from nowcool.dhs.org (FX3-1-119.mgfairfax.rr.com [24.28.200.119]) by hub.freebsd.org (Postfix) with ESMTP id 99CF914E1A; Fri, 20 Aug 1999 02:23:38 -0700 (PDT) (envelope-from question@nowcool.dhs.org) Received: from localhost (question@localhost) by nowcool.dhs.org (8.9.3/8.9.3) with ESMTP id FAA00917; Fri, 20 Aug 1999 05:20:03 -0400 (EDT) (envelope-from question@nowcool.dhs.org) Date: Fri, 20 Aug 1999 05:20:03 -0400 (EDT) From: Byung Yang To: John Savitsky Cc: freebsd-questions@FreeBSD.ORG, freebsd-emulation@FreeBSD.ORG Subject: Re: Can't get Quake2 MesaGL working In-Reply-To: <19990820094814.A15210@kspu.kr.ua> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG The solution is very simple. Did you know that Quake2 is Linux binary?? Does that ring you a bell? goto www.nvidia.com and get linux driver from the site and use linux version of libGL.so.1 That should do it. Byung Yang On Fri, 20 Aug 1999, John Savitsky wrote: > Hi! > > I have a 3.2 installed and nVIDIA RIVA TNT card w/ 8M onboard. > > I've made those steps that jkh wrote in the freebsdzine for getting working > TNT under FreeBSD. Mesa3 demos works just fine. But I can't get Quake2 (and > Q3Test) working. Every time I get similar errors: > > [cut here] > > [root@trident:/usr/games/quake2]# ./quake2 +set vid_ref glx +set gl_driver libGL.so.1 > Added packfile ./baseq2/pak0.pak (3307 files) > Added packfile ./baseq2/pak1.pak (279 files) > Added packfile ./baseq2/pak2.pak (2 files) > execing default.cfg > execing config.cfg > Console initialized. > > ------- sound initialization ------- > /dev/dsp: Invalid argument > Could not open /dev/dsp > ------- Loading ref_glx.so ------- > ref_gl version: GL 0.01 > ./quake2: can't resolve symbol '__sF' > Unable to resolve symbol > ref_gl::R_Init() - could not load "libGL.so.1" > > [cut here] > > The same error (can't find __sF symbol) is in the Q3Test. > > Any ideas? > > -- > Sincerely yours, John Savitsky To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 2:36:50 1999 Delivered-To: freebsd-questions@freebsd.org Received: from nowcool.dhs.org (FX3-1-119.mgfairfax.rr.com [24.28.200.119]) by hub.freebsd.org (Postfix) with ESMTP id AFDA615339; Fri, 20 Aug 1999 02:36:43 -0700 (PDT) (envelope-from question@nowcool.dhs.org) Received: from localhost (question@localhost) by nowcool.dhs.org (8.9.3/8.9.3) with ESMTP id FAA01045; Fri, 20 Aug 1999 05:36:09 -0400 (EDT) (envelope-from question@nowcool.dhs.org) Date: Fri, 20 Aug 1999 05:36:09 -0400 (EDT) From: Byung Yang To: John Savitsky Cc: mbermal@ucsd.edu, freebsd-multimedia@FreeBSD.ORG, shocking@prth.pgs.com, freebsd-questions@FreeBSD.ORG Subject: Re: Can't get Quake2 MesaGL working In-Reply-To: <19990820112846.A15606@kspu.kr.ua> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I used LInux version of libGL (from nvidia.com) and just ran quake3. Works perfectly fine.. I am running 4.0 current with graphics blaster(riva TNT 16M sdram) as long ias it's TNT chipset, it should work. Byung Yang On Fri, 20 Aug 1999, John Savitsky wrote: > On Fri, Aug 20, 1999 at 12:26:04AM -0700, Mark Bermal wrote: > > I don't know why this happens (maybe somebody else can explain it), but it > > seems that to use some Linux OpenGL apps you have to use the linux OpenGL > > library (libGL.so). I have a TNT w/ 16 megs of RAM, and I got q3test > > I tried both, linux and FreeBSD versions of this library. With Linux > version I get rnadom screen blinking (this is not the lost sync. of display, > but random lines and rectangles drawing on the X, the mouse cursor drawn > correctly when I'm pressing ~ and typing-in "quit") on Q3Test and > Segmantation fault on Quake2. With FreeBSD library, I get undefined symbol > __sF. :-( > > The hardware is: P-II 400, 384M RAM, Asus P2B-S w/Adaptec7890 and AsusV3400TNT both on 9 IRQ (might it be the problem?), 2xIBM DDRS-34560. > > Also, I added these lines in the /etc/make.conf to reach maximum > optimization when compiling kernel and other stuff: > CFLAGS= -fexpensive-optimization -fomit-frame-pionter -O2 -pipe > COPTFLAGS= -fexpensive-optimization -fomit-frame-pionter -O2 -pipe > > > everything worked. I suppose a good idea is to put that libGL.so in > > /compat/linux/usr/X11R6/lib/ directory and run ldconfig. The basic idea > > though is that your OpenGL library has to be the linux shared library > > (libGL.so). > > Done. > > -- > Sincerely yours, John Savitsky > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 2:50:11 1999 Delivered-To: freebsd-questions@freebsd.org Received: from gaia.euronet.nl (gaia.euronet.nl [194.134.0.10]) by hub.freebsd.org (Postfix) with ESMTP id 9F52414E1A for ; Fri, 20 Aug 1999 02:50:06 -0700 (PDT) (envelope-from freebsd-questions@scc.nl) Received: from mail.scc.nl (i412.ztm.euronet.nl [194.134.67.133]) by gaia.euronet.nl (8.8.8/8.8.8) with ESMTP id LAA26202 from for ; Fri, 20 Aug 1999 11:50:00 +0200 (MET DST) Received: (from daemon@localhost) by mail.scc.nl (8.9.3/8.9.3) id LAA54022 for questions@FreeBSD.ORG; Fri, 20 Aug 1999 11:44:49 +0200 (CEST) (envelope-from freebsd-questions@scc.nl) Received: from GATEWAY by scones.sup.scc.nl with netnews for questions@FreeBSD.ORG (questions@FreeBSD.ORG) To: questions@FreeBSD.ORG Date: Fri, 20 Aug 1999 11:44:49 +0200 From: Marcel Moolenaar Message-ID: <37BD2391.524493CF@scc.nl> Organization: SCC vof Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit References: <19990820094814.A15210@kspu.kr.ua> Subject: Re: Can't get Quake2 MesaGL working Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG John Savitsky wrote: > I've made those steps that jkh wrote in the freebsdzine for getting working > TNT under FreeBSD. Mesa3 demos works just fine. But I can't get Quake2 (and > Q3Test) working. Every time I get similar errors: > > ./quake2: can't resolve symbol '__sF' > > The same error (can't find __sF symbol) is in the Q3Test. Do you have LD_LIBRARY_PATH set? -- Marcel Moolenaar mailto:marcel@scc.nl SCC Internetworking & Databases http://www.scc.nl/ Amsterdam, The Netherlands tel: +31 20 4200655 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 3: 8:31 1999 Delivered-To: freebsd-questions@freebsd.org Received: from amanda.swlct.sthames.nhs.uk (hide14.nhs.uk [194.6.81.14]) by hub.freebsd.org (Postfix) with ESMTP id 0BBAE15334 for ; Fri, 20 Aug 1999 03:08:18 -0700 (PDT) (envelope-from Greg@swlct.sthames.nhs.uk) Received: from greg (qmh-00553.qmpgmc.ac.uk [10.1.20.82]) by amanda.swlct.sthames.nhs.uk (8.9.3/8.9.3) with SMTP id LAA08069 for ; Fri, 20 Aug 1999 11:03:11 +0100 (BST) Message-ID: <011401beeaf3$7f892740$5214010a@qmpgmc.ac.uk> Reply-To: "Greg Quinlan" From: "Greg Quinlan" To: Subject: gcc - COFF binaries? Date: Fri, 20 Aug 1999 11:05:14 +0100 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-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Anyone: Does "gcc" support COFF (can produce - common object file format) binaries? I could only see COFF mentioned in reference to "gdb" If so what are the command line options? Thanks Greg To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 3:39:44 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail.netwing.at (mail.netwing.at [194.93.77.21]) by hub.freebsd.org (Postfix) with ESMTP id EC5E915362 for ; Fri, 20 Aug 1999 03:39:40 -0700 (PDT) (envelope-from saw@netwing.at) Received: from wolfgang (ntmd.officew.netwing.at [192.168.52.52]) by mail.netwing.at (8.9.3/8.9.3) with SMTP id MAA27575 for ; Fri, 20 Aug 1999 12:38:07 +0200 Message-ID: <000801beeaf8$3c9c0740$3434a8c0@wolfgang> From: "SAW" To: Subject: Problem Riscom N2 Date: Fri, 20 Aug 1999 12:39:09 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 4.72.3110.1 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3110.3 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I used a Riscom N2 Card without any Problems in a FreeBSD 2.2.8 machine. Since I upgraded to 3.2 I get the Message down event, taking interface sr0 down. Ther was no problem in compiling the Kernel The card is recoginzed correctly and all Configurations ar the same as on 2.2.8 Wolfgang Samsinger To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 3:40:43 1999 Delivered-To: freebsd-questions@freebsd.org Received: from gate.ldn.wdr.com (gate.ldn.wdr.com [193.82.179.18]) by hub.freebsd.org (Postfix) with ESMTP id 5402015340 for ; Fri, 20 Aug 1999 03:40:40 -0700 (PDT) (envelope-from Clem.Dye@wdr.com) Received: (from smap@localhost) by gate.ldn.wdr.com (8.8.8/8.8.8) id LAA21615; Fri, 20 Aug 1999 11:40:38 +0100 (BST) From: Clem.Dye@wdr.com Received: from inside(192.168.0.1) by gate via smap (V2.0) id xma021537; Fri, 20 Aug 1999 11:40:32 +0100 Received: from ln4p1129.ldn.swissbank.com (ln4p1129.ldn.swissbank.com [172.16.234.32]) by ln4p1013pos.ldn.swissbank.com (8.8.8/8.8.8) with ESMTP id LAA28588; Fri, 20 Aug 1999 11:40:29 +0100 (BST) Received: from localhost (root@localhost) by ln4p1129.ldn.swissbank.com (8.8.6 (PHNE_14041)/8.8.6/WDR alpha evision: 1.7 $) with SMTP id LAA24041; Fri, 20 Aug 1999 11:40:28 +0100 (BST) X-OpenMail-Hops: 1 Date: Fri, 20 Aug 1999 11:40:15 +0100 Message-Id: Subject: RE: Re: Fixit from CD rom no more? Says disk 2 is Alpha dist. MIME-Version: 1.0 To: francisco@natserv.com, grog@lemis.com Cc: questions@FreeBSD.ORG Content-Type: text/plain; charset=US-ASCII; name="BDY.TXT" Content-Disposition: inline; filename="BDY.TXT" Content-Transfer-Encoding: 7bit X-Processed-By: BrianWare hpomsmf V2.3.40, 19 May 1999 X-WDR-Disclaimer: Version $Revision: 1.13 $ Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG OK, if it's broken, what workarounds are there, if any? Clem -----Original Message----- From: grog Sent: 20 August 1999 05:37 To: francisco Cc: grog; questions Subject: Re: Fixit from CD rom no more? Says disk 2 is Alpha dist. On Friday, 20 August 1999 at 0:21:32 -0400, Francisco Reyes wrote: > I just trie to run the "fixit" option from the Install disk. > When it asked for the second disk and I placed it, it said that > this was the "Alpha Distribution CD". > > How can I run Fixit from CD? > .. or will I have to prepare floppies? > > The archives have the same question, but did not find an answer. Unfortunately, this was an oversight in making the CD-ROMs. You won't be able to mount the CD-ROM in fixit mode in 3.2. It worked in 3.1, and it should work again in 3.3, but 3.2 fixit is broken. Greg -- When replying to this message, please copy the original recipients. For more information, see http://www.lemis.com/questions.html See complete headers for address, home page and phone numbers finger grog@lemis.com for PGP public key To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message This message contains confidential information and is intended only for the individual named. If you are not the named addressee you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately by e-mail if you have received this e-mail by mistake and delete this e-mail from your system. E-mail transmission cannot be guaranteed to be secure or error-free as information could be intercepted, corrupted, lost, destroyed, arrive late or incomplete, or contain viruses. The sender therefore does not accept liability for any errors or omissions in the contents of this message which arise as a result of e-mail transmission. If verification is required please request a hard-copy version. This message is provided for informational purposes and should not be construed as a solicitation or offer to buy or sell any securities or related financial instruments. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 3:45:34 1999 Delivered-To: freebsd-questions@freebsd.org Received: from scientia.demon.co.uk (scientia.demon.co.uk [212.228.14.13]) by hub.freebsd.org (Postfix) with ESMTP id A3EF414DDF for ; Fri, 20 Aug 1999 03:45:29 -0700 (PDT) (envelope-from ben@scientia.demon.co.uk) Received: from lithium.scientia.demon.co.uk ([192.168.0.3] ident=exim) by scientia.demon.co.uk with esmtp (Exim 3.024 #3) id 11Hm4C-000Eqj-00; Fri, 20 Aug 1999 11:38:36 +0100 Received: (from ben) by lithium.scientia.demon.co.uk (Exim 3.024 #3) id 11Hm4A-0004BW-00; Fri, 20 Aug 1999 11:38:34 +0100 Date: Fri, 20 Aug 1999 11:38:34 +0100 From: Ben Smithurst To: "Korchagin, Dmitry" Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Deadless file Message-ID: <19990820113834.B16062@lithium.scientia.demon.co.uk> References: <000f01beeade$f28515c0$0201a8c0@sting.grata.hippo.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.6i In-Reply-To: <000f01beeade$f28515c0$0201a8c0@sting.grata.hippo.ru> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Korchagin, Dmitry wrote: > I have created file with name "-z" in mistake and can't remove it. > > $ ls > -z > $ rm -z > rm: illegal option -- z > > How can I remove such files? This is answered in the Unix FAQ, posted regularly to comp.answers. I suggest you read it, it contains useful information. Anyway, just do `rm ./-z' or `rm -- -z' so that rm doesn't treat `-z' as a flag. This works for many other things. The first form is probably more portable since it doesn't rely on the program knowing about the `--' separator. -- Ben Smithurst | PGP: 0x99392F7D ben@scientia.demon.co.uk | key available from keyservers and | ben+pgp@scientia.demon.co.uk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 3:45:34 1999 Delivered-To: freebsd-questions@freebsd.org Received: from scientia.demon.co.uk (scientia.demon.co.uk [212.228.14.13]) by hub.freebsd.org (Postfix) with ESMTP id BB0FA14DF4 for ; Fri, 20 Aug 1999 03:45:30 -0700 (PDT) (envelope-from ben@scientia.demon.co.uk) Received: from lithium.scientia.demon.co.uk ([192.168.0.3] ident=exim) by scientia.demon.co.uk with esmtp (Exim 3.024 #3) id 11Hm18-000Eqh-00; Fri, 20 Aug 1999 11:35:26 +0100 Received: (from ben) by lithium.scientia.demon.co.uk (Exim 3.024 #3) id 11Hm15-0004BL-00; Fri, 20 Aug 1999 11:35:23 +0100 Date: Fri, 20 Aug 1999 11:35:23 +0100 From: Ben Smithurst To: kelvin Liu Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Mail server error msg Message-ID: <19990820113523.A16062@lithium.scientia.demon.co.uk> References: <37BCAF9C.2FE46627@taipingcarpets.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.6i In-Reply-To: <37BCAF9C.2FE46627@taipingcarpets.com> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kelvin Liu wrote: > ... while talking to mail.itinera.be.: >>>> HELO unix.taipingcarpets.com > <<< 500 Failed to look up peer in DNS This probably means either the remote server couldn't find unix.taipingcarpets.com in the DNS, or it couldn't find the reverse lookup record for your server's IP address. Either way, you need to fix your DNS. -- Ben Smithurst | PGP: 0x99392F7D ben@scientia.demon.co.uk | key available from keyservers and | ben+pgp@scientia.demon.co.uk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 3:58:43 1999 Delivered-To: freebsd-questions@freebsd.org Received: from twwells.com (twwells.com [209.118.236.57]) by hub.freebsd.org (Postfix) with SMTP id 5703314DDF for ; Fri, 20 Aug 1999 03:58:40 -0700 (PDT) (envelope-from news@twwells.com) Received: from news by twwells.com with local (Exim 1.71 #2) id 11HmI9-000KoW-00; Fri, 20 Aug 1999 06:53:01 -0400 From: bill@twwells.com (T. William Wells) To: freebsd-questions@freebsd.org Subject: Re: ftp hangs during install Message-ID: <7pjbq7$2doo$1@twwells.com> References: <014301beea52$0608a400$d152c9c2@SLS.CO.UK> Date: Fri, 20 Aug 1999 06:53:01 -0400 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In article <014301beea52$0608a400$d152c9c2@SLS.CO.UK>, Graham Woodruff wrote: : 1. Set up 'basic' 486/25 with 2*130Mb disks, 8Mb and DEC DE101 (DEPCA) IRQ5 Add more memory. Installs don't generally work with 8M, though the system will run just fine. While a few people have reported success with 8M, there've been far more failure reports.... No clue on the other problems. You might want to check to see if there are any interesting messages in the syslog. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 5:11:25 1999 Delivered-To: freebsd-questions@freebsd.org Received: from ns.icsmedia.de (ns.icsmedia.de [194.77.108.1]) by hub.freebsd.org (Postfix) with ESMTP id 1A07A150B1 for ; Fri, 20 Aug 1999 05:11:21 -0700 (PDT) (envelope-from fr@icsmedia.de) Received: (from root@localhost) by ns.icsmedia.de (8.9.3/8.9.3) id OAA19849; Fri, 20 Aug 1999 14:11:20 +0200 (MET DST) Received: from kiel (kiel.icsmedia.de [212.101.192.146]) by ns.icsmedia.de (8.9.3/8.9.3) with SMTP id OAA19846 for ; Fri, 20 Aug 1999 14:11:19 +0200 (MET DST) From: Frank Rocholl To: Subject: Strange characters of "last" after upgrade to 3.2 Release Date: Fri, 20 Aug 1999 14:11:32 +0200 Message-ID: <01BACE0D6FA9D21198CC00A0C94D131D0FF7C2@note.icsmedia.de> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit 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-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, I´ve upgrade last night my FreeBSD-2.2.2 to FreeBSD-2.2.8 and finally to FreeBSD-3.2 via the binary method. Now there is a strange behaviour of the "w" and "last" commands. For example the output of last looks like: vx3.tel^z(^}7ttyp ppp-1-5. 4 Sat Jul 23 16:58 still logged in ppp-1-5.cvx3.tel ftp A'^}7ftp80296 Thu Jan 1 01:00 still logged in frro ttyp3 media.deu"^}7ftp8 Fri Oct 30 04:27 still logged in ttyp3 a.deI ^}7 Fri Aug 20 11:30 still logged in Any hints? Thanks Frank --- ICSmedia GmbH Soester Strasse 13 Tel.: +49 251 6060-0 mail: info@icsmedia.net 48155 Muenster (Germany) Fax.: +49 251 6060-190 http: www.icsmedia.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 5:39:50 1999 Delivered-To: freebsd-questions@freebsd.org Received: from vax1.baker.ie (VAX1.baker.IE [194.125.50.91]) by hub.freebsd.org (Postfix) with SMTP id 0FE2A15356 for ; Fri, 20 Aug 1999 05:39:44 -0700 (PDT) (envelope-from cillian@baker.ie) Received: from baker.ie ([194.125.50.55]) by vax1.baker.ie with ESMTP; Fri, 20 Aug 1999 13:44:21 +0100 Message-ID: <37BD5734.B3419BAE@baker.ie> Date: Fri, 20 Aug 1999 14:25:08 +0100 From: Cillian Sharkey X-Mailer: Mozilla 4.51 [en] (X11; I; FreeBSD 3.2-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: Frank Rocholl Cc: questions@freebsd.org Subject: Re: Strange characters of "last" after upgrade to 3.2 Release References: <01BACE0D6FA9D21198CC00A0C94D131D0FF7C2@note.icsmedia.de> Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > I´ve upgrade last night my FreeBSD-2.2.2 to FreeBSD-2.2.8 and > finally to > FreeBSD-3.2 via the binary method. > Now there is a strange behaviour of the "w" and "last" commands. > For example the output of last looks like: > vx3.tel^z(^}7ttyp ppp-1-5. 4 Sat Jul 23 16:58 > still logged in > ppp-1-5.cvx3.tel ftp A'^}7ftp80296 Thu Jan 1 01:00 > still logged in > frro ttyp3 media.deu"^}7ftp8 Fri Oct 30 04:27 > still logged in > ttyp3 a.deI ^}7 Fri Aug 20 11:30 > still logged in read the following file: /usr/src/tools/3.0-upgrade/README basically the format of the utmp element in the wtmp file changed in 3.0+ there's a c program there that will convert your old ones (or you could just nuke them :) Regards, Cillian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 6: 2:13 1999 Delivered-To: freebsd-questions@freebsd.org Received: from kot.ne.mediaone.net (kot.ne.mediaone.net [24.218.15.190]) by hub.freebsd.org (Postfix) with ESMTP id 08FC114D9F for ; Fri, 20 Aug 1999 06:02:05 -0700 (PDT) (envelope-from mi@aldan.algebra.com) Received: from guest.newton (guest.newton [10.10.0.3]) by kot.ne.mediaone.net (8.9.3/8.9.1) with ESMTP id JAA66548 for ; Fri, 20 Aug 1999 09:00:36 -0400 (EDT) From: Mikhail Teterin X-Relay-IP: 10.10.0.3 Received: (from mi@localhost) by guest.newton (8.9.3/8.9.1) id IAA61793 for questions@freebsd.org; Fri, 20 Aug 1999 08:59:37 -0400 (EDT) Message-Id: <199908201259.IAA61793@guest.newton> Subject: can the dumpon be the same as swapon? To: questions@freebsd.org Date: Fri, 20 Aug 1999 08:59:37 -0400 (EDT) X-Face: %UW#n0|w>ydeGt/b@1-.UFP=K^~-:0f#O:D7w hJ5G_<5143Bb3kOIs9XpX+"V+~$adGP:J|SLieM31VIhqXeLBli"; Fri, 20 Aug 1999 07:14:55 -0700 (PDT) (envelope-from fr@icsmedia.de) Received: (from root@localhost) by ns.icsmedia.de (8.9.3/8.9.3) id QAA26949; Fri, 20 Aug 1999 16:14:31 +0200 (MET DST) Received: from lab (lab.icsmedia.de [212.101.192.250]) by ns.icsmedia.de (8.9.3/8.9.3) with SMTP id QAA26946 for ; Fri, 20 Aug 1999 16:14:31 +0200 (MET DST) From: Frank Rocholl Reply-To: To: Subject: RE: Strange characters of "last" after upgrade to 3.2 Release Date: Fri, 20 Aug 1999 15:14:44 +0100 Message-ID: <01BACE0D6FA9D21198CC00A0C94D131D0FF7C3@note.icsmedia.de> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook 8.5, Build 4.71.2173.0 Importance: Normal In-Reply-To: <01BACE0D6FA9D21198CC00A0C94D131D1651F1@note.icsmedia.de> X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3110.3 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, >> I´ve upgrade last night my FreeBSD-2.2.2 to FreeBSD-2.2.8 and >> finally to >> FreeBSD-3.2 via the binary method. >> Now there is a strange behaviour of the "w" and "last" commands. >> For example the output of last looks like: >> vx3.tel^z(^}7ttyp ppp-1-5. 4 Sat Jul 23 16:58 >> still logged in > read the following file: > /usr/src/tools/3.0-upgrade/README > basically the format of the utmp element in the wtmp file changed in 3.0+ > there's a c program there that will convert your old ones > (or you could just nuke them :) The Problem ist not the format of the old (from 2.2.2) entries of the wtmp and utmp. The new ones (from 3.2) are corrupt!! Regards, Frank P.S I´ve also set the size of wtmp and utmp to zero but without success To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 7:30: 7 1999 Delivered-To: freebsd-questions@freebsd.org Received: from weeble.dyndns.org (ubppp233-174.dialin.buffalo.edu [128.205.233.174]) by hub.freebsd.org (Postfix) with ESMTP id 3AD3215362 for ; Fri, 20 Aug 1999 07:29:59 -0700 (PDT) (envelope-from cjm2@earthling.net) Received: from shithead (shithead.weeble.dyndns.org [10.0.0.2]) by weeble.dyndns.org (8.9.3/8.9.3) with SMTP id KAA01334 for ; Fri, 20 Aug 1999 10:28:44 -0400 (EDT) (envelope-from cjm2@earthling.net) Message-ID: <006a01beeb18$4e847a80$0200000a@weeble.dyndns.org> From: "Christopher J Michaels" To: "FreeBSD Questions" Subject: wd3: reverting to PIO mode reading fsbn 0 (status 51 error 84) Date: Fri, 20 Aug 1999 10:28:43 -0400 Organization: WCC MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit 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-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Can someone tell me what this error means? I think I have an idea but would like the opinion of someone a bit more knowledgeable than I. wd3: reverting to PIO mode reading fsbn 0 (status 51 error 84) Here is, what I believe to be, the relevant information from dmesg: ====== > wdc0 at 0x1f0-0x1f7 irq 14 flags 0xa0ffa0ff on isa > wdc0: unit 0 (wd0): , DMA, 32-bit, multi-block-16 > wd0: 1888MB (3866940 sectors), 4092 cyls, 15 heads, 63 S/T, 512 B/S > wdc0: unit 1 (atapi): , removable, intr, dma, iordis > acd0: drive speed 1377KB/sec, 256KB cache > acd0: supported read types: CD-DA > acd0: Audio: play, 255 volume levels > acd0: Mechanism: ejectable tray > acd0: Medium: no/blank disc inside, unlocked > wdc1 at 0x170-0x177 irq 15 flags 0xa0ffa0ff on isa > wdc1: unit 0 (wd2): , DMA, 32-bit, multi-block-32 > wd2: 5006MB (10253250 sectors), 10850 cyls, 15 heads, 63 S/T, 512 B/S > wdc1: unit 1 (wd3): , DMA, 32-bit, multi-block-16 > wd3: 9787MB (20044080 sectors), 19885 cyls, 16 heads, 63 S/T, 512 B/S ====== Also, I just noticed that wd0 is listed as 1888 MB in size. It's actual a 6400MB drive, and is being used as such by vinum, should I worry about this at all? (it used to be reported properly). thanks, Chris To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 7:48:53 1999 Delivered-To: freebsd-questions@freebsd.org Received: from adsl-216-102-203-44.dsl.snfc21.pacbell.net (adsl-216-102-203-44.dsl.snfc21.pacbell.net [216.102.203.44]) by hub.freebsd.org (Postfix) with ESMTP id C1FBF150FF for ; Fri, 20 Aug 1999 07:48:50 -0700 (PDT) (envelope-from bri@sonicboom.org) Received: from localhost (bri@localhost) by adsl-216-102-203-44.dsl.snfc21.pacbell.net (8.9.3/8.9.3) with ESMTP id HAA48308 for ; Fri, 20 Aug 1999 07:48:38 -0700 (PDT) (envelope-from bri@sonicboom.org) Date: Fri, 20 Aug 1999 07:48:37 -0700 (PDT) From: Brian X-Sender: bri@adsl-216-102-203-44.dsl.snfc21.pacbell.net To: freebsd-questions@freebsd.org Subject: minimal install Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I just did a minimal install, selevting the box to be an nfs client. Heres some dirt on that. % df Filesystem 1K-blocks Used Avail Capacity Mounted on /dev/wd0s1a 39647 19019 17457 52% / /dev/wd0s1f 3611935 53669 3269312 2% /usr /dev/wd0s1e 19815 1168 17062 6% /var procfs 4 4 0 100% /proc PID USERNAME PRI NICE SIZE RES STATE TIME WCPU CPU COMMAND 100 root 2 0 820K 524K select 0:00 0.00% 0.00% syslogd 272 bri 18 0 456K 332K pause 0:00 0.00% 0.00% csh 277 bri 28 0 1556K 884K RUN 0:00 0.00% 0.00% top 149 root 2 0 888K 596K select 0:00 0.00% 0.00% inetd 271 root 2 0 888K 644K select 0:00 0.00% 0.00% telnetd 152 root 10 0 980K 588K nanslp 0:00 0.00% 0.00% cron 156 root 2 0 1308K 936K select 0:00 0.00% 0.00% sendmail 1 root 10 0 420K 268K wait 0:00 0.00% 0.00% init 235 root 3 0 824K 568K ttyin 0:00 0.00% 0.00% getty 206 root 3 0 824K 560K ttyin 0:00 0.00% 0.00% getty 205 root 3 0 824K 560K ttyin 0:00 0.00% 0.00% getty 109 daemon 2 0 820K 384K select 0:00 0.00% 0.00% portmap 35 root 18 0 204K 84K pause 0:00 0.00% 0.00% adjkerntz 122 root 10 0 208K 76K nfsidl 0:00 0.00% 0.00% nfsiod 123 root 10 0 208K 76K nfsidl 0:00 0.00% 0.00% nfsiod 124 root 10 0 208K 76K nfsidl 0:00 0.00% 0.00% nfsiod 125 root 10 0 208K 76K nfsidl 0:00 0.00% 0.00% nfsiod Bri To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 7:50:20 1999 Delivered-To: freebsd-questions@freebsd.org Received: from vax1.baker.ie (VAX1.baker.IE [194.125.50.91]) by hub.freebsd.org (Postfix) with SMTP id 3E37C14BE5 for ; Fri, 20 Aug 1999 07:50:17 -0700 (PDT) (envelope-from cillian@baker.ie) Received: from baker.ie ([194.125.50.55]) by vax1.baker.ie with ESMTP; Fri, 20 Aug 1999 15:25:19 +0100 Message-ID: <37BD6EE5.390931D5@baker.ie> Date: Fri, 20 Aug 1999 16:06:13 +0100 From: Cillian Sharkey X-Mailer: Mozilla 4.51 [en] (X11; I; FreeBSD 3.2-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: fr@icsmedia.de Cc: questions@freebsd.org Subject: Re: Strange characters of "last" after upgrade to 3.2 Release References: <01BACE0D6FA9D21198CC00A0C94D131D0FF7C3@note.icsmedia.de> Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > The Problem ist not the format of the old (from 2.2.2) entries of the wtmp > and utmp. The new ones (from 3.2) are corrupt!! > > Regards, > > Frank > > P.S I´ve also set the size of wtmp and utmp to zero but without success Hmm..that must mean that the entries created by your new 3.2 binaries must be corrupting the file (even if it was nuked and had to be re-created) Or perhaps, you still have some 2.x stuff floating around that is the cause ? in a similar situation to this I found out ssh was the culprit..a quick recompile of it did the trick Hope this helps, - Cillian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 8: 2:34 1999 Delivered-To: freebsd-questions@freebsd.org Received: from nets5.rz.rwth-aachen.de (nets5.rz.RWTH-Aachen.DE [137.226.144.13]) by hub.freebsd.org (Postfix) with ESMTP id E18EE14E51 for ; Fri, 20 Aug 1999 08:02:09 -0700 (PDT) (envelope-from kuku@gilberto.physik.RWTH-Aachen.DE) Received: from campino.informatik.rwth-aachen.de (campino.Informatik.RWTH-Aachen.DE [137.226.116.240]) by nets5.rz.rwth-aachen.de (8.9.1a/8.9.1/6) with ESMTP id QAA05330 for ; Fri, 20 Aug 1999 16:59:23 +0200 (MET DST) Received: from gil.physik.rwth-aachen.de (gilberto.physik.rwth-aachen.de [137.226.30.2]) by campino.informatik.rwth-aachen.de (8.9.1a/8.9.1/3) with ESMTP id QAA10652 for ; Fri, 20 Aug 1999 16:59:32 +0200 (MET DST) Received: (from kuku@localhost) by gil.physik.rwth-aachen.de (8.9.2/8.6.9) id QAA25661 for questions@freebsd.org; Fri, 20 Aug 1999 16:59:38 +0200 (CEST) Date: Fri, 20 Aug 1999 16:59:38 +0200 (CEST) From: Christoph Kukulies Message-Id: <199908201459.QAA25661@gil.physik.rwth-aachen.de> To: questions@freebsd.org Subject: problems building a 3.2 kernel Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I upgraded a 2.2.8 system to 3.2 and when trying to rebuild my custom kernel I'm getting: cc -c -O -Wreturn-type -Wcomment -Wredundant-decls -Wimplicit -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wuninitialized -Wformat -Wunused -fformat-extensions -ansi -nostdinc -I- -I. -I../.. -I/usr/include -DKERNEL -DVM_STACK -include opt_global.h -elf ../../kern/imgact_aout.c In file included from ../../kern/imgact_aout.c:45: ../../sys/vnode.h:476: warning: `struct vop_lease_args' declared inside parameter list ../../sys/vnode.h:476: warning: its scope is only this definition or declaration, ../../sys/vnode.h:476: warning: which is probably not what you want. ../../sys/vnode.h:490: warning: `struct vop_lease_args' declared inside parameter list ../../sys/vnode.h:536: warning: `struct vop_poll_args' declared inside parameter list ../../sys/vnode.h:539: warning: `struct vop_poll_args' declared inside parameter list ../../sys/vnode.h:540: warning: `struct vop_revoke_args' declared inside parameter list ../../kern/imgact_aout.c: In function `aout_coredump': ../../kern/imgact_aout.c:277: warning: implicit declaration of function `VOP_LEASE' ../../kern/imgact_aout.c:294: too many arguments to function `VOP_UNLOCK' *** Error code 1 Stop. Everything that includes vnode.h seems to choke. -- Chris Christoph P. U. Kukulies kuku@gil.physik.rwth-aachen.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 8: 2:54 1999 Delivered-To: freebsd-questions@freebsd.org Received: from gateway.ciminot.com (gateway.ciminot.com [208.149.231.26]) by hub.freebsd.org (Postfix) with ESMTP id 41D0614E51 for ; Fri, 20 Aug 1999 08:02:42 -0700 (PDT) (envelope-from dave@ciminot.com) Received: from dave ([192.168.200.15]) by gateway.ciminot.com (8.9.1/8.9.1) with SMTP id JAA02694 for ; Fri, 20 Aug 1999 09:58:16 -0500 (CDT) (envelope-from dave@ciminot.com) From: "David B. Aas" To: Subject: "Sender domain must exist" error Date: Fri, 20 Aug 1999 10:00:00 -0500 Message-ID: <001f01beeb1c$ad953100$0fc8a8c0@dave.ciminot.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.3155.0 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I am getting an error message from POP3 clients when emial is sent. Email is received OK, but I cannont send. I am running Sendmail on FreeBSD 3.2. Sendmail is set up, and POP3 is enabled. My users have valid Unix usernames and passwords. My server name is gateway.townandcountry.org and my domain name is townandcountry.org. My users can connect and receive email. When email is sent, they get an error message on the POP3 client something like this: "The message could not be send because the server rejected the sender's email address. The sender's email address was ....Server Response "501 gateway.townandcountry.org ... sender domain must exist" On the server console, an error message shows up "Sendmail ... ruleset=check_mail ...Reject=501 gateway.townandcountry.org sender domain must exist." I double-checked my sendmail.cf file. I have set up a D and a DM record. DNS is running and appears to be working OK. What am I missing? any help would be appreciated. Thanks. Dave Aas Dave@ciminot.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 8:16:20 1999 Delivered-To: freebsd-questions@freebsd.org Received: from fire.mhi-tx.com (www.mhi-tx.com [208.243.253.225]) by hub.freebsd.org (Postfix) with ESMTP id 906C615344 for ; Fri, 20 Aug 1999 08:16:09 -0700 (PDT) (envelope-from robert@mhi-tx.com) Received: from mhi-tx.com (robert.mhi-tx.com [192.168.1.200]) by fire.mhi-tx.com (8.8.7/8.8.7) with ESMTP id KAA05595 for ; Fri, 20 Aug 1999 10:23:04 -0500 (CDT) (envelope-from robert@mhi-tx.com) Message-ID: <37BD6F78.F199D1CF@mhi-tx.com> Date: Fri, 20 Aug 1999 10:08:41 -0500 From: robert X-Mailer: Mozilla 4.5 [en] (Win95; I) X-Accept-Language: en MIME-Version: 1.0 To: freebsd list Subject: upgrade from 2.2.6 to 3.2 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG hello, I was wondering if anyone had actually done an "upgrade" (using sysinstall) from 2.2.x to 3.2. does it work.. do you have to recompile everything? (a.out stuff) I know it is supposed to keep that stuff around but I thought I would ask since it is an in use production server that I am going to try this on...(risky).. all I really have running is a web server hylafax, and samba... any input would be appreciated... thanks in advance Robert ps please email direct as I am not currently subscribed to the list. ta To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 8:16:58 1999 Delivered-To: freebsd-questions@freebsd.org Received: from eris.discordia.ch (eris.discordia.ch [195.246.74.155]) by hub.freebsd.org (Postfix) with SMTP id 9FCA61537B for ; Fri, 20 Aug 1999 08:16:45 -0700 (PDT) (envelope-from killer@eris.discordia.ch) Received: (qmail 18937 invoked by uid 502); 20 Aug 1999 15:16:31 -0000 Date: Fri, 20 Aug 1999 17:16:31 +0200 From: Jonathan Apfelkern To: freebsd-questions@freebsd.org Subject: mfsroot not found... Message-ID: <19990820171631.A18919@discordia.ch> Reply-To: killer@discordia.ch Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.6i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello I downloaded kernel.flp and mfsroot.flp from ftp://current.freebsd.org/pub/FreeBSD/snapshots/i386/4.0-19990816-CURRENT/floppies/ Kernel.flp boots, and wants mfsroot.flp, but as soon as this boots (before initialising drivers) it says "/mfsroot" not found". Some time later, the kernel panics when it wants to mount /mfsroot. So where's that /mfsroot??? Cheers Jonathan -- "...one of the main causes of the fall of the Roman Empire was that, lacking zero, they had no way to indicate successful termination of their C programs." -- Robert Firth To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 8:19: 3 1999 Delivered-To: freebsd-questions@freebsd.org Received: from adsl-216-102-203-44.dsl.snfc21.pacbell.net (adsl-216-102-203-44.dsl.snfc21.pacbell.net [216.102.203.44]) by hub.freebsd.org (Postfix) with ESMTP id 46F861533E for ; Fri, 20 Aug 1999 08:19:01 -0700 (PDT) (envelope-from bri@sonicboom.org) Received: from localhost (bri@localhost) by adsl-216-102-203-44.dsl.snfc21.pacbell.net (8.9.3/8.9.3) with ESMTP id IAA48360; Fri, 20 Aug 1999 08:15:06 -0700 (PDT) (envelope-from bri@sonicboom.org) Date: Fri, 20 Aug 1999 08:15:06 -0700 (PDT) From: Brian X-Sender: bri@adsl-216-102-203-44.dsl.snfc21.pacbell.net To: Ruslan Ermilov Cc: freebsd-questions@FreeBSD.ORG Subject: Re: natd In-Reply-To: <19990820102533.B44737@relay.ucb.crimea.ua> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Got a dsl line, trying to do nat by putting 2 nics in 1 box, 1 with public address space, 1 with private. Bri On Fri, 20 Aug 1999, Ruslan Ermilov wrote: > On Thu, Aug 19, 1999 at 10:32:24AM -0700, Brian wrote: > > > > Whats with the natd_ lines people are submitting with their rc.conf files. > > The self described howot, the man page, says nothing of these. > > > See rc.conf(5) manpage. > > > I am also having a problem where whatever settings I apply to 1 nic get > > applied to the other. So as a result, this machine cannot access the > > outside world. > > > What exactly you're trying to do? > > -- > Ruslan Ermilov Sysadmin and DBA of the > ru@ucb.crimea.ua United Commercial Bank, > ru@FreeBSD.org FreeBSD committer, > +380.652.247.647 Simferopol, Ukraine > > http://www.FreeBSD.org The Power To Serve > http://www.oracle.com Enabling The Information Age > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 8:19:57 1999 Delivered-To: freebsd-questions@freebsd.org Received: from web704.mail.yahoo.com (web704.mail.yahoo.com [128.11.23.24]) by hub.freebsd.org (Postfix) with SMTP id 228F815336 for ; Fri, 20 Aug 1999 08:19:55 -0700 (PDT) (envelope-from auximini@yahoo.com) Message-ID: <19990820152010.11927.rocketmail@web704.mail.yahoo.com> Received: from [205.201.40.20] by web704.mail.yahoo.com; Fri, 20 Aug 1999 08:20:09 PDT Date: Fri, 20 Aug 1999 08:20:09 -0700 (PDT) From: "Joe T." Subject: Another Q2 problem: No sound To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello Im running FreeBSD3.2 with an ESS 1869 soundcard. AFAIK, I have to use the OSS sounddrivers in order to get sound capabilities. Although when I play Quake2, I am unable to get sound. I emailed OSS about this, and they told me the problem was the FreeBSD OSS sounddrivers do not support mmap. So, what I would like to know is: is there any way at all I can get sound to work in Q2 without going to the extreme of buying a new sound card.... Thanks === Joe Topjian auximini@yahoo.com http://auximini.cjb.net __________________________________________________ Do You Yahoo!? Bid and sell for free at http://auctions.yahoo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 8:25:46 1999 Delivered-To: freebsd-questions@freebsd.org Received: from beowulf.utmb.edu (beowulf.utmb.edu [129.109.59.83]) by hub.freebsd.org (Postfix) with ESMTP id 224E915348 for ; Fri, 20 Aug 1999 08:25:41 -0700 (PDT) (envelope-from bdodson@beowulf.utmb.edu) Received: (from bdodson@localhost) by beowulf.utmb.edu (8.9.3/8.9.2) id KAA23423; Fri, 20 Aug 1999 10:25:34 -0500 (CDT) (envelope-from bdodson) Date: Fri, 20 Aug 1999 10:25:34 -0500 (CDT) Message-Id: <199908201525.KAA23423@beowulf.utmb.edu> From: "M. L. Dodson" MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: "Bill A. K." Cc: "FreeBSD Questions" Subject: Logitech USB Mouse In-Reply-To: <005701bee601$fb27d500$01010101@bopper> References: <005701bee601$fb27d500$01010101@bopper> X-Mailer: VM 6.34 under 19.16 "Lille" XEmacs Lucid Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Bill A. K. writes: > Hi, > Some of you have maybe seen me posting about this question before. > > i'm having a problem with a Logitech USB Mouse. > > When I shutdown the system or even killall moused, the system crashes with > an error. i think it's a page fault if i remember correctly (i would post > the output, but i don't know how to get the dmesg output) > > I have tried this and seen the same behavior on FreeBSD 3.2-RELEASE and > FreeBSD 4.0-CURRENT (Just downloaded yesterday night and compiled today, so > my current is current) > [elided] > If anybody else has run into this problem and knows how to fix it, or if > anybody know of any patches or updates or anything at all, please let me > know. > > Thanks > > Bill > billieakay@yahoo.com > I've been able to reproduce your problem on 3.2R+PAO3, and will furnish a patch from the BSD-USB mailing list. Also, if you start having trouble with the USB mouse, try changing the order of the usb _devices_ in the kernel config file; something happened recently, I think, to change the probe order relative to that in LINT, and it causes the mouse to be found on the probe to ugen0 (but I am not sure of the technical details). You need to create /dev/{ums0,usb0}, if you have not done so. Patch relative to /usr/src/sys: *** dev/usb/usbdi.c.orig Sat May 8 18:04:58 1999 --- dev/usb/usbdi.c Thu Aug 19 16:15:05 1999 *************** *** 917,923 **** { usbd_request_handle reqh; ! #if 0 for (;;) { reqh = SIMPLEQ_FIRST(&pipe->queue); if (reqh == 0) --- 917,923 ---- { usbd_request_handle reqh; ! #if 1 for (;;) { reqh = SIMPLEQ_FIRST(&pipe->queue); if (reqh == 0) -- M. L. Dodson bdodson@scms.utmb.edu 409-772-2178 FAX: 409-772-1790 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 9:17:18 1999 Delivered-To: freebsd-questions@freebsd.org Received: from dt011n65.san.rr.com (dt010nb9.san.rr.com [204.210.12.185]) by hub.freebsd.org (Postfix) with ESMTP id C937014DF4 for ; Fri, 20 Aug 1999 09:17:14 -0700 (PDT) (envelope-from Doug@gorean.org) Received: from gorean.org (master [10.0.0.2]) by dt011n65.san.rr.com (8.9.3/8.8.8) with ESMTP id JAA66735; Fri, 20 Aug 1999 09:11:41 -0700 (PDT) (envelope-from Doug@gorean.org) Message-ID: <37BD7E46.302FFAEA@gorean.org> Date: Fri, 20 Aug 1999 09:11:50 -0700 From: Doug Organization: Triborough Bridge & Tunnel Authority X-Mailer: Mozilla 4.61 [en] (X11; U; FreeBSD 4.0-CURRENT-0815 i386) X-Accept-Language: en MIME-Version: 1.0 To: mcwong@ascend.com Cc: Ben Smithurst , questions@freebsd.org Subject: Re: Safe upgrade from 2.2.5 --> 3.2 ? References: <882567D2.00828B66.00@colton.ascend.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG mcwong@ascend.com wrote: > > Ok, > > Let me get this correct then. The steps for me should then be: > > 1) get 2.2.8 src for my 2.2.5 system Read the make world tutorial at http://freebsd.org/tutorials/ > make world make a new kernel > reboot > > Are there any significant changes such as /etc/* stuff > in 2.2.8 that requires mergemaster when doing this > round of upgrade ? Yes. > 2) On 2.2.8, get 3.2 src and follow the instruction on the > web. > mergemaster > make upgrade > reboot > > Is that correct ? I will properly document all the steps > after my upgrade and should it be successful and send > it to the list for others. That's what my web page does. :) Of course, if you have any suggestions for improvements please send them, to me or the list, doesn't matter. Good luck, Doug To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 9:17:37 1999 Delivered-To: freebsd-questions@freebsd.org Received: from finland.ispro.net.tr (finland.ispro.net.tr [195.174.18.1]) by hub.freebsd.org (Postfix) with ESMTP id E6D9614CB9 for ; Fri, 20 Aug 1999 09:17:28 -0700 (PDT) (envelope-from yurtesen@ispro.net.tr) Received: from ispro.net.tr (dyn-0-095.tku.netti.fi [195.16.223.96]) by finland.ispro.net.tr (8.9.3/8.9.3) with ESMTP id TAA19028 for ; Fri, 20 Aug 1999 19:14:52 +0300 (EEST) (envelope-from yurtesen@ispro.net.tr) Message-ID: <37BD7EAE.9CD1D646@ispro.net.tr> Date: Fri, 20 Aug 1999 19:13:34 +0300 From: Evren Yurtesen X-Mailer: Mozilla 4.51 [en] (Win98; I) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: space or time optimization? Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG hello how can I know if my freebsd is using space or time optimization on my hard drive? and how can I find some manuals about these which explain the differences etc... thanks Evren To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 9:55:23 1999 Delivered-To: freebsd-questions@freebsd.org Received: from hhs-custos.dhhs.gov (hhs-custos.dhhs.gov [158.70.252.2]) by hub.freebsd.org (Postfix) with ESMTP id E9473159C3 for ; Fri, 20 Aug 1999 09:55:11 -0700 (PDT) (envelope-from dyang@os.dhhs.gov) Received: from os.dhhs.gov ([158.70.48.168]) by hhs-custos.dhhs.gov (8.9.3/8.9.3) with ESMTP id MAA04043 for ; Fri, 20 Aug 1999 12:55:00 -0400 (EDT) Message-ID: <37BD9658.26A17DBD@os.dhhs.gov> Date: Fri, 20 Aug 1999 12:54:33 -0500 From: David Yang X-Mailer: Mozilla 4.51 [en] (Win95; U) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: error message for missing libwrap.so.2 file Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, Dear support, We run into a critical problem and error message as following when system reboot and starts rc script. Starting standard daemon: inetd/usr/libexec/ld-elf.so.1:shared object "libwrap.so.2" not found. cron sendmail/usr/libexec/ld-elf.so.1:shared object "libwrap.so.2" doing additional network setup: portmap/usr/libexec/ld-elf.so.1:shared object "libwrap.so.2" not found. Can you please tell me if there's any ftp site or othere place i can download from. Appreciate for your help. David Yang 202/260-1690. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 10: 0:52 1999 Delivered-To: freebsd-questions@freebsd.org Received: from flatland.dimensional.com (flatland.dimensional.com [206.124.0.24]) by hub.freebsd.org (Postfix) with ESMTP id 362DE1516B for ; Fri, 20 Aug 1999 10:00:51 -0700 (PDT) (envelope-from rooth@dimensional.com) Received: by flatland.dimensional.com (Postfix, from userid 1129) id 63624143C5; Fri, 20 Aug 1999 10:58:46 -0600 (MDT) From: David Michaels To: freebsd-questions@freebsd.org Subject: Network tuning? Message-Id: <19990820165846.63624143C5@flatland.dimensional.com> Date: Fri, 20 Aug 1999 10:58:46 -0600 (MDT) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I'm looking for some FreeBSD network tuning advice. I recently got a cable modem, and found all kinds of sites about how to tweak Windblowz to get maximum throughput out of my new network. Nothing much out there for FreeBSD, though, that I've found. I'm looking for the equivalent of Soalris's 'ndd', in particular. Any advice on good numbers to start with for a cable modem connection would be appreciated, too. Thanks! -- Dave Michaels, Raytheon, Unix SA | "I wonder what news is doing..." dmichael@redwood.rsc.raytheon.com | news@newshost <29> ps -fu news http://www.dimensional.com/~rooth | news 18624 12367 2 0:00 makehistory rooth@dimensional.com | "News is making history." "Who are you?" "What do you want?" "Why are you here?" "Where are you going?" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 10:16:53 1999 Delivered-To: freebsd-questions@freebsd.org Received: from voyager.fisicc-ufm.edu (ip-46-094.guate.net [200.12.46.94]) by hub.freebsd.org (Postfix) with ESMTP id 226DE15A78 for ; Fri, 20 Aug 1999 10:15:41 -0700 (PDT) (envelope-from obonilla@voyager.fisicc-ufm.edu) Received: (from obonilla@localhost) by voyager.fisicc-ufm.edu (8.9.3/8.9.3) id LAA01983; Fri, 20 Aug 1999 11:10:44 -0600 (CST) (envelope-from obonilla) Date: Fri, 20 Aug 1999 11:10:40 -0600 From: Oscar Bonilla To: David Michaels Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Network tuning? Message-ID: <19990820111040.E532@fisicc-ufm.edu> References: <19990820165846.63624143C5@flatland.dimensional.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.6i In-Reply-To: <19990820165846.63624143C5@flatland.dimensional.com>; from David Michaels on Fri, Aug 20, 1999 at 10:58:46AM -0600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, Aug 20, 1999 at 10:58:46AM -0600, David Michaels wrote: > > I'm looking for some FreeBSD network tuning advice. I recently got a cable > modem, and found all kinds of sites about how to tweak Windblowz to get > maximum throughput out of my new network. Nothing much out there for > FreeBSD, though, that I've found. I'm looking for the equivalent of > Soalris's 'ndd', in particular. Any advice on good numbers to start with > for a cable modem connection would be appreciated, too. how about sysctl? regards, -Oscar -- For PGP Public Key: finger obonilla@fisicc-ufm.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 10:21:20 1999 Delivered-To: freebsd-questions@freebsd.org Received: from rackmount.ORG (grill.rackmount.ORG [209.79.28.99]) by hub.freebsd.org (Postfix) with SMTP id 7CFAF15357 for ; Fri, 20 Aug 1999 10:21:19 -0700 (PDT) (envelope-from steve@grill.rackmount.ORG) Received: (qmail 96152 invoked by uid 1050); 20 Aug 1999 10:22:08 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 20 Aug 1999 10:22:08 -0000 Date: Fri, 20 Aug 1999 10:22:08 +0000 (GMT) From: steve To: freebsd-questions@freebsd.org Subject: CPU/Floppy diskette Lighting Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Greetings! It has come to my recent attention that whenever FreeBSD is finishing loading all of it's devices and what not, the CPU and floppy disk's lights halt, as in they flash up and stay on. I don't recall doing anything recently at all that would trigger such an event, and am ponders the 'fix' for it so to speak. It's kinda weird to look at the box and just see the lights on, as I like to depend on them for movement, call me a perfectionist. Anyhow, if any of you might have a clue as to what the problem maybe, I'd really appreciate any feedback! Again thanks (: --Steve steve@rackmount.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 10:27:40 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mailf.telia.com (mailf.telia.com [194.22.194.25]) by hub.freebsd.org (Postfix) with ESMTP id 1494B15390 for ; Fri, 20 Aug 1999 10:27:35 -0700 (PDT) (envelope-from fredrik.carlen@telia.com) Received: from d1o29.telia.com (root@d1o29.telia.com [194.236.214.241]) by mailf.telia.com (8.8.8/8.8.8) with ESMTP id TAA15560; Fri, 20 Aug 1999 19:24:09 +0200 (CEST) Received: from entityone.leonissystems.com (t2o29p84.telia.com [194.236.214.204]) by d1o29.telia.com (8.8.8/8.8.8) with SMTP id TAA06084; Fri, 20 Aug 1999 19:24:06 +0200 (CEST) From: Fredrik Carlen Reply-To: fredrik.carlen@telia.com To: freebsd-questions@FreeBSD.ORG Subject: Computer running FreeBSD 3.2-RELEASE freezes completely Date: Fri, 20 Aug 1999 19:15:31 +0200 X-Mailer: KMail [version 1.0.21] Content-Type: text/plain Cc: d93-awe@nada.kth.se, primary@cowmob.nu MIME-Version: 1.0 Message-Id: <99082019241400.00282@entityone.leonissystems.com> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Question from Fredrik Carlen Hello! I have a really annoying problem, and I can't seem to be able to find an answer to it on the Net. I recently "bought" and installed FreeBSD 3.2-RELEASE. I have been using it for a couple of weeks, and it's a very pleasant experience, except for the fact that *every* *single* *day* the system *freezes*. Hangs. I've been told not to reinstall, so, still painfully ignorant in the field of UNIX, I am humbly asking for more knowledgeable help. This is what happens: 1.I log in on my usual, every-day account. 2.I start X up. 3.I start doing the normal stuff, nothing fancy (e.g. reading mail, writing notes). 4.The system freezes. Every input device stops working. The mouse cursor disappering is the first indication. The system is *not* reading from the hard drive, at least as far as I can see and hear. No matter how long I wait, the system won't respond. It's a complete denial-of-service! The only option left is to reboot the hard way. Which doesn't exactly make things better!!! It happens *frequently* in the following circumstances: A. When I try to change something in "preferences" or "options", in any program (epecially Netcape). Sometimes it works, sometimes the system freezes. B.When I am trying to do something in two programs simultaneously, e.g. surfing and writing small notes. (By goood I hope it doesn't happen right now, please, please, my dear OS, just let me finish this freakin' mail!) C. Sometimes without any action from my part whatsoever. And: Once it happened when I disconnected my PPP connection when Mozilla was still downloading a webpage. My experience is that if I have been using X for an hour or so, it *will* freeze. This is my system, in a nutshell: Intel Pentium, 166 MHz. Motherboard:PA-2007 with VIA VP2/97 chipset Video card: S3 trio64V+ Sound card: Soundblaster compatible (ESS ES1868) HD: 4 gigs RAM: 32 megs +I've installed the old object format, aout, to be able to use Netscape. Both my everyday user account and my root account is left as-is, no fancy stuff there. This is the output of "$ uname -a": FreeBSD entityone.leonissystems.org 3.2-RELEASE FreeBSD 3.2-RELEASE #0: Tue May 18 04:05:08 GMT 1999 jkh@cathair:/usr/src/sys/compile/GENERIC i386 (leonissystems.org is my fake domain...go ahead, laugh if you want to...) I am sorry if I have missed some section of the FAQ, or "the Complete FreeBSD handbook" I really should have checked, but I am almost *certain* there's nothing there that relates to my problem. I haven't got a clue as what to do, except maybe reinstalling and *not* choosing stuff from compat22...(the aout) Apart from this hassle, I *really* like FreeBSD, and since I am soon working as a security administrator, I can't have this sort of thing happening when I am promoting FreeBSD as the UNIX of choice for PC:s, right? If you could help me, I owe you a big one. Thank you for your time. /Fredrik Carlen, Sweden. mailto:fredrik.carlen@telia.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 10:33:45 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mirl.cpe.ku.ac.th (mirl.cpe.ku.ac.th [158.108.34.80]) by hub.freebsd.org (Postfix) with ESMTP id 17ACB15390 for ; Fri, 20 Aug 1999 10:33:14 -0700 (PDT) (envelope-from b39apj@mirl.cpe.ku.ac.th) Received: from localhost (b39apj@localhost) by mirl.cpe.ku.ac.th (8.9.3/8.9.3) with ESMTP id AAA25911 for ; Fri, 22 Oct 1999 00:30:40 +0700 Date: Fri, 22 Oct 1999 00:30:39 +0700 (ICT) From: "Mr.Aphirak Jansang" To: freebsd-questions@FreeBSD.ORG Subject: How I can set up individual account but the same name to receive mail in the same host but not same host name Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I have some trouble about sendmail in FreeBSD. It's only receive mail but not distingish about what for different domain. I have try to find how it can handle many donamin ,But I see that I can add in /etc/sendmail.cw But this time my problem is not that... This time my problem is In my freebsd system,I have 1 account name that xx1 but My freebsd have 2 domains one is mydom1.test.com and another is mydom2.test.com but it point to the same IP:) If I send email to xx1@mydom1.test.com ,the user in local host will receive it, but If I send email to xx1@mydom2.test.com ,the local user will receive too... The local user is the same is xx1. Can I set sendmail to determind what I would like to send to and save in difference place... Because If I use pop mail to mydom1.test.com ,It will get only mail that send to xx1@mydom1.test.com but not include xx1@mydom2.test.com How I can solve it? Do you have any idea? Sincerly Yours Aphirak To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 10:42:43 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mw5.texas.net (mw5.texas.net [206.127.30.15]) by hub.freebsd.org (Postfix) with ESMTP id 8D4DE15AA9 for ; Fri, 20 Aug 1999 10:41:53 -0700 (PDT) (envelope-from rsnow@lgc.com) Received: from basil.dympna.COM (mnet07-71.sat.texas.net [209.99.53.71]) by mw5.texas.net (2.4/2.4) with ESMTP id MAA05459 for ; Fri, 20 Aug 1999 12:41:51 -0500 (CDT) Received: from lgc.com (IDENT:rsnow@turbo [134.132.228.6]) by basil.dympna.COM (8.9.3/8.8.7) with ESMTP id MAA03673 for ; Fri, 20 Aug 1999 12:41:46 -0500 (CDT) (envelope-from rsnow@lgc.com) Message-ID: <37BD9351.322F6222@lgc.com> Date: Fri, 20 Aug 1999 12:41:37 -0500 From: Rob Snow X-Mailer: Mozilla 4.61 [en] (X11; I; Linux 2.2.11 i686) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: NFS test info Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I need a favor, I'm trying to figure out why my NFS seems to be slow and have some info I would like to see if anyone can repeat. I don't have another FreeBSD box to try this on. basil# uname -a FreeBSD basil.dympna.com 3.2-RELEASE FreeBSD 3.2-RELEASE #7: Thu Aug 19 23:59:50 CDT 1999 rsnow@basil.dympna.com:/export/current/src/sys/compile/Basil-SMP [Dual PPro-233's] basil# cd /stripe basil# df -k . Filesystem 1K-blocks Used Avail Capacity Mounted on /dev/vinum/stripe 17197511 86511 15735200 1% /stripe basil# Bonnie -s 256 -------Sequential Output-------- ---Sequential Input-- --Random-- -Per Char- --Block--- -Rewrite-- -Per Char- --Block--- --Seeks--- Machine MB K/sec %CPU K/sec %CPU K/sec %CPU K/sec %CPU K/sec %CPU /sec %CPU 256 10817 97.3 15805 93.1 6338 41.4 9943 97.5 15796 51.2 241.4 13.0 basil# mount_nfs -3 localhost:/stripe /mnt basil# cd /mnt basil# Bonnie -s 256 -------Sequential Output-------- ---Sequential Input-- --Random-- -Per Char- --Block--- -Rewrite-- -Per Char- --Block--- --Seeks--- Machine MB K/sec %CPU K/sec %CPU K/sec %CPU K/sec %CPU K/sec %CPU /sec %CPU 256 4270 57.6 6639 30.6 1877 11.7 3804 55.3 6201 18.7 90.2 8.5 This seems a bit odd to me, notice that it doesn't seem to be CPU bound. -Rob To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 10:42:47 1999 Delivered-To: freebsd-questions@freebsd.org Received: from revolution.3-cities.com (revolution.3-cities.com [204.203.224.155]) by hub.freebsd.org (Postfix) with ESMTP id 22DCC15B1A for ; Fri, 20 Aug 1999 10:42:29 -0700 (PDT) (envelope-from kstewart@3-cities.com) Received: from 3-cities.com (kenn2174.bossig.com [208.26.242.174]) by revolution.3-cities.com (8.9.3/8.9.3) with ESMTP id KAA12099; Fri, 20 Aug 1999 10:42:19 -0700 (PDT) Message-ID: <37BD938A.4C3187D7@3-cities.com> Date: Fri, 20 Aug 1999 10:42:34 -0700 From: Kent Stewart Organization: BOSSig X-Mailer: Mozilla 4.61 [en] (WinNT; U) X-Accept-Language: en MIME-Version: 1.0 To: fredrik.carlen@telia.com Cc: freebsd-questions@FreeBSD.ORG, d93-awe@nada.kth.se, primary@cowmob.nu Subject: Re: Computer running FreeBSD 3.2-RELEASE freezes completely References: <99082019241400.00282@entityone.leonissystems.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Fredrik Carlen wrote: > > Question from Fredrik Carlen > > Hello! I have a really annoying problem, and I can't seem to be able to > find an answer to it on the Net. I recently "bought" and installed FreeBSD > 3.2-RELEASE. I have been using it for a couple of weeks, and it's a very > pleasant experience, except for the fact that *every* *single* *day* the system > *freezes*. Hangs. I've been told not to reinstall, so, still painfully > ignorant in the field of UNIX, I am humbly asking for more knowledgeable help. > > This is what happens: > 1.I log in on my usual, every-day account. > 2.I start X up. > 3.I start doing the normal stuff, nothing fancy (e.g. reading mail, writing > notes). > 4.The system freezes. Every input device stops working. The mouse cursor > disappering is the first indication. The system is *not* reading from the hard > drive, at least as far as I can see and hear. No matter how long I wait, the > system won't respond. It's a complete denial-of-service! The only option > left is to reboot the hard way. Which doesn't exactly make things better!!! I had a P166 on a superMicro P5STE motherboard that also froze after extended X use. It would also hang on Win 95 if I played Freecell or Solataire. It was really slow, so I finally ended up replacing motherboard, cpu, memory, and video card. The system on the HD works perfectly with a Celeron 433. The hang was obviously hardware related and a new system worked. If you have parts, you might try swapping some of the parts. I would start with the video card. Can you do a buildworld. That is a good test for the rest of the system. If you get a signal error, that is a good clue it is memory. Kent > > It happens *frequently* in the following circumstances: > A. When I try to change something in "preferences" or "options", in > any program (epecially Netcape). Sometimes it works, sometimes the system > freezes. > B.When I am trying to do something in two programs simultaneously, > e.g. surfing and writing small notes. (By goood I hope it doesn't happen > right now, please, please, my dear OS, just let me finish this freakin' mail!) > C. Sometimes without any action from my part whatsoever. > > And: Once it happened when I disconnected my PPP connection when Mozilla was > still downloading a webpage. My experience is that if I have been using X for > an hour or so, it *will* freeze. > > This is my system, in a nutshell: > Intel Pentium, 166 MHz. > Motherboard:PA-2007 with VIA VP2/97 chipset > Video card: S3 trio64V+ > Sound card: Soundblaster compatible (ESS ES1868) > HD: 4 gigs > RAM: 32 megs > +I've installed the old object format, aout, to be able to use Netscape. > > Both my everyday user account and my root account is left as-is, no fancy stuff > there. > > This is the output of "$ uname -a": > > FreeBSD entityone.leonissystems.org 3.2-RELEASE FreeBSD 3.2-RELEASE #0: Tue > May 18 04:05:08 GMT 1999 jkh@cathair:/usr/src/sys/compile/GENERIC i386 > > (leonissystems.org is my fake domain...go ahead, laugh if you want to...) > > I am sorry if I have missed some section of the FAQ, or "the Complete > FreeBSD handbook" I really should have checked, but I am almost *certain* > there's nothing there that relates to my problem. I haven't got a clue as what > to do, except maybe reinstalling and *not* choosing stuff from compat22...(the > aout) Apart from this hassle, I *really* like FreeBSD, and since I am soon > working as a security administrator, I can't have this sort of thing happening > when I am promoting FreeBSD as the UNIX of choice for PC:s, right? If you > could help me, I owe you a big one. > Thank you for your time. > /Fredrik Carlen, Sweden. mailto:fredrik.carlen@telia.com > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- Kent Stewart Richland, WA mailto:kstewart@3-cities.com http://www.3-cities.com/~kstewart/index.html SETI (Search for Extraterrestrial Intelligence) @ Home http://setiathome.ssl.berkeley.edu/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 11:15:45 1999 Delivered-To: freebsd-questions@freebsd.org Received: from dt010nb9.san.rr.com (dt010nb9.san.rr.com [204.210.12.185]) by hub.freebsd.org (Postfix) with ESMTP id 006E715300 for ; Fri, 20 Aug 1999 11:15:30 -0700 (PDT) (envelope-from Doug@gorean.org) Received: from localhost (doug@localhost) by dt010nb9.san.rr.com (8.9.3/8.8.8) with ESMTP id LAA68159; Fri, 20 Aug 1999 11:15:20 -0700 (PDT) (envelope-from Doug@gorean.org) Date: Fri, 20 Aug 1999 11:15:20 -0700 (PDT) From: Doug X-Sender: doug@dt010nb9.san.rr.com To: Christoph Kukulies Cc: questions@freebsd.org Subject: Re: problems building a 3.2 kernel In-Reply-To: <199908201459.QAA25661@gil.physik.rwth-aachen.de> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, 20 Aug 1999, Christoph Kukulies wrote: > I upgraded a 2.2.8 system to 3.2 and when trying to rebuild my > custom kernel Did you start over with the 3.2 GENERIC, or are you trying to build your old kernel config file? Some of the options have changed, so it's better to start with GENERIC again. Also, take a look at http://freebsd.simplenet.com/make-upgrade.html to see if you might have missed any steps. Good luck, Doug To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 11:33:23 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail.dbitech.bc.ca (i.caniserv.com [139.142.95.1]) by hub.freebsd.org (Postfix) with SMTP id B27EE15B01 for ; Fri, 20 Aug 1999 11:32:52 -0700 (PDT) (envelope-from gjukema@silk.net) Received: (qmail 28921 invoked from network); 20 Aug 1999 18:52:28 -0000 Received: from 24.66.186.135.bc.wave.home.com (HELO spammer) (24.66.186.135) by 139.142.95.148 with SMTP; 20 Aug 1999 18:52:28 -0000 Message-Id: <3.0.5.32.19990820113115.007e6460@silk.net> X-Sender: gjukema@silk.net X-Mailer: QUALCOMM Windows Eudora Light Version 3.0.5 (32) Date: Fri, 20 Aug 1999 11:31:15 -0700 To: freebsd-questions@freebsd.org From: gjukema@silk.net Subject: 2 FreeBSD Boot Managers after install Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I've looked all over the mailing list for this one. I have a 10MB dos partition and a FreeBSD 3.1 partition. After the install is complete I get this upon bootup: F1 DOS F2 FreeBSD F5 Drive 0 Both F1 & F2 "beep" and don't actually do anything. Hitting F5 brings me to: F1 DOS F2 FreeBSD And now, things work normal. F1 boots DOS, F2 boots FreeBSD. I'd be happy with this, except for the first menu is defaulted to what I selected in my second menu, so it will never boot without user input off the first menu. I've tried fdisk /mbr in dos, then reboot with the FreeBSD floppies and (W) write the partition table, and selecting to install the Boot Manager, no luck. I've also tried reinstalling, and the problem is still there. Thanks for any input on this one, Geoff To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 11:56: 5 1999 Delivered-To: freebsd-questions@freebsd.org Received: from cwb.pacific.net.hk (cwb.pacific.net.hk [202.14.67.92]) by hub.freebsd.org (Postfix) with ESMTP id EC5FD15376 for ; Fri, 20 Aug 1999 11:56:01 -0700 (PDT) (envelope-from alexkwan@pacific.net.hk) Received: from tsingyi.pacific.net.hk (tsingyi.pacific.net.hk [202.14.67.240]) by cwb.pacific.net.hk with ESMTP id CAA11972 for ; Sat, 21 Aug 1999 02:55:42 +0800 (HKT) Received: from parsley (max10-17.hk.super.net [202.64.26.17]) by tsingyi.pacific.net.hk with SMTP id CAA28898 for ; Sat, 21 Aug 1999 02:55:41 +0800 (HKT) Message-ID: <001101beeb3e$6e162f80$b0c2fea9@parsley> From: "Alex Kwan" To: Subject: Help: "panic : page fault" Date: Sat, 21 Aug 1999 03:01:36 +0800 MIME-Version: 1.0 Content-Type: text/plain; charset="big5" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2615.200 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2615.200 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi! I am just installed the FreeBSD3.2 on my PC, it sometimes can work, but sometimes will found "panic : page fault" and auto reboot, what can I do now? (I have re-install serval times). thanks Alex To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 12: 1:29 1999 Delivered-To: freebsd-questions@freebsd.org Received: from www.menzor.org (rico.dk [195.249.147.160]) by hub.freebsd.org (Postfix) with ESMTP id 7313E153F4 for ; Fri, 20 Aug 1999 12:01:17 -0700 (PDT) (envelope-from morten@seeberg.dk) Received: from SOS (fwuser@gw.danadata.com [194.239.79.3]) by www.menzor.org (8.8.8/8.8.8) with SMTP id VAA27417 for ; Fri, 20 Aug 1999 21:05:10 +0200 (CEST) (envelope-from morten@seeberg.dk) Message-ID: <001401beeb3e$21389a90$1600000a@SOS> Reply-To: "Morten Seeberg" From: "Morten Seeberg" To: Subject: 4 seriel ports Date: Fri, 20 Aug 1999 20:59:28 +0200 Organization: SWAMP MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2918.2701 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2918.2701 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, AFAIR it is possible on x86 systems (or atleast windows and dos :) ) to have 4 serial ports, which share 2 IRQs?? (I have 2 onboard serieal ports and an xtra I/O card. How is this done on BSD? And which restrictions would I have, in DOS i remember, that it wasnt a good idea to put a mouse and a modem on 2 serial ports, which share IRQ, maybe this problem is solved on newer computers. So that: COM1 IRQ4 COM2 IRQ3 COM3 IRQ4 COM4 IRQ3 This doesnt seem possible with the SIO driver (the man says so). But I hope that it is possible? And where should I look? I tried it with the following parameters: options "COM_MULTIPORT" device sio0 at isa? port "IO_COM1" tty device sio1 at isa? port "IO_COM2" tty device sio2 at isa? port "IO_COM3" tty device sio3 at isa? port "IO_COM4" tty This is the result: DMESG: sio0 at 0x3f8-0x3ff on isa sio0: type 16550A sio1 at 0x2f8-0x2ff on isa sio1: type 16550A sio2 at 0x3e8-0x3ef on isa sio2: type 16450 sio3 at 0x2e8-0x2ef on isa sio3: type 16450 ----- fw.home:/root#cu -l /dev/cuaa2 Connected. atz Aug 20 18:21:29 fw /kernel: sio2: 1 more silo overflow (total 2) Aug 20 18:21:29 fw /kernel: sio2: 1 more silo overflow (total 2) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /\/\orten $eeberg, Systems Consultant @ Merkantildata CMA - Enterprise Solutions #echo 'System Administrators suck :)' > /dev/console To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 12:15: 7 1999 Delivered-To: freebsd-questions@freebsd.org Received: from bingnet2.cc.binghamton.edu (bingnet2.cc.binghamton.edu [128.226.1.18]) by hub.freebsd.org (Postfix) with ESMTP id 979E315847 for ; Fri, 20 Aug 1999 12:15:00 -0700 (PDT) (envelope-from zzhang@cs.binghamton.edu) Received: from sol.cs.binghamton.edu (cs1-gw.cs.binghamton.edu [128.226.171.72]) by bingnet2.cc.binghamton.edu (8.9.3/8.9.3) with SMTP id PAA14030; Fri, 20 Aug 1999 15:12:45 -0400 (EDT) Date: Fri, 20 Aug 1999 14:59:23 -0400 (EDT) From: Zhihui Zhang To: Alex Kwan Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Help: "panic : page fault" In-Reply-To: <001101beeb3e$6e162f80$b0c2fea9@parsley> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sat, 21 Aug 1999, Alex Kwan wrote: > Hi! > > I am just installed the FreeBSD3.2 on my PC, > it sometimes can work, but sometimes will > found "panic : page fault" and auto reboot, > what can I do now? (I have re-install serval > times). > Your hardware may be faulty. I say so because I met such thing once before. After moving to another machine, everything is fine. If you can make a core dump, it can help to find the reason. -Zhihui To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 12:22:28 1999 Delivered-To: freebsd-questions@freebsd.org Received: from cwb.pacific.net.hk (cwb.pacific.net.hk [202.14.67.92]) by hub.freebsd.org (Postfix) with ESMTP id C0E6E153FB for ; Fri, 20 Aug 1999 12:22:23 -0700 (PDT) (envelope-from alexkwan@pacific.net.hk) Received: from kwaifong.pacific.net.hk (kwaifong.pacific.net.hk [202.14.67.7]) by cwb.pacific.net.hk with ESMTP id DAA13742; Sat, 21 Aug 1999 03:22:22 +0800 (HKT) Received: from parsley (max14-28.hk.super.net [202.64.30.28]) by kwaifong.pacific.net.hk with SMTP id DAA09768; Sat, 21 Aug 1999 03:22:21 +0800 (HKT) Message-ID: <001001beeb42$27d82c40$b0c2fea9@parsley> From: "Alex Kwan" To: "Zhihui Zhang" Cc: References: Subject: Re: Help: "panic : page fault" Date: Sat, 21 Aug 1999 03:27:54 +0800 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2615.200 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2615.200 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi! But this PC can working fine with Linux, and how to make a core dump. Alex > > On Sat, 21 Aug 1999, Alex Kwan wrote: > > > Hi! > > > > I am just installed the FreeBSD3.2 on my PC, > > it sometimes can work, but sometimes will > > found "panic : page fault" and auto reboot, > > what can I do now? (I have re-install serval > > times). > > > > Your hardware may be faulty. I say so because I met such thing once > before. After moving to another machine, everything is fine. > > If you can make a core dump, it can help to find the reason. > > -Zhihui > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 12:33:36 1999 Delivered-To: freebsd-questions@freebsd.org Received: from scientia.demon.co.uk (scientia.demon.co.uk [212.228.14.13]) by hub.freebsd.org (Postfix) with ESMTP id E623E153F4 for ; Fri, 20 Aug 1999 12:33:09 -0700 (PDT) (envelope-from ben@scientia.demon.co.uk) Received: from lithium.scientia.demon.co.uk ([192.168.0.3] ident=exim) by scientia.demon.co.uk with esmtp (Exim 3.024 #3) id 11Hss9-000FU8-00; Fri, 20 Aug 1999 18:54:37 +0100 Received: (from ben) by lithium.scientia.demon.co.uk (Exim 3.024 #3) id 11Hss5-0004co-00; Fri, 20 Aug 1999 18:54:33 +0100 Date: Fri, 20 Aug 1999 18:54:32 +0100 From: Ben Smithurst To: Cillian Sharkey Cc: fr@icsmedia.de, questions@freebsd.org Subject: Re: Strange characters of "last" after upgrade to 3.2 Release Message-ID: <19990820185432.A17746@lithium.scientia.demon.co.uk> References: <01BACE0D6FA9D21198CC00A0C94D131D0FF7C3@note.icsmedia.de> <37BD6EE5.390931D5@baker.ie> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.6i In-Reply-To: <37BD6EE5.390931D5@baker.ie> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Cillian Sharkey wrote: >> The Problem ist not the format of the old (from 2.2.2) entries of the wtmp >> and utmp. The new ones (from 3.2) are corrupt!! >> >> Regards, >> >> Frank >> >> P.S Ive also set the size of wtmp and utmp to zero but without success > > Hmm..that must mean that the entries created by your new 3.2 binaries > must be corrupting the file (even if it was nuked and had to be re-created) > > Or perhaps, you still have some 2.x stuff floating around that is > the cause ? > > in a similar situation to this I found out ssh was the culprit..a quick > recompile of it did the trick If you haven't rebuilt X, I think that will also be using the old format. (xterm, or some part of X, logs an entry in utmp.) -- Ben Smithurst | PGP: 0x99392F7D ben@scientia.demon.co.uk | key available from keyservers and | ben+pgp@scientia.demon.co.uk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 12:33:54 1999 Delivered-To: freebsd-questions@freebsd.org Received: from revolution.3-cities.com (revolution.3-cities.com [204.203.224.155]) by hub.freebsd.org (Postfix) with ESMTP id C5ADF155B3 for ; Fri, 20 Aug 1999 12:33:51 -0700 (PDT) (envelope-from kstewart@3-cities.com) Received: from 3-cities.com (kenn2174.bossig.com [208.26.242.174]) by revolution.3-cities.com (8.9.3/8.9.3) with ESMTP id MAA27271; Fri, 20 Aug 1999 12:32:57 -0700 (PDT) Message-ID: <37BDAD79.59D1A945@3-cities.com> Date: Fri, 20 Aug 1999 12:33:13 -0700 From: Kent Stewart Organization: BOSSig X-Mailer: Mozilla 4.61 [en] (WinNT; U) X-Accept-Language: en MIME-Version: 1.0 To: Morten Seeberg Cc: questions@FreeBSD.ORG Subject: Re: 4 seriel ports References: <001401beeb3e$21389a90$1600000a@SOS> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Morten Seeberg wrote: > > Hi, AFAIR it is possible on x86 systems (or atleast windows and dos :) ) to > have 4 serial ports, which share 2 IRQs?? (I have 2 onboard serieal ports > and an xtra I/O card. > How is this done on BSD? And which restrictions would I have, in DOS i > remember, that it wasnt a good idea to put a mouse and a modem on 2 serial > ports, which share IRQ, maybe this problem is solved on newer computers. > > So that: > COM1 IRQ4 > COM2 IRQ3 > COM3 IRQ4 > COM4 IRQ3 > > This doesnt seem possible with the SIO driver (the man says so). But I hope > that it is possible? And where should I look? > > I tried it with the following parameters: > options "COM_MULTIPORT" > device sio0 at isa? port "IO_COM1" tty > device sio1 at isa? port "IO_COM2" tty > device sio2 at isa? port "IO_COM3" tty > device sio3 at isa? port "IO_COM4" tty > > This is the result: > DMESG: > sio0 at 0x3f8-0x3ff on isa > sio0: type 16550A > sio1 at 0x2f8-0x2ff on isa > sio1: type 16550A > sio2 at 0x3e8-0x3ef on isa > sio2: type 16450 > sio3 at 0x2e8-0x2ef on isa > sio3: type 16450 > ----- > fw.home:/root#cu -l /dev/cuaa2 > Connected. > atz > Aug 20 18:21:29 fw /kernel: sio2: 1 more silo overflow (total 2) > Aug 20 18:21:29 fw /kernel: sio2: 1 more silo overflow (total 2) This could be because of how you are sharing interrupts. At some point in my distant past, you could share interrupts but they had to be on the same card. So the add on card would be com2 and com4, which could share an interrupt and com1 and com3 on the PC. You will have problems at some line speed above 9.6kb because you don't have a 16550A on your addon ports, which can cause overflows because the 450 doesn't have the FIFO. Kent > > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ > /\/\orten $eeberg, Systems Consultant @ > Merkantildata CMA - Enterprise Solutions > #echo 'System Administrators suck :)' > /dev/console > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- Kent Stewart Richland, WA mailto:kstewart@3-cities.com http://www.3-cities.com/~kstewart/index.html SETI (Search for Extraterrestrial Intelligence) @ Home http://setiathome.ssl.berkeley.edu/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 12:54:15 1999 Delivered-To: freebsd-questions@freebsd.org Received: from nick.cendant.com (nick.cendant.com [198.245.183.210]) by hub.freebsd.org (Postfix) with ESMTP id 8515A15836 for ; Fri, 20 Aug 1999 12:54:11 -0700 (PDT) (envelope-from rra@cuc.com) Received: from mailhub.cuc.com (stratford.cuc.com [206.28.153.114]) by nick.cendant.com (8.8.5/8.9.2+) with ESMTP id PAA25878; Fri, 20 Aug 1999 15:53:31 -0400 (EDT) Date: Fri, 20 Aug 1999 15:50:22 -0400 (EDT) From: Rick Aliwalas X-Sender: rra@pikachu.oakview.cuc.com To: gjukema@silk.net Cc: freebsd-questions@FreeBSD.ORG Subject: Re: 2 FreeBSD Boot Managers after install In-Reply-To: <3.0.5.32.19990820113115.007e6460@silk.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG My Digital laptop does the same thing ever since I installed 3.2 over 2.2.8. I kind of like it actually - now it doesn't default to the previously selected o/s after the timeout. -Rick On Fri, 20 Aug 1999 gjukema@silk.net wrote: > I've looked all over the mailing list for this one. I have a 10MB dos > partition and a FreeBSD 3.1 partition. After the install is complete I get > this upon bootup: > > F1 DOS > F2 FreeBSD > F5 Drive 0 > > Both F1 & F2 "beep" and don't actually do anything. Hitting F5 brings me to: > > F1 DOS > F2 FreeBSD > > And now, things work normal. F1 boots DOS, F2 boots FreeBSD. I'd be happy > with this, except for the first menu is defaulted to what I selected in my > second menu, so it will never boot without user input off the first menu. > > I've tried fdisk /mbr in dos, then reboot with the FreeBSD floppies and (W) > write the partition table, and selecting to install the Boot Manager, no luck. > I've also tried reinstalling, and the problem is still there. > > Thanks for any input on this one, > > Geoff > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 13: 1:53 1999 Delivered-To: freebsd-questions@freebsd.org Received: from luke.cpl.net (luke.cpl.net [192.216.136.195]) by hub.freebsd.org (Postfix) with ESMTP id BDAB814C12 for ; Fri, 20 Aug 1999 13:01:43 -0700 (PDT) (envelope-from shawn@megadeth.org) Received: from megadeth.org (shawn.megadeth.org [192.216.87.249]) by luke.cpl.net (8.9.3/8.9.3) with ESMTP id NAA18874; Fri, 20 Aug 1999 13:02:22 -0700 (PDT) Message-ID: <37BDB40D.410DB86E@megadeth.org> Date: Fri, 20 Aug 1999 13:01:17 -0700 From: Shawn Ramsey X-Mailer: Mozilla 4.61 [en] (WinNT; U) X-Accept-Language: en MIME-Version: 1.0 To: "Mr.Aphirak Jansang" Cc: freebsd-questions@FreeBSD.ORG Subject: Re: How I can set up individual account but the same name to receivemail in the same host but not same host name References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG "Mr.Aphirak Jansang" wrote: > > I have some trouble about sendmail in FreeBSD. It's only receive mail but > not distingish about what for different domain. > I have try to find how it can handle many donamin ,But I see that I can > add in /etc/sendmail.cw > > But this time my problem is not that... This time my problem is In my > freebsd system,I have 1 account name that xx1 but My freebsd have 2 > domains one is mydom1.test.com and another is mydom2.test.com but it point > to the same IP:) > > If I send email to xx1@mydom1.test.com ,the user in local host will > receive it, but If I send email to xx1@mydom2.test.com ,the local user > will receive too... The local user is the same is xx1. > > Can I set sendmail to determind what I would like to send to and save in > difference place... > > Because If I use pop mail to mydom1.test.com ,It will get only mail that > send to xx1@mydom1.test.com but not include xx1@mydom2.test.com > > How I can solve it? Do you have any idea? You need the virtusertable feature. This is enabled by default in FreeBSD's sendmail. See http://www.sendmail.org on how to configure it. -- Windows 95 (win-DOH-z), n. A thirty-two bit extension and graphical shell to a sixteen bit patch to an eight bit operating system originally coded for a four bit microprocessor which was used in a PC built by a formerly two bit company that couldn't stand one bit of competition. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 13:12:49 1999 Delivered-To: freebsd-questions@freebsd.org Received: from dgriffin.org (dgriffin.org [205.147.189.146]) by hub.freebsd.org (Postfix) with ESMTP id 1AF0414CB8 for ; Fri, 20 Aug 1999 13:12:43 -0700 (PDT) (envelope-from stede@dgriffin.org) Received: from localhost (stede@localhost) by dgriffin.org (8.9.2/8.9.2) with ESMTP id PAA02480 for ; Fri, 20 Aug 1999 15:55:12 -0400 (EDT) (envelope-from stede@dgriffin.org) Date: Fri, 20 Aug 1999 15:54:42 -0400 (EDT) From: Stede Bonnet Cc: freebsd-questions@FreeBSD.ORG Subject: Insall of MySQL In-Reply-To: <37BDB40D.410DB86E@megadeth.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I recently installed. from the ports section of my 3.2 install MySQL-1.9, and bought the book tool When I read where the book says tat certain directories and files ought to be, and then 'locate' them on my FreeBSD box, they are in different places, and my install never did creat eht 'data' director structure that MySQL says ought to be there. Is there an explanation for this, or is my install eunique? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 13:16:28 1999 Delivered-To: freebsd-questions@freebsd.org Received: from digisys.net (digisys.net [205.138.110.204]) by hub.freebsd.org (Postfix) with ESMTP id 74FA815859 for ; Fri, 20 Aug 1999 13:16:14 -0700 (PDT) (envelope-from jason@townnews.com) Received: from townnews.com (X2modem168.digisys.net [207.49.34.28]) by digisys.net (8.9.1a/8.9.1) with ESMTP id OAA16745 for ; Fri, 20 Aug 1999 14:16:12 -0600 (MDT) Message-ID: <37BDB740.359BEF10@townnews.com> Date: Fri, 20 Aug 1999 14:14:56 -0600 From: Jason Organization: International News Network X-Mailer: Mozilla 4.61 [en] (X11; I; FreeBSD 3.2-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: Partitions Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Since you folks helped me out so much last time, I figured I ask another question or two... When I used to run AIX, I could adjust the logical volume (partition) sizes and file system sizes on the fly. This let me add a drive and migrate file systems to it with great ease. Now, I'm trying to do something similar with freeBSD 2.2.5. The situation is this; we have run out of room in our /usr partition, and have no free drive space available. Management went out and bought a 27 gig SCSI drive that is going to be installed soon. First of all, is this 27 gig drive going to work with freeBSD 2.2.5, and secondly how can I move or expand my /usr partition onto this new behemoth? I'm just not familiar enough with sysinstall to know if that's the place to do it or not... Thanks again, Jason Blue To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 13:43:13 1999 Delivered-To: freebsd-questions@freebsd.org Received: from luke.cpl.net (luke.cpl.net [192.216.136.195]) by hub.freebsd.org (Postfix) with ESMTP id DA70914E4A for ; Fri, 20 Aug 1999 13:43:07 -0700 (PDT) (envelope-from shawn@megadeth.org) Received: from megadeth.org (shawn.megadeth.org [192.216.87.249]) by luke.cpl.net (8.9.3/8.9.3) with ESMTP id NAA10072; Fri, 20 Aug 1999 13:44:24 -0700 (PDT) Message-ID: <37BDBDE7.A70D2E52@megadeth.org> Date: Fri, 20 Aug 1999 13:43:19 -0700 From: Shawn Ramsey X-Mailer: Mozilla 4.61 [en] (WinNT; U) X-Accept-Language: en MIME-Version: 1.0 To: Stede Bonnet Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Insall of MySQL References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Stede Bonnet wrote: > > I recently installed. from the ports section of my 3.2 install MySQL-1.9, > and bought the book tool > > When I read where the book says tat certain directories and files ought to > be, and then 'locate' them on my FreeBSD box, they are in different > places, and my install never did creat eht 'data' director structure that > MySQL says ought to be there. > > Is there an explanation for this, or is my install eunique? > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message I believe the port puts things other than where the MySQL dist will put things. IE the port will put the databases in /var/db/mysql while the dist. of MySQL will put them in /usr/local/var. But then again, maybe I am way off base. :) It's been awhile since I last installed MySQL... -- Windows 95 (win-DOH-z), n. A thirty-two bit extension and graphical shell to a sixteen bit patch to an eight bit operating system originally coded for a four bit microprocessor which was used in a PC built by a formerly two bit company that couldn't stand one bit of competition. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 13:43:43 1999 Delivered-To: freebsd-questions@freebsd.org Received: from web1405.mail.yahoo.com (web1405.mail.yahoo.com [128.11.23.169]) by hub.freebsd.org (Postfix) with SMTP id 88B5A14DDA for ; Fri, 20 Aug 1999 13:43:42 -0700 (PDT) (envelope-from mstacker@yahoo.com) Message-ID: <19990820204916.11684.rocketmail@web1405.mail.yahoo.com> Received: from [205.230.159.22] by web1405.mail.yahoo.com; Fri, 20 Aug 1999 13:49:16 PDT Date: Fri, 20 Aug 1999 13:49:16 -0700 (PDT) From: joseph taylor Subject: FreeBSD and Compaq Armada 4131T To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Anybody ever successfully install and run FreeBSD on a Compaq Armada 4131T with a petium 133mhz? later, Matt STacker mstacker@yahoo.com __________________________________________________ Do You Yahoo!? Bid and sell for free at http://auctions.yahoo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 14:16:36 1999 Delivered-To: freebsd-questions@freebsd.org Received: from unix.megared.net.mx (megared.net.mx [207.249.162.252]) by hub.freebsd.org (Postfix) with ESMTP id 1BAAF1530F for ; Fri, 20 Aug 1999 14:16:27 -0700 (PDT) (envelope-from ales@megared.net.mx) Received: from ales (pix.megared.net.mx [207.249.162.253]) by unix.megared.net.mx (8.9.3/8.9.3) with SMTP id QAA37296 for ; Fri, 20 Aug 1999 16:16:31 -0500 (CDT) (envelope-from ales@megared.net.mx) Message-ID: <008901beeb51$3a02e860$d4630a0a@megared.net.mx> From: "Alejandro Ramirez" To: "FreeBSD Questions" Subject: IBM ServeRAID II Date: Fri, 20 Aug 1999 16:16:10 -0500 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-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, I just want to know if there are plans for having a driver for the following RAID card, "Dual Channel Wide Ultra SCSI RAID ( IBM ServeRAID II on planar)", its a built-in Card on a IBM Netfinity 5500 Server, and I am going to receive one of this servers in two months, its there any chance to make it work with FreeBSD, without having to install another SCSI Card in the system???. Thanks in Advance Ales To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 14:17: 3 1999 Delivered-To: freebsd-questions@freebsd.org Received: from MIT.EDU (SOUTH-STATION-ANNEX.MIT.EDU [18.72.1.2]) by hub.freebsd.org (Postfix) with SMTP id 54E5B157A6 for ; Fri, 20 Aug 1999 14:16:54 -0700 (PDT) (envelope-from xela@MIT.EDU) Received: from BIOHAZARD-CAFE.MIT.EDU by MIT.EDU with SMTP id AA06298; Fri, 20 Aug 99 17:16:50 EDT Received: (from xela@localhost) by biohazard-cafe.mit.edu (8.9.3) id RAA07519; Fri, 20 Aug 1999 17:16:51 -0400 (EDT) Message-Id: <199908202116.RAA07519@biohazard-cafe.mit.edu> To: freebsd-questions@FreeBSD.ORG Subject: controlling where ports install? Date: Fri, 20 Aug 1999 17:16:49 -0400 From: Alex Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi--- I'm fairly new to FreeBSD, coming from a mostly NetBSD background. One thing NetBSD does that I like is that the package system (ports in FreeBSD parlance) installs into a seperate path (/usr/pkg) rather than into /usr/local/. (Please no flames. I thought the NetBSD approach was stupid at first and just made /usr/pkg a symlink to /usr/local. After some experience I decided the other way was better --- having stuff I've installed by hand segregated from stuff installed by the package system has IMHO its merits. YMMV.) At any rate, I'm wondering whether the location where FreeBSD installs ports can be set by some environment variable or other straightforward mechanism? Thanks in advance, ---Alex Carl Alexander ------------- MIT (where Alex hangs out): xela@mit.edu Course VI (sometime special student) SIPB (prospective) Mitgaard ("honorary mold") MITSFS LSC (night worker) http://www.mit.edu/~xela ------------- Work (where they call me 'Carl'): carl@terc.edu System Administrator & User Services Manager, TERC http://www.terc.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 14:34:11 1999 Delivered-To: freebsd-questions@freebsd.org Received: from scientia.demon.co.uk (scientia.demon.co.uk [212.228.14.13]) by hub.freebsd.org (Postfix) with ESMTP id 606D815175 for ; Fri, 20 Aug 1999 14:34:05 -0700 (PDT) (envelope-from ben@scientia.demon.co.uk) Received: from lithium.scientia.demon.co.uk ([192.168.0.3] ident=exim) by scientia.demon.co.uk with esmtp (Exim 3.024 #3) id 11HuaW-000FbP-00; Fri, 20 Aug 1999 20:44:32 +0100 Received: (from ben) by lithium.scientia.demon.co.uk (Exim 3.024 #3) id 11HuaW-0004kv-00; Fri, 20 Aug 1999 20:44:32 +0100 Date: Fri, 20 Aug 1999 20:44:32 +0100 From: Ben Smithurst To: Evren Yurtesen Cc: freebsd-questions@freebsd.org Subject: Re: space or time optimization? Message-ID: <19990820204432.A17947@lithium.scientia.demon.co.uk> References: <37BD7EAE.9CD1D646@ispro.net.tr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.6i In-Reply-To: <37BD7EAE.9CD1D646@ispro.net.tr> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Evren Yurtesen wrote: > how can I know if my freebsd is using space or time optimization > on my hard drive? ben@lithium:~/tmp$ dumpfs /dev/rwd0s1 | grep optim minfree 8% optim time maxcontig 7 maxbpg 2048 ^^^^^^^^^^^^ Change device name as appropriate. -- Ben Smithurst | PGP: 0x99392F7D ben@scientia.demon.co.uk | key available from keyservers and | ben+pgp@scientia.demon.co.uk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 14:44:33 1999 Delivered-To: freebsd-questions@freebsd.org Received: from adsl-216-102-203-44.dsl.snfc21.pacbell.net (adsl-216-102-203-44.dsl.snfc21.pacbell.net [216.102.203.44]) by hub.freebsd.org (Postfix) with ESMTP id 506371538B for ; Fri, 20 Aug 1999 14:44:27 -0700 (PDT) (envelope-from bri@sonicboom.org) Received: from localhost (bri@localhost) by adsl-216-102-203-44.dsl.snfc21.pacbell.net (8.9.3/8.9.3) with ESMTP id OAA49172 for ; Fri, 20 Aug 1999 14:14:25 -0700 (PDT) (envelope-from bri@sonicboom.org) Date: Fri, 20 Aug 1999 14:14:25 -0700 (PDT) From: Brian X-Sender: bri@adsl-216-102-203-44.dsl.snfc21.pacbell.net To: freebsd-questions@FreeBSD.ORG Subject: make world on a pentium 233 Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Curious how long this'll take, I just started it and it'd be nice if it were done by 6. Bri To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 14:55:29 1999 Delivered-To: freebsd-questions@freebsd.org Received: from horst.bfd.com (horst.bfd.com [12.9.219.10]) by hub.freebsd.org (Postfix) with ESMTP id D45FE15175 for ; Fri, 20 Aug 1999 14:55:27 -0700 (PDT) (envelope-from ejs@bfd.com) Received: from HARLIE.bfd.com (bastion.bfd.com [12.9.219.14]) by horst.bfd.com (8.9.3/8.9.2) with ESMTP id OAA16516; Fri, 20 Aug 1999 14:53:25 -0700 (PDT) (envelope-from ejs@bfd.com) Date: Fri, 20 Aug 1999 14:53:25 -0700 (PDT) From: "Eric J. Schwertfeger" To: Brian Cc: freebsd-questions@FreeBSD.ORG Subject: Re: make world on a pentium 233 In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, 20 Aug 1999, Brian wrote: > Curious how long this'll take, I just started it and it'd be nice if it > were done by 6. Depends on a great many factors. RAM, CPU, and HD chief among them. my guess is that if you've got a fast HD, or have things split up between multiple SCSI HD, maybe between IDE HD on different cables, that that might be reasonable. I've got a Celeron-500 w/128MB RAM and a single, 10G IDE drive that does a make world in just about an hour. Then again, I've got an older, Dual-Pentium Pro box with 64MB of ram and a single 2GB HD that takes about 5-6 hours. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 15: 8: 7 1999 Delivered-To: freebsd-questions@freebsd.org Received: from ravine.eecs.berkeley.edu (ravine.EECS.Berkeley.EDU [169.229.34.231]) by hub.freebsd.org (Postfix) with ESMTP id AD30C14DB8 for ; Fri, 20 Aug 1999 15:08:06 -0700 (PDT) (envelope-from Mds@RAVINE.EECS.Berkeley.EDU) Received: by RAVINE with Internet Mail Service (5.5.2232.9) id ; Fri, 20 Aug 1999 15:06:39 -0700 Message-ID: From: "Mark D. Spiller" To: freebsd-questions@FreeBSD.ORG Cc: mds@eecs.berkeley.edu Subject: ultrastor 34f scsi Date: Fri, 20 Aug 1999 15:06:38 -0700 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2232.9) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, I would like to install freebsd on a 486 (to serve as a backup server for my home network) - this machine at one point ran earlier versions of freebsd (1.1 era), but has since run windows. The problem is that it has an Ultrastor 34f SCSI controller, which I saw on the supported list as "not *yet* supported in the new system" - I wanted to check to see if there was any timeframe for this support, or whether I should just use the old version... (If I can still find the CD). Thanks! Mark Spiller mds@eecs.berkeley.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 15:33: 3 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail.abqjournal.com (mail.abqjournal.com [206.29.132.163]) by hub.freebsd.org (Postfix) with ESMTP id 9B8EA153D2 for ; Fri, 20 Aug 1999 15:32:58 -0700 (PDT) (envelope-from slenti@abqpubco.com) Received: from abqpubco.com ([192.58.94.144]) by mail.abqjournal.com (8.9.1a/8.8.8) with ESMTP id QAA21229; Fri, 20 Aug 1999 16:28:52 -0600 (MDT) Message-ID: <37BDD6EA.20928956@abqpubco.com> Date: Fri, 20 Aug 1999 16:30:02 -0600 From: Steve Lenti Organization: Albuquerque Publishing Co. X-Mailer: Mozilla 4.6 [en] (Win95; I) X-Accept-Language: en MIME-Version: 1.0 To: Stede Bonnet Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Insall of MySQL References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG easy fix. you have to run mysql_install_db that will create all the nessasary dirs and files. Hope this helps STEVE Stede Bonnet wrote: > I recently installed. from the ports section of my 3.2 install MySQL-1.9, > and bought the book tool > > When I read where the book says tat certain directories and files ought to > be, and then 'locate' them on my FreeBSD box, they are in different > places, and my install never did creat eht 'data' director structure that > MySQL says ought to be there. > > Is there an explanation for this, or is my install eunique? > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 15:36:49 1999 Delivered-To: freebsd-questions@freebsd.org Received: from news-ma.rhein-neckar.de (news-ma.rhein-neckar.de [193.197.90.3]) by hub.freebsd.org (Postfix) with ESMTP id E028114DDF for ; Fri, 20 Aug 1999 15:36:41 -0700 (PDT) (envelope-from bigeye.rhein-neckar.de!naddy@mips.rhein-neckar.de) Received: from mips.rhein-neckar.de (uucp@localhost) by news-ma.rhein-neckar.de (8.8.8/8.8.8) with bsmtp id AAA14418 for freebsd-questions@freebsd.org; Sat, 21 Aug 1999 00:34:45 +0200 (CEST) (envelope-from bigeye.rhein-neckar.de!naddy@mips.rhein-neckar.de) Received: by mips.rhein-neckar.de id m11Hx30-000WyUC (Debian Smail-3.2.0.101 1997-Dec-17 #2); Sat, 21 Aug 1999 00:22:06 +0200 (CEST) From: naddy@mips.rhein-neckar.de (Christian Weisgerber) Subject: Re: 4 seriel ports Date: 21 Aug 1999 00:24:27 +0200 Message-ID: <7pkkir$fu1$1@bigeye.rhein-neckar.de> References: <001401beeb3e$21389a90$1600000a@SOS> To: freebsd-questions@freebsd.org Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Morten Seeberg wrote: > Hi, AFAIR it is possible on x86 systems (or atleast windows and dos :) ) to > have 4 serial ports, which share 2 IRQs?? Sure. The Am386 box I'm typing this on has four serial ports on a single IRQ using an AST Fourport clone. In fact, your question reminds me of a Cyclades eight-port card that I need to ask back from somebody else. You just need the right *hardware*. > (I have 2 onboard serieal ports and an xtra I/O card. Nope. I'm not aware of onboard serial ports being able to share IRQs, although this should be the most simple case. Simple I/O cards usually can't share IRQs between their ports either. Sharing over the ISA bus is completely out. You need specially designed cards, such as AST Fourports and clones, Vision Systems' 4Com or similar, or cards with ports entirely unlike the 8250-derived COM-type ones such as the Cyclades, Stallion, and Rocketport ones. > How is this done on BSD? See sio(4) and the various drivers for the non-COM-type special multi-port cards. I haven't actually used any multi-port cards under BSD yet, but I'm going to eventually, and the information seems to be there. -- Christian "naddy" Weisgerber naddy@mips.rhein-neckar.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 15:56:56 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail.dbitech.bc.ca (i.caniserv.com [139.142.95.1]) by hub.freebsd.org (Postfix) with SMTP id 1088814C3B for ; Fri, 20 Aug 1999 15:56:52 -0700 (PDT) (envelope-from gjukema@teamsoftech.com) Received: (qmail 13475 invoked from network); 20 Aug 1999 23:17:20 -0000 Received: from 24.66.186.135.bc.wave.home.com (HELO spammer) (24.66.186.135) by 139.142.95.148 with SMTP; 20 Aug 1999 23:17:20 -0000 Message-Id: <3.0.5.32.19990820155606.00823c40@silk.net> X-Sender: gjukema@silk.net X-Mailer: QUALCOMM Windows Eudora Light Version 3.0.5 (32) Date: Fri, 20 Aug 1999 15:56:06 -0700 To: Rick Aliwalas From: gjukema@teamsoftech.com Subject: Re: 2 FreeBSD Boot Managers after install Cc: freebsd-questions@FreeBSD.ORG In-Reply-To: References: <3.0.5.32.19990820113115.007e6460@silk.net> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG At 03:50 PM 8/20/99 -0400, Rick Aliwalas wrote: >My Digital laptop does the same thing ever since I installed 3.2 over >2.2.8. I kind of like it actually - now it doesn't default to the >previously selected o/s after the timeout. Unfortunately these boxes have to go on-site, and we don't want calls about the gateway not working after a power-falure. Someone mensioned man boot0cfg, but this I haven't found anywhere. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 16:12: 2 1999 Delivered-To: freebsd-questions@freebsd.org Received: from corp.tierra.net (mailer.corp.tierra.net [209.75.7.146]) by hub.freebsd.org (Postfix) with ESMTP id 829CF15373 for ; Fri, 20 Aug 1999 16:11:57 -0700 (PDT) (envelope-from chris@tierranet.com) Received: from zoom (zoom.corp.tierra.net [209.75.7.150]) by corp.tierra.net (8.9.1/8.9.1) with SMTP id QAA13938 for ; Fri, 20 Aug 1999 16:11:57 -0700 (PDT) (envelope-from chris@tierranet.com) Message-Id: <4.1.19990820161032.00abacb0@mail.tierranet.com> X-Sender: chris@mail.tierranet.com (Unverified) X-Mailer: QUALCOMM Windows Eudora Pro Version 4.1 Date: Fri, 20 Aug 1999 16:11:55 -0700 To: questions@FreeBSD.ORG From: Chris Samaritoni Subject: Intel PRO/1000 Gigabit Server Adapter In-Reply-To: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Does anyone know if the Intel PRO/1000 Gigabit Server Adapter will work on FreeBSD 3.2? thanks. chris. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 16:17:11 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mw5.texas.net (mw5.texas.net [206.127.30.15]) by hub.freebsd.org (Postfix) with ESMTP id CE126153AF for ; Fri, 20 Aug 1999 16:17:04 -0700 (PDT) (envelope-from rsnow@lgc.com) Received: from basil.dympna.COM (mnet06-26.sat.texas.net [209.99.48.194]) by mw5.texas.net (2.4/2.4) with ESMTP id SAA10685 for ; Fri, 20 Aug 1999 18:17:02 -0500 (CDT) Received: from lgc.com (IDENT:rsnow@turbo [134.132.228.6]) by basil.dympna.COM (8.9.3/8.8.7) with ESMTP id SAA11735 for ; Fri, 20 Aug 1999 18:17:12 -0500 (CDT) (envelope-from rsnow@lgc.com) Message-ID: <37BDE1EA.74D70AEF@lgc.com> Date: Fri, 20 Aug 1999 18:16:58 -0500 From: Rob Snow X-Mailer: Mozilla 4.61 [en] (X11; I; Linux 2.2.11 i686) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: (SOCK_RAW): Protocol not supported as root? Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I'm trying to run the new pipsecd on a 2.2.8 box and this is the error I'm getting. I've tried ipah, udp and icmp protocols in the /etc/ipsec/pipsecd.conf file with the same results. It works fine on my 3.2 box. Is there some reason it should fail on a 2.2.8 box? -rob To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 16:21:10 1999 Delivered-To: freebsd-questions@freebsd.org Received: from ddsecurity.com.br (vitoria.ddsecurity.com.br [200.18.130.93]) by hub.freebsd.org (Postfix) with SMTP id EAF4F14D47 for ; Fri, 20 Aug 1999 16:21:04 -0700 (PDT) (envelope-from grios@ddsecurity.com.br) Received: (qmail 57052 invoked from network); 20 Aug 1999 23:21:01 -0000 Received: from remoteip180.buynet.com.br (HELO ddsecurity.com.br) (200.238.234.180) by vitoria.ddsecurity.com.br with SMTP; 20 Aug 1999 23:21:01 -0000 Message-ID: <37BDDE12.C32853F4@ddsecurity.com.br> Date: Fri, 20 Aug 1999 20:00:34 -0300 From: Gustavo V G C Rios X-Mailer: Mozilla 4.51 [en] (X11; I; FreeBSD 3.2-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: questions@freebsd.org Subject: ppp Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I am trying to get connect to the itnernet, using ppp. I try to connect using "ppp -background isp", but i cannot do it. Otherway, when i: myname# ppp Working in interactive mode Using interactive interface: tun0 ppp on myname> term atdtXXXXXXX This way it goes well, no problem. Can anybody here tell me what's going on ? Could my /etc/ppp/ppp.conf be wrong ? Here goes my ppp.conf: default: set device /dev/cuaa2 set speed 57600 set openmode passive set dial "ABORT BUSY ABORT NO\\sCARRIER TIMEOUT 5 \"\" ATE1Q0 OK-AT-OK \\dATDT\\T TIMEOUT 40 CONNECT" isp: set phone 8995400 set login "TIMEOUT 5 Login:-\\r-Login: mylogin word: mypass" set timeout 120 set ifaddr 0 0 set authname mylogin set authkey mypass To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 16:23:19 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail.postalzone.com (mail.postalzone.com [216.228.64.8]) by hub.freebsd.org (Postfix) with ESMTP id CF979153AF for ; Fri, 20 Aug 1999 16:23:16 -0700 (PDT) (envelope-from jcr@iwbc.net) Received: from localhost (jcr@localhost) by mail.postalzone.com (8.8.8/8.8.8) with ESMTP id QAA01476 for ; Fri, 20 Aug 1999 16:23:16 -0700 (PDT) Date: Fri, 20 Aug 1999 16:23:16 -0700 (PDT) From: "Jeremy C. Reed" X-Sender: jcr@mail.postalzone.com To: questions@FreeBSD.ORG Subject: pkg_add and dependencies In-Reply-To: <4.1.19990820161032.00abacb0@mail.tierranet.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG How can I get pkg_add to install a package with all of its dependencies over the net? (From the manpage and other documentation it sounds like this is automatic.) I tried... pkg_add ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-stable/All/rxvt-2.6.0.tgz And this installed it, but none of the dependencies were downloaded and installed either. Is pkg_add like Debian's apt-get? Also, where can I download the menuing package handler? (/stand/sysinstall doesn't give enough info.) My goal is to get X downloaded and installed. (I have done this numerous times with Debian -- now I am trying FreeBSD.) Jeremy Reed http://www.iwbc.net jcr@iwbc.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 16:24:52 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mta1.tm.net.my (mta1.tm.net.my [202.188.95.4]) by hub.freebsd.org (Postfix) with ESMTP id 2525415A7A for ; Fri, 20 Aug 1999 16:24:45 -0700 (PDT) (envelope-from rezath@tm.net.my) Received: from tm.net.my ([202.188.127.2]) by mta1.tm.net.my (InterMail v03.02.05 118 121 101) with ESMTP id <19990820232435.BUED1712@tm.net.my>; Sat, 21 Aug 1999 07:24:35 +0800 Message-ID: <37BDE6B6.EE696325@tm.net.my> Date: Sat, 21 Aug 1999 07:37:26 +0800 From: Rezamys X-Mailer: Mozilla 4.6 [en] (Win95; I) X-Accept-Language: en MIME-Version: 1.0 To: John Lengeling , doug@gorean.org, dan@jgl.reno.nv.us Cc: Forrest Aldrich , freebsd-questions@FreeBSD.ORG Subject: Re: DELL servers and FreeBSD References: <4.2.0.58.19990817140100.00ada6f0@216.67.12.69> <37B9C33A.7C21E8FC@raccoon.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Oh..oh... We just bought it and it came 2 days ago... Is this true about poweredge 1300s? Can anybody really rectify this? John Lengeling wrote: > I wish the other respondants were more accurate with their answers... > FreeBSD will run the Dell PowerEdges, but... > > Here is my experience with PowerEdge 1300s. > > 1. Need at least FreeBSD 3.X to get support for the Adaptec onboard SCSI > controller. AIC 7890. 6350s have the same onboard controller. > > 2. FreeBSD does not support the RAID controller that Dell sells. The > PERC2 RAID controller. > > 3. I couldn't get the Sony CDROM drive to work under FreeBSD 3.1. I > haven't tried it under 3.2. Most people just installed some other CDROM > drive to get around the problem. > > Forrest Aldrich wrote: > > > > Just as a pre-emptive question: has anyone run into problems running > > FreeBSD on any DELL servers? Namely, the PowerEdge 6350's. > > > > Thanks. > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 16:44:57 1999 Delivered-To: freebsd-questions@freebsd.org Received: from smtp2.ihug.co.nz (tk2.ihug.co.nz [203.29.160.14]) by hub.freebsd.org (Postfix) with ESMTP id A685F14E81 for ; Fri, 20 Aug 1999 16:44:51 -0700 (PDT) (envelope-from wji@ihug.co.nz) Received: from ihug.co.nz (p54-tnt2.akl.ihug.co.nz [203.109.245.54]) by smtp2.ihug.co.nz (8.9.3/8.9.3/Debian/GNU) with ESMTP id LAA19910 for ; Sat, 21 Aug 1999 11:44:43 +1200 Message-ID: <37BDEEC4.5B545B02@ihug.co.nz> Date: Sat, 21 Aug 1999 12:11:48 +1200 From: William James Irwin X-Mailer: Mozilla 4.51 [en] (X11; I; FreeBSD 3.2-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: FreeBSD Questions Subject: Can't flush printer Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi A quick question: My printing system consists of lpd and apsfilter. I tried to cancel a print job with lprm. The job was dequed but the printer continued printing. Assuming the job was still in the printer's buffer, I turned the printer off. However when I turned the printer back on it was still printing. To rule out lpd I killed the lpd daemon, the printer was still printing. I then suspected the parallel port driver. I tried '> /dev/lpt0' I got a 'device busy' error. As a last resort I was fiddling with lptcontrol which only returns 'open: device busy' messages. So the printer is still printing and I have no idea how to stop it short of letting it finish (not an option) or rebooting the machine. So what gives? Thanks for your time Regards, -- William James Irwin wji@ihug.co.nz wirw002@cs.auckland.ac.nz To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 16:52:44 1999 Delivered-To: freebsd-questions@freebsd.org Received: from smtp-out.vma.verio.net (smtp-out.vma.verio.net [168.143.0.23]) by hub.freebsd.org (Postfix) with ESMTP id 6C70814E81 for ; Fri, 20 Aug 1999 16:52:41 -0700 (PDT) (envelope-from thomas@clark.net) Received: from smtp-gw2.vma.verio.net ([168.143.0.22]) by smtp-out.vma.verio.net with esmtp (Exim 2.10 #1) id 11HyP7-0005P0-00 for freebsd-questions@freebsd.org; Fri, 20 Aug 1999 19:49:01 -0400 Received: from minotaur (thomas.clark.net [168.143.2.191]) by smtp-gw2.vma.verio.net (8.9.3/8.9.3) with SMTP id TAA05463 for ; Fri, 20 Aug 1999 19:52:36 -0400 (EDT) Message-Id: <3.0.6.32.19990820195143.007d1a10@pop3.clark.net> X-Sender: thomas@pop3.clark.net X-Mailer: QUALCOMM Windows Eudora Light Version 3.0.6 (32) Date: Fri, 20 Aug 1999 19:51:43 -0400 To: freebsd-questions@freebsd.org From: Mark Thomas Subject: X port font problem Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I installed a new video card in a 3.2 stable machine today, running XFree86-3.3.3. To get it running I needed to build a new server (Mach64). There didn't seem to be a straightforward way to build just the new server, so I decided to make clean/make to rebuild the entire port. This went without a hitch, and I now have the server I need. The problem arose when I started to install the port without first deinstalling the previous version. Make install complained and instructed me to make deinstall, then make reinstall. A subsequent make deinstall complained about numerous missing files, an invalid packing list, and proceeded to delete part of the previous install. The following make reinstall seemed to work, but didn't install any fonts under /usr/X11R6/lib/X11/fonts. Since then I've done all combinations of make deinstall/make install/make reinstall that make sense with the same results. I'm now thinking that I cvsupped the port collection since my X install, and perhaps that has something to do with it. Still, I would think the packing list for the installed port would be accurate. I've now re cvsupped the ports, and am remaking XFree86-3.3.4. I'm hoping a clean build of this will get me up and running again. Anyone have a pointer as to what went wrong here? Mark --- thomas@clark.net ---> http://www.clark.net/pub/thomas PBEM Eldritch --------> http://www.pbegames.com [TM4463-ORG] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 17: 2:41 1999 Delivered-To: freebsd-questions@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 645) id 9C16E15951; Fri, 20 Aug 1999 17:02:32 -0700 (PDT) To: FreeBSD-questions@FreeBSD.org Subject: How to get best results from FreeBSD-questions Message-Id: <19990821000232.9C16E15951@hub.freebsd.org> Date: Fri, 20 Aug 1999 17:02:32 -0700 (PDT) From: grog@FreeBSD.ORG (Greg Lehey) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG How to get the best results from FreeBSD questions. =================================================== Last update 11 July 1999 This is a regular posting to the FreeBSD questions mailing list. If you got it in answer to a message you sent, it means that the sender thinks that at least one of the following things was wrong with your message: - You left out a subject line, or the subject line was not appropriate. - You formatted it in such a way that it was difficult to read. - You asked more than one unrelated question in one message. - You sent out a message with an incorrect date, time or time zone. - You sent out the same message more than once. - You sent an 'unsubscribe' message to FreeBSD-questions. If you have done any of these things, there is a good chance that you will get more than one copy of this message from different people. Read on, and your next message will be more successful. This document is also available on the web at http://www.lemis.com/questions.html. ===================================================================== Contents: I: Introduction II: How to unsubscribe from FreeBSD-questions III: Should I ask -questions or -hackers? IV: How to submit a question to FreeBSD-questions V: How to answer a question to FreeBSD-questions I: Introduction =============== This is a regular posting aimed to help both those seeking advice from FreeBSD-questions (the "newcomers"), and also those who answer the questions (the "hackers"). Note that the term "hacker" has nothing to do with breaking into other people's computers. The correct term for the latter activity is "cracker", but the popular press hasn't found out yet. The FreeBSD hackers disapprove strongly of cracking security, and have nothing to do with it. In the past, there has been some friction which stems from the different viewpoints of the two groups. The newcomers accused the hackers of being arrogant, stuck-up, and unhelpful, while the hackers accused the newcomers of being stupid, unable to read plain English, and expecting everything to be handed to them on a silver platter. Of course, there's an element of truth in both these claims, but for the most part these viewpoints come from a sense of frustration. In this document, I'd like to do something to relieve this frustration and help everybody get better results from FreeBSD-questions. In the following section, I recommend how to submit a question; after that, we'll look at how to answer one. II: How to unsubscribe from FreeBSD-questions ============================================== When you subscribed to FreeBSD-questions, you got a welcome message from Majordomo@FreeBSD.ORG. In this message, amongst other things, it told you how to unsubscribe. Here's a typical message: Welcome to the freebsd-questions mailing list! If you ever want to remove yourself from this mailing list, you can send mail to "Majordomo@FreeBSD.ORG" with the following command in the body of your email message: unsubscribe freebsd-questions Greg Lehey Here's the general information for the list you've subscribed to, in case you don't already have it: FREEBSD-QUESTIONS User questions This is the mailing list for questions about FreeBSD. You should not send "how to" questions to the technical lists unless you consider the question to be pretty technical. Normally, unsubscribing is even simpler than the message suggests: you don't need to specify your mail ID unless it is different from the one which you specified when you subscribed. If Majordomo replies and tells you (incorrectly) that you're not on the list, this may mean one of two things: 1. You have changed your mail ID since you subscribed. That's where keeping the original message from majordomo comes in handy. For example, the sample message above shows my mail ID as grog@lemis.de. Since then, I have changed it to grog@lemis.com. If I were to try to remove grog@lemis.com from the list, it would fail: I would have to specify the name with which I joined. 2. You're subscribed to a mailing list which is subscribed to FreeBSD-questions. If that's the case, you'll have to figure out which one it is and get your name taken off that one. If you're not sure which one it might be, check the headers of the messages you receive from freebsd-questions: maybe there's a clue there. If you've done all this, and you still can't figure out what's going on, send a message to Postmaster@FreeBSD.org, and he will sort things out for you. Don't send a message to FreeBSD-questions: they can't help you. III: Should I ask -questions, -newbies or -hackers? =================================================== Two mailing lists handle general questions about FreeBSD, FreeBSD-questions and FreeBSD-hackers. In addition, the FreeBSD-newbies list caters specifically for people who are new to FreeBSD and may be having trouble getting used to the environment. In some cases, it's not really clear which group you should ask. The following criteria should help for 99% of all questions, however: If the question is of a general nature, first check whether this isn't a Frequently Asked Question (FAQ). There's a list of these questions at http://www.freebsd.org/FAQ/FAQ.html, and also on your own system (once you've installed it) at /usr/share/doc/FAQ/FAQ.html. Check there, and if you don't find an answer, ask FreeBSD-questions. Examples might be questions about installing FreeBSD or the use of a particular UNIX utility. If you think the question relates to a bug, but you're not sure, or you don't know how to look for it, send the message to FreeBSD-questions. If the question relates to a bug, and you're almost sure that it's a bug (for example, you can pinpoint the place in the code where it happens, and you maybe have a fix), then send the message to FreeBSD-hackers. You should also enter a problem report with the send-pr utility. If the question relates to enhancements to FreeBSD, and you can make suggestions about how to implement them, then send the message to FreeBSD-hackers. If the question is of particularly technical nature, such as implementation details or suggestions for improvements, then send the message to FreeBSD-hackers. If you're new to FreeBSD, and the message is about your own relationship to FreeBSD, send the message to FreeBSD-newbies. There are also a number of other specialized mailing lists, for example FreeBSD-isp, which caters to the interests of ISPs (Internet Service Providers) who run FreeBSD. If you happen to be an ISP, this doesn't mean you should automatically send your questions to FreeBSD-isp. The criteria above still apply, and it's in your interest to stick to them, since you're more likely to get good results that way. IV: How to submit a question ============================= When submitting a question to FreeBSD-questions, consider the following points: 1. Remember that nobody gets paid for answering a FreeBSD question. They do it of their own free will. You can influence this free will positively by submitting a well-formulated question supplying as much relevant information as possible. You can influence this free will negatively by submitting an incomplete, illegible, or rude question. It's perfectly possible to send a message to FreeBSD-questions and not get an answer even if you follow these rules. It's much more possible to not get an answer if you don't. In the rest of this document, we'll look at how to get the most out of your question to FreeBSD-questions. 2. Not everybody who answers FreeBSD questions reads every message: they look at the subject line and decide whether it interests them. Clearly, it's in your interest to specify a subject. ``FreeBSD problem'' or ``Help'' aren't enough. If you provide no subject at all, many people won't bother reading it. If your subject isn't specific enough, the people who can answer it may not read it. 3. Format your message so that it is legible, and PLEASE DON'T SHOUT!!!!!. We appreciate that a lot of people don't speak English as their first language, and we try to make allowances for that, but it's really painful to try to read a message written full of typos or without any line breaks. A lot of badly formatted messages come from bad mailers or badly configured mailers. The following mailers are known to send out badly formatted messages without you finding out about them: Eudora exmh Microsoft Exchange Microsoft Internet Mail Microsoft Outlook Netscape As you can see, the mailers in the Microsoft world are frequent offenders. If at all possible, use a UNIX mailer. If you must use a mailer under Microsoft environments, make sure it is set up correctly. Try not to use MIME: a lot of people use mailers which don't get on very well with MIME. For further information on this subject, check out http://www.lemis.com/email.html. 4. Make sure your time and time zone are set correctly. This may seem a little silly, since your message still gets there, but many of the people you are trying to reach get several hundred messages a day. They frequently sort the incoming messages by subject and by date, and if your message doesn't come before the first answer, they may assume they missed it and not bother to look. 5. Don't include unrelated questions in the same message. Firstly, a long message tends to scare people off, and secondly, it's more difficult to get all the people who can answer all the questions to read the message. 6. Specify as much information as possible. This is a difficult area, and we need to expand on what information you need to submit, but here's a start: If you get error messages, don't say ``I get error messages'', say (for example) ``I get the error message 'No route to host'''. If your system panics, don't say ``My system panicked'', say (for example) ``my system panicked with the message 'free vnode isn't'''. If you have difficulty installing FreeBSD, please tell us what hardware you have. In particular, it's important to know the IRQs and I/O addresses of the boards installed in your machine. If you have difficulty getting PPP to run, describe the configuration. Which version of PPP do you use? What kind of authentication do you have? Do you have a static or dynamic IP address? What kind of messages do you get in the log file? 7. If you don't get an answer immediately, or if you don't even see your own message appear on the list immediately, don't resend the message. Wait at least 24 hours. The FreeBSD mailer offloads messages to a number of subordinate mailers around the world, and sometimes it can take several hours for the mail to get through. And once it gets through, the one person who might know the answer will probably just have gone to bed in his part of the world. 8. If you do all this, and you still don't get an answer, there could be other reasons. For example, the problem is so complicated that nobody knows the answer, or the person who does know the answer was offline. If you don't get an answer after, say, a week, it might help to re-send the message. If you don't get an answer to your second message, though, you're probably not going to get one from this forum. Resending the same message again and again will only make you unpopular. To summarize, let's assume you know the answer to the following question (yes, it's the same one in each case :-). You choose which of these two questions you would be more prepared to answer: Message 1: Subject: (none) I just can't get hits damn silly FereBSD system to workd, and Im really good at this tsuff, but I have never seen anythign sho difficult to install, it jst wont work whatever I try so why don't y9ou guys tell me what I doing wrong. ---------------------------------------------------------------------- Message 2: Subject: Problems installing FreeBSD I've just got the FreeBSD 2.1.5 CD-ROM from Walnut Creek, and I'm having a lot of difficulty installing it. I have a 66 MHz 486 with 16 MB of memory and an Adaptec 1540A SCSI board, a 1.2GB Quantum Fireball disk and a Toshiba 3501XA CD-ROM drive. The installation works just fine, but when I try to reboot the system, I get the message "Missing Operating System". ---------------------------------------------------------------------- V: How to answer a question =========================== Before you answer a question to FreeBSD-questions, consider: 1. A lot of the points on submitting questions also apply to answering questions. Read them. 2. Has somebody already answered the question? The easiest way to check this is to sort your incoming mail by subject: then (hopefully) you'll see the question followed by any answers, all together. If somebody has already answered it, it doesn't automatically mean that you shouldn't send another answer. But it makes sense to read all the other answers first. 3. Do you have something to contribute beyond what has already been said? In general, "Yeah, me too" answers don't help much, although there are exceptions, like when somebody is describing a problem he's having, and he doesn't know whether it's his fault or whether there's something wrong with the hardware or software. If you do send a "me too" answer, you should also include any further relevant information. 4. Are you sure your answer is correct? If not, wait a day or so. If nobody else comes up with a better answer, you can still reply and say, for example, "I don't know if this is correct, but since nobody else has replied, why don't you try replacing your ATAPI CD-ROM with a frog?". 5. Don't do a group reply; lots of people send messages with hundreds of CCs. Unless there's a good reason to do otherwise, just reply to the person and copy FreeBSD-questions. 6. Trim the original message to the minimum, and use some technique to identify which text came from the original message, and which text you add. I personally find that prepending "> " to the original message works best. Leaving white space after the ">" and leave empty lines between your text and the original text both make the result more readable. Most mailers change the subject line on a reply by prepending a text such as "Re: ". If your mailer doesn't do it automatically, you should do it manually. If the submitter didn't abide by format conventions (lines too long, inappropriate subject line), *please* fix it. In the case of an incorrect subject line (such as "HELP!!??"), change the subject line to (say) "Re: Difficulties with sync PPP (was: HELP!!??)". That way other people trying to follow the thread will have less difficulty following it. In such cases, it's appropriate to say what you did and why you did it, but try not to be rude. If you find you can't answer without being rude, don't answer. If you just want to reply to a message because of its bad format, just reply to the submitter, not to the list. You can just send him this message in reply, if you like. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 17: 2:57 1999 Delivered-To: freebsd-questions@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 645) id 681E215973; Fri, 20 Aug 1999 17:02:33 -0700 (PDT) To: FreeBSD-questions@FreeBSD.org Subject: "The Complete FreeBSD", third edition: errata and addenda Message-Id: <19990821000233.681E215973@hub.freebsd.org> Date: Fri, 20 Aug 1999 17:02:33 -0700 (PDT) From: grog@FreeBSD.ORG (Greg Lehey) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Errata and addenda for the Complete FreeBSD, third edition Last revision: 2 August 1999 The trouble with books is that you can't update them the way you can a web page or any other online documentation. The result is that most leading edge computer books are out of date almost before they are printed. Unfortunately, ``The Complete FreeBSD'', published by Walnut Creek, is no exception. In- evitably, a number of bugs and changes have surfaced. The following is a list of modifications which go beyond simple typos. They relate to the third edition, formatted on 17 May 1999. You'll find this information on page iv (the page before the beginning of the Table of Contents). See the end of this document for instructions on how to find the errata for an older version. You can get the current document in four forms: o A PostScript version, suitable for printing out, at ftp://ftp.lemis.com/pub/cfbsd/errata-3.ps. See page 302 of the third edition to find out how to print out PostScript. If at all possible, please take this document: it's closest to the original text. Be careful selecting this file with a web browser: it is often impossible to reload the document, and you may see a previously cached version. o An enhanced ASCII version at ftp://ftp.lemis.com/pub/cfbsd/errata-3.txt. When viewed with more or less, this version will show some highlighting and underlining. It's not suitable for direct viewing. o An ASCII-only version at ftp://ftp.lemis.com/pub/cfbsd/errata-3.ascii. This version is posted every week to the FreeBSD-questions mailing list. Only take this version if you have real problems with PostScript: I can't be sure that the lack of different fonts won't confuse the meaning. o A web version at http://www.lemis.com/errata-3.html. All these modifications have been applied to the ongoing source text of the book, so if you buy a later edition, they will be in it as well. If you find a Page 1 The Complete FreeBSD bug or a suspected bug in the book, please contact me at Page ii _______ The instructions on page ii (opposite the title page) tell you to look at ftp://ftp.lemis.com/pub/cfbsd/errata-2 for the errata list. That's wrong. Look at this list. Pages 190 and 191 _________________ The description is not very clear about which text appears when booting from floppy for initial install, and which appears when booting normally. The procedure is very similar, but there are some differences. Add the following text after the heading Boot messages: You'll boot your system in at least two different ways: initially you'll boot from floppy or CD-ROM in order to install the system. Later, after the system is installed, you'll boot from hard disk. The procedure is almost identical, so we'll look at both versions in the following examples. Replace the text from the middle of page 191 with: If you're booting from 1.44 MB floppies, you will then see: Please insert MFS root floppy and press enter: When you insert the MFS root floppy and press Enter, you see more twirling batons, then the UserConfig screen appears. UserConfig: Modifying the boot configuration ____________________________________________ After the kernel has been loaded, the following screen will appear if you are installing the system, or if you have requested it with the -c option to the boot loader: Page 206 ________ The bottom two lines on this page should be in bold constant font, indicating that this is input for your /etc/rc.config file Page 2 Errata and addenda for the Complete FreeBSD, third edition nfs_client_enable="YES" # This host is an NFS client (or NO). nfs_server_enable="YES" # This host is an NFS server (or NO). Page 265 ________ The example on the second half of the page refers to the old SCSI driver. The scsi program is no longer available in FreeBSD 3.x. Instead, use the camcontrol program. Replace the text with:. Modern disks make provisions for recovering from such errors by allocating an alternate sector for the data. IDE drives do this automatically, but with SCSI drives you have the option of enabling or disabling reallocation. Usually it is turned on when you buy them, but occasionally it is not. When installing a new disk, you should check that the parameters ARRE (Auto Read Reallocation Enable) and AWRE (Auto Write Reallocation Enable) are turned on. For example, to check and set the values for disk da1, you would enter: # camcontrol modepage da1 -m 1 -e -P 3 # scsi -f /dev/rda1c -m 1 -e -P 3 This command will start up your favourite editor (either the one specified in the EDITOR environment variable, or vi by default) with the following data: AWRE (Auto Write Reallocation Enbld): 0 ARRE (Auto Read Reallocation Enbld): 1 TB (Transfer Block): 0 RC (Read Continuous): 0 EER (Enable Early Recovery): 0 PER (Post Error): 0 DTE (Disable Transfer on Error): 0 DCR (Disable Correction): 0 Read Retry Count: 16 Correction Span: 41 Head Offset Count: 0 Data Strobe Offset Count: 0 Write Retry Count: 16 Recovery Time Limit: 0 The values for AWRE and ARRE should both be 1. If they aren't, as in this case, where AWRE is 0, change the data with the editor, save it, and exit. The camcontrol program will write the data back to the disk and enable the option. Page 3 The Complete FreeBSD Page 331 ________ The description of the config refers to the SCSI drive sd0. This is the old name; in FreeBSD version 3, SCSI drives are called da, so this reference should be da0. Thanks to Francisco Reyes for pointing out this problem. Page 362 ________ Replace the text at the top of the page with: Next, change to the build directory and build the kernel: # cd ../../compile/FREEBIE # make depend # make The make depend is needed even if the directory has just been created: apart from creating dependency information, it also creates some files needed for the build. Thanks to Mark Ovens for drawing this to my attention, and to Francisco Reyes and Bill Fumerola for pointing out that it still wasn't fixed in the third edition. Page 409 ________ The information on setting the default routers specified the wrong end of the PPP links in some places. It should always be the ``far'' end of the link. Replace the second example on page 409, and the text following it, with this text: defaultrouter="139.130.136.129" # Set to default gateway (or NO). static_routes="" # Set to static route list (or leave empty). gateway_enable="YES" # Set to YES if this host will be a gateway. This is the normal way to set the default route on a point-to-point interface. In fact, for PPP you don't need to specify the default address: the PPP packages will set it for you when the link comes up. This makes it possible to Page 4 Errata and addenda for the Complete FreeBSD, third edition set default routes when you're forced to use dynamic IP addresses, where you don't know the address at this point. We'll see how PPP does this on page 446. In the first example on page 410, the sixth example on page 412 and the second example on page 413, replace the defaultrouter definition with: defaultrouter="139.130.237.65" # Set to default gateway (or NO). Thanks to Andreas Longwitz for pointing out this error. Getting errata for older editions of the book _____________________________________________ There have been a total of five different versions of ``The Complete FreeBSD''. The most accurate way to distinguish them is by the format date, which you'll find at the bottom of page iv (the page before the beginning of the Table of Contents) in all versions of the book. 1. The first was titled ``Installing and running FreeBSD'', and was formatted on 24 February 1996. No errata list exists for this book. 2. For the first edition (19 July 1996), get ftp://ftp.lemis.com/pub/cfbsd/er- rata-1. This same file is also available via the web link http://www.lemis.com/errata-1. I am no longer updating this errata list. 3. The list for the second edition (16 December 1997) is available in four forms: o A PostScript version, suitable for printing out, at ftp://ftp.lemis.com/pub/cfbsd/errata-2.ps. See page 222 of the second edition to find out how to print out PostScript. If at all possible, please take this document: it's closest to the original text. Be careful selecting this file with a web browser: it is often impossible to reload the document, and you may see a previously cached version. o An enhanced ASCII version at ftp://ftp.lemis.com/pub/cfbsd/errata-2.txt. When viewed with more or less, this version will show some highlighting and underlining. It's not suitable for direct viewing. o An ASCII-only version at ftp://ftp.lemis.com/pub/cfbsd/errata-2.ascii. This version is posted every week to the FreeBSD-questions mailing list. Only Page 5 Getting errata for older editions of the book take this version if you have real problems with PostScript: I can't be sure that the lack of different fonts won't confuse the meaning. o A web version at http://www.lemis.com/errata-2.html. 4. The revised second edition was formatted on 11 February 1999. As the name suggests, it's not a complete new edition: in fact, only three chapters are different: o The chapter ``Setting up X11'' has been brought up to date. o Appendix D (``Contents of the Ports Collection'') has been replaced by two appendixes, ``Errata and Addenda'' (the errata list up to date at the time) and ``FreeBSD 3.0'', which describes the differences between FreeBSD 2.x and FreeBSD 3.x. There is no separate errata list for this book. Refer to the second edition errata list. 5. The current, third edition, formatted on 17 May 1999. This is the correct list for this edition. Page 6 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 17: 3: 3 1999 Delivered-To: freebsd-questions@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 645) id 1EF5815969; Fri, 20 Aug 1999 17:02:33 -0700 (PDT) To: FreeBSD-questions@FreeBSD.org Subject: "The Complete FreeBSD", second edition: errata and addenda Message-Id: <19990821000233.1EF5815969@hub.freebsd.org> Date: Fri, 20 Aug 1999 17:02:33 -0700 (PDT) From: grog@FreeBSD.ORG (Greg Lehey) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Errata and addenda for the Complete FreeBSD, second edition Last revision: 21 June 1999 The trouble with books is that you can't update them the way you can a web page or any other online documentation. The result is that most leading edge computer books are out of date almost before they are printed. Unfortunately, ``The Complete FreeBSD'', published by Walnut Creek, is no exception. In- evitably, a number of bugs and changes have surfaced. The following is a list of modifications which go beyond simple typos. They relate to the second edition, formatted on 16 December 1997. If you have this book, please check this list. If you have the first edition of 19 July 1996, please check ftp://ftp.lemis.com/pub/cfbsd/errata-1. This same file is also available via the web link http://www.lemis.com/. This list is available in four forms: o A PostScript version, suitable for printing out, at ftp://ftp.lemis.com/pub/cfbsd/errata-2.ps. See page 222 of the book to find out how to print out PostScript. If at all possible, please take this document: it's closest to the original text. Be careful selecting this file with a web browser: it is often impossible to reload the document, and you may see a previously cached version. o An enhanced ASCII version at ftp://ftp.lemis.com/pub/cfbsd/errata-2.txt. When viewed with more or less, this version will show some highlighting and underlining. It's not suitable for direct viewing. o An ASCII-only version at ftp://ftp.lemis.com/pub/cfbsd/errata-2.ascii. This version is posted every week to the FreeBSD-questions mailing list. Only take this version if you have real problems with PostScript: I can't be sure that the lack of different fonts won't confuse the meaning. o A web version at http://www.lemis.com/errata-2.html. All these modifications have been applied to the ongoing source text of the book, so if you buy a later edition, they will be in it as well. If you find a Page 1 The Complete FreeBSD bug or a suspected bug in the book, please contact me at General changes _______________ o In a number of places, I suggest the use of the following command to find process information: $ ps aux | grep foo Unfortunately, ps is sensitive to the column width of the terminal emulator upon which it is working. This command usually works fine on a relatively wide xterm, but if you're running on an 80-column terminal, it may truncate exactly the information you're looking for, so you end up with no output. You can fix that with the w option: $ ps waux | grep foo Thanks to Sue Blake for this information Location of the sample files ____________________________ On the 2.2.5 CD-ROM only, the location of the sample files does not match the specifications in the book (/book on the first CD-ROM). The 2.2.5 CD-ROM came out before the book, and it contains the files on the third (repository) CD-ROM as a single gzipped tar file /xperimnt/cfbsd/cfbsd.tar.gz. It contains the following files: drwxr-xr-x jkh/jkh 0 Oct 17 13:01 1997 cfbsd/ drwxr-xr-x jkh/jkh 0 Oct 17 13:01 1997 cfbsd/mutt/ -rw-r--r-- jkh/jkh 352 Oct 15 15:21 1997 cfbsd/mutt/.mail_aliases -rw-r--r-- jkh/jkh 9394 Oct 15 15:22 1997 cfbsd/mutt/.muttrc drwxr-xr-x jkh/jkh 0 Oct 17 14:02 1997 cfbsd/scripts/ -rw-r--r-- jkh/jkh 18281 Oct 16 16:52 1997 cfbsd/scripts/.fvwm2rc -rwxr-xr-x jkh/jkh 1392 Oct 17 12:54 1997 cfbsd/scripts/install-desktop -rw-r--r-- jkh/jkh 296 Oct 17 12:35 1997 cfbsd/scripts/.xinitrc -rwxr-xr-x jkh/jkh 622 Oct 17 13:51 1997 cfbsd/scripts/install-rcfiles -rw-r--r-- jkh/jkh 1133 Oct 17 13:00 1997 cfbsd/scripts/Uutry -rw-r--r-- jkh/jkh 1028 Oct 17 14:02 1997 cfbsd/scripts/README drwxr-xr-x jkh/jkh 0 Oct 18 19:32 1997 cfbsd/docs/ -rw-r--r-- jkh/jkh 199111 Oct 16 14:29 1997 cfbsd/docs/packages.txt Page 2 Errata and addenda for the Complete FreeBSD, second edition -rw-r--r-- jkh/jkh 189333 Oct 16 14:28 1997 cfbsd/docs/packages-by-category.txt -rw-r--r-- jkh/jkh 188108 Oct 16 14:29 1997 cfbsd/docs/packages.ps -rw-r--r-- jkh/jkh 226439 Oct 16 14:27 1997 cfbsd/docs/packages-by-category.ps -rw-r--r-- jkh/jkh 788 Oct 16 15:01 1997 cfbsd/README -rw-r--r-- jkh/jkh 248 Oct 17 11:52 1997 cfbsd/errata To extract one of these files, say cfbsd/docs/packages.txt, and assuming you have the CD-ROM mounted as /cdrom, enter: # cd /usr/share/doc # tar xvzf /cdrom/xperimnt/cfbsd/cfbsd.tar.gz cfbsd/docs/packages.txt See page 209 for more information on using tar. These files are an early version of what is described in the book. I'll put up some updated versions on ftp://ftp.lemis.com/ in the near future. Thanks to Frank McCormick for drawing this to my attention. Chapter 8: Setting up X11 _________________________ For FreeBSD 2.2.7, this chapter has changed sufficiently to make it impractical to distribute errata. You can download the PostScript version from ftp://www.lemis.com/pub/cfbsd/xsetup.ps, or the ASCII version from ftp://www.lemis.com/pub/cfbsd/xsetup.txt. No HTML version is available. Page xxxiv __________ Before the discussion of the shell prompts in the middle of the page, add: In this book, I recommend the use of the Bourne shell or one of its descendents (sh, bash, pdksh, ksh or zsh). With the exception of sh, they are all in the Ports Collection. I personally use the bash shell. This is a personal preference, and a recommendation, but it's not the standard shell. The standard BSD shell is the C shell (csh), which has a fuller- featured descendent tcsh. In particular, the standard installation sets the root user up with a csh. See page 152 (in this errata) for details of how to change the shell. Page 3 General changes Page 11: Reading the handbook _____________________________ The CD-ROM now includes Netscape. Replace the last paragraph on the page and the example on the following page with: If you're running X, you can use a browser like netscape to read the handbook. If you don't have X running yet, use lynx. Both of these programs are included on the CD-ROM. To install them, enter: # pkg_add /cdrom/packages/All/netscape-communicator-4.5.tgz or # pkg_add /cdrom/packages/All/lynx-2.8.1.1.tgz The numbers after the name (4.5 and 2.8.1.1) may change after this book has been printed. Use ls to list the names if you can't find these particular versions. Note that lynx is not a complete substitute for netscape: since it is text- only, it is not capable of displaying the large majority of web pages correctly. It will suffice for reading most of the handbook, however. Thanks to Stuart Henderson and for drawing this to my attention. Page 12: Printing the handbook ______________________________ The instructions for formatting the handbook are obsolete. Replace the section starting Alternatively, you can print out the handbook with the following text: Alternatively, you can print out the handbook. You need to have the documentation sources (/usr/doc) installed on your system. You can find them on the second CD-ROM in the directory of the same name. To install them, first mount your CD-ROM (see page 175). Then enter: $ cd /cdrom/usr/doc/handbook $ mkdir -p /usr/doc/handbook you may need to be root for this operation $ cp -pr * /usr/doc/handbook You have a choice of formats for the output: o ascii will give you plain 7-bit ASCII output, suitable for reading on a character-mode terminal. Page 4 Errata and addenda for the Complete FreeBSD, second edition o html will give you HTML output, suitable for browsing with a web browser. o latex will give you LATEX format, suitable for further processing with TEX and LATEX. o ps will give you PostScript output, probably the best choice for printing. o roff will give you output in troff source. You can process this output with nroff or troff, but it's currently not very polished. LATEX output is a better choice if you want to process it further. Once you have decided your format, use make to create the document. For example, if you decide on PostScript format, you would enter: $ make FORMATS=ps This creates a file handbook.ps which you can then print to a PostScript printer or with the aid of ghostscript (see page 222). Thanks to Bob Beer for drawing this to my attention. Page 45: Preparing floppies for installation _____________________________________________ Replace the paragraph below the list of file names (in the middle of the page) with: The floppy set should contain the file bin.inf and the ones whose names start with bin. followed by two letters. These other files are all 240640 bytes long, except for the final one which is usually shorter. Use the MS-DOS COPY program to copy as many files as will fit onto each disk (5 or 6) until you've got all the distributions you want packed up in this fashion. Copy each distribution into subdirectory corresponding to the base name--for example, copy the bin distribution to the files A:\BIN\BIN.INF, A:\BIN\BIN.AA and so on. Page 80 and 81 ______________ In a couple of examples, the FreeBSD partition is shown as type 164. It should be 165. Thanks to an unknown contributer for this correction (sorry, I lost your name). Page 5 General changes Page 88: setting up for dumping _______________________________ The example mentions a variable savecore in /etc/rc.conf. This variable is no longer used--it's enough to set the variable dumpdev. Page 92 _______ At the end of the section How to install a package add the text: Alternatively, you can install packages from the /stand/sysinstall Final Configuration Menu. We saw this menu on page in figure 4-14 on page 71. When you start sysinstall from the command line, you get to this menu by selecting Index, and then selecting Configure. Page 93 _______ Before the heading Install ports from the first CD-ROM add: Install ports when installing the system ________________________________________ The file ports/ports.tgz on the first CD-ROM is a tar archive containing all the ports. You can install it with the base system if you select the Custom distribution and include the ports collection. If you didn't install them at the time, use the following method to install them all (about 40 MB). Make sure your CD-ROM is mounted (in this example on /cdrom), and enter: Page 96 _______ Replace the example at the top of the page with: Instead, do: # cd /cd4/ports/distfiles # mkdir -p /usr/ports/distfiles make sure you have a distfiles directory # for i in *; do > ln -s /cd4/ports/distfiles/$i /usr/ports/distfiles/$i > done Page 6 Errata and addenda for the Complete FreeBSD, second edition If you're using csh or tcsh, enter: # cd /cd4/ports/distfiles # mkdir -p /usr/ports/distfiles make sure you have a distfiles directory # foreach i (*) ? ln -s /cd4/ports/distfiles/$i /usr/ports/distfiles/$i ? end Thanks to Christopher Raven and Francois Jacques for drawing this to my attention. Page 104 ________ The examples at the bottom of the page and the top of the next page specify the wrong directory (/usr). It should be /usr/X11R6. Replace the examples with: For a full install, choose /cdrom/dists/XF86331/X331*.tgz. If you are using sh, enter: # cd /usr/X11R6 # for i in /cdrom/dists/XF86331/X331*.tgz; do # tar xzf $i # done If you are using csh, enter: % cd /usr/X11R6 % foreach i (/cdrom/dists/XF86331/X331*.tgz) % tar xzf $i % end For a minimal installation, first choose a server archive corresponding to your VGA board. If table 8-2 on page 103 doesn't give you enough information, check the server man pages, starting on page 1545, which list the VGA chip sets supported by each server. For example, if you have an ET4000 based board you will use the XF86_SVGA server. In this case you would enter: # cd /usr/X11R6 # tar xzf /cdrom/dists/XF86331/X331SVGA.tgz substitute your server name here # for i in bin fnts lib xicf; do # tar xzf /cdrom/dists/XF86331/X331$i.tgz # done Page 7 Install ports when installing the system If you are using csh, enter: % cd /usr/X11R6 % tar xzf /cdrom/dists/XF86331/X331SVGA.tgz substitute your server name here % foreach i (bin fnts lib xicf) % tar xzf /cdrom/dists/XF86331/$i % end Thanks to Manuel Enrique Garcia Cuesta for pointing out this one. Page 128 ________ Replace the complete text below the example with the following: These values are defaults, and many are either incorrect for FreeBSD (for example the device name /dev/com1) or do not apply at all (for example Xqueue). If you are configuring manually, select one Protocol and one Device entry from the following selection. If you must use a two-button mouse, uncomment the keyword Emulate3Buttons--in this mode, pressing both mouse buttons simultane- ously within Emulate3Timeout milliseconds causes the server to report a middle button press. Section "Pointer" Protocol "Microsoft" for Microsoft protocol mice Protocol "MouseMan" for Logitech mice Protocol "PS/2" for a PS/2 mouse Protocol "Busmouse" for a bus mouse Device "/dev/ttyd0" for a mouse on the first serial port Device "/dev/ttyd1" for a mouse on the second serial port Device "/dev/ttyd2" for a mouse on the third serial port Device "/dev/ttyd3" for a mouse on the fourth serial port Device "/dev/psm0" for a PS/2 mouse Device "/dev/mse0" for a bus mouse Emulate3Buttons only for a two-button mouse EndSection You'll notice that the protocol name does not always match the manufacturer's Page 8 Errata and addenda for the Complete FreeBSD, second edition name. In particular, the Logitech protocol only applies to older Logitech mice. The newer ones use either the MouseMan or Microsoft protocols. Nearly all modern serial mice run one of these two protocols, and most run both. If you are using a bus mouse or a PS/2 mouse, make sure that the device driver is included in the kernel. The GENERIC kernel contains drivers for both mice, but the PS/2 driver is disabled. Use UserConfig (see page 50) to enable it. Page 140 ________ Just before the paragraph The super user add the following paragraph: If you do manage to lose the root password, all may not be lost. Reboot the machine to single user mode (see page 157), and enter: # mount -u / mount root file system read/write # mount /usr mount /usr file system (if separate) # passwd root change the password for root Enter new password: Enter password again: # ^D enter ctrl-D to continue with startup If you have a separate /usr file system (the normal case), you need to mount it as well, since the passwd program is in the directory /usr/bin. Note that you should explicitly state the name root: in single user mode, the system doesn't have the concept of user IDs. Page 148 ________ Replace the text at the top of the page with: Modern shells supply command line editing which resembles the editors vi or Emacs. In bash, sh, ksh, and zsh you can make the choice by entering Page 152 ________ After figure 10-8, add the following text: It would be tedious for every user to put settings in their private initialization files, so the shells also read a system-wide default file. For the Bourne shell family, it is /etc/profile, while the C shell family has three Page 9 Install ports when installing the system files: /etc/csh.login to be executed on login, /etc/csh.cshrc to be executed when a new shell is started after you log in, and /etc/csh.logout to be executed when you stop a shell. The start files are executed before the corresponding individual files. In addition, login classes (page 141) offer another method of setting environment variables at a global level. Changing your shell ___________________ The FreeBSD installation gives root a C shell, csh. This is the traditional Berkeley shell, but it has a number of disadvantages: command line editing is very primitive, and the script language is significantly different from that of the Bourne shell, which is the de facto standard for shell scripts: if you stay with the C shell, you may still need to understand the Bourne shell. The latest version of the Bourne shell sh also includes some command line editing. See page 148 for details of how to enable it. You can get better command line editing with tcsh, in the Ports Collection. You can get both better command line editing and Bourne shell syntax with bash, also in the Ports Collection. If you have root access, you can use vipw to change your shell, but there's a more general way: use chsh (Change Shell). Simply run the program. It starts your favourite editor (as defined by the EDITOR environment variable). Here's an example before: #Changing user database information for velte. Shell: /bin/csh Full Name: Jack Velte Location: Office Phone: Home Phone: You can change anything after the colons. For example, you might change this to: #Changing user database information for velte. Shell: /usr/local/bin/bash Full Name: Jack Velte Location: On the road Office Phone: +1-408-555-1999 Home Phone: Page 10 Errata and addenda for the Complete FreeBSD, second edition chsh checks and updates the password files when you save the modifications and exit the editor. The next time you log in, you get the new shell. chsh tries to ensure you don't make any mistakes--for example, it won't let you enter the name of a shell which isn't mentioned in the file /etc/shells--but it's a very good idea to check the shell before logging out. You can try this with su, which you normally use to become super user: bumble# su velte Password: su-2.00$ note the new prompt There are a couple of problems in using tcsh or bash as a root shell: o The shell for root must be on the root file system, otherwise it will not work in single user mode. Unfortunately, most ports of shells put the shell in the directory /usr/local/bin, which is almost never on the root file system. o Most shells are dynamically linked: they rely on library routines in files such as /usr/lib/libc.a. These files are not available in single user mode, so the shells won't work. You can solve this problem by creating statically linked versions of the shell, but this requires programming experience beyond the scope of this book. If you can get hold of a statically linked version, perform the following steps to install it: o Copy the shell to /bin, for example: # cp /usr/local/bin/bash /bin o Add the name of the shell to /etc/shells, in this example the line in bold print: # List of acceptable shells for chpass(1). # Ftpd will not allow users to connect who are not using # one of these shells. /bin/sh /bin/csh /bin/bash You can then change the shell for root as described above. Page 11 Install ports when installing the system Thanks to Lars Koller for drawing this to my attention. Page 160 ________ Replace the text at the fourth bullet with the augmented text: The second-level boot locates the kernel, by default the file /kernel on the root file system, and loads it into memory. It prints the Boot: prompt at this point so that you can influence this choice--see the man page on page 579 for more details of what you can enter at this prompt. Page 169 ________ Replace the last paragraph on the page with: The standard solution for these problems is to relocate the /tmp file system to a different directory, say /usr/tmp, and create a symbolic link from /usr/tmp to /tmp--see Chapter 4, Installing FreeBSD, page 72, for more details. Thanks to Charlie Sorsby for drawing this to my attention. Page 176 ________ Add the following paragraph Unmounting file systems When you mount a file system, the system assumes it is going to stay there, and in the interests of efficiency it delays writing data back to the file system. This is the same effect we discussed on page 158. As a result, if you want to stop using a file system, you need to tell the system about it. You do this with the umount command. Note the spelling--there's no n in the command name. You need to do this even with read-only media such as CD-ROMs: the system assumes it can access the data from a mounted file system, and it gets quite unhappy if it can't. Where possible, it locks removable media so that you can't remove them from the device until you unmount them. Using umount is straightforward: just tell it what to unmount, either the device name or the directory name. For example, to unmount the CD-ROM we Page 12 Errata and addenda for the Complete FreeBSD, second edition mounted in the example above, you could enter one of these commands: # umount /dev/cd1a # umount /cd1 Before unmounting a file system, umount checks that nobody is using it. If somebody is using it, it will refuse to unmount it with a message like umount: /cd1: Device busy. This message often occurs because you have changed your directory to a directory on the file system you want to remove. For example (which also shows the usefulness of having directory names in the prompt): === root@freebie (/dev/ttyp2) /cd1 16 -> umount /cd1 umount: /cd1: Device busy === root@freebie (/dev/ttyp2) /cd1 17 -> cd === root@freebie (/dev/ttyp2) ~ 18 -> umount /cd1 === root@freebie (/dev/ttyp2) ~ 19 -> Thanks to Ken Deboy for pointing out this omission. Page 180 ________ The example in the middle of the page should read: For example, to generate a second set of 32 pseudo-terminals, enter: # cd /dev # ./MAKEDEV pty1 You can generate up to 256 pseudo-terminals. They are named ttyp0 through ttypv, ttyq0 through ttyqv, ttyr0 through ttyrv, ttys0 through ttysv, ttyP0 through ttyPv, ttyQ0 through ttyQv, ttyR0 through ttyRv and ttyS0 through ttySv. To create each set of 32 terminals, use the number of the set: the first set is pty0, and the eighth set is pty7. Note that some processes, such as xterm, only look at ttyp0 through ttysv. Thanks to Karl Wagner for pointing out this error. Page 197, first line ____________________ The text of the first full sentence reads: Page 13 Install ports when installing the system The first name, up the the symbol, is the label. In fact, it should read: The first name, up to the | symbol, is the label. Page 208, middle of page ________________________ The example shows the file name /dev/rst0 when using the Bourne shell, and /dev/nrst0 when using C shell and friends. This is inconsistent; use /dev/nrst0 with any shell if you want a non-rewinding tape, or /dev/rst0 if you want a rewinding tape. Thanks to Norman C Rice for pointing out this one. Page 219 ________ Before the section Testing the spooler add the following section: As we saw above, the line printer daemon lpd is responsible for printing spooled jobs. By default it isn't started at boot time. If you're root, you can start it by name: # lpd Normally, however, you will want it to be started automatically when the system starts up. You do this by setting the variable lpd_enable in /etc/rc.conf: lpd_enable="YES" # Run the line printer daemon See page for more details of /etc/rc.conf. Another line in /etc/rc.conf refers to the line printer daemon: lpd_flags="" # Flags to lpd (if enabled). You don't normally need to change this line. See the man page for lpd for details of the flags. Thanks to Tommy G. James for bringing this to my attention. Page 14 Errata and addenda for the Complete FreeBSD, second edition Page 231 ________ Replace the first line of the example with: xhost presto bumble gw The original version allowed anybody on the Internet to access your system. Thanks to Jerry Dunham for drawing this one to my attention. Page 237 ________ In the section Installing the sample desktop, replace the first paragraph with: You'll find all the files described in this chapter on the first CD-ROM (Installation CD-ROM) in the directory /book. Remember that you must mount the CD-ROM before you can access the files--see page 175 for further details. The individual scripts are in the directory /book/scripts, but you'll probably find it easier to install them with the script install-desktop: Thanks to Chris Kaiser for drawing this to my attention. Page 242 ________ The instructions for extracting the source files from CD-ROM in the middle of page 242 are incorrect. You'll find the kernel sources on the first CD-ROM in the directory /src. Replace the example with: # mkdir -p /usr/src/sys # ln -s /usr/src/sys /sys # cd / # cat /cdrom/src/ssys.[a-d]* | tar xzvf - Thanks to Raymond Noel , Suttipan Limanond and Satwant for finding this one in several small slices. Page 15 Install ports when installing the system Page 257 ________ Replace the paragraph Berkeley Packet Filter with: pseudo-device bpfilter ______________________ The Berkeley Packet Filter (bpf) allows you to capture packets crossing a network interface to disk or to examine them with the tcpdump program. Note that this capability represents a significant compromise of network security. The number after bpfilter is the number of concurrent processes that can use the facility. Not all network interfaces support bpf. In order to use the Berkeley Packet Filter, you must also create the device nodes /dev/bpf0 to /dev/bpf3 (if you're using the default number 4). Current- ly, MAKEDEV doesn't help much--you need to create each device separately: # cd /dev # ./MAKEDEV bpf0 # ./MAKEDEV bpf1 # ./MAKEDEV bpf2 # ./MAKEDEV bpf3 Thanks to Christopher Raven for drawing this to my attention. Page 264 ________ In the list of disk driver flags, add: o Bit 12 (0x1000) enables LBA (logical block addressing mode). If this bit is not set, the driver accesses the disk in CHS (cylinder/head/sector) mode. o In CHS mode, if bits 11 to 8 are not equal to 0, they specify the number of heads to assume (between 1 and 15). The driver recalculates the number of cylinders to make up the total size of the disk. Page 16 Errata and addenda for the Complete FreeBSD, second edition Page 273, ``Building the kernel'' _________________________________ Replace the example with: Next, change to the build directory and build the kernel: # cd ../../compile/FREEBIE # make depend # make The make depend is needed even if the directory has just been created: apart from creating dependency information, it also creates some files needed for the build. Thanks to Mark Ovens for drawing this to my attention. Page 283, ``Creating the source tree'' ______________________________________ Add a third point to what you need to know: 3. Possibly, the date of the last update that you want to be included in the checkout. If you specify this date, cvs ignores any more recent updates. This option is often useful when somebody discovers a recently introduced bug in -CURRENT: you check out the modules as they were before the bug was introduced. You specify the date with the -D option, for example -D "10 December 1997". Page 285, after the second example. ___________________________________ Add the text: If you need to check out an older version, for example if there are problems with the most recent version of -CURRENT, you could enter: # cvs co -D "10 December 1997" src/sys This command checks out the kernel sources as of 10 December 1997. Page 17 Install ports when installing the system Page 294 ________ Add the following section: Problems executing Linux binaries _________________________________ One of the problems with the ELF format used by more recent Linux binaries is that they usually contain no information to identify them as Linux binaries. They might equally well be BSD/OS or UnixWare binaries. That's not really a problem at this point, since the only ELF format that FreeBSD 3.2 understands is Linux, but FreeBSD-CURRENT recognizes a native FreeBSD ELF format as well, and of course that's the default. If you want to run a Linux ELF binary on such a system, you must brand the executable using the program brandelf. For example, to brand the StarOffice program swriter3, you would enter: # brandelf -t linux /usr/local/StarOffice-3.1/linux-x86/bin/swriter3 Thanks to Dan Busarow for bringing this to my attention. Page 364, middle of page ________________________ Change the text from: The names MYADDR and HISADDR are keywords which represent the addresses at each end of the link. They must be written as shown, though they may be in lower case. to The names MYADDR and HISADDR are keywords which represent the addresses at each end of the link. They must be written as shown, though newer versions of ppp allow you to write them in lower case. Thanks to Mark S. Reichman for this correction. Page 368 ________ Replace the paragraph after the second example with: In FreeBSD version 3.0 and later, specify the options PPP_BSDCOMP and Page 18 Errata and addenda for the Complete FreeBSD, second edition PPP_DEFLATE to enable two kinds of compression. You'll also need to specify the corresponding option in Kernel PPP's configuration file. These options are not available in FreeBSD version 2. Thanks to Brian Somers for this information. Page 397 ________ In the section ``Nicknames'', the example should read: www IN CNAME freebie ftp IN CNAME presto In other words, there should be a space between CNAME and the system name. Page 422 ________ Replace the text above the example with: tcpdump is a program which monitors a network interface and displays selected information which passes through it. It uses the Berkeley Packet Filter (bpf), an optional component of the kernel. It is not included in the GENERIC kernel: see page 257 for information on how to configure it. If you don't configure the Berkeley Packet Filter, you will get a message like tcpdump: /dev/bpf0: device not configured If you forget to create the devices for bpf, you will get a message like: tcpdump: /dev/bpf0: No such file or directory Since tcpdump poses a potential security problem, you must be root in order to run it. The simplest way to run it is without any parameters. This will cause tcpdump to monitor and display all traffic on the first active network interface, normally Ethernet: Thanks to Christopher Raven for drawing this to my attention. Page 19 Install ports when installing the system Page 423 ________ The description at the top of the page incorrectly uses the term IP address instead of Ethernet address. In addition, a page number reference is incorrect. Replace the paragraph with: o Line 1 shows an ARP request: system presto is looking for the Ethernet address of wait. It would appear that wait is currently not responding, since there is no reply. o Line 2 is not an IP message at all. tcpdump shows the Ethernet addresses and the beginning of the packet. We don't consider this kind of request in this book. o Line 3 is a broadcast ntp message. We looked at ntp on page 160. o Line 4 is another attempt by presto to find the IP address of wait. o Line 5 is a broadcast message from bumble on the rwho port, giving information about its current load averages and how long it has been up. See the man page for rwho on page 1167 for more information. o Line 6 is from a TCP connection between port 6000 on freebie and port 1089 on presto. It is sending 384 bytes (with the sequence numbers 536925467 to 536925851; see page 305), and is acknowledging that the last byte it received from presto had the sequence number 325114346. The window size is 17280. o Line 7 is another ARP request. presto is looking for the Ethernet address of freebie. How can that happen? We've just seen that they have a TCP connection. In fact, ARP information expires after 20 minutes. It's quite possible that all connections between presto and freebie have been dormant for this period, so presto needs to find freebie's IP address again. o Line 8 is the ARP reply from freebie to presto giving its Ethernet address. o Line 9 shows a reply from presto on the connection to freebie that we saw on line 6. It acknowledges the data up to sequence number 536925851, but doesn't send any itself. o Line 10 shows another 448 bytes of data from freebie to presto, and acknowledging the same sequence number from presto as in line 6. Thanks to Sergei S. Laskavy for drawing this to my Page 20 Errata and addenda for the Complete FreeBSD, second edition attention. Page 450: anonymous ftp _______________________ Replace the paragraph starting with Create a user ftp: Create a user ftp, with the anonymous ftp directory as the home directory and the shell /dev/null. Using /dev/null as the shell makes it impossible to log in as user ftp, but does not interfere with the use of anonymous ftp. ftp can be a member of group bin, or you can create a new group ftp by adding the group to /etc/group. See page 138 for more details of adding users, and the man page on page 805 for adding groups. Thanks to Mark S. Reichman for drawing this to my attention. Page 466, before the ps example _______________________________ Add another bullet: o Finally, you may find it convenient to let some other system handle all your mail delivery for you: you just send anything you can't deliver locally to this other host, which sendmail calls a smart host. This is particularly convenient if you send your mail with UUCP. To tell sendmail to use a smart host (in our case, mail.example.net), find the following line in sendmail.cf: # "Smart" relay host (may be null) DS Change it to: # "Smart" relay host (may be null) DSmail.example.net Page 478, ``Running Apache'' ____________________________ The text describes the location of the server as /usr/local/www/server/httpd. This appears to depend on where you get the port from. Some people report the file being at the more likely location /usr/local/sbin/httpd (though note the Page 21 Install ports when installing the system directory sbin, not bin). Check both locations if you run into trouble. Thanks to Sue Blake for this information. Page 492 ________ Replace references to nmdb with nmbd. Page 493 ________ Replace the last paragraph on the page with: socket options is hardly mentioned in the documentation, but it's very important: many Microsoft implementations of TCP/IP are inefficient and establish a new TCP more often than necessary. Select the socket options TCP_NODELAY and IPTOS_LOWDELAY, which can speed up the response time of such applications by over 95%. Page 22 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 17: 3:58 1999 Delivered-To: freebsd-questions@freebsd.org Received: from rackmount.ORG (grill.rackmount.ORG [209.79.28.99]) by hub.freebsd.org (Postfix) with SMTP id C053715AD3 for ; Fri, 20 Aug 1999 17:03:40 -0700 (PDT) (envelope-from steve@grill.rackmount.ORG) Received: (qmail 98475 invoked by uid 1050); 20 Aug 1999 17:06:21 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 20 Aug 1999 17:06:21 -0000 Date: Fri, 20 Aug 1999 17:06:21 +0000 (GMT) From: steve To: Alex Cc: freebsd-questions@FreeBSD.ORG Subject: Re: controlling where ports install? In-Reply-To: <199908202116.RAA07519@biohazard-cafe.mit.edu> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This comes directly from the FreeBSD handbook which you should check out prior to asking questions on here. Only cause I'm a nice guy, I'll post without making you search, even though it's really not that hard (: * Q. Does the ports scheme only work if you have everything in /usr/ports? My system administrator says I must put everything under /u/people/guests/wurzburger, but it does not seem to work. A. You can use the PORTSDIR and PREFIX variables to tell the ports mechanism to use different directories. For instance, # make PORTSDIR=/u/people/guests/wurzburger/ports install will compile the port in /u/people/guests/wurzburger/ports and install everything under /usr/local. # make PREFIX=/u/people/guests/wurzburger/local install will compile it in /usr/ports and install it in /u/people/guests/wurzburger/local. And of course # make PORTSDIR=.../ports PREFIX=.../local install will combine the two (it is too long to fit on the page if I write it in full, but I am sure you get the idea). If you do not fancy typing all that in every time you install a port (and to be honest, who would?), it is a good idea to put these variables into your environment. --Steve steve@rackmount.org On Fri, 20 Aug 1999, Alex wrote: > Hi--- > > I'm fairly new to FreeBSD, coming from a mostly NetBSD background. > One thing NetBSD does that I like is that the package system > (ports in FreeBSD parlance) installs into a seperate path > (/usr/pkg) rather than into /usr/local/. (Please no flames. I > thought the NetBSD approach was stupid at first and just made > /usr/pkg a symlink to /usr/local. After some experience I decided > the other way was better --- having stuff I've installed by hand > segregated from stuff installed by the package system has IMHO its > merits. YMMV.) > > At any rate, I'm wondering whether the location where FreeBSD > installs ports can be set by some environment variable or other > straightforward mechanism? > > Thanks in advance, > > ---Alex > > Carl Alexander > ------------- MIT (where Alex hangs out): > xela@mit.edu Course VI (sometime special student) SIPB (prospective) > Mitgaard ("honorary mold") MITSFS LSC (night worker) > http://www.mit.edu/~xela > ------------- Work (where they call me 'Carl'): > carl@terc.edu System Administrator & User Services Manager, TERC > http://www.terc.edu > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 17:16:49 1999 Delivered-To: freebsd-questions@freebsd.org Received: from allegro.lemis.com (allegro.lemis.com [192.109.197.134]) by hub.freebsd.org (Postfix) with ESMTP id 227AF14DC9 for ; Fri, 20 Aug 1999 17:16:41 -0700 (PDT) (envelope-from grog@freebie.lemis.com) Received: from freebie.lemis.com (freebie.lemis.com [192.109.197.137]) by allegro.lemis.com (8.9.1/8.9.0) with ESMTP id JAA02739; Sat, 21 Aug 1999 09:45:33 +0930 (CST) Received: (from grog@localhost) by freebie.lemis.com (8.9.3/8.9.0) id JAA70661; Sat, 21 Aug 1999 09:45:31 +0930 (CST) Date: Sat, 21 Aug 1999 09:45:31 +0930 From: Greg Lehey To: Clem.Dye@wdr.com Cc: francisco@natserv.com, questions@FreeBSD.ORG Subject: Re: Re: Fixit from CD rom no more? Says disk 2 is Alpha dist. Message-ID: <19990821094531.H14964@freebie.lemis.com> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: ; from Clem.Dye@wdr.com on Fri, Aug 20, 1999 at 11:40:15AM +0100 WWW-Home-Page: http://www.lemis.com/~grog X-PGP-Fingerprint: 6B 7B C3 8C 61 CD 54 AF 13 24 52 F8 6D A4 95 EF Organization: LEMIS, PO Box 460, Echunga SA 5153, Australia Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-41-739-7062 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG [45 lines of extraneous text deleted] On Friday, 20 August 1999 at 11:40:15 +0100, Clem.Dye@wdr.com wrote: > On 20 August 1999 05:37, grog wrote: >> On Friday, 20 August 1999 at 0:21:32 -0400, Francisco Reyes wrote: >>> I just trie to run the "fixit" option from the Install disk. >>> When it asked for the second disk and I placed it, it said that >>> this was the "Alpha Distribution CD". >>> >>> How can I run Fixit from CD? >>> .. or will I have to prepare floppies? >>> >>> The archives have the same question, but did not find an answer. >> >> Unfortunately, this was an oversight in making the CD-ROMs. You won't >> be able to mount the CD-ROM in fixit mode in 3.2. It worked in 3.1, >> and it should work again in 3.3, but 3.2 fixit is broken. > > OK, if it's broken, what workarounds are there, if any? Use floppies/fixit.flp from the first CD-ROM. Greg -- When replying to this message, please copy the original recipients. For more information, see http://www.lemis.com/questions.html See complete headers for address, home page and phone numbers finger grog@lemis.com for PGP public key To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 17:44:53 1999 Delivered-To: freebsd-questions@freebsd.org Received: from adsl-216-102-203-44.dsl.snfc21.pacbell.net (adsl-216-102-203-44.dsl.snfc21.pacbell.net [216.102.203.44]) by hub.freebsd.org (Postfix) with ESMTP id 2B00315013 for ; Fri, 20 Aug 1999 17:44:44 -0700 (PDT) (envelope-from bri@sonicboom.org) Received: from localhost (bri@localhost) by adsl-216-102-203-44.dsl.snfc21.pacbell.net (8.9.3/8.9.3) with ESMTP id RAA49534 for ; Fri, 20 Aug 1999 17:44:40 -0700 (PDT) (envelope-from bri@sonicboom.org) Date: Fri, 20 Aug 1999 17:44:39 -0700 (PDT) From: Brian X-Sender: bri@adsl-216-102-203-44.dsl.snfc21.pacbell.net To: questions@FreeBSD.ORG Subject: ruptime Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I'm trying to run this, but get the error about /var/rwho being empty. Since this is a directory, it is unclear if I need a file or directory for each machine, and what their format should be. The man page says nada on that issue. Brian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 18:59:57 1999 Delivered-To: freebsd-questions@freebsd.org Received: from allegro.lemis.com (allegro.lemis.com [192.109.197.134]) by hub.freebsd.org (Postfix) with ESMTP id 75C5B14C89 for ; Fri, 20 Aug 1999 18:59:51 -0700 (PDT) (envelope-from grog@freebie.lemis.com) Received: from freebie.lemis.com (freebie.lemis.com [192.109.197.137]) by allegro.lemis.com (8.9.1/8.9.0) with ESMTP id LAA03037; Sat, 21 Aug 1999 11:28:54 +0930 (CST) Received: (from grog@localhost) by freebie.lemis.com (8.9.3/8.9.0) id LAA70909; Sat, 21 Aug 1999 11:28:53 +0930 (CST) Date: Sat, 21 Aug 1999 11:28:53 +0930 From: Greg Lehey To: Greg Quinlan Cc: freebsd-questions@FreeBSD.ORG Subject: Re: gcc - COFF binaries? Message-ID: <19990821112852.L14964@freebie.lemis.com> References: <011401beeaf3$7f892740$5214010a@qmpgmc.ac.uk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: <011401beeaf3$7f892740$5214010a@qmpgmc.ac.uk>; from Greg Quinlan on Fri, Aug 20, 1999 at 11:05:14AM +0100 WWW-Home-Page: http://www.lemis.com/~grog X-PGP-Fingerprint: 6B 7B C3 8C 61 CD 54 AF 13 24 52 F8 6D A4 95 EF Organization: LEMIS, PO Box 460, Echunga SA 5153, Australia Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-41-739-7062 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Friday, 20 August 1999 at 11:05:14 +0100, Greg Quinlan wrote: > > Anyone: > > Does "gcc" support COFF (can produce - common object file format) >binaries? Well, yes, on the appropriate platform. Since FreeBSD doesn't use COFF, there's no way for any compiler to generate COFF for FreeBSD. > I could only see COFF mentioned in reference to "gdb" That should probably be removed. What do you want to do? You can get, say, an SCO UNIX version of gcc which generates COFF, but I'm not sure why you'd want to do so. Greg -- When replying to this message, please copy the original recipients. For more information, see http://www.lemis.com/questions.html See complete headers for address, home page and phone numbers finger grog@lemis.com for PGP public key To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 19:10:48 1999 Delivered-To: freebsd-questions@freebsd.org Received: from allegro.lemis.com (allegro.lemis.com [192.109.197.134]) by hub.freebsd.org (Postfix) with ESMTP id ECC8F14D6F for ; Fri, 20 Aug 1999 19:10:41 -0700 (PDT) (envelope-from grog@freebie.lemis.com) Received: from freebie.lemis.com (freebie.lemis.com [192.109.197.137]) by allegro.lemis.com (8.9.1/8.9.0) with ESMTP id LAA03070; Sat, 21 Aug 1999 11:39:31 +0930 (CST) Received: (from grog@localhost) by freebie.lemis.com (8.9.3/8.9.0) id LAA70956; Sat, 21 Aug 1999 11:39:29 +0930 (CST) Date: Sat, 21 Aug 1999 11:39:29 +0930 From: Greg Lehey To: Mikhail Teterin Cc: questions@FreeBSD.ORG Subject: Re: can the dumpon be the same as swapon? Message-ID: <19990821113929.M14964@freebie.lemis.com> References: <199908201259.IAA61793@guest.newton> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: <199908201259.IAA61793@guest.newton>; from Mikhail Teterin on Fri, Aug 20, 1999 at 08:59:37AM -0400 WWW-Home-Page: http://www.lemis.com/~grog X-PGP-Fingerprint: 6B 7B C3 8C 61 CD 54 AF 13 24 52 F8 6D A4 95 EF Organization: LEMIS, PO Box 460, Echunga SA 5153, Australia Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-41-739-7062 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Friday, 20 August 1999 at 8:59:37 -0400, Mikhail Teterin wrote: > Can the dumpon device be the same as the swapon device? Thanks! Yes. It normally is. Note that the partition must be at least as large as physical memory. Greg -- When replying to this message, please copy the original recipients. For more information, see http://www.lemis.com/questions.html See complete headers for address, home page and phone numbers finger grog@lemis.com for PGP public key To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 19:12:54 1999 Delivered-To: freebsd-questions@freebsd.org Received: from brutus.converging.net (edtn002029.hs.telusplanet.net [161.184.135.251]) by hub.freebsd.org (Postfix) with ESMTP id D873514D6F for ; Fri, 20 Aug 1999 19:12:51 -0700 (PDT) (envelope-from dtougas@brutus.converging.net) Received: (from dtougas@localhost) by brutus.converging.net (8.9.3/8.9.3) id UAA38916; Fri, 20 Aug 1999 20:29:25 -0600 (MDT) (envelope-from dtougas) Date: Fri, 20 Aug 1999 20:29:25 -0600 From: Damien Tougas To: "David B. Aas" Cc: freebsd-questions@freebsd.org Subject: Re: "Sender domain must exist" error Message-ID: <19990820202924.A38875@converging.net> Mail-Followup-To: "David B. Aas" , freebsd-questions@freebsd.org References: <001f01beeb1c$ad953100$0fc8a8c0@dave.ciminot.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.6i In-Reply-To: <001f01beeb1c$ad953100$0fc8a8c0@dave.ciminot.com>; from David B. Aas on Fri, Aug 20, 1999 at 10:00:00AM -0500 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I'm not sure if this is the problem or not, but do you have relaying setup in your /etc/mail/access file? This file contains the ip addresses of hosts that are allowed to relay mail through your server. Sendmail, by default, does not allow any relaying from outside hosts. Check out the documentation on this, but all you should have to put is: 10.0.0.1 RELAY <-- to allow relaying for this host 10.0.10 RELAY <-- to allow relaying for this subnet in your access file. Then do: makemap hash /etc/mail/access < /etc/mail/access and it should work (provided that it is actually your problem :-) Damien Tougas. On Fri, Aug 20, 1999 at 10:00:00AM -0500, David B. Aas wrote: > I am getting an error message from POP3 clients when emial is sent. Email is > received OK, but I cannont send. > > I am running Sendmail on FreeBSD 3.2. Sendmail is set up, and POP3 is > enabled. My users have valid Unix usernames and passwords. My server name is > gateway.townandcountry.org and my domain name is townandcountry.org. > > My users can connect and receive email. When email is sent, they get an > error message on the POP3 client something like this: > > "The message could not be send because the server rejected the sender's > email address. The sender's email address was ....Server Response "501 > gateway.townandcountry.org ... sender domain must exist" > > On the server console, an error message shows up "Sendmail ... > ruleset=check_mail ...Reject=501 gateway.townandcountry.org sender domain > must exist." > > I double-checked my sendmail.cf file. I have set up a D and a DM record. DNS > is running and appears to be working OK. > > What am I missing? any help would be appreciated. > > Thanks. > > Dave Aas > Dave@ciminot.com > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- Damien Tougas Converging Technology Solutions, Inc. Phone: (780)469-1679 Fax: (780)461-5127 E-mail: dtougas@converging.net http://www.converging.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 19:16:52 1999 Delivered-To: freebsd-questions@freebsd.org Received: from allegro.lemis.com (allegro.lemis.com [192.109.197.134]) by hub.freebsd.org (Postfix) with ESMTP id 6CD5614D6F for ; Fri, 20 Aug 1999 19:16:46 -0700 (PDT) (envelope-from grog@freebie.lemis.com) Received: from freebie.lemis.com (freebie.lemis.com [192.109.197.137]) by allegro.lemis.com (8.9.1/8.9.0) with ESMTP id LAA03102; Sat, 21 Aug 1999 11:43:34 +0930 (CST) Received: (from grog@localhost) by freebie.lemis.com (8.9.3/8.9.0) id LAA70991; Sat, 21 Aug 1999 11:43:34 +0930 (CST) Date: Sat, 21 Aug 1999 11:43:34 +0930 From: Greg Lehey To: "David B. Aas" Cc: questions@FreeBSD.ORG Subject: Re: "Sender domain must exist" error Message-ID: <19990821114334.O14964@freebie.lemis.com> References: <001f01beeb1c$ad953100$0fc8a8c0@dave.ciminot.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: <001f01beeb1c$ad953100$0fc8a8c0@dave.ciminot.com>; from David B. Aas on Fri, Aug 20, 1999 at 10:00:00AM -0500 WWW-Home-Page: http://www.lemis.com/~grog X-PGP-Fingerprint: 6B 7B C3 8C 61 CD 54 AF 13 24 52 F8 6D A4 95 EF Organization: LEMIS, PO Box 460, Echunga SA 5153, Australia Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-41-739-7062 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Friday, 20 August 1999 at 10:00:00 -0500, David B. Aas wrote: > I am getting an error message from POP3 clients when emial is sent. Email is > received OK, but I cannont send. > > I am running Sendmail on FreeBSD 3.2. Sendmail is set up, and POP3 is > enabled. My users have valid Unix usernames and passwords. My server name is > gateway.townandcountry.org and my domain name is townandcountry.org. > > My users can connect and receive email. When email is sent, they get an > error message on the POP3 client something like this: > > "The message could not be send because the server rejected the sender's > email address. The sender's email address was ....Server Response "501 > gateway.townandcountry.org ... sender domain must exist" > > On the server console, an error message shows up "Sendmail ... > ruleset=check_mail ...Reject=501 gateway.townandcountry.org sender domain > must exist." > > I double-checked my sendmail.cf file. I have set up a D and a DM record. DNS > is running and appears to be working OK. > > What am I missing? any help would be appreciated. Reverse delegation? Do you have PTR records for all your machines? Greg -- When replying to this message, please copy the original recipients. For more information, see http://www.lemis.com/questions.html See complete headers for address, home page and phone numbers finger grog@lemis.com for PGP public key To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 19:51:39 1999 Delivered-To: freebsd-questions@freebsd.org Received: from monk.via.net (monk.via.net [209.81.2.10]) by hub.freebsd.org (Postfix) with ESMTP id 22BFD14C3B for ; Fri, 20 Aug 1999 19:51:36 -0700 (PDT) (envelope-from joe@monk.via.net) Received: (from joe@localhost) by monk.via.net (8.9.3/8.9.3) id TAA32136 for questions@freebsd.org; Fri, 20 Aug 1999 19:51:10 -0700 (PDT) (envelope-from joe) From: Joe McGuckin Message-Id: <199908210251.TAA32136@monk.via.net> Date: Fri, 20 Aug 1999 19:51:10 -0700 (PDT) To: questions@freebsd.org Subject: example use of cdda2wav & cdrecord ? X-Mailer: Ishmail 1.3.1-970608-bsdi MIME-Version: 1.0 Content-Type: text/plain Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I have a cdwriter (/dev/cd0). Can someone please supply an example of using cdds2wav & cdrecord to read & write an audio cd? I can't seem to make it work. monk# cdda2wav -x -D /dev/cd0c cdda2wav: Error opening /dev/pass4 cdda2wav: cam_real_open_device: couldn't open passthrough device /dev/pass4 cam_real_open_device: No such file or directory 266240 bytes buffer memory requested, 4 buffers, 27 sectors cdda2wav: Undefined error: 0. inquiry: scsi sendcmd: fatal error CDB: 12 C0 00 00 2A 00 cmd finished after 0.000s timeout 100s Inquiry command failed. Aborting... Thanks, Joe -- Joe McGuckin ViaNet Communications 994 San Antonio Road Palo Alto, CA 94303 Phone: 650-969-2203 Cell: 650-207-0372 Fax: 650-969-2124 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 20: 0:41 1999 Delivered-To: freebsd-questions@freebsd.org Received: from heretic.cybertouch.org (heretic.cybertouch.org [216.183.2.4]) by hub.freebsd.org (Postfix) with ESMTP id 22BD114C3B for ; Fri, 20 Aug 1999 20:00:38 -0700 (PDT) (envelope-from g7@heretic.cybertouch.org) Received: from localhost (g7@localhost) by heretic.cybertouch.org (8.9.3/8.9.3) with ESMTP id XAA03289 for ; Fri, 20 Aug 1999 23:00:30 -0400 (EDT) (envelope-from g7@heretic.cybertouch.org) Date: Fri, 20 Aug 1999 23:00:29 -0400 (EDT) From: Lanny Baron To: questions@freebsd.org Subject: xmalloc: out of memory Message-ID: City: Thorhill Country:Canada Tel: 905-763-1900 Fax: 905-763-0241 MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello, I was trying to ssh in to my FreeBSD box and noticed from a win box that no connection could be established. The following is from /var/log/messages and I am wondering if you can help me get this fixed and what causes it. 20 22:39:57 heretic sshd[3179]: fatal: xmalloc: out of memory (allocating 10 40068859 bytes) Aug 20 22:41:50 heretic sshd[3201]: fatal: xmalloc: out of memory (allocating 10 40068859 bytes) Aug 20 22:47:54 heretic sshd[3221]: error: bind: Address already in use Aug 20 22:47:54 heretic sshd[3221]: fatal: Bind to port 22 failed: Address alrea dy in use. Aug 20 22:48:38 heretic sshd[3222]: fatal: xmalloc: out of memory (allocating 10 40068859 bytes) I did try to run from /usr/local/etc/rc.d ./sshd.sh but I think that produced a couple of the messages above. I have, like I said before what xmalloc is. Thank you for your help, Lanny To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 20:34: 2 1999 Delivered-To: freebsd-questions@freebsd.org Received: from allegro.lemis.com (allegro.lemis.com [192.109.197.134]) by hub.freebsd.org (Postfix) with ESMTP id C2A2014BE1 for ; Fri, 20 Aug 1999 20:33:51 -0700 (PDT) (envelope-from grog@freebie.lemis.com) Received: from freebie.lemis.com (freebie.lemis.com [192.109.197.137]) by allegro.lemis.com (8.9.1/8.9.0) with ESMTP id NAA03316; Sat, 21 Aug 1999 13:03:29 +0930 (CST) Received: (from grog@localhost) by freebie.lemis.com (8.9.3/8.9.0) id NAA71262; Sat, 21 Aug 1999 13:03:27 +0930 (CST) Date: Sat, 21 Aug 1999 13:03:27 +0930 From: Greg Lehey To: Fredrik Carlen Cc: freebsd-questions@FreeBSD.ORG, d93-awe@nada.kth.se Subject: Re: Computer running FreeBSD 3.2-RELEASE freezes completely Message-ID: <19990821130327.Q14964@freebie.lemis.com> References: <99082019241400.00282@entityone.leonissystems.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: <99082019241400.00282@entityone.leonissystems.com>; from Fredrik Carlen on Fri, Aug 20, 1999 at 07:15:31PM +0200 WWW-Home-Page: http://www.lemis.com/~grog X-PGP-Fingerprint: 6B 7B C3 8C 61 CD 54 AF 13 24 52 F8 6D A4 95 EF Organization: LEMIS, PO Box 460, Echunga SA 5153, Australia Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-41-739-7062 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Friday, 20 August 1999 at 19:15:31 +0200, Fredrik Carlen wrote: > Question from Fredrik Carlen > > Hello! I have a really annoying problem, and I can't seem to be able to > find an answer to it on the Net. I recently "bought" and installed FreeBSD > 3.2-RELEASE. I have been using it for a couple of weeks, and it's a very > pleasant experience, except for the fact that *every* *single* *day* the system > *freezes*. Hangs. I've been told not to reinstall, so, still painfully > ignorant in the field of UNIX, I am humbly asking for more knowledgeable help. > > This is what happens: > 1.I log in on my usual, every-day account. > 2.I start X up. > 3.I start doing the normal stuff, nothing fancy (e.g. reading mail, writing > notes). > 4.The system freezes. Every input device stops working. The mouse cursor > disappering is the first indication. The system is *not* reading from the hard > drive, at least as far as I can see and hear. No matter how long I wait, the > system won't respond. It's a complete denial-of-service! The only option > left is to reboot the hard way. Which doesn't exactly make things better!!! > > It happens *frequently* in the following circumstances: > A. When I try to change something in "preferences" or "options", in > any program (epecially Netcape). Sometimes it works, sometimes the system > freezes. > B.When I am trying to do something in two programs simultaneously, > e.g. surfing and writing small notes. (By goood I hope it doesn't happen > right now, please, please, my dear OS, just let me finish this freakin' mail!) > C. Sometimes without any action from my part whatsoever. > > And: Once it happened when I disconnected my PPP connection when Mozilla was > still downloading a webpage. My experience is that if I have been using X for > an hour or so, it *will* freeze. > > This is my system, in a nutshell: > Intel Pentium, 166 MHz. > Motherboard:PA-2007 with VIA VP2/97 chipset > Video card: S3 trio64V+ > Sound card: Soundblaster compatible (ESS ES1868) > HD: 4 gigs > RAM: 32 megs > +I've installed the old object format, aout, to be able to use Netscape. What do you mean by "install"? > Both my everyday user account and my root account is left as-is, no fancy stuff > there. I'd guess that this is some kind of hardware problem, but that doesn't help you much. The fact that the mouse cursor disappears suggests that it's related to X. A couple of things to try: 1. When it happens next, try changing virtual terminals to, say, ttyv1. You do this by pressing ctrl-alt-F2. If this works, it's not the system freezing, it's X. You can log in and shoot X down. Look for the process called Xwrapper. 2. If that doesn't help, switch to ttyv1 *before* it freezes. Leave it overnight or longer to see if it still freezes. 3. If you still have no joy, let's hear more about the X configuration. Are you using some exotic window mangler? Greg -- When replying to this message, please copy the original recipients. For more information, see http://www.lemis.com/questions.html See complete headers for address, home page and phone numbers finger grog@lemis.com for PGP public key To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 21: 9:15 1999 Delivered-To: freebsd-questions@freebsd.org Received: from luke.cpl.net (luke.cpl.net [192.216.136.195]) by hub.freebsd.org (Postfix) with ESMTP id AF8BB153F8 for ; Fri, 20 Aug 1999 21:09:09 -0700 (PDT) (envelope-from shawn@luke.cpl.net) Received: (from shawn@localhost) by luke.cpl.net (8.9.3/8.9.3) id VAA23696 for questions@freebsd.org; Fri, 20 Aug 1999 21:09:46 -0700 (PDT) Date: Fri, 20 Aug 1999 21:09:46 -0700 From: Shawn Ramsey To: questions@freebsd.org Subject: /etc Message-ID: <19990820210946.G638@cpl.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.6i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Is there some reason normal users, or Apache needs access to /etc? If so, what files? I did a chmod 700 on /etc, and user directories(cpl.net/~user) stop working, but virtualhosts still worked, in fact the only thing that broke was user directories. Does anyone know what may have been the problem, or what file(s) the web server needs? The Apache error_log had this to say when attempting access to my (or any) user directory : [Fri Aug 20 19:10:19 1999] [error] [client 192.216.87.249] File does not exist: /usr/local/etc/httpd/htdocs/cpl-dev/~shawn Which makes no sence, because my home directory is in /disk6/shawn ....... (symlinked from /home, but I don't think that matters) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 22: 1:53 1999 Delivered-To: freebsd-questions@freebsd.org Received: from fingers.shocking.com (shocking.com [216.111.111.11]) by hub.freebsd.org (Postfix) with ESMTP id 9D49614F02 for ; Fri, 20 Aug 1999 22:01:51 -0700 (PDT) (envelope-from doemill@shocking.com) Received: from shocking.com (doemill@shocking.com [216.111.111.11]) by fingers.shocking.com (8.9.0/8.9.0) with ESMTP id VAA18744; Fri, 20 Aug 1999 21:57:49 -0700 (PDT) Date: Fri, 20 Aug 1999 21:57:49 -0700 (PDT) From: Doug To: Brian Cc: questions@FreeBSD.ORG Subject: Re: ruptime In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG You need to run the 'rwhod' daemon on each host ont he network, like mine looks like telnetd ~/audio$ ruptime radiation down 2:14 stinky up 3+09:15, 4 users, load 0.18, 0.04, 0.01 unix9 up 3+03:51, 0 users, load 0.12, 0.08, 0.08 telnetd ~/audio$ I havent run the rwhod daemon on radiation, So its down. On Fri, 20 Aug 1999, Brian wrote: > > I'm trying to run this, but get the error about /var/rwho being empty. > Since this is a directory, it is unclear if I need a file or directory for > each machine, and what their format should be. The man page says nada on > that issue. > > Brian > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > | Doug | unix9.org admin | shocking.com/~doemill/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 22:46:59 1999 Delivered-To: freebsd-questions@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 DCB97153DC for ; Fri, 20 Aug 1999 22:46:57 -0700 (PDT) (envelope-from rbettle@criterion-group.com) Received: from criterion-group.com ([24.5.44.161]) by mail.rdc2.occa.home.com (InterMail v4.01.01.00 201-229-111) with ESMTP id <19990821054644.KUBC7447.mail.rdc2.occa.home.com@criterion-group.com> for ; Fri, 20 Aug 1999 22:46:44 -0700 Message-ID: <37BE3E4A.5342BE91@criterion-group.com> Date: Fri, 20 Aug 1999 22:51:06 -0700 From: Roy Bettle X-Mailer: Mozilla 4.6 [en] (Win98; I) X-Accept-Language: en MIME-Version: 1.0 To: "Questions List FreeBSD.org" Subject: Resolving NT machine names with NAT Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Good evening. We have a Cox Communications cable modem. They use the @Home Network. We would like to setup NAT so that both our machines can go out. We have tried to use Linux RedHat 6.0 but have not been able to get IPMasq to resolve the Windows NT Server host names (we use a static IP address, but the @Home Network apparently manages itself with Windows NT Server and NT DHCP). This is apparently a known problem with IPMasq. Does this problem exists with NAT as well? If so, can we get around it? If so, how (URL to help us out perhaps?)? Thank you for your help! RAB Roy Bettle President, Criterion Group http://www.criterion-group.com rbettle@criterion-group.com (949) 452-1203 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Fri Aug 20 23:21:56 1999 Delivered-To: freebsd-questions@freebsd.org Received: from relay.ucb.crimea.ua (relay.ucb.crimea.ua [212.110.138.1]) by hub.freebsd.org (Postfix) with ESMTP id 42C2014BD3 for ; Fri, 20 Aug 1999 23:21:00 -0700 (PDT) (envelope-from ru@ucb.crimea.ua) Received: (from ru@localhost) by relay.ucb.crimea.ua (8.9.3/8.9.3/UCB) id JAA53275; Sat, 21 Aug 1999 09:19:05 +0300 (EEST) (envelope-from ru) Date: Sat, 21 Aug 1999 09:19:05 +0300 From: Ruslan Ermilov To: Brian Cc: freebsd-questions@FreeBSD.ORG Subject: Re: natd Message-ID: <19990821091905.A51856@relay.ucb.crimea.ua> Mail-Followup-To: Brian , freebsd-questions@FreeBSD.ORG References: <19990820102533.B44737@relay.ucb.crimea.ua> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.3i In-Reply-To: ; from Brian on Fri, Aug 20, 1999 at 08:15:06AM -0700 X-Operating-System: FreeBSD 3.2-STABLE i386 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, Aug 20, 1999 at 08:15:06AM -0700, Brian wrote: > Got a dsl line, trying to do nat by putting 2 nics in 1 box, 1 with > public address space, 1 with private. > Run natd(8) on public interface. If you're having problems setting it up, please provide us with more details: tell us _exactly_ what are you doing and what doesn't work. Without this information, there is no chance to help you. -- Ruslan Ermilov Sysadmin and DBA of the ru@ucb.crimea.ua United Commercial Bank, ru@FreeBSD.org FreeBSD committer, +380.652.247.647 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 0:26:45 1999 Delivered-To: freebsd-questions@freebsd.org Received: from monkeys.com (i180.value.net [206.14.136.180]) by hub.freebsd.org (Postfix) with ESMTP id 4AFD115373 for ; Sat, 21 Aug 1999 00:26:38 -0700 (PDT) (envelope-from rfg@monkeys.com) Received: from monkeys.com (LOCALHOST [127.0.0.1]) by monkeys.com (8.9.3/8.9.3) with ESMTP id XAA07991 for ; Fri, 20 Aug 1999 23:43:40 -0700 To: freebsd-questions@freebsd.org Subject: Passing file descriptors via UNIX domain sockets From: "Ronald F. Guilmette" Date: Fri, 20 Aug 1999 23:43:40 -0700 Message-ID: <7989.935217820@monkeys.com> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Greetings, I'm trying to figure out exactly how to pass file descriptors between programs. It appears that the examples given in Stevens' ``UNIX Network Programming'' (original edition) on pages 308-312 no longer accurately describes what one must do to actually pass file descriptors. The man page for recvmsg(2) definitely provides some clues regarding the new programatic idiom that must be used to pass files descriptors around, but it is a little too terse, saying only: Open file descriptors are now passed as ancillary data for AF_UNIX domain sockets, with cmsg_level set to SOL_SOCKET and cmsg_type set to SCM_RIGHTS. It would be REALLY helpful for me to be able to actually _see_ an example of some real working code that used the new style for file descriptor passing between processes. Then I could just mimic that code in a monkey-see / monkey-do fashion. So can anyone point me at a _current_ hunk of example code that shows open file descriptors being passed between programs? If so, I would be much obliged. -- rfg To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 1: 8:13 1999 Delivered-To: freebsd-questions@freebsd.org Received: from juno.dsj.net (sylvester.dsj.net [208.148.155.228]) by hub.freebsd.org (Postfix) with ESMTP id E3A9414D03 for ; Sat, 21 Aug 1999 01:08:08 -0700 (PDT) (envelope-from dsj@juno.dsj.net) Received: (from dsj@localhost) by juno.dsj.net (8.9.2/8.9.2) id EAA69706 for freebsd-questions@freebsd.org; Sat, 21 Aug 1999 04:08:31 -0400 (EDT) (envelope-from dsj) Date: Sat, 21 Aug 1999 04:08:31 -0400 From: "David S. Jackson" To: freebsd-questions@freebsd.org Subject: perl: HTML::Parse; Message-ID: <19990821040831.A60897@juno.dsj.net> Reply-To: "David S. Jackson" Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.3i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I'm plugging through The Perl Cookbook and also the ancient Web Client Programming with Perl books from O'Reilly. Many of the examples for what I'm working on now use the use HTML::Parse; syntax. But, it turns out that HTML::Parse has been depricated. Could anyone please tell me whether my using that syntax, even though it's depricated, will cause any havoc? I've already installed HTML-Tree-0.51 without any error signals, but then, I'm pretty new to Perl. I'd appreciate it if one of you gurus could let me know before I hose my perl installation. :-) -- David S. Jackson http://www.dsj.net =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= Out ed0, through the firewal, over the analog line, into usr1, past another firewall, through the gateway, out the T-3, off core2 in Atlanta . . . nothin' but Net. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 1:49:49 1999 Delivered-To: freebsd-questions@freebsd.org Received: from nemezis.ipan.lublin.pl (nemezis.ipan.lublin.pl [212.182.61.154]) by hub.freebsd.org (Postfix) with ESMTP id 89B4E14F27 for ; Sat, 21 Aug 1999 01:49:44 -0700 (PDT) (envelope-from ufolec@nemezis.ipan.lublin.pl) Received: by nemezis.ipan.lublin.pl (Postfix, from userid 1005) id 4216F1F335; Sat, 21 Aug 1999 10:46:26 +0000 (GMT) To: freebsd-questions@freebsd.org Subject: support Message-Id: <19990821104626.4216F1F335@nemezis.ipan.lublin.pl> Date: Sat, 21 Aug 1999 10:46:26 +0000 (GMT) From: ufolec@nemezis.ipan.lublin.pl (Grzesiek) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello I want to ask : Is SB Live suporrt with FreeBSD 3.2? And Asus Riva TNT II is support with FreeBSD 3.2? THX To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 2: 1:36 1999 Delivered-To: freebsd-questions@freebsd.org Received: from allegro.lemis.com (allegro.lemis.com [192.109.197.134]) by hub.freebsd.org (Postfix) with ESMTP id 02B2B1542D for ; Sat, 21 Aug 1999 02:01:28 -0700 (PDT) (envelope-from grog@freebie.lemis.com) Received: from freebie.lemis.com (freebie.lemis.com [192.109.197.137]) by allegro.lemis.com (8.9.1/8.9.0) with ESMTP id SAA04266; Sat, 21 Aug 1999 18:29:19 +0930 (CST) Received: (from grog@localhost) by freebie.lemis.com (8.9.3/8.9.0) id SAA76161; Sat, 21 Aug 1999 18:29:16 +0930 (CST) Date: Sat, 21 Aug 1999 18:29:16 +0930 From: Greg Lehey To: Fredrik Carlen Cc: FreeBSD Questions Subject: Re: Computer running FreeBSD 3.2-RELEASE freezes completely Message-ID: <19990821182915.Z14964@freebie.lemis.com> References: <19990821130327.Q14964@freebie.lemis.com> <99082110062600.00285@entityone.leonissystems.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: <99082110062600.00285@entityone.leonissystems.com>; from Fredrik Carlen on Sat, Aug 21, 1999 at 09:42:35AM +0200 WWW-Home-Page: http://www.lemis.com/~grog X-PGP-Fingerprint: 6B 7B C3 8C 61 CD 54 AF 13 24 52 F8 6D A4 95 EF Organization: LEMIS, PO Box 460, Echunga SA 5153, Australia Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-41-739-7062 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Saturday, 21 August 1999 at 9:42:35 +0200, Fredrik Carlen wrote: > >> What do you mean by "install"? > > Well, since I'm not proficient in the techno-lingo, I said > "install", but what I mean is i ran /stand/sysinstall and chose the > compat22 option to have support for "the old object format" to be > able to run Netscape... OK. >> I'd guess that this is some kind of hardware problem, but that doesn't >> help you much. The fact that the mouse cursor disappears suggests >> that it's related to X. A couple of things to try: >> >> 1. When it happens next, try changing virtual terminals to, say, >> ttyv1. You do this by pressing ctrl-alt-F2. If this works, it's >> not the system freezing, it's X. You can log in and shoot X >> down. Look for the process called Xwrapper. > > Thanks, man I know, I have your book ;-) > Like I said, its impossible to get the computer to respond to *any* form of > input, including ctrl-alt-F2. OK. >> 2. If that doesn't help, switch to ttyv1 *before* it freezes. >> Leave it overnight or longer to see if it still freezes. You haven't commented on this one. >> 3. If you still have no joy, let's hear more about the X >> configuration. Are you using some exotic window mangler? > > Nope, no fancy stuff there: it's KDE. That's fancy stuff, or at least we've seen bugs in the past. Try using a different window manager for a while and see if it still happens. > Thanks for the support: it feels good to know I'm not alone in my > own personal hell! You're welcome Greg -- When replying to this message, please copy the original recipients. For more information, see http://www.lemis.com/questions.html See complete headers for address, home page and phone numbers finger grog@lemis.com for PGP public key To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 2:14: 9 1999 Delivered-To: freebsd-questions@freebsd.org Received: from sprint.sinform.com (sprint.sinform.com [195.5.4.126]) by hub.freebsd.org (Postfix) with ESMTP id F2DE515838 for ; Sat, 21 Aug 1999 02:13:44 -0700 (PDT) (envelope-from soe@sifu.net) Received: from kolly (kolly.sinform.com [195.5.4.120]) by sprint.sinform.com (8.8.7/8.8.7) with SMTP id MAA20552 for ; Sat, 21 Aug 1999 12:13:09 +0300 (EEST) Message-ID: <004c01beebb5$2ed10210$780405c3@kolly.sinform.com> Reply-To: "Oleg E. Sobolev" From: "Oleg E. Sobolev" To: Subject: Problem with a.out applications in 3.2-RELEASE? ( FAQ may be? ) Date: Sat, 21 Aug 1999 12:11:38 +0300 MIME-Version: 1.0 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: base64 X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 4.72.3110.5 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3110.3 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG SGkuDQpJIGp1c3QgaW5zdGFsbCBuZXcgKCBmb3IgbWUgKSB2ZXJzaW9uIG9mIEZyZWVCU0QgMy4y LVJFTEVBU0UuDQpJIHVzZWQgMi4yLjUgYmVmb3JlLg0KDQpXaGVuIEkgdHJ5IHJ1biAibWMiIGZy b20gcGFja2FnZXMgLCBJIGdldCB0aGlzIGFuc3dlcjoNCg0KL3Vzci9saWJleGVjL2xkLnNvOiB3 YXJuaW5nOiAvdXNyL2xpYi9saWJjcnlwdC5zby4yOiBtaW5vciB2ZXJzaW9uIC0xIG9sZGVyIHRo YW4NCiBleHBlY3RlZCAwLCB1c2luZyBpdCBhbnl3YXkNCmxkLnNvIGZhaWxlZDogYmFkIG1hZ2lj IG51bWJlciBpbiAiL3Vzci9saWIvbGliY3J5cHQuc28uMiINCg0KUToNCjEpIFdoeSwgd2hlbiBJ IGluc3RhbGwgRnJlZUJTRCAsIEkgY2FuJ3QgZmluZCBhbnkgbGQuc28gbGlicmFyeSwgDQogICAg YWdhaW4sIG9sZCAoYS5vdXQpIGxpYnJhcmllcyByZXNpZGUgaW50byAvdXNyL3NyYy9saWIvY29t cGF0DQpJcyBpdCB0cnVlPw0KDQoyKSBPaywgSSBjb3BpZWQgbGQuc28gZnJvbSBteSBvbGQgc3lz dGVtIGludG8gL3Vzci9saWIgYW5kIA0KICAgIGxkY29uZmlnIC1hb3V0DQpUaGVuIEkgdHJ5IHJ1 biBtYyBhZ2FpbiAtIHJlc3VsdCBhYm92ZS4NCg0KV0hBVCBJIERPIFdST05HIGFuZCB3aGVyZSBJ IGNhbiBmaW5kIGFuc3dlciB0byB0aGlzIHByb2JsZW0/DQooIGhhbmRib29rLCBGQVEgd2FzIHNj YW5lZCBjYXJlZnVsbHkgKQ0KDQpUaGFua3MhISENCg0KDQoNCj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+ Pj4+T2xlZyBTb2JvbGV2PDw8PDw8PDw8PDw8PDw8PDw8PDw8DQogICAgICAgU3lzdGVtIGFkbWlu aXN0cmF0b3Igb2YgU3RhdGUgSW5ub3ZhdGlvbiBGdW5kIE9mIFVrcmFpbmUNCiB2b2ljZTogICAg ICArMzgwICg0NCkgMjI5LTg5LTAwIA0KIGUtbWFpbDogICAgICBzb2VAc2lmdS5uZXQNCiB3ZWI6 ICAgICAgICBodHRwOi8vd3d3LnNpZnUubmV0L35zb2UNCjw8PDw8PDw8PDw8PDw8PDw8PDw8PDw8 PDw8PD4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pj4+Pg0K To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 2:26:33 1999 Delivered-To: freebsd-questions@freebsd.org Received: from inet.chip-web.com (c1003518-a.plstn1.sfba.home.com [24.1.82.47]) by hub.freebsd.org (Postfix) with SMTP id 41B9214DB7 for ; Sat, 21 Aug 1999 02:26:32 -0700 (PDT) (envelope-from ludwigp@bigfoot.com) Received: (qmail 29318 invoked from network); 21 Aug 1999 09:26:21 -0000 Received: from furball.chip-web.com (172.16.1.29) by inet.chip-web.com with SMTP; 21 Aug 1999 09:26:21 -0000 Date: Sat, 21 Aug 1999 02:26:03 -0700 (PDT) From: Ludwig Pummer X-Sender: ludwigp@furball.chip-web.com To: Shawn Ramsey Cc: questions@freebsd.org Subject: Re: /etc In-Reply-To: <19990820210946.G638@cpl.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, 20 Aug 1999, Shawn Ramsey wrote: > Does anyone know what may have been the problem, > or what file(s) the web server needs? The Apache error_log had this to say > when attempting access to my (or any) user directory : > > [Fri Aug 20 19:10:19 1999] [error] [client 192.216.87.249] File does not > exist: /usr/local/etc/httpd/htdocs/cpl-dev/~shawn > > Which makes no sence, because my home directory is in /disk6/shawn ....... > (symlinked from /home, but I don't think that matters) But how does Apache know that your home directory is /disk6/shawn if there's no [accessible] /etc/passwd to look it up in ? :) --Ludwig Pummer To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 3: 1:49 1999 Delivered-To: freebsd-questions@freebsd.org Received: from luke.cpl.net (luke.cpl.net [192.216.136.195]) by hub.freebsd.org (Postfix) with ESMTP id ADD8414EBE for ; Sat, 21 Aug 1999 03:01:47 -0700 (PDT) (envelope-from shawn@luke.cpl.net) Received: (from shawn@localhost) by luke.cpl.net (8.9.3/8.9.3) id KAA15094; Sat, 21 Aug 1999 10:00:23 GMT Date: Sat, 21 Aug 1999 10:00:23 +0000 From: Shawn Ramsey To: Ludwig Pummer Cc: questions@freebsd.org Subject: Re: /etc Message-ID: <19990821100023.A10092@cpl.net> References: <19990820210946.G638@cpl.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.6i In-Reply-To: ; from Ludwig Pummer on Sat, Aug 21, 1999 at 02:26:03AM -0700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > Does anyone know what may have been the problem, > > or what file(s) the web server needs? The Apache error_log had this to say > > when attempting access to my (or any) user directory : > > > > [Fri Aug 20 19:10:19 1999] [error] [client 192.216.87.249] File does not > > exist: /usr/local/etc/httpd/htdocs/cpl-dev/~shawn > > > > Which makes no sence, because my home directory is in /disk6/shawn ....... > > (symlinked from /home, but I don't think that matters) > > But how does Apache know that your home directory is /disk6/shawn if > there's no [accessible] /etc/passwd to look it up in ? :) Yup. :) I should have figured that out... But it also needs access to pwd.db. Why is that? I wouldn't think the webserver could read or understand that file. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 4:10:43 1999 Delivered-To: freebsd-questions@freebsd.org Received: from inet.chip-web.com (c1003518-a.plstn1.sfba.home.com [24.1.82.47]) by hub.freebsd.org (Postfix) with SMTP id 8051214FA3 for ; Sat, 21 Aug 1999 04:10:38 -0700 (PDT) (envelope-from ludwigp@bigfoot.com) Received: (qmail 1469 invoked from network); 21 Aug 1999 11:07:54 -0000 Received: from toy.chip-web.com (@172.16.1.30) by inet.chip-web.com with SMTP; 21 Aug 1999 11:07:54 -0000 Date: Sat, 21 Aug 1999 04:08:28 -0700 (PDT) From: Ludwig Pummer X-Sender: ludwigp@toy.chip-web.com To: Shawn Ramsey Cc: questions@freebsd.org Subject: Re: /etc In-Reply-To: <19990821100023.A10092@cpl.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sat, 21 Aug 1999, Shawn Ramsey wrote: > > But how does Apache know that your home directory is /disk6/shawn if > > there's no [accessible] /etc/passwd to look it up in ? :) > > Yup. :) I should have figured that out... But it also needs access to > pwd.db. Why is that? I wouldn't think the webserver could read or understand > that file. It would make more sense of Apache to use the standard system call (whatever it is) to get a user's home directory, rather than parsing /etc/passwd directly. pwd.db is the db version of passwd, and it's what the system calls use. I'm no longer sure that /etc/passwd is needed, since pwd.db is what the system uses. --Ludwig Pummer ( ludwigp@bigfoot.com ) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 4:11:43 1999 Delivered-To: freebsd-questions@freebsd.org Received: from jawa.at (t1p044.at-316.netway.at [195.96.17.172]) by hub.freebsd.org (Postfix) with ESMTP id 5E5D114FA3 for ; Sat, 21 Aug 1999 04:11:37 -0700 (PDT) (envelope-from mranner@netway.at) Received: from mike.netway.at (mike.jawa.at [192.168.0.51]) by jawa.at (8.9.3/8.9.3) with ESMTP id NAA02420 for ; Sat, 21 Aug 1999 13:11:38 +0200 (CEST) (envelope-from mranner@netway.at) 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 Date: Sat, 21 Aug 1999 12:11:31 +0200 (CEST) Organization: ../NETlounge/tech - Mariazell Online From: Michael Ranner To: freebsd-questions@freebsd.org Subject: sendmail 8.9.3 from 3.2 strips lines in base64 parts of MIME mes Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello there! Sendmail 8.9.3 from FreeBSD 3.2 seems to strip lines in the base64 encoded part of a MIME message. I've tried to mail (not local delivering) some ZIP-archives > 100k (base64 encoded - octet-stream) and sendmail 8.9.3 strips some lines in the part of the attached file. I have the standard sendmail.cf from the installation, only DSpop.netway.at for smart relay and DJjawa.at for masquerading are modified. The mail server is connected to the internet via dial up ppp (isdnd, sppp, natd). MUA: pine4, xfmail (both FreeBSD 3.2) and Netscape 4.51 (Win98). The mail clients connect via smtp to our local mail server which relays to pop.netway.at. If I send a mail outside our local domain the message will be corrupted. If I change the configuration for the mail clients to connect direct the ISP's mail server (sendmail 8.9.1) instead of our local 8.9.3 mail server the messages are not corrupted. Any ideas are welcome! cu Michael /\/\ichael Ranner - Michael.Ranner@netway.at - webmaster@mariazell.org ---------------------------------------------------------------------- Homepage: http://www.netlounge.at/mranner/ Mariazell Online: http://www.mariazell.org/ ---------------------------------------------------------------------- God made machine language; all the rest is the work of man. ------------------------ END OF TRANSMISSION ------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 4:42:32 1999 Delivered-To: freebsd-questions@freebsd.org Received: from sand4.global.net.uk (sand4.global.net.uk [194.126.80.248]) by hub.freebsd.org (Postfix) with ESMTP id 18DF614FA3 for ; Sat, 21 Aug 1999 04:42:28 -0700 (PDT) (envelope-from marko@globalnet.co.uk) Received: from p4ds12a06.client.global.net.uk ([195.147.220.78] helo=marder-1.) by sand4.global.net.uk with esmtp (Exim 2.12 #1) id 11I9Tn-0004kk-00; Sat, 21 Aug 1999 12:38:36 +0100 Received: (from marko@localhost) by marder-1. (8.9.2/8.8.8) id MAA00333; Sat, 21 Aug 1999 12:31:34 +0100 (BST) (envelope-from marko) Date: Sat, 21 Aug 1999 12:31:34 +0100 From: Mark Ovens To: "Oleg E. Sobolev" Cc: freebsd-questions@freebsd.org Subject: Re: Problem with a.out applications in 3.2-RELEASE? ( FAQ may be? ) Message-ID: <19990821123134.B267@marder-1> References: <004c01beebb5$2ed10210$780405c3@kolly.sinform.com> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Mailer: Mutt 0.95.3i In-Reply-To: <004c01beebb5$2ed10210$780405c3@kolly.sinform.com>; from Oleg E. Sobolev on Sat, Aug 21, 1999 at 12:11:38PM +0300 Organization: Total lack of Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sat, Aug 21, 1999 at 12:11:38PM +0300, Oleg E. Sobolev wrote: > Hi. > I just install new ( for me ) version of FreeBSD 3.2-RELEASE. > I used 2.2.5 before. >=20 > When I try run "mc" from packages , I get this answer: >=20 > /usr/libexec/ld.so: warning: /usr/lib/libcrypt.so.2: minor version -1 old= er than > expected 0, using it anyway > ld.so failed: bad magic number in "/usr/lib/libcrypt.so.2" >=20 > Q: > 1) Why, when I install FreeBSD , I can't find any ld.so library,=20 > again, old (a.out) libraries reside into /usr/src/lib/compat > Is it true? >=20 > 2) Ok, I copied ld.so from my old system into /usr/lib and=20 > ldconfig -aout > Then I try run mc again - result above. >=20 > WHAT I DO WRONG and where I can find answer to this problem? > ( handbook, FAQ was scaned carefully ) >=20 Did you install the compat22 distribution when you installed 3.2? It is needed for running old a.out programs. > Thanks!!! >=20 >=20 >=20 > >>>>>>>>>>>>>>>>>>>>>>>Oleg Sobolev<<<<<<<<<<<<<<<<<<<<< > System administrator of State Innovation Fund Of Ukraine > voice: +380 (44) 229-89-00=20 > e-mail: soe@sifu.net > web: http://www.sifu.net/~soe > <<<<<<<<<<<<<<<<<<<<<<<<<<<>>>>>>>>>>>>>>>>>>>>>>>>>>> > N?'???r??{?=1E=B2?=A0?[h?????&??ky?R=0F?+?=08???????r??y??y?=1D??=B7???= =B7??=B7?^n?r??azg???=1E >=20 --=20 STATE-OF-THE-ART: Any computer you can't afford. OBSOLETE: Any computer you own. ________________________________________________________________ FreeBSD - The Power To Serve http://www.freebsd.org My Webpage http://http://ukug.uk.freebsd.org/~mark/ mailto:mark@ukug.uk.freebsd.org http://www.radan.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 5: 6:30 1999 Delivered-To: freebsd-questions@freebsd.org Received: from relay.a1.nl (relay.a1.nl [194.151.42.11]) by hub.freebsd.org (Postfix) with ESMTP id D00BB14F12 for ; Sat, 21 Aug 1999 05:06:25 -0700 (PDT) (envelope-from rotan@cs.pdx.edu) Received: from mail.a1.nl (mail.a1.nl [194.151.42.3]) by relay.a1.nl (980427.SGI.8.8.8/8.8.8) with ESMTP id OAA78107 for ; Sat, 21 Aug 1999 14:04:47 +0200 (MET) Received: from macooa (a1-196-153.a1.nl [194.151.196.153]) by mail.a1.nl (8.9.1a/8.9.1) with ESMTP id NAA09731 for ; Sat, 21 Aug 1999 13:54:32 +0200 (MET DST) Message-Id: <199908211154.NAA09731@mail.a1.nl> From: "robert t tan" To: Subject: parralel Iomega ZIP drive. Date: Sat, 21 Aug 1999 13:59:43 +0200 X-MSMail-Priority: Normal X-Priority: 3 X-Mailer: Microsoft Internet Mail 4.70.1155 MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, How do you connect a parralel zip drive to a FreeBSD 3.1 box. Ive checked out the FAQ's which says its supported throught the ppbus, I made sure my kernel contains the lines needed but I can't get it to work. this is the dmesg|grep ppbus output nlpt0: on ppbus 0 ppi0: on ppbus 0 plip0: on ppbus 0 I tried: mount -t msdos /dev/da0s4 /zip ( Bad signature and some more ) or, mount -t msdos /dev/ppi0 /zip ( says: mount: Block device required ) tnx, rotan ( rotan@cs.pdx.edu ). To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 5:27:31 1999 Delivered-To: freebsd-questions@freebsd.org Received: from smtp-out.vma.verio.net (smtp-out.vma.verio.net [168.143.0.23]) by hub.freebsd.org (Postfix) with ESMTP id 415C614C0B for ; Sat, 21 Aug 1999 05:27:25 -0700 (PDT) (envelope-from thomas@clark.net) Received: from smtp-gw2.vma.verio.net ([168.143.0.22]) by smtp-out.vma.verio.net with esmtp (Exim 2.10 #1) id 11IABU-0000Jl-00 for freebsd-questions@freebsd.org; Sat, 21 Aug 1999 08:23:44 -0400 Received: from minotaur (thomas.clark.net [168.143.2.191]) by smtp-gw2.vma.verio.net (8.9.3/8.9.3) with SMTP id IAA07179 for ; Sat, 21 Aug 1999 08:27:23 -0400 (EDT) Message-Id: <3.0.6.32.19990821082115.007e9e30@pop3.clark.net> X-Sender: thomas@pop3.clark.net X-Mailer: QUALCOMM Windows Eudora Light Version 3.0.6 (32) Date: Sat, 21 Aug 1999 08:21:15 -0400 To: freebsd-questions@freebsd.org From: Mark Thomas Subject: Netscape - ELF version? Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Is there any eta on an ELF version of Netscape? Mark --- thomas@clark.net ---> http://www.clark.net/pub/thomas PBEM Eldritch --------> http://www.pbegames.com [TM4463-ORG] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 5:38:43 1999 Delivered-To: freebsd-questions@freebsd.org Received: from nets5.rz.rwth-aachen.de (nets5.rz.RWTH-Aachen.DE [137.226.144.13]) by hub.freebsd.org (Postfix) with ESMTP id 4183C14C0B for ; Sat, 21 Aug 1999 05:38:33 -0700 (PDT) (envelope-from kuku@gilberto.physik.RWTH-Aachen.DE) Received: from campino.informatik.rwth-aachen.de (campino.Informatik.RWTH-Aachen.DE [137.226.116.240]) by nets5.rz.rwth-aachen.de (8.9.1a/8.9.1/6) with ESMTP id OAA10408; Sat, 21 Aug 1999 14:36:22 +0200 (MET DST) Received: from gil.physik.rwth-aachen.de (gilberto.physik.rwth-aachen.de [137.226.30.2]) by campino.informatik.rwth-aachen.de (8.9.1a/8.9.1/3) with ESMTP id OAA23532; Sat, 21 Aug 1999 14:36:31 +0200 (MET DST) Received: (from kuku@localhost) by gil.physik.rwth-aachen.de (8.9.2/8.6.9) id OAA32320; Sat, 21 Aug 1999 14:36:36 +0200 (CEST) Date: Sat, 21 Aug 1999 14:36:36 +0200 From: Christoph Kukulies To: Doug Cc: Christoph Kukulies , questions@freebsd.org Subject: Re: problems building a 3.2 kernel Message-ID: <19990821143636.E32067@gil.physik.rwth-aachen.de> References: <199908201459.QAA25661@gil.physik.rwth-aachen.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4us In-Reply-To: ; from Doug on Fri, Aug 20, 1999 at 11:15:20AM -0700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, Aug 20, 1999 at 11:15:20AM -0700, Doug wrote: > On Fri, 20 Aug 1999, Christoph Kukulies wrote: > > > I upgraded a 2.2.8 system to 3.2 and when trying to rebuild my > > custom kernel I was first using GENERIC and then I tried to rebuild my old kernel. OK, atkbd is ne as some other things like ppbus. It started to barf at vnode.h as if the ANSI prototypes were not being recognized (something like in line structure definition which is not what you want.. - warning from compiler). Maybe I installed ssys.?? only by cat ssys.?? | tar xzvf - -C / Later I did that again with install.sh sys and from then on, maybe after another reboot I was able to compile the kernel. I also took out pseudo device vn and option CD9660. > > Did you start over with the 3.2 GENERIC, or are you trying to > build your old kernel config file? Some of the options have changed, so > it's better to start with GENERIC again. Also, take a look at > http://freebsd.simplenet.com/make-upgrade.html to see if you might have > missed any steps. > > Good luck, > > Doug -- Chris Christoph P. U. Kukulies kuku@gil.physik.rwth-aachen.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 6:20:42 1999 Delivered-To: freebsd-questions@freebsd.org Received: from dgriffin.org (dgriffin.org [205.147.189.146]) by hub.freebsd.org (Postfix) with ESMTP id 5195914F37 for ; Sat, 21 Aug 1999 06:20:38 -0700 (PDT) (envelope-from dick@dgriffin.org) Received: from localhost (dick@localhost) by dgriffin.org (8.9.2/8.9.2) with ESMTP id JAA07126 for ; Sat, 21 Aug 1999 09:02:58 -0400 (EDT) (envelope-from dick@dgriffin.org) Date: Sat, 21 Aug 1999 09:02:58 -0400 (EDT) From: Dick Griffin To: freebsd-questions@freebsd.org Subject: Consultant needed Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Subject: Re: the dreaded Error : 2002 Ok, by now I'm feeling realy stupid, I'm still having the same problem, but I actually do have the server running, at least my system tells me that I do: I'm getting desparate. I'm now willing to pay consulting fees to get to the other side of this problem. I need someone who has expertize in BreeBS and MysSQL. Anyone willing to help, on a fee for service, please drop me a private note. Thanks On Fri, 20 Aug 1999, Darrell Shifflett wrote: >>> >>> On Fri, 20 Aug 1999, Dick Griffin wrote: >>> >>> > The dreaded ERROR 2002 >>> > >>> > surely someone knows what that means? >>> > >>> > MySQL was installed and worked well, till I rebooted, >>> > and now when I try to use Mysql the following occurs >>> > >>> > $ mysql -u dick -p >>> > Enter password: (which I do) >>> > ERROR 2002 Can't connect to local MySQL server through >>> > socket '/tmp/mysql.sock' (2) >>> >>> Your server isnt running .... >>> >>> Dick Griffin At Home To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 6:29:37 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail.rdc1.md.home.com (ha1.rdc1.md.home.com [24.2.2.66]) by hub.freebsd.org (Postfix) with ESMTP id 17D7914DC9 for ; Sat, 21 Aug 1999 06:29:30 -0700 (PDT) (envelope-from paksao@home.com) Received: from home.com ([24.6.131.170]) by mail.rdc1.md.home.com (InterMail v4.01.01.00 201-229-111) with ESMTP id <19990821132850.FOKP20194.mail.rdc1.md.home.com@home.com> for ; Sat, 21 Aug 1999 06:28:50 -0700 Message-ID: <37BEA75F.5875AB0C@home.com> Date: Sat, 21 Aug 1999 09:19:27 -0400 From: paksao Organization: @Home Network X-Mailer: Mozilla 4.5 [en]C-AtHome0405 (Win95; U) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: outlook alternative for freeBSD ? Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I've been playing with freeBsd for a while now at work and I like it and I'm just starting to get to the point where I understand how it works but I am facing a crisis and I don't have time to search out the solution from the man pages and my friends who use BSD don't know the answer. A new manager has come in and he likes MS outlook he thinks it is the way the company should go with email and inter-office communications and email. he also likes NT( He never administered it but he considers himself an expert). After using it as a (fileserver/PDC for 3 yrs I don't though it may be a function of my not having configured it correctly. My heart hasn't been in it though I have done a lot of reading and brought a lot of books.) I have plans to switch over to a freeBSD 3.2 server, with Samba as a PDC and Run our main database on a Linux box using Oracle 8. But In order to keep from being saddled with another NT server( when I want to get rid of the one I have now.) I need to provide an alternative to the Outlook proposal and hopefully a cost effective one. I think I have enough pull to get a freebsd proposal accepted but I need some help figuring out how to implement it or even if it is possible within a reasonable timeframe. additional background -company has 35 employees will expand to 65 in the next year. - I am the IS department - my users don't know Unix,bsd and are only reasonable competent in windows. -for email we use Eudora 3.0 and Netscape 4.5 on the workstations but if the have to learn outlook they can learn to use something else though they are going to need to have a GUI -office 97 is the current office suite mostly word, exceland access - I've done 3 installs ( 2 2.2.8 with xwindows,KDE,samba and 1 3.2 that is as yet unconfigured) -the users are using windows NT ws,windows 95 and windows 98 -workstations are shared forthe most part and the user should be able to access their files email and hte internet from any work station So my questions are: Has anybody done this? (Used freebsd to provide an effective alternative to NT/Outlook.) How would you suggest I go about it? The field is preetty much wide open since I would be starting from scratch ( I would need to buy hardware and software.) Is there commercial or opensource workgroup software for freebsd? I probably left some important details out so feel free to contact me for clarifiction. TIA To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 6:46:17 1999 Delivered-To: freebsd-questions@freebsd.org Received: from ns.clientlogic.com (ns.clientlogic.com [207.51.66.75]) by hub.freebsd.org (Postfix) with ESMTP id 13FE714D06 for ; Sat, 21 Aug 1999 06:46:15 -0700 (PDT) (envelope-from ChrisMic@clientlogic.com) Received: by site0s1 with Internet Mail Service (5.5.2448.0) id ; Sat, 21 Aug 1999 09:43:47 -0400 Message-ID: <6C37EE640B78D2118D2F00A0C90FCB4401105BB8@site2s1> From: Christopher Michaels To: "'David B. Aas'" , questions@freebsd.org Subject: RE: "Sender domain must exist" error Date: Sat, 21 Aug 1999 09:46:16 -0400 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2448.0) Content-Type: text/plain Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG That answer is very simple. gateway.townandcountry.org doesn't exist as far as the rest of the world goes. I tried doing an nslookup on it. Sendmail on the receiving side is rejecting the e-mail because of this (anti-spam stuff). What you need to do is either: 1. Make a valid DNS entry for townandcountry.org, or... 2. Have sendmail masquerade as townandcountry.org and re-write headers of all outgoing mail. -Chris > -----Original Message----- > From: David B. Aas [SMTP:dave@ciminot.com] > Sent: Friday, August 20, 1999 11:00 AM > To: questions@freebsd.org > Subject: "Sender domain must exist" error > > I am getting an error message from POP3 clients when emial is sent. Email > is > received OK, but I cannont send. > > I am running Sendmail on FreeBSD 3.2. Sendmail is set up, and POP3 is > enabled. My users have valid Unix usernames and passwords. My server name > is > gateway.townandcountry.org and my domain name is townandcountry.org. > > My users can connect and receive email. When email is sent, they get an > error message on the POP3 client something like this: > > "The message could not be send because the server rejected the sender's > email address. The sender's email address was ....Server Response "501 > gateway.townandcountry.org ... sender domain must exist" > > On the server console, an error message shows up "Sendmail ... > ruleset=check_mail ...Reject=501 gateway.townandcountry.org sender domain > must exist." > > I double-checked my sendmail.cf file. I have set up a D and a DM record. > DNS > is running and appears to be working OK. > > What am I missing? any help would be appreciated. > > Thanks. > > Dave Aas > Dave@ciminot.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 6:46:45 1999 Delivered-To: freebsd-questions@freebsd.org Received: from blues.ghis.net (pppc2-45.eisa.net.au [203.166.251.165]) by hub.freebsd.org (Postfix) with ESMTP id 4280F14E1A for ; Sat, 21 Aug 1999 06:46:32 -0700 (PDT) (envelope-from jim@blues.ghis.net) Received: (from jim@localhost) by blues.ghis.net (8.9.3/8.9.3) id XAA89798; Sat, 21 Aug 1999 23:31:43 +1000 (EST) (envelope-from jim) Date: Sat, 21 Aug 1999 23:31:38 +1000 From: Jim Mock To: Dick Griffin Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Consultant needed Message-ID: <19990821233137.A81651@blues.ghis.net> Reply-To: jim@blues.ghis.net References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii User-Agent: Mutt/0.96.4i In-Reply-To: Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sat, 21 Aug 1999 at 09:02:58 -0400, Dick Griffin wrote: > > Subject: Re: the dreaded Error : 2002 > > Ok, by now I'm feeling realy stupid, I'm still having the same > problem, but I actually do have the server running, at least my > system tells me that I do: > > I'm getting desparate. I'm now willing to pay consulting fees to > get to the other side of this problem. I need someone who has > expertize in BreeBS and MysSQL. Anyone willing to help, on a fee > for service, please drop me a private note. > Thanks [snip..] > >>> > $ mysql -u dick -p > >>> > Enter password: (which I do) > >>> > ERROR 2002 Can't connect to local MySQL server through > >>> > socket '/tmp/mysql.sock' (2) I had the same problem with the MySQL port. I installed the source and it worked fine. You might want to give it a try and see if you have any better luck. That'll be $65 ;-) - Jim -- - Jim Mock - jim@blues.ghis.net - systems administrator - ghis.NET - - work: http://www.ghis.net/ - personal: http://www.ghis.net/~jim/ - - FreeBSD 'zine: http://www.freebsdzine.org/ - jim@freebsdzine.org - - The FreeBSD Project -- http://www.FreeBSD.org/ - jim@FreeBSD.org - To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 6:53:44 1999 Delivered-To: freebsd-questions@freebsd.org Received: from kot.ne.mediaone.net (kot.ne.mediaone.net [24.218.15.190]) by hub.freebsd.org (Postfix) with ESMTP id 73D6C14D06; Sat, 21 Aug 1999 06:53:40 -0700 (PDT) (envelope-from mi@aldan.algebra.com) Received: from guest.newton (guest.newton [10.10.0.3]) by kot.ne.mediaone.net (8.9.3/8.9.1) with ESMTP id JAA75815; Sat, 21 Aug 1999 09:53:40 -0400 (EDT) From: Mikhail Teterin X-Relay-IP: 10.10.0.3 Received: (from mi@localhost) by guest.newton (8.9.3/8.9.1) id JAA77803; Sat, 21 Aug 1999 09:52:47 -0400 (EDT) Message-Id: <199908211352.JAA77803@guest.newton> Subject: kernel threads, cc -kthread To: stable@freebsd.org, questions@freebsd.org Date: Sat, 21 Aug 1999 09:52:46 -0400 (EDT) X-Face: %UW#n0|w>ydeGt/b@1-.UFP=K^~-:0f#O:D7w hJ5G_<5143Bb3kOIs9XpX+"V+~$adGP:J|SLieM31VIhqXeLBli" for -stable? The cc's man-page says: -kthread Link a kernel-threaded process against libpthread in addition to libc. Objects linked into kernel- threaded processes should be compiled with -D_THREAD_SAFE. But the practice yields: mi@misha:~/tmp (113) cc -kthread t.c /usr/libexec/elf/ld: cannot open -lpthread: No such file or directory Am I right assuming, kernel-threads may, actually, run in parallel on a multi-CPU machine, while the -pthread ones will not? Thanks! -mi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 7:12:40 1999 Delivered-To: freebsd-questions@freebsd.org Received: from ns.clientlogic.com (ns.clientlogic.com [207.51.66.75]) by hub.freebsd.org (Postfix) with ESMTP id 8944C14F43 for ; Sat, 21 Aug 1999 07:12:38 -0700 (PDT) (envelope-from ChrisMic@clientlogic.com) Received: by site0s1 with Internet Mail Service (5.5.2448.0) id ; Sat, 21 Aug 1999 10:12:29 -0400 Message-ID: <6C37EE640B78D2118D2F00A0C90FCB4401105BB9@site2s1> From: Christopher Michaels To: 'paksao' , freebsd-questions@FreeBSD.ORG Subject: RE: outlook alternative for freeBSD ? Date: Sat, 21 Aug 1999 10:14:56 -0400 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2448.0) Content-Type: text/plain Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG If the workstations are going to stay windows workstations. Just setup IMAP mail on the freebsd server and point netscape/eudora/outlook to the IMAP server. Check out imap-uw in the ports. As for PDC, samba provides PDC functionality, but it is still in beta. (I've played with it a little bit and it did seem to work tho). or are all the workstations going to FreeBSD as well? -Chris > -----Original Message----- > From: paksao [SMTP:paksao@home.com] > Sent: Saturday, August 21, 1999 9:19 AM > To: freebsd-questions@FreeBSD.ORG > Subject: outlook alternative for freeBSD ? > > I've been playing with freeBsd for a while now at work and I like it and > I'm just starting to get to the point where I understand how it works > but I am facing a crisis and I don't have time to search out the > solution from the man pages and my friends who use BSD don't know the > answer. > > A new manager has come in and he likes MS outlook he thinks it is the > way the company should go with email and inter-office communications and > email. he also likes NT( He never administered it but he considers > himself an expert). After using it as a (fileserver/PDC for 3 yrs I > don't though it may be a function of my not having configured it > correctly. My heart hasn't been in it though I have done a lot of > reading and brought a lot of books.) I have plans to switch over to a > freeBSD 3.2 server, with Samba as a PDC and Run our main database on a > Linux box using Oracle 8. > > But In order to keep from being saddled with another NT server( when I > want to get rid of the one I have now.) I need to provide an alternative > to the Outlook proposal and hopefully a cost effective one. > > I think I have enough pull to get a freebsd proposal accepted but I need > some help figuring out how to implement it or even if it is possible > within a reasonable timeframe. > > additional background > -company has 35 employees will expand to 65 in the next year. > - I am the IS department > - my users don't know Unix,bsd and are only reasonable competent in > windows. > -for email we use Eudora 3.0 and Netscape 4.5 on the workstations but > if the have to learn outlook they can learn to use something else > though they are going to need to have a GUI > -office 97 is the current office suite mostly word, exceland access > - I've done 3 installs ( 2 2.2.8 with xwindows,KDE,samba and 1 3.2 that > is as yet unconfigured) > -the users are using windows NT ws,windows 95 and windows 98 > -workstations are shared forthe most part and the user should be able > to access their files email and hte internet from any work station > > So my questions are: > > Has anybody done this? (Used freebsd to provide an effective alternative > to NT/Outlook.) > > How would you suggest I go about it? The field is preetty much wide open > since I would be starting from scratch ( I would need to buy hardware > and software.) > > Is there commercial or opensource workgroup software for freebsd? > > I probably left some important details out so feel free to contact me > for clarifiction. > > TIA > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 7:18:10 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail2.webintl.com (hawk.webintl.com [207.150.79.228]) by hub.freebsd.org (Postfix) with ESMTP id A198514F43 for ; Sat, 21 Aug 1999 07:18:03 -0700 (PDT) (envelope-from aeverett@webintl.com) Received: from webintl.com (207.150.79.67) by mail2.webintl.com with ESMTP (Eudora Internet Mail Server 1.2); Sat, 21 Aug 1999 09:13:42 -0500 Message-ID: <37BEB44E.29ED2CD4@webintl.com> Date: Sat, 21 Aug 1999 09:14:39 -0500 From: Albert Everett Reply-To: aeverett@webintl.com Organization: Web International, Inc. X-Mailer: Mozilla 4.06 (Macintosh; I; 68K) MIME-Version: 1.0 To: questions@freebsd.org Subject: maximum file size X-Priority: 1 (Highest) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hopefully this will be a trivial question, but I haven't found the answer yet online or in Greg's FreeBSD book. How large can a file be under FreeBSD? I've heard that under Linux the size limit is 2gb. It's not difficult to imagine large log files resulting from a busy web site, but most documentation seems to be focused on minimums rather than maximums. Albert Everett aeverett@webintl.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 7:18:30 1999 Delivered-To: freebsd-questions@freebsd.org Received: from chmls06.mediaone.net (chmls06.mediaone.net [24.128.1.71]) by hub.freebsd.org (Postfix) with ESMTP id 31AC515046 for ; Sat, 21 Aug 1999 07:18:25 -0700 (PDT) (envelope-from tonyl@telebot.com) Received: from telebot.com (balambiris.ne.mediaone.net [24.128.252.18]) by chmls06.mediaone.net (8.8.7/8.8.7) with ESMTP id KAA13912 for ; Sat, 21 Aug 1999 10:15:39 -0400 (EDT) Message-ID: <37BEB47F.BC48E950@telebot.com> Date: Sat, 21 Aug 1999 10:15:27 -0400 From: Tony Lambiris X-Mailer: Mozilla 4.6 [en] (X11; I; Linux 2.2.11 i686) X-Accept-Language: en MIME-Version: 1.0 To: questions@freebsd.org Subject: Slow Clock Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG My FreeBSD clock is really slow... for every second, around 5-10 minutes have gone by... i tried doing the NTIMECOUNTER=20 in kernel, no go. Windows never had this problem (jsut to let you know it has worked before), plus when i reboot, my cmos clock is still fine... is there a way to have freebsd read from the cmos clock isntead of trying to do its own thing? the only way i can keep current time is the shell script i have to keep updating my time from time servers every second. thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 7:40:48 1999 Delivered-To: freebsd-questions@freebsd.org Received: from sand.global.net.uk (sand.global.net.uk [195.147.248.109]) by hub.freebsd.org (Postfix) with ESMTP id DE29415008 for ; Sat, 21 Aug 1999 07:40:44 -0700 (PDT) (envelope-from marko@globalnet.co.uk) Received: from p37s11a06.client.global.net.uk ([195.147.219.56] helo=marder-1.) by sand.global.net.uk with esmtp (Exim 2.05 #1) id 11ICHa-00004b-00; Sat, 21 Aug 1999 15:38:10 +0100 Received: (from marko@localhost) by marder-1. (8.9.2/8.8.8) id PAA00931; Sat, 21 Aug 1999 15:31:13 +0100 (BST) (envelope-from marko) Date: Sat, 21 Aug 1999 15:31:13 +0100 From: Mark Ovens To: Albert Everett Cc: questions@freebsd.org Subject: Re: maximum file size Message-ID: <19990821153112.E267@marder-1> References: <37BEB44E.29ED2CD4@webintl.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.3i In-Reply-To: <37BEB44E.29ED2CD4@webintl.com>; from Albert Everett on Sat, Aug 21, 1999 at 09:14:39AM -0500 Organization: Total lack of Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sat, Aug 21, 1999 at 09:14:39AM -0500, Albert Everett wrote: > Hopefully this will be a trivial question, but I haven't found the answer yet > online or in Greg's FreeBSD book. > > How large can a file be under FreeBSD? I've heard that under Linux the size > limit is 2gb. > > It's not difficult to imagine large log files resulting from a busy web site, > but most documentation seems to be focused on minimums rather than maximums. > According to the FAQ >4TB: 2.27. What are the limits for ffs filesystems? For ffs filesystems, the maximum theoretical limit is 8 terabytes (2G blocks), or 16TB for the default block size of 8K. In practice, there is a soft limit of 1 terabyte, but with modifications filesystems with 4 terabytes are possible (and exist). The maximum size of a single ffs file is approximately 1G blocks (4TB) if the block size is 4K. maxfilesize ---------------------------------- 2.2.7 3.0 fs block size -stable -current works should-work ------------- ------- -------- ----- ----------- 4K 4T-1 4T-1 4T-1 4+T 8K 32+G 8T-1 32+G 16T-1 16K 128+G 16T-1 128+G 32T-1 32K 512+G 32T-1 512+G 64T-1 64K 2048+G 64T-1 2048+G 128T-1 > Albert Everett > aeverett@webintl.com > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > -- STATE-OF-THE-ART: Any computer you can't afford. OBSOLETE: Any computer you own. ________________________________________________________________ FreeBSD - The Power To Serve http://www.freebsd.org My Webpage http://http://ukug.uk.freebsd.org/~mark/ mailto:mark@ukug.uk.freebsd.org http://www.radan.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 7:53: 9 1999 Delivered-To: freebsd-questions@freebsd.org Received: from IPGATE.sls.co.uk (IPGATE.sls.co.uk [194.201.82.1]) by hub.freebsd.org (Postfix) with ESMTP id 92FDD14DDF for ; Sat, 21 Aug 1999 07:52:57 -0700 (PDT) (envelope-from woodruff_g@sls.co.uk) Received: from SLSNT2.sls.co.uk (SLSNT2.sls.co.uk [194.201.82.110]) by IPGATE.sls.co.uk (8.9.3/8.9.3) with SMTP id PAA11461 for ; Sat, 21 Aug 1999 15:49:00 +0100 Received: from grahamr (194.201.82.196) by SLSNT2.sls.co.uk (EMWAC SMTPRS 0.81) with SMTP id ; Sat, 21 Aug 1999 15:51:32 +0100 Message-ID: <001401beebe3$a0617e40$c452c9c2@grahamr> From: "Graham Woodruff" To: , Subject: Re: 3.2 wont install Date: Thu, 19 Aug 1999 20:29:29 +0100 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 4.72.2106.4 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.2106.4 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > ...and it gets all the way to "extracting bin into / directory" and >just stops with "1024 bytes read from bin dist chunk >1 of 106 @ 1kb/sec" Thanks for backing me up on this one ! This is EXACTLY what I am finding installing 3.2 using a variety of hardware via ftp viz... Set up hardware OK, connect to ftp server - works fine - then hangs at 1024K transferred ! Funny enough, the smallest box I have - 486/25 8Mb 2*130Mb drives, installed perfectly, but using the same network card in another (larger) box just gives the same old hang... Transferring one of the network cards that failed (?) to the 'working' box, I find that 'most' IP is OK, ping, telnet etc. all OK BUT ftp either in or out hangs at the 1024K barrier, I (think I...) have eliminated network cards, HDD's, CPU's memory etc. on the grounds that subsequent installs of Linux (either Slackware4.0 or RedHat) both pick up all the hardware AND use the network card OK. One answer was to try a different ftp server, in my case, I have downloaded to my Win95 box to minimise connect time, so just run either G6 or Netftpd, both/either of which are OK with different apps, both of which have been used succesfully for the FreeBSD load onto my base system I have tried different IRQ/membase etc to no effect, I am convinced now that another process is causing this (routed ???) if so, how do I/we get round this, I really would like to have a 'real' FreeBSD box running as a 'network services' server. Graham Woodruff graham.woodruff@iii-europe.com grahamr@globalnet.co.uk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 8:31: 3 1999 Delivered-To: freebsd-questions@freebsd.org Received: from adsl-216-102-203-44.dsl.snfc21.pacbell.net (adsl-216-102-203-44.dsl.snfc21.pacbell.net [216.102.203.44]) by hub.freebsd.org (Postfix) with ESMTP id 37EFD14C09 for ; Sat, 21 Aug 1999 08:30:57 -0700 (PDT) (envelope-from bri@sonicboom.org) Received: from localhost (bri@localhost) by adsl-216-102-203-44.dsl.snfc21.pacbell.net (8.9.3/8.9.3) with ESMTP id IAA50488; Sat, 21 Aug 1999 08:29:19 -0700 (PDT) (envelope-from bri@sonicboom.org) Date: Sat, 21 Aug 1999 08:29:19 -0700 (PDT) From: Brian X-Sender: bri@adsl-216-102-203-44.dsl.snfc21.pacbell.net To: paksao Cc: freebsd-questions@FreeBSD.ORG Subject: Re: outlook alternative for freeBSD ? In-Reply-To: <37BEA75F.5875AB0C@home.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG The email part is easy enough. BSD on a pentium would easily support smtp and pop3/imap for that many users. Like the other answer said, just have the users point their mail client at the new bsd server. Brian On Sat, 21 Aug 1999, paksao wrote: > I've been playing with freeBsd for a while now at work and I like it and > I'm just starting to get to the point where I understand how it works > but I am facing a crisis and I don't have time to search out the > solution from the man pages and my friends who use BSD don't know the > answer. > > A new manager has come in and he likes MS outlook he thinks it is the > way the company should go with email and inter-office communications and > email. he also likes NT( He never administered it but he considers > himself an expert). After using it as a (fileserver/PDC for 3 yrs I > don't though it may be a function of my not having configured it > correctly. My heart hasn't been in it though I have done a lot of > reading and brought a lot of books.) I have plans to switch over to a > freeBSD 3.2 server, with Samba as a PDC and Run our main database on a > Linux box using Oracle 8. > > But In order to keep from being saddled with another NT server( when I > want to get rid of the one I have now.) I need to provide an alternative > to the Outlook proposal and hopefully a cost effective one. > > I think I have enough pull to get a freebsd proposal accepted but I need > some help figuring out how to implement it or even if it is possible > within a reasonable timeframe. > > additional background > -company has 35 employees will expand to 65 in the next year. > - I am the IS department > - my users don't know Unix,bsd and are only reasonable competent in > windows. > -for email we use Eudora 3.0 and Netscape 4.5 on the workstations but > if the have to learn outlook they can learn to use something else > though they are going to need to have a GUI > -office 97 is the current office suite mostly word, exceland access > - I've done 3 installs ( 2 2.2.8 with xwindows,KDE,samba and 1 3.2 that > is as yet unconfigured) > -the users are using windows NT ws,windows 95 and windows 98 > -workstations are shared forthe most part and the user should be able > to access their files email and hte internet from any work station > > So my questions are: > > Has anybody done this? (Used freebsd to provide an effective alternative > to NT/Outlook.) > > How would you suggest I go about it? The field is preetty much wide open > since I would be starting from scratch ( I would need to buy hardware > and software.) > > Is there commercial or opensource workgroup software for freebsd? > > I probably left some important details out so feel free to contact me > for clarifiction. > > TIA > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 8:36:30 1999 Delivered-To: freebsd-questions@freebsd.org Received: from sign.chg.ru (sign.chg.ru [193.233.46.10]) by hub.freebsd.org (Postfix) with ESMTP id 2914F14C09 for ; Sat, 21 Aug 1999 08:36:18 -0700 (PDT) (envelope-from fbsdmail@sign.chg.ru) Received: from localhost (fbsdmail@localhost) by sign.chg.ru (8.9.2/8.9.2) with ESMTP id TAA02343; Sat, 21 Aug 1999 19:35:11 +0400 (MSD) (envelope-from fbsdmail@sign.chg.ru) Date: Sat, 21 Aug 1999 19:35:11 +0400 (MSD) From: "Andrew L. Neporada" To: Fredrik Carlen Cc: freebsd-questions@FreeBSD.ORG, d93-awe@nada.kth.se, primary@cowmob.nu Subject: Re: Computer running FreeBSD 3.2-RELEASE freezes completely In-Reply-To: <99082019241400.00282@entityone.leonissystems.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I've meet with similar problem, so I need additional info from you. 1) How many HD's you have? If more then one, does master/slave jumpers are set correctly? 2) Could you please send dmesg output. 3) If this problem appears only when you run X? 4) Try to save Xserver output to file. For example: startx >xsever.log 2>&1 & This will help to find your problem quickly. On Fri, 20 Aug 1999, Fredrik Carlen wrote: > Question from Fredrik Carlen > > Hello! I have a really annoying problem, and I can't seem to be able to > find an answer to it on the Net. I recently "bought" and installed FreeBSD > 3.2-RELEASE. I have been using it for a couple of weeks, and it's a very > pleasant experience, except for the fact that *every* *single* *day* the system > *freezes*. Hangs. I've been told not to reinstall, so, still painfully > ignorant in the field of UNIX, I am humbly asking for more knowledgeable help. > > This is what happens: > 1.I log in on my usual, every-day account. > 2.I start X up. > 3.I start doing the normal stuff, nothing fancy (e.g. reading mail, writing > notes). > 4.The system freezes. Every input device stops working. The mouse cursor > disappering is the first indication. The system is *not* reading from the hard > drive, at least as far as I can see and hear. No matter how long I wait, the > system won't respond. It's a complete denial-of-service! The only option > left is to reboot the hard way. Which doesn't exactly make things better!!! > > It happens *frequently* in the following circumstances: > A. When I try to change something in "preferences" or "options", in > any program (epecially Netcape). Sometimes it works, sometimes the system > freezes. > B.When I am trying to do something in two programs simultaneously, > e.g. surfing and writing small notes. (By goood I hope it doesn't happen > right now, please, please, my dear OS, just let me finish this freakin' mail!) > C. Sometimes without any action from my part whatsoever. > [ snipe ] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 8:53:14 1999 Delivered-To: freebsd-questions@freebsd.org Received: from unix.megared.net.mx (megared.net.mx [207.249.162.252]) by hub.freebsd.org (Postfix) with ESMTP id CDC0914E90 for ; Sat, 21 Aug 1999 08:53:07 -0700 (PDT) (envelope-from ales@megared.net.mx) Received: from ales (pix.megared.net.mx [207.249.162.253]) by unix.megared.net.mx (8.9.3/8.9.3) with SMTP id KAA48915 for ; Sat, 21 Aug 1999 10:52:01 -0500 (CDT) (envelope-from ales@megared.net.mx) Message-ID: <019b01beebed$0c901be0$d4630a0a@megared.net.mx> From: "Alejandro Ramirez" To: "FreeBSD Questions" Subject: rewrite: expansion too long Date: Sat, 21 Aug 1999 10:51:36 -0500 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-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, I have been receiving this messages lately, does anybody knows what do they mean: Aug 20 04:25:44 unix sendmail[37380]: EAA37380: SYSERR(root): rewrite: expansion too long Aug 20 04:25:46 unix sendmail[37381]: EAA37381: SYSERR(root): rewrite: expansion too long Aug 20 06:15:14 unix sendmail[40364]: GAA40364: SYSERR(root): rewrite: expansion too long Aug 20 10:50:42 unix /kernel: xl0: transmission error: 90 Aug 20 10:50:42 unix /kernel: xl0: tx underrun, increasing tx start threshold to 360 bytes Thanks in Advance Ales To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 8:53:49 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mtiwmhc03.worldnet.att.net (mtiwmhc03.worldnet.att.net [204.127.131.38]) by hub.freebsd.org (Postfix) with ESMTP id 2CDF214F19 for ; Sat, 21 Aug 1999 08:53:47 -0700 (PDT) (envelope-from theApp@att.net) Received: from att.net ([12.77.134.134]) by mtiwmhc03.worldnet.att.net (InterMail v03.02.07.07 118-134) with ESMTP id <19990821155406.BTPW18791@att.net> for ; Sat, 21 Aug 1999 15:54:06 +0000 Message-ID: <37BECBEA.3DAE673F@att.net> Date: Sat, 21 Aug 1999 10:55:22 -0500 From: root X-Mailer: Mozilla 4.51 [en] (X11; I; Linux 2.2.5-15 i586) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: Bootdisk Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Help, I install freeBSD. I have it one a 13 gig disk, and Linux on the same disk, I have Linux first, then freeBSD. LILO doesn't detect freeBSD, so I was wondering how do I make a boot disk to boot the system, not one to boot the system where I install it. If you could help, thank you. Christian Weber To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 9:23: 1 1999 Delivered-To: freebsd-questions@freebsd.org Received: from pima.gate.net (pima.gate.net [198.206.134.30]) by hub.freebsd.org (Postfix) with ESMTP id 01BB814C04 for ; Sat, 21 Aug 1999 09:22:57 -0700 (PDT) (envelope-from wjm@gate.net) Received: from dakota.gate.net (root@dakota.gate.net [199.227.0.13]) by pima.gate.net (8.8.6/8.6.12) with ESMTP id MAA169722; Sat, 21 Aug 1999 12:19:00 -0400 Received: from localhost (wjm@localhost) by dakota.gate.net (8.8.6/8.7.3) with ESMTP id LAA15740; Sat, 21 Aug 1999 11:46:41 -0400 X-Authentication-Warning: dakota.gate.net: wjm owned process doing -bs Date: Sat, 21 Aug 1999 11:46:41 -0400 (EDT) From: William Melanson To: Langa Kentane Cc: FreeBSD Subject: Re: Best pop3 server daemon In-Reply-To: <01a201beea43$00caed40$0a01a8c0@sunshine.co.za> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, 19 Aug 1999, Langa Kentane wrote: % % Which pop3 daemon would you recommend for my server that is easy to % configure and stuff that will make it a breeze for this newbie to setup pop3 % on my network. % Cubic Circle's POP3 daemon (RFC1939) --------------------------------oOo------------------------------------ William J. Melanson CyberGate, Inc. | e.spire Communications Network Controller Deerfield Beach, FL 33441 Network Operations Center Phone: (954) 429-8080 --------------------------------oOo------------------------------------ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 9:46:16 1999 Delivered-To: freebsd-questions@freebsd.org Received: from pima.gate.net (pima.gate.net [198.206.134.30]) by hub.freebsd.org (Postfix) with ESMTP id 5F20715006 for ; Sat, 21 Aug 1999 09:46:08 -0700 (PDT) (envelope-from garciacj@gate.net) Received: from garciacj (tshlw1-282.gate.net [199.227.189.28]) by pima.gate.net (8.8.6/8.6.12) with SMTP id MAA124450 for ; Sat, 21 Aug 1999 12:44:41 -0400 Message-ID: <002b01beebf5$8ca6a940$1cbde3c7@gate.net> From: "Carlos J Garcia" To: Subject: Fw: Install help needed. Date: Sat, 21 Aug 1999 12:52:26 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit 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-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ----- Original Message ----- From: Carlos J Garcia To: Sent: Monday, August 16, 1999 6:26 PM Subject: Install help needed. I still can't get Free BSD to find my CD-ROM at install. I took the CD-ROM drive out and changed the cable from master to slave and changed the jumpers sometimes it would not even boot from the CD . When it did boot it didnt find the CD drive. I then tried to boot from floppy with the CD in it still didnt find the CD drive . I then tried something really different. I made a boot floppy for Open BSD and when it booted it found the CD drive the first time it probed my computer. I guess my computer is set up in a way that FreeBSD can't find my CD drive. I really want to install Free BSD but it it getting fustrating . Will some one please help? > I am trying to install FreeBSD on my computer but it can not find my CD-ROM. > My computer is a HP 4440 with an AMD-K6-2/333 with 64 Mb of RAM. > I partitioned the hard drive with Partition Commander and then tried to > install > FreeBSD 3.2 from the cd. I turned off the computer with the FreeBSD cd in > the cd-rom drive. I then turn on the computer and it boots from the cd. > When it probes the computer it cant find the cd drive. It will show all the > menus > until I chose cd at the install medium menu then I get C.D.-ROOM drive not > found. > I already opened the computer the C.D. is connected to master . The C.D. > drive > is made by LG Electronics in Korea model CRD 8322B it came installed > with the computer . > > THANKS IN ADVANCE. > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 9:56:21 1999 Delivered-To: freebsd-questions@freebsd.org Received: from unix.megared.net.mx (megared.net.mx [207.249.162.252]) by hub.freebsd.org (Postfix) with ESMTP id F310714F64 for ; Sat, 21 Aug 1999 09:56:18 -0700 (PDT) (envelope-from ales@megared.net.mx) Received: from ales (pix.megared.net.mx [207.249.162.253]) by unix.megared.net.mx (8.9.3/8.9.3) with SMTP id LAA58448; Sat, 21 Aug 1999 11:53:14 -0500 (CDT) (envelope-from ales@megared.net.mx) Message-ID: <02ce01beebf5$99d2da80$d4630a0a@megared.net.mx> From: "Alejandro Ramirez" To: "Mark Ovens" , "Albert Everett" Cc: References: <37BEB44E.29ED2CD4@webintl.com> <19990821153112.E267@marder-1> Subject: RE: maximum file size Date: Sat, 21 Aug 1999 11:52:48 -0500 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-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, How can I know the size of the blocks Im using in my system??? (FreeBSD 3.2 Release) Thanks Ales ----- Original Message ----- From: Mark Ovens To: Albert Everett Cc: Sent: Saturday, August 21, 1999 9:31 AM Subject: Re: maximum file size > On Sat, Aug 21, 1999 at 09:14:39AM -0500, Albert Everett wrote: > > Hopefully this will be a trivial question, but I haven't found the answer yet > > online or in Greg's FreeBSD book. > > > > How large can a file be under FreeBSD? I've heard that under Linux the size > > limit is 2gb. > > > > It's not difficult to imagine large log files resulting from a busy web site, > > but most documentation seems to be focused on minimums rather than maximums. > > > > According to the FAQ >4TB: > > 2.27. What are the limits for ffs filesystems? > > For ffs filesystems, the maximum theoretical limit is 8 terabytes > (2G blocks), or 16TB for the default block size of 8K. In practice, > there is a soft limit of 1 terabyte, but with modifications > filesystems with 4 terabytes are possible (and exist). > > The maximum size of a single ffs file is approximately 1G blocks > (4TB) if the block size is 4K. > > maxfilesize > ---------------------------------- > 2.2.7 3.0 > fs block size -stable -current works should-work > ------------- ------- -------- ----- ----------- > 4K 4T-1 4T-1 4T-1 4+T > 8K 32+G 8T-1 32+G 16T-1 > 16K 128+G 16T-1 128+G 32T-1 > 32K 512+G 32T-1 512+G 64T-1 > 64K 2048+G 64T-1 2048+G 128T-1 > > > Albert Everett > > aeverett@webintl.com > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > > > -- > STATE-OF-THE-ART: Any computer you can't afford. > OBSOLETE: Any computer you own. > ________________________________________________________________ > FreeBSD - The Power To Serve http://www.freebsd.org > My Webpage http://http://ukug.uk.freebsd.org/~mark/ > mailto:mark@ukug.uk.freebsd.org http://www.radan.com > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 10:13:53 1999 Delivered-To: freebsd-questions@freebsd.org Received: from bingnet2.cc.binghamton.edu (bingnet2.cc.binghamton.edu [128.226.1.18]) by hub.freebsd.org (Postfix) with ESMTP id 209D4152D1 for ; Sat, 21 Aug 1999 10:13:49 -0700 (PDT) (envelope-from zzhang@cs.binghamton.edu) Received: from sol.cs.binghamton.edu (cs1-gw.cs.binghamton.edu [128.226.171.72]) by bingnet2.cc.binghamton.edu (8.9.3/8.9.3) with SMTP id NAA08153; Sat, 21 Aug 1999 13:09:14 -0400 (EDT) Date: Sat, 21 Aug 1999 12:55:49 -0400 (EDT) From: Zhihui Zhang To: Alejandro Ramirez Cc: Mark Ovens , Albert Everett , questions@FreeBSD.ORG Subject: RE: maximum file size In-Reply-To: <02ce01beebf5$99d2da80$d4630a0a@megared.net.mx> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sat, 21 Aug 1999, Alejandro Ramirez wrote: > Hi, > > How can I know the size of the blocks Im using in my system??? (FreeBSD > 3.2 Release) > Use command dumpfs. -Zhihui To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 10:30:25 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail.greatbasin.net (mail.greatbasin.net [207.228.35.39]) by hub.freebsd.org (Postfix) with ESMTP id B72C01522E for ; Sat, 21 Aug 1999 10:30:19 -0700 (PDT) (envelope-from dan@jgl.reno.nv.us) Received: from jgl.reno.nv.us (rno-max8-23.gbis.net [207.228.62.23]) by mail.greatbasin.net (8.9.3/8.9.3) with ESMTP id KAA11416; Sat, 21 Aug 1999 10:27:53 -0700 (PDT) Received: from danco (danco.home [10.0.0.2]) by jgl.reno.nv.us (8.9.3/8.9.3) with SMTP id KAA04038; Sat, 21 Aug 1999 10:27:24 -0700 (PDT) (envelope-from dan@jgl.reno.nv.us) Message-ID: <04c501beebfa$6e770dc0$0200000a@home> From: "Dan O'Connor" To: "Carlos J Garcia" , References: <002b01beebf5$8ca6a940$1cbde3c7@gate.net> Subject: Re: Install help needed. Date: Sat, 21 Aug 1999 10:27:22 -0700 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit 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-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG How old is your computer (and CD-ROM drive)? I recently installed FreeBSD 3.2 on a 4-year old Dell Dimension with a 4x IDE CDROM. FreeBSD did detect it as Secondary Master, but the kernel probe took about five minutes. I replaced the old CDROM with a new el-cheapo (<$50) 24x modern-day ATAPI drive, and it works flawlessly. If you can afford it, you may want to upgrade your CDROM drive... --Dan ** The thing I like most about Windows 98 is... ** You can download FreeBSD with it! ----- Original Message ----- From: Carlos J Garcia To: Sent: Saturday, August 21, 1999 9:52 AM Subject: Fw: Install help needed. > I still can't get Free BSD to find my CD-ROM at install. > I took the CD-ROM drive out and changed the cable from master to > slave and changed the jumpers sometimes it would not even > boot from the CD . When it did boot it didnt find the CD drive. > I then tried to boot from floppy with the CD in it still didnt find the > CD drive . > > I then tried something really different. I made a boot floppy for > Open BSD and when it booted it found the CD drive the first time > it probed my computer. > > I guess my computer is set up in a way that FreeBSD can't find > my CD drive. I really want to install Free BSD but it it getting > fustrating . Will some one please help? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 10:31:25 1999 Delivered-To: freebsd-questions@freebsd.org Received: from forty-two.egroups.net (teapot.findmail.com [206.16.70.98]) by hub.freebsd.org (Postfix) with ESMTP id 1048B15275 for ; Sat, 21 Aug 1999 10:31:23 -0700 (PDT) (envelope-from gsutter@forty-two.egroups.net) Received: (from gsutter@localhost) by forty-two.egroups.net (8.9.3/8.9.2) id KAA97813; Sat, 21 Aug 1999 10:30:14 -0700 (PDT) (envelope-from gsutter) Date: Sat, 21 Aug 1999 10:30:14 -0700 From: Gregory Sutter To: Thomas Uhrfelt Cc: Christophe Prevotaux , FreeBSD Questions Subject: Re: ZOPE Message-ID: <19990821103014.H87145@forty-two.egroups.net> References: <37BAD411.8458BC6A@hexanet.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: ; from Thomas Uhrfelt on Wed, Aug 18, 1999 at 06:10:57PM +0200 Organization: Zer0 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, Aug 18, 1999 at 06:10:57PM +0200, Thomas Uhrfelt wrote: > >From the faq at www.zope.org (note the ported systems)... > > What platforms does Zope run on? > Digital Creations develops Zope on Linux/Intel and supports Zope on > Linux/Intel, Solaris (SPARC and Intel), and Windows. Zope has been ported to > Digital Unix, BSDI, HP/UX, FreeBSD, NetBSD, SGI/Irix, HP-UX, and many > others. Zope runs on FreeBSD. What Christophe was asking, though, is whether there is a FreeBSD-ports-system port of Zope. There is not. I don't know whether somebody is working on one. Greg -- Gregory S. Sutter Was Jimi's modem a Purple Hayes? mailto:gsutter@pobox.com http://www.pobox.com/~gsutter/ PGP DSS public key 0x40AE3052 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 10:34:59 1999 Delivered-To: freebsd-questions@freebsd.org Received: from www.keycomp.net (www.keycomp.net [207.44.1.33]) by hub.freebsd.org (Postfix) with ESMTP id 07AC015186 for ; Sat, 21 Aug 1999 10:34:51 -0700 (PDT) (envelope-from billieakay@yahoo.com) Received: from bopper (kc-rmt11.keycomp.net [207.44.1.13]) by www.keycomp.net (8.8.5/SCO5) with SMTP id NAA21910; Sat, 21 Aug 1999 13:40:34 -0400 (EDT) Message-ID: <001301beebfa$45473b00$01010101@bopper> From: "Bill A. K." To: "M. L. Dodson" , "FreeBSD Questions" References: <005701bee601$fb27d500$01010101@bopper><199908201525.KAA23423@beowulf.utmb.edu><001501beeb47$270e3340$01010101@bopper> <199908202032.PAA46839@beowulf.utmb.edu> Subject: Re: Logitech USB Mouse Date: Sat, 21 Aug 1999 13:26:12 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit 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-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, I really hate to bother you, but I went to add that kernel patch for the USB Mouse, and guess what? Because I recently upgraded to 4.0-CURRENT, the code that you told me to patch isin't the same. Maybe I should stop bothering you and ask the BSD-USB mailing list. I would like to know the addess of that mailing list either way :) Thanks for all of your help Bill billieakay@yahoo.com ----- Original Message ----- From: M. L. Dodson To: Bill A. K. Sent: Friday, August 20, 1999 4:32 PM Subject: Re: Logitech USB Mouse > Bill A. K. writes: > > Hello, > > > > Thanks for the USB patch.........my only problem now is how to install > > it. > > > > is there any way to automatically patch the file or do i have to edit it > > manually? > > > > its an awfully big file............ > > Well that depends totally on what version you are running. This > patch is against 3.2R with the PAO3 patches applied (which I > think are unimportant as far as USB is concerned). If you just > want to try to see if it works, just change to /usr/src/sys, > then, as root, do > > patch < patch.file.name > > where patch.file.name is whatever you called the email message I > sent (the single message, not the whole mailbox, that is). If > you get an error message about the patch being rejected, then > just change from /usr/src/sys to /usr/src/sys/dev/usb and edit > the file usbdi.c (copy the unmodified file to have a .orig suffix > first). Page down to line 920. Somewhere nearby, you should see > text that is the same or similar to that in the patch. Just > change the 0 to a 1 with the editor, save the file, exit and > rebuild your kernel. I always do a config -r KERNELNAME to be > sure to pick up the new file. Be sure and do a make depend > first. make install and reboot. Things won't work if you are > using moused with the USB mouse (as you well know), so you want > to do boot -s, fsck -a to fix the filesystems, then exit to go > multiuser. Remember you can boot kernel.old, if things go wrong. > > > > > please let me know. > > > > Bill > > billieakay@yahoo.com > > > > ----- Original Message ----- > > From: M. L. Dodson > > To: Bill A. K. > > Cc: FreeBSD Questions > > Sent: Friday, August 20, 1999 11:25 AM > > Subject: Logitech USB Mouse > > > > > > > Bill A. K. writes: > > > > Hi, > > > > Some of you have maybe seen me posting about this question before. > > > > > > > > i'm having a problem with a Logitech USB Mouse. > > > > > > > > When I shutdown the system or even killall moused, the system crashes > > with > > > > an error. i think it's a page fault if i remember correctly (i would > > post > > > > the output, but i don't know how to get the dmesg output) > > > > > > > > I have tried this and seen the same behavior on FreeBSD 3.2-RELEASE and > > > > FreeBSD 4.0-CURRENT (Just downloaded yesterday night and compiled > > today, so > > > > my current is current) > > > > > > > [elided] > > > > If anybody else has run into this problem and knows how to fix it, or > > if > > > > anybody know of any patches or updates or anything at all, please let > > me > > > > know. > > > > > > > > Thanks > > > > > > > > Bill > > > > billieakay@yahoo.com > > > > > > > > > > I've been able to reproduce your problem on 3.2R+PAO3, and will > > > furnish a patch from the BSD-USB mailing list. Also, if you > > > start having trouble with the USB mouse, try changing the order > > > of the usb _devices_ in the kernel config file; something > > > happened recently, I think, to change the probe order relative to > > > that in LINT, and it causes the mouse to be found on the probe to > > > ugen0 (but I am not sure of the technical details). You need to > > > create /dev/{ums0,usb0}, if you have not done so. > > > > > > Patch relative to /usr/src/sys: > > > > > > *** dev/usb/usbdi.c.orig Sat May 8 18:04:58 1999 > > > --- dev/usb/usbdi.c Thu Aug 19 16:15:05 1999 > > > *************** > > > *** 917,923 **** > > > { > > > usbd_request_handle reqh; > > > > > > ! #if 0 > > > for (;;) { > > > reqh = SIMPLEQ_FIRST(&pipe->queue); > > > if (reqh == 0) > > > --- 917,923 ---- > > > { > > > usbd_request_handle reqh; > > > > > > ! #if 1 > > > for (;;) { > > > reqh = SIMPLEQ_FIRST(&pipe->queue); > > > if (reqh == 0) > > -- > M. L. Dodson bdodson@scms.utmb.edu > 409-772-2178 FAX: 409-772-1790 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 10:43:39 1999 Delivered-To: freebsd-questions@freebsd.org Received: from www.keycomp.net (www.keycomp.net [207.44.1.33]) by hub.freebsd.org (Postfix) with ESMTP id EC0DF153C5 for ; Sat, 21 Aug 1999 10:40:58 -0700 (PDT) (envelope-from billieakay@yahoo.com) Received: from bopper (kc-rmt11.keycomp.net [207.44.1.13]) by www.keycomp.net (8.8.5/SCO5) with SMTP id NAA21940; Sat, 21 Aug 1999 13:46:42 -0400 (EDT) Message-ID: <001901beebfb$204d2d40$01010101@bopper> From: "Bill A. K." To: "paksao" , "FreeBSD Questions" References: <37BEA75F.5875AB0C@home.com> <001f01beebe0$3e489b60$01010101@bopper> <37BECB5E.D275A502@home.com> Subject: Re: outlook alternative for freeBSD ? Date: Sat, 21 Aug 1999 13:32:21 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit 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-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I am refering to StarOffice and things like that for the Office compatibility. I think there is one other one besides StarOffice that I am thinking of, but I don't know the name of it off hand. The Outlook like thing is tough, but isin't there an integrated office/calendar/scheduling thing in the ports collection (if you don't know, thats at http://www.freebsd.org/ports). I believe it might be koffice. I'll do some lookng and if i come up with anything i'll be sure to let you know. Bill billieakay@yahoo.com ----- Original Message ----- From: paksao To: Bill A. K. Sent: Saturday, August 21, 1999 11:53 AM Subject: Re: outlook alternative for freeBSD ? > > > "Bill A. K." wrote: > > > > ok, have you considered just using plain old Netscape Mail which comes with > > Netscape Communicator? > > Some of the users use Netscape mail already . The new manager thinks > that the other outlook functions scheduling meetings, journal, calendar > will increase productivity. ( I tend to find that stuff more annoying > but useful but some people like it.) > > > > There are UNIX/BSD alternatives to MS Office, some of which can even read > > the office files (i think) > > Are you thinking about koffice? > > > How much money can you spend is the big question? > > Money is a object but I figured that after I prove I can do what Outlook > does I can spend 5 K for the software and probably another few k for a > server. ( I am pulling number outof the air because I have even begun to > price outlook and the NT server to support it. ) I know I'm going to > need additional copies of officew/outlook shortly so know that I can get > the budget as long as it works, works as wellas outlook and costs are > comparable. ( and for me it has to be able to run on a Freebsd box with > MS clients. > > Let me know and i'll see if i can help you any more > > > > Bill > > billieakay@yahoo.com > > > > ----- Original Message ----- > > From: paksao > > To: > > Sent: Saturday, August 21, 1999 9:19 AM > > Subject: outlook alternative for freeBSD ? > > > > > I've been playing with freeBsd for a while now at work and I like it and > > > I'm just starting to get to the point where I understand how it works > > > but I am facing a crisis and I don't have time to search out the > > > solution from the man pages and my friends who use BSD don't know the > > > answer. > > > > > > A new manager has come in and he likes MS outlook he thinks it is the > > > way the company should go with email and inter-office communications and > > > email. he also likes NT( He never administered it but he considers > > > himself an expert). After using it as a (fileserver/PDC for 3 yrs I > > > don't though it may be a function of my not having configured it > > > correctly. My heart hasn't been in it though I have done a lot of > > > reading and brought a lot of books.) I have plans to switch over to a > > > freeBSD 3.2 server, with Samba as a PDC and Run our main database on a > > > Linux box using Oracle 8. > > > > > > But In order to keep from being saddled with another NT server( when I > > > want to get rid of the one I have now.) I need to provide an alternative > > > to the Outlook proposal and hopefully a cost effective one. > > > > > > I think I have enough pull to get a freebsd proposal accepted but I need > > > some help figuring out how to implement it or even if it is possible > > > within a reasonable timeframe. > > > > > > additional background > > > -company has 35 employees will expand to 65 in the next year. > > > - I am the IS department > > > - my users don't know Unix,bsd and are only reasonable competent in > > > windows. > > > -for email we use Eudora 3.0 and Netscape 4.5 on the workstations but > > > if the have to learn outlook they can learn to use something else > > > though they are going to need to have a GUI > > > -office 97 is the current office suite mostly word, exceland access > > > - I've done 3 installs ( 2 2.2.8 with xwindows,KDE,samba and 1 3.2 that > > > is as yet unconfigured) > > > -the users are using windows NT ws,windows 95 and windows 98 > > > -workstations are shared forthe most part and the user should be able > > > to access their files email and hte internet from any work station > > > > > > So my questions are: > > > > > > Has anybody done this? (Used freebsd to provide an effective alternative > > > to NT/Outlook.) > > > > > > How would you suggest I go about it? The field is preetty much wide open > > > since I would be starting from scratch ( I would need to buy hardware > > > and software.) > > > > > > Is there commercial or opensource workgroup software for freebsd? > > > > > > I probably left some important details out so feel free to contact me > > > for clarifiction. > > > > > > TIA > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 10:45:53 1999 Delivered-To: freebsd-questions@freebsd.org Received: from www.keycomp.net (www.keycomp.net [207.44.1.33]) by hub.freebsd.org (Postfix) with ESMTP id F2AD21547B for ; Sat, 21 Aug 1999 10:44:29 -0700 (PDT) (envelope-from billieakay@yahoo.com) Received: from bopper (kc-rmt11.keycomp.net [207.44.1.13]) by www.keycomp.net (8.8.5/SCO5) with SMTP id NAA21951 for ; Sat, 21 Aug 1999 13:49:58 -0400 (EDT) Message-ID: <002301beebfb$94a65540$01010101@bopper> From: "Bill A. K." To: "FreeBSD Questions" References: <001401beebe3$a0617e40$c452c9c2@grahamr> Subject: Re: 3.2 wont install Date: Sat, 21 Aug 1999 13:35:36 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit 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-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, I believe I have heard about a 1024K ftp problem though this mailing list...and not just with installing FreeBSD. I would wait for an answer. Good luck Bill billieakay@yahoo.com ----- Original Message ----- From: Graham Woodruff To: ; Sent: Thursday, August 19, 1999 3:29 PM Subject: Re: 3.2 wont install > > ...and it gets all the way to "extracting bin into / directory" and > >just stops with "1024 bytes read from bin dist chunk > >1 of 106 @ 1kb/sec" > > > Thanks for backing me up on this one ! > > This is EXACTLY what I am finding installing 3.2 using a variety of hardware > via ftp viz... > > Set up hardware OK, connect to ftp server - works fine - then hangs at 1024K > transferred ! > > Funny enough, the smallest box I have - 486/25 8Mb 2*130Mb drives, installed > perfectly, but using the same network card in another (larger) box just > gives the same old hang... > > Transferring one of the network cards that failed (?) to the 'working' box, > I find that 'most' IP is OK, ping, telnet etc. all OK BUT ftp either in or > out hangs at the 1024K barrier, I (think I...) have eliminated network > cards, HDD's, CPU's memory etc. on the grounds that subsequent installs of > Linux (either Slackware4.0 or RedHat) both pick up all the hardware AND use > the network card OK. > > One answer was to try a different ftp server, in my case, I have downloaded > to my Win95 box to minimise connect time, so just run either G6 or Netftpd, > both/either of which are OK with different apps, both of which have been > used succesfully for the FreeBSD load onto my base system > > I have tried different IRQ/membase etc to no effect, I am convinced now that > another process is causing this (routed ???) if so, how do I/we get round > this, I really would like to have a 'real' FreeBSD box running as a 'network > services' server. > > Graham Woodruff > graham.woodruff@iii-europe.com grahamr@globalnet.co.uk > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 10:59: 6 1999 Delivered-To: freebsd-questions@freebsd.org Received: from sand4.global.net.uk (sand4.global.net.uk [194.126.80.248]) by hub.freebsd.org (Postfix) with ESMTP id 6124714C23 for ; Sat, 21 Aug 1999 10:59:01 -0700 (PDT) (envelope-from mark@globalnet.co.uk) Received: from p4cs10a06.client.global.net.uk ([195.147.218.77] helo=marder-1.) by sand4.global.net.uk with esmtp (Exim 2.12 #1) id 11IFPv-00077y-00; Sat, 21 Aug 1999 18:58:59 +0100 Received: (from mark@localhost) by marder-1. (8.9.2/8.8.8) id SAA00484; Sat, 21 Aug 1999 18:25:45 +0100 (BST) (envelope-from mark) Date: Sat, 21 Aug 1999 18:25:45 +0100 From: Mark Ovens To: Alejandro Ramirez Cc: Albert Everett , questions@freebsd.org Subject: Re: maximum file size Message-ID: <19990821182544.A451@marder-1> References: <37BEB44E.29ED2CD4@webintl.com> <19990821153112.E267@marder-1> <02ce01beebf5$99d2da80$d4630a0a@megared.net.mx> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.3i In-Reply-To: <02ce01beebf5$99d2da80$d4630a0a@megared.net.mx>; from Alejandro Ramirez on Sat, Aug 21, 1999 at 11:52:48AM -0500 Organization: Total lack of Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sat, Aug 21, 1999 at 11:52:48AM -0500, Alejandro Ramirez wrote: > Hi, > > How can I know the size of the blocks I'm using in my system??? (FreeBSD > 3.2 Release) > The default block-size is 8kB, so if you let sysinstall newfs your disks then that's what it'll be. dumpfs(8) is the only way that I know (but there are probably several other ways) of finding the block-size of an existing fs. The disk must be umounted for dumpfs to work which makes checking the root fs a bit difficult :-) > Thanks > > Ales > > ----- Original Message ----- > From: Mark Ovens > To: Albert Everett > Cc: > Sent: Saturday, August 21, 1999 9:31 AM > Subject: Re: maximum file size > > > > On Sat, Aug 21, 1999 at 09:14:39AM -0500, Albert Everett wrote: > > > Hopefully this will be a trivial question, but I haven't found the > answer yet > > > online or in Greg's FreeBSD book. > > > > > > How large can a file be under FreeBSD? I've heard that under Linux the > size > > > limit is 2gb. > > > > > > It's not difficult to imagine large log files resulting from a busy web > site, > > > but most documentation seems to be focused on minimums rather than > maximums. > > > > > > > According to the FAQ >4TB: > > > > 2.27. What are the limits for ffs file-systems? > > > > For ffs file-systems, the maximum theoretical limit is 8 tera-bytes > > (2G blocks), or 16TB for the default block size of 8K. In practice, > > there is a soft limit of 1 tera-byte, but with modifications > > file-systems with 4 tera-bytes are possible (and exist). > > > > The maximum size of a single ffs file is approximately 1G blocks > > (4TB) if the block size is 4K. > > > > maxfilesize > > ---------------------------------- > > 2.2.7 3.0 > > fs block size -stable -current works should-work > > ------------- ------- -------- ----- ----------- > > 4K 4T-1 4T-1 4T-1 4+T > > 8K 32+G 8T-1 32+G 16T-1 > > 16K 128+G 16T-1 128+G 32T-1 > > 32K 512+G 32T-1 512+G 64T-1 > > 64K 2048+G 64T-1 2048+G 128T-1 > > > > > Albert Everett > > > aeverett@webintl.com > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > with "unsubscribe freebsd-questions" in the body of the message > > > > > > > -- > > STATE-OF-THE-ART: Any computer you can't afford. > > OBSOLETE: Any computer you own. > > ________________________________________________________________ > > FreeBSD - The Power To Serve http://www.freebsd.org > > My Webpage http://http://ukug.uk.freebsd.org/~mark/ > > mailto:mark@ukug.uk.freebsd.org http://www.radan.com > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > -- STATE-OF-THE-ART: Any computer you can't afford. OBSOLETE: Any computer you own. ________________________________________________________________ FreeBSD - The Power To Serve http://www.freebsd.org My Webpage http://ukug.uk.freebsd.org/~mark/ mailto:mark@ukug.uk.freebsd.org http://www.radan.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 11: 8:45 1999 Delivered-To: freebsd-questions@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 8B8F514CE0 for ; Sat, 21 Aug 1999 11:08:42 -0700 (PDT) (envelope-from rbettle@criterion-group.com) Received: from criterion-group.com ([24.5.44.161]) by mail.rdc2.occa.home.com (InterMail v4.01.01.00 201-229-111) with ESMTP id <19990821180841.OMQS7447.mail.rdc2.occa.home.com@criterion-group.com>; Sat, 21 Aug 1999 11:08:41 -0700 Message-ID: <37BEEC31.B12CA56F@criterion-group.com> Date: Sat, 21 Aug 1999 11:13:05 -0700 From: Roy Bettle X-Mailer: Mozilla 4.6 [en] (Win98; I) X-Accept-Language: en MIME-Version: 1.0 Cc: paksao , FreeBSD Questions Subject: Re: outlook alternative for freeBSD ? References: <37BEA75F.5875AB0C@home.com> <001f01beebe0$3e489b60$01010101@bopper> <37BECB5E.D275A502@home.com> <001901beebfb$204d2d40$01010101@bopper> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG As to the integrated calendar/scheduling part, don't forget that NetScape Communicator 4.x includes integrated calendaring and scheduling. As to the integrated "Office"-like apps, C|NET - http://www.cnet.com - did a review a few months back that compared MS Office with a lot of other "business productivity suites", many of whom had Open Source-compatible versions. I'd give you the direct URL to the article but I'm on the phone just now so this note is about all I can manage! RAB "Bill A. K." wrote: > I am refering to StarOffice and things like that for the Office > compatibility. I think there is one other one besides StarOffice that I am > thinking of, but I don't know the name of it off hand. The Outlook like > thing is tough, but isin't there an integrated office/calendar/scheduling > thing in the ports collection (if you don't know, thats at > http://www.freebsd.org/ports). I believe it might be koffice. > > I'll do some lookng and if i come up with anything i'll be sure to let you > know. > > Bill > billieakay@yahoo.com > > ----- Original Message ----- > From: paksao > To: Bill A. K. > Sent: Saturday, August 21, 1999 11:53 AM > Subject: Re: outlook alternative for freeBSD ? > > > > > > > "Bill A. K." wrote: > > > > > > ok, have you considered just using plain old Netscape Mail which comes > with > > > Netscape Communicator? > > > > Some of the users use Netscape mail already . The new manager thinks > > that the other outlook functions scheduling meetings, journal, calendar > > will increase productivity. ( I tend to find that stuff more annoying > > but useful but some people like it.) > > > > > > There are UNIX/BSD alternatives to MS Office, some of which can even > read > > > the office files (i think) > > > > Are you thinking about koffice? > > > > > How much money can you spend is the big question? > > > > Money is a object but I figured that after I prove I can do what Outlook > > does I can spend 5 K for the software and probably another few k for a > > server. ( I am pulling number outof the air because I have even begun to > > price outlook and the NT server to support it. ) I know I'm going to > > need additional copies of officew/outlook shortly so know that I can get > > the budget as long as it works, works as wellas outlook and costs are > > comparable. ( and for me it has to be able to run on a Freebsd box with > > MS clients. > > > Let me know and i'll see if i can help you any more > > > > > > Bill > > > billieakay@yahoo.com > > > > > > ----- Original Message ----- > > > From: paksao > > > To: > > > Sent: Saturday, August 21, 1999 9:19 AM > > > Subject: outlook alternative for freeBSD ? > > > > > > > I've been playing with freeBsd for a while now at work and I like it > and > > > > I'm just starting to get to the point where I understand how it works > > > > but I am facing a crisis and I don't have time to search out the > > > > solution from the man pages and my friends who use BSD don't know the > > > > answer. > > > > > > > > A new manager has come in and he likes MS outlook he thinks it is the > > > > way the company should go with email and inter-office communications > and > > > > email. he also likes NT( He never administered it but he considers > > > > himself an expert). After using it as a (fileserver/PDC for 3 yrs I > > > > don't though it may be a function of my not having configured it > > > > correctly. My heart hasn't been in it though I have done a lot of > > > > reading and brought a lot of books.) I have plans to switch over to a > > > > freeBSD 3.2 server, with Samba as a PDC and Run our main database on a > > > > Linux box using Oracle 8. > > > > > > > > But In order to keep from being saddled with another NT server( when I > > > > want to get rid of the one I have now.) I need to provide an > alternative > > > > to the Outlook proposal and hopefully a cost effective one. > > > > > > > > I think I have enough pull to get a freebsd proposal accepted but I > need > > > > some help figuring out how to implement it or even if it is possible > > > > within a reasonable timeframe. > > > > > > > > additional background > > > > -company has 35 employees will expand to 65 in the next year. > > > > - I am the IS department > > > > - my users don't know Unix,bsd and are only reasonable competent in > > > > windows. > > > > -for email we use Eudora 3.0 and Netscape 4.5 on the workstations but > > > > if the have to learn outlook they can learn to use something else > > > > though they are going to need to have a GUI > > > > -office 97 is the current office suite mostly word, exceland access > > > > - I've done 3 installs ( 2 2.2.8 with xwindows,KDE,samba and 1 3.2 > that > > > > is as yet unconfigured) > > > > -the users are using windows NT ws,windows 95 and windows 98 > > > > -workstations are shared forthe most part and the user should be able > > > > to access their files email and hte internet from any work station > > > > > > > > So my questions are: > > > > > > > > Has anybody done this? (Used freebsd to provide an effective > alternative > > > > to NT/Outlook.) > > > > > > > > How would you suggest I go about it? The field is preetty much wide > open > > > > since I would be starting from scratch ( I would need to buy hardware > > > > and software.) > > > > > > > > Is there commercial or opensource workgroup software for freebsd? > > > > > > > > I probably left some important details out so feel free to contact me > > > > for clarifiction. > > > > > > > > TIA > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > > with "unsubscribe freebsd-questions" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- RAB Roy Bettle President, Criterion Group http://www.criterion-group.com rbettle@criterion-group.com (949) 452-1203 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 11:10:40 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail.ntplx.net (mail.ntplx.net [204.213.176.10]) by hub.freebsd.org (Postfix) with ESMTP id 8E6EE14D1D for ; Sat, 21 Aug 1999 11:10:32 -0700 (PDT) (envelope-from bondpb@ntplx.net) Received: from bondpb (p10-30.hartford.dialin.ntplx.com [204.213.189.230]) by mail.ntplx.net (8.9.1/NETPLEX) with SMTP id OAA08183 for ; Sat, 21 Aug 1999 14:10:18 -0400 (EDT) Message-ID: <000701beeb96$44581e80$e6bdd5cc@bondpb> From: "Travis Ruggiero" To: Subject: Boot Problem Date: Sat, 21 Aug 1999 01:30:21 -0400 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0004_01BEEB74.BBCD9A20" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 4.72.3110.1 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3110.3 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0004_01BEEB74.BBCD9A20 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable When I boot into FreeBSD I get the error message cannot mount root drive = error. I read in the Troubleshooting guide that its because of having = two drives. So I figured out that the drive BSD is installed to is wd2 = so I tried typing 1:wd2 kernel in the first command prompt and in fixit. = It worked in neither. If someone could help me out I would appreciate it = alot. Travis ------=_NextPart_000_0004_01BEEB74.BBCD9A20 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
When I boot into FreeBSD I get the = error message=20 cannot mount root drive error. I read in the Troubleshooting guide that = its=20 because of having two drives. So I figured out that the drive BSD is = installed=20 to is wd2 so I tried typing 1:wd2 kernel in the first command prompt and = in=20 fixit. It worked in neither. If someone could help me out I would = appreciate it=20 alot.
 
         =20 Travis
------=_NextPart_000_0004_01BEEB74.BBCD9A20-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 11:20:39 1999 Delivered-To: freebsd-questions@freebsd.org Received: from adsl-216-102-203-44.dsl.snfc21.pacbell.net (adsl-216-102-203-44.dsl.snfc21.pacbell.net [216.102.203.44]) by hub.freebsd.org (Postfix) with ESMTP id 48C0B14CF3 for ; Sat, 21 Aug 1999 11:20:35 -0700 (PDT) (envelope-from bri@sonicboom.org) Received: from localhost (bri@localhost) by adsl-216-102-203-44.dsl.snfc21.pacbell.net (8.9.3/8.9.3) with ESMTP id LAA52794; Sat, 21 Aug 1999 11:19:22 -0700 (PDT) (envelope-from bri@sonicboom.org) Date: Sat, 21 Aug 1999 11:19:21 -0700 (PDT) From: Brian X-Sender: bri@adsl-216-102-203-44.dsl.snfc21.pacbell.net To: "Bill A. K." Cc: FreeBSD Questions Subject: Re: 3.2 wont install In-Reply-To: <002301beebfb$94a65540$01010101@bopper> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I just recently did about a half dozen net installs, on boxes ranging from a 486-100 to a K^II-350. All of em stalled for a second or two at the point you stated, but then continued on. Bri On Sat, 21 Aug 1999, Bill A. K. wrote: > Hi, > I believe I have heard about a 1024K ftp problem though this mailing > list...and not just with installing FreeBSD. I would wait for an answer. > > Good luck > > Bill > billieakay@yahoo.com > > ----- Original Message ----- > From: Graham Woodruff > To: ; > Sent: Thursday, August 19, 1999 3:29 PM > Subject: Re: 3.2 wont install > > > > > ...and it gets all the way to "extracting bin into / directory" and > > >just stops with "1024 bytes read from bin dist chunk > > >1 of 106 @ 1kb/sec" > > > > > > Thanks for backing me up on this one ! > > > > This is EXACTLY what I am finding installing 3.2 using a variety of > hardware > > via ftp viz... > > > > Set up hardware OK, connect to ftp server - works fine - then hangs at > 1024K > > transferred ! > > > > Funny enough, the smallest box I have - 486/25 8Mb 2*130Mb drives, > installed > > perfectly, but using the same network card in another (larger) box just > > gives the same old hang... > > > > Transferring one of the network cards that failed (?) to the 'working' > box, > > I find that 'most' IP is OK, ping, telnet etc. all OK BUT ftp either in or > > out hangs at the 1024K barrier, I (think I...) have eliminated network > > cards, HDD's, CPU's memory etc. on the grounds that subsequent installs of > > Linux (either Slackware4.0 or RedHat) both pick up all the hardware AND > use > > the network card OK. > > > > One answer was to try a different ftp server, in my case, I have > downloaded > > to my Win95 box to minimise connect time, so just run either G6 or > Netftpd, > > both/either of which are OK with different apps, both of which have been > > used succesfully for the FreeBSD load onto my base system > > > > I have tried different IRQ/membase etc to no effect, I am convinced now > that > > another process is causing this (routed ???) if so, how do I/we get round > > this, I really would like to have a 'real' FreeBSD box running as a > 'network > > services' server. > > > > Graham Woodruff > > graham.woodruff@iii-europe.com grahamr@globalnet.co.uk > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-questions" in the body of the message > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 11:56:40 1999 Delivered-To: freebsd-questions@freebsd.org Received: from opengovt.open.org (opengovt.open.org [199.2.104.1]) by hub.freebsd.org (Postfix) with ESMTP id DE6BA150BB for ; Sat, 21 Aug 1999 11:56:34 -0700 (PDT) (envelope-from Clark@open.org) Received: (from root@localhost) by opengovt.open.org (8.8.7/8.8.7) id LAA11365; Sat, 21 Aug 1999 11:53:43 -0700 (PDT) Received: from opengovt153.open.org(199.2.104.153) by opengovt.open.org via smap (V2.0) id xmab11315; Sat, 21 Aug 99 11:53:26 -0700 Message-Id: <4.0.1.19990729211506.00ef28e0@opengovt.open.org> X-Sender: clark@opengovt.open.org X-Mailer: QUALCOMM Windows Eudora Pro Version 4.0.1 Date: Sat, 21 Aug 1999 12:08:23 -0700 To: Andrew , Mark Bannar-Martin From: The Clark Family Subject: Re: Dual CPU hardware Newbie question Cc: freebsd-questions@FreeBSD.ORG In-Reply-To: <37A002E6.2E9D4AF7@uq.net.au> References: <379E5A43.BA1A7423@pearson-college.uwc.ca> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG 1. Does anyone have an idea when/if FreeBSD is going to support the BP6's UDMA-66 IDE interface? (My nomenclature is almost assuredly wrong.) 2. Had anyone tried the Western Digital 7200rpm UDMA-66 drives with FreeBSD? 3. Are dual Celerons fully supported by FreeBSD? Thanks, [RC] At 05:29 PM 7/29/99 +1000, Andrew wrote: >Probably the best and most innovative reasonably priced dual cpu Mb on the >market would have to be the Abit BP6. >http://www.abit.com.tw/english/product/bp6.htm > >Using this MB you could run dual Celeron 466's or even 400's >and still have plenty of money to spend on HDD's. > >As for the HDD's if you have a VERY busy file server with >lots of concurrent reading and writing then SCSI is the fastest >and most reliable. For most applications though IDE can be just >as good and allot cheaper. If you do go IDE however make sure >you choose good quality IDE drives from makers such as IBM. > >Also with ide drives its often a good idea to get a cheap large ide >drive as a backup drive. One such drive is the Quantum CX 18 gig. > >Im not sure what you consider a "small network" but you would probably >find a celeron 366 with 128meg of ram and a good hard drive MORE >than sufficient for your needs. If you wanted to you could spend the extra >money on a backup machine. > >There is no point at all going to a P2 or P3 as they are not really any >faster and much more expensive. Another good choice is the AMD K6 series. > >Cheers > >Andrew > >Mark Bannar-Martin wrote: > >> I have searched the lists but I did not find a satisfactory posting for >> the following question: >> >> I am looking to purchase a dual cpu machine to run FreeBSD. I have only >> used 2.2.8 so far but I like it. I want to spend at most $2000. I am not >> interested in graphics and want to use this machine as a Samba server >> for a small workgroup of Win9x machines. >> >> Any hardware recommendations would be much appreciated as would the best >> FreeBSD release to use for rock solid platform. >> Perhaps the most important decisions for me are: >> 1. Single or dual CPU >> 2. IDE or SCSI hard drive >> >> Thank you, >> Mark. >> >> To Unsubscribe: send mail to majordomo@FreeBSD.org >> with "unsubscribe freebsd-questions" in the body of the message > > > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 11:56:46 1999 Delivered-To: freebsd-questions@freebsd.org Received: from ns.clientlogic.com (ns.clientlogic.com [207.51.66.75]) by hub.freebsd.org (Postfix) with ESMTP id 3D76F15330 for ; Sat, 21 Aug 1999 11:56:39 -0700 (PDT) (envelope-from ChrisMic@clientlogic.com) Received: by site0s1 with Internet Mail Service (5.5.2448.0) id ; Sat, 21 Aug 1999 14:55:18 -0400 Message-ID: <6C37EE640B78D2118D2F00A0C90FCB4401105BBF@site2s1> From: Christopher Michaels To: "Bill A. K." Cc: FreeBSD Questions Subject: RE: 3.2 wont install Date: Sat, 21 Aug 1999 14:57:52 -0400 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2448.0) Content-Type: text/plain Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Are you behind a firewall, and if so are you choosing the passive ftp? -Chris > -----Original Message----- > From: Brian [SMTP:bri@sonicboom.org] > Sent: Saturday, August 21, 1999 2:19 PM > To: Bill A. K. > Cc: FreeBSD Questions > Subject: Re: 3.2 wont install > > I just recently did about a half dozen net installs, on boxes ranging from > a 486-100 to a K^II-350. All of em stalled for a second or two at the > point you stated, but then continued on. > > Bri > > On Sat, 21 Aug 1999, Bill A. K. > wrote: > > > Hi, > > I believe I have heard about a 1024K ftp problem though this > mailing > > list...and not just with installing FreeBSD. I would wait for an answer. > > > > Good luck > > > > Bill > > billieakay@yahoo.com > > > > ----- Original Message ----- > > From: Graham Woodruff > > To: ; > > Sent: Thursday, August 19, 1999 3:29 PM > > Subject: Re: 3.2 wont install > > > > > > > > ...and it gets all the way to "extracting bin into / directory" and > > > >just stops with "1024 bytes read from bin dist chunk > > > >1 of 106 @ 1kb/sec" > > > > > > > > > Thanks for backing me up on this one ! > > > > > > This is EXACTLY what I am finding installing 3.2 using a variety of > > hardware > > > via ftp viz... > > > > > > Set up hardware OK, connect to ftp server - works fine - then hangs at > > 1024K > > > transferred ! > > > > > > Funny enough, the smallest box I have - 486/25 8Mb 2*130Mb drives, > > installed > > > perfectly, but using the same network card in another (larger) box > just > > > gives the same old hang... > > > > > > Transferring one of the network cards that failed (?) to the 'working' > > box, > > > I find that 'most' IP is OK, ping, telnet etc. all OK BUT ftp either > in or > > > out hangs at the 1024K barrier, I (think I...) have eliminated network > > > cards, HDD's, CPU's memory etc. on the grounds that subsequent > installs of > > > Linux (either Slackware4.0 or RedHat) both pick up all the hardware > AND > > use > > > the network card OK. > > > > > > One answer was to try a different ftp server, in my case, I have > > downloaded > > > to my Win95 box to minimise connect time, so just run either G6 or > > Netftpd, > > > both/either of which are OK with different apps, both of which have > been > > > used succesfully for the FreeBSD load onto my base system > > > > > > I have tried different IRQ/membase etc to no effect, I am convinced > now > > that > > > another process is causing this (routed ???) if so, how do I/we get > round > > > this, I really would like to have a 'real' FreeBSD box running as a > > 'network > > > services' server. > > > > > > Graham Woodruff > > > graham.woodruff@iii-europe.com grahamr@globalnet.co.uk > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 12: 6:29 1999 Delivered-To: freebsd-questions@freebsd.org Received: from buffnet4.buffnet.net (buffnet4.buffnet.net [205.246.19.13]) by hub.freebsd.org (Postfix) with ESMTP id 2073714DF5 for ; Sat, 21 Aug 1999 12:04:56 -0700 (PDT) (envelope-from shovey@buffnet.net) Received: from buffnet11.buffnet.net (buffnet11.buffnet.net [205.246.19.55]) by buffnet4.buffnet.net (8.8.7/8.8.7) with ESMTP id PAA10710; Sat, 21 Aug 1999 15:04:51 -0400 (EDT) (envelope-from shovey@buffnet.net) Date: Sat, 21 Aug 1999 15:04:51 -0400 (EDT) From: Steve Hovey To: William Melanson Cc: Langa Kentane , FreeBSD Subject: Re: Best pop3 server daemon In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I use the one that came with pine (at least till I get finished switching everything over to dmail) On Sat, 21 Aug 1999, William Melanson wrote: > On Thu, 19 Aug 1999, Langa Kentane wrote: > > % > % Which pop3 daemon would you recommend for my server that is easy to > % configure and stuff that will make it a breeze for this newbie to setup pop3 > % on my network. > % > > Cubic Circle's POP3 daemon (RFC1939) > > > --------------------------------oOo------------------------------------ > William J. Melanson CyberGate, Inc. | e.spire Communications > Network Controller Deerfield Beach, FL 33441 > Network Operations Center Phone: (954) 429-8080 > --------------------------------oOo------------------------------------ > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 12: 7:13 1999 Delivered-To: freebsd-questions@freebsd.org Received: from adsl-216-102-203-44.dsl.snfc21.pacbell.net (adsl-216-102-203-44.dsl.snfc21.pacbell.net [216.102.203.44]) by hub.freebsd.org (Postfix) with ESMTP id 6962915412 for ; Sat, 21 Aug 1999 12:07:01 -0700 (PDT) (envelope-from bri@sonicboom.org) Received: from localhost (bri@localhost) by adsl-216-102-203-44.dsl.snfc21.pacbell.net (8.9.3/8.9.3) with ESMTP id MAA00288; Sat, 21 Aug 1999 12:06:25 -0700 (PDT) (envelope-from bri@sonicboom.org) Date: Sat, 21 Aug 1999 12:06:25 -0700 (PDT) From: Brian X-Sender: bri@adsl-216-102-203-44.dsl.snfc21.pacbell.net To: The Clark Family Cc: Andrew , Mark Bannar-Martin , freebsd-questions@FreeBSD.ORG Subject: Re: Dual CPU hardware Newbie question In-Reply-To: <4.0.1.19990729211506.00ef28e0@opengovt.open.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I am going to try a 7200 rpm quantum udma66 drive tonight, hopefully that'll go well. Bri On Sat, 21 Aug 1999, The Clark Family wrote: > > 1. Does anyone have an idea when/if FreeBSD is going to support the BP6's > UDMA-66 IDE interface? (My nomenclature is almost assuredly wrong.) > > 2. Had anyone tried the Western Digital 7200rpm UDMA-66 drives with FreeBSD? > > 3. Are dual Celerons fully supported by FreeBSD? > > Thanks, [RC] > > > > > > At 05:29 PM 7/29/99 +1000, Andrew wrote: > >Probably the best and most innovative reasonably priced dual cpu Mb on the > >market would have to be the Abit BP6. > >http://www.abit.com.tw/english/product/bp6.htm > > > >Using this MB you could run dual Celeron 466's or even 400's > >and still have plenty of money to spend on HDD's. > > > >As for the HDD's if you have a VERY busy file server with > >lots of concurrent reading and writing then SCSI is the fastest > >and most reliable. For most applications though IDE can be just > >as good and allot cheaper. If you do go IDE however make sure > >you choose good quality IDE drives from makers such as IBM. > > > >Also with ide drives its often a good idea to get a cheap large ide > >drive as a backup drive. One such drive is the Quantum CX 18 gig. > > > >Im not sure what you consider a "small network" but you would probably > >find a celeron 366 with 128meg of ram and a good hard drive MORE > >than sufficient for your needs. If you wanted to you could spend the extra > >money on a backup machine. > > > >There is no point at all going to a P2 or P3 as they are not really any > >faster and much more expensive. Another good choice is the AMD K6 series. > > > >Cheers > > > >Andrew > > > >Mark Bannar-Martin wrote: > > > >> I have searched the lists but I did not find a satisfactory posting for > >> the following question: > >> > >> I am looking to purchase a dual cpu machine to run FreeBSD. I have only > >> used 2.2.8 so far but I like it. I want to spend at most $2000. I am not > >> interested in graphics and want to use this machine as a Samba server > >> for a small workgroup of Win9x machines. > >> > >> Any hardware recommendations would be much appreciated as would the best > >> FreeBSD release to use for rock solid platform. > >> Perhaps the most important decisions for me are: > >> 1. Single or dual CPU > >> 2. IDE or SCSI hard drive > >> > >> Thank you, > >> Mark. > >> > >> To Unsubscribe: send mail to majordomo@FreeBSD.org > >> with "unsubscribe freebsd-questions" in the body of the message > > > > > > > >To Unsubscribe: send mail to majordomo@FreeBSD.org > >with "unsubscribe freebsd-questions" in the body of the message > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 12:39: 1 1999 Delivered-To: freebsd-questions@freebsd.org Received: from post.mail.nl.demon.net (post-10.mail.nl.demon.net [194.159.73.20]) by hub.freebsd.org (Postfix) with ESMTP id 7164A14C16 for ; Sat, 21 Aug 1999 12:38:42 -0700 (PDT) (envelope-from niels@fusix.nl) Received: from [195.173.237.202] (helo=fusix.nl) by post.mail.nl.demon.net with smtp (Exim 2.02 #1) id 11IGwK-0003B7-00 for questions@freebsd.org; Sat, 21 Aug 1999 19:36:32 +0000 Received: from localhost (niels@localhost) by fusix.nl (8.8.7/8.8.7) with SMTP id VAA03590 for ; Sat, 21 Aug 1999 21:33:47 +0200 Date: Sat, 21 Aug 1999 21:33:46 +0200 (MEST) From: "Niels M. Raijer" To: questions@freebsd.org Subject: boot problem: atapi1.0: unknown phase Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, Recently bought The Complete FreeBSD out of curiosity. I have two Linux systems running and in heavy daily use; I thought it would be nice to have a FreeBSD system to go with them. I bought an (admittedly, budget) new PC to install it on. However, during the boot I have about a 90% chance it seems to get the error "atapi0.1: unknown phase" (or "atapi1.0: unknown phase", depending on whether I connect the CD-ROM to the primary or secondary IDE-interface). I tried exchanging the CD-ROM players in the new PC and in both Linux boxes. They are a Lite-on LTN301, Lite-on LTN382 and Philips PCA408CDB. All three exhibit the same behavior in the FreeBSD box, yet all three work fine in any of the Linux boxes. On one web page I found the explanation that the atapi error is a sure sign of a sucky CD-ROM player. I find this hard to believe -- after all they work fine under Linux, and FreeBSD is supposed to be *better*, right :-) ? Is there some sort of patch or something that would make my system boot a little more reliably (as in, nearly 100% of the time)? By keeping fingers crossed, being really, really persistent and rebooting a lot of times, I have been able to install FreeBSD correctly, but whenever I reboot, the atapi error comes back to hunt me :-) Is there something I can do? Thanks, --Niels -- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-* "Wandering far from nowhere Fusix Networks - http://www.fusix.nl | I came across an old man - Computercursussen van iMac tot Office | working alone..." - Linux-servers voor Intranet | 'Something to live for,' GEG Niels Raijer - http://www.nest.nl/~niels *-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 12:40:40 1999 Delivered-To: freebsd-questions@freebsd.org Received: from io.worldonline.be (io.worldonline.be [212.233.1.146]) by hub.freebsd.org (Postfix) with ESMTP id E696514C16 for ; Sat, 21 Aug 1999 12:40:36 -0700 (PDT) (envelope-from haegens_nico@hotmail.com) Received: from nico (dp19-189.worldonline.be [212.233.19.189]) by io.worldonline.be (8.8.5/8.8.5) with SMTP id VAA23202 for ; Sat, 21 Aug 1999 21:39:35 +0200 (MET DST) Message-ID: <000701beec0c$eef440a0$e887fea9@nico> From: "Haegens Nico" To: Subject: Need support, system simply doesn't run! Date: Sat, 21 Aug 1999 21:39:45 +0200 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0004_01BEEC1D.AFACD9A0" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 4.72.3155.0 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3155.0 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0004_01BEEC1D.AFACD9A0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable I have bought FreeBSD 3.0 on a Walnut Creek CDROM. The installation went perfect, but the system itself simply doesn' t = run. How do I solve this? =20 I have a Phoenix BIOS Version 6, Release 4, a hard disk of almost=20 13 GB which I assigned 750 MB to my FreeBSD-partition, a Pentium = II-processor and my computer comes from Dell Corporation. Please send my an e-mail on haegens_nico@hotmail.com ------=_NextPart_000_0004_01BEEC1D.AFACD9A0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
I have bought FreeBSD 3.0 on a = Walnut Creek=20 CDROM.
 
The installation went perfect, but = the system=20 itself simply doesn' t run.  How do I solve this?  =
 
I have a Phoenix BIOS Version 6, = Release 4, a=20 hard disk of almost
13 GB which I assigned 750 MB to my=20 FreeBSD-partition, a Pentium II-processor and my computer comes from = Dell=20 Corporation.
 
Please send my an e-mail on haegens_nico@hotmail.com
------=_NextPart_000_0004_01BEEC1D.AFACD9A0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 13: 4: 1 1999 Delivered-To: freebsd-questions@freebsd.org Received: from prime.net.ua (P1M3.prime.net.ua [195.64.229.35]) by hub.freebsd.org (Postfix) with ESMTP id 20B2D1512A for ; Sat, 21 Aug 1999 13:03:48 -0700 (PDT) (envelope-from andyo@prime.net.ua) Received: from prime.net.ua (localhost [127.0.0.1]) by prime.net.ua (8.9.3/8.9.3) with ESMTP id XAA00381; Sat, 21 Aug 1999 23:05:21 +0300 (EEST) Message-ID: <37BF067E.30ECA895@prime.net.ua> Date: Sat, 21 Aug 1999 23:05:18 +0300 From: "Andy V. Oleynik" X-Mailer: Mozilla 4.5 [en] (X11; I; FreeBSD 3.2-STABLE i386) X-Accept-Language: ru, en, uk MIME-Version: 1.0 To: Tony Lambiris Cc: questions@FreeBSD.ORG Subject: Re: Slow Clock References: <37BEB47F.BC48E950@telebot.com> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG What is ur CPU/MBD? Tony Lambiris wrote: My FreeBSD clock is really slow... for every second, around 5-10 minutes > have gone by... i tried doing the NTIMECOUNTER=20 in kernel, no go. > Windows never had this problem (jsut to let you know it has worked > before), plus when i reboot, my cmos clock is still fine... is there a > way to have freebsd read from the cmos clock isntead of trying to do its > own thing? the only way i can keep current time is the shell script i > have to keep updating my time from time servers every second. thanks. > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- WBW Andy V. Oleynik (When U work in virtual office prime.net.ua's U have good chance to obtain system administrator virtual money ö%o) +380442448363 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 13:27: 1 1999 Delivered-To: freebsd-questions@freebsd.org Received: from awfulhak.org (dynamic-52.max1-du-ws.dialnetwork.pavilion.co.uk [212.74.8.52]) by hub.freebsd.org (Postfix) with ESMTP id 143EE15442 for ; Sat, 21 Aug 1999 13:25:10 -0700 (PDT) (envelope-from brian@Awfulhak.org) Received: from keep.lan.Awfulhak.org (root@keep.lan.Awfulhak.org [172.16.0.8]) by awfulhak.org (8.9.3/8.9.3) with ESMTP id VAA09998; Sat, 21 Aug 1999 21:11:27 +0100 (BST) (envelope-from brian@lan.awfulhak.org) Received: from keep.lan.Awfulhak.org (brian@localhost.lan.Awfulhak.org [127.0.0.1]) by keep.lan.Awfulhak.org (8.9.3/8.9.3) with ESMTP id VAA04714; Sat, 21 Aug 1999 21:14:25 +0100 (BST) (envelope-from brian@keep.lan.Awfulhak.org) Message-Id: <199908212014.VAA04714@keep.lan.Awfulhak.org> X-Mailer: exmh version 2.0.2 2/24/98 To: Gustavo V G C Rios Cc: questions@FreeBSD.ORG Subject: Re: ppp In-reply-to: Your message of "Fri, 20 Aug 1999 20:00:34 -0300." <37BDDE12.C32853F4@ddsecurity.com.br> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sat, 21 Aug 1999 21:14:25 +0100 From: Brian Somers Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Why don't you enable chat logging and see what's going wrong ? Nobody can tell you if your config is wrong as they don't know anything about how you connect to your ISP. > I am trying to get connect to the itnernet, using ppp. > I try to connect using "ppp -background isp", but i cannot do it. > Otherway, when i: > > myname# ppp > Working in interactive mode > Using interactive interface: tun0 > ppp on myname> term > atdtXXXXXXX > > This way it goes well, no problem. > > Can anybody here tell me what's going on ? > > Could my /etc/ppp/ppp.conf be wrong ? > > Here goes my ppp.conf: > > default: > set device /dev/cuaa2 > set speed 57600 > set openmode passive > set dial "ABORT BUSY ABORT NO\\sCARRIER TIMEOUT 5 \"\" ATE1Q0 OK-AT-OK > \\dATDT\\T TIMEOUT 40 CONNECT" > > isp: > set phone 8995400 > set login "TIMEOUT 5 Login:-\\r-Login: mylogin word: mypass" > set timeout 120 > set ifaddr 0 0 > set authname mylogin > set authkey mypass -- Brian Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 13:27: 4 1999 Delivered-To: freebsd-questions@freebsd.org Received: from awfulhak.org (dynamic-52.max1-du-ws.dialnetwork.pavilion.co.uk [212.74.8.52]) by hub.freebsd.org (Postfix) with ESMTP id 9E3051545E for ; Sat, 21 Aug 1999 13:25:19 -0700 (PDT) (envelope-from brian@Awfulhak.org) Received: from keep.lan.Awfulhak.org (root@keep.lan.Awfulhak.org [172.16.0.8]) by awfulhak.org (8.9.3/8.9.3) with ESMTP id VAA10008; Sat, 21 Aug 1999 21:19:13 +0100 (BST) (envelope-from brian@lan.awfulhak.org) Received: from keep.lan.Awfulhak.org (brian@localhost.lan.Awfulhak.org [127.0.0.1]) by keep.lan.Awfulhak.org (8.9.3/8.9.3) with ESMTP id VAA04816; Sat, 21 Aug 1999 21:22:11 +0100 (BST) (envelope-from brian@keep.lan.Awfulhak.org) Message-Id: <199908212022.VAA04816@keep.lan.Awfulhak.org> X-Mailer: exmh version 2.0.2 2/24/98 To: "Ronald F. Guilmette" Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Passing file descriptors via UNIX domain sockets In-reply-to: Your message of "Fri, 20 Aug 1999 23:43:40 PDT." <7989.935217820@monkeys.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sat, 21 Aug 1999 21:22:11 +0100 From: Brian Somers Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Take a look at the ppp(8) code - specifically at bundle_ReceiveDatalink() and bundle_SendDatalink() in bundle.c. > Greetings, > > I'm trying to figure out exactly how to pass file descriptors between > programs. > > It appears that the examples given in Stevens' ``UNIX Network Programming'' > (original edition) on pages 308-312 no longer accurately describes what one > must do to actually pass file descriptors. > > The man page for recvmsg(2) definitely provides some clues regarding the > new programatic idiom that must be used to pass files descriptors around, > but it is a little too terse, saying only: > > Open file descriptors are now passed as ancillary data for > AF_UNIX domain sockets, with cmsg_level set to SOL_SOCKET > and cmsg_type set to SCM_RIGHTS. > > It would be REALLY helpful for me to be able to actually _see_ an example > of some real working code that used the new style for file descriptor passing > between processes. Then I could just mimic that code in a monkey-see / > monkey-do fashion. > > So can anyone point me at a _current_ hunk of example code that shows open > file descriptors being passed between programs? If so, I would be much > obliged. > > > -- rfg -- Brian Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 13:43:30 1999 Delivered-To: freebsd-questions@freebsd.org Received: from monkeys.com (i180.value.net [206.14.136.180]) by hub.freebsd.org (Postfix) with ESMTP id BBD1915C0F for ; Sat, 21 Aug 1999 13:43:24 -0700 (PDT) (envelope-from rfg@monkeys.com) Received: from monkeys.com (LOCALHOST [127.0.0.1]) by monkeys.com (8.9.3/8.9.3) with ESMTP id NAA29453; Sat, 21 Aug 1999 13:01:31 -0700 To: Brian Somers Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Passing file descriptors via UNIX domain sockets In-reply-to: Your message of Sat, 21 Aug 1999 21:22:11 +0100. <199908212022.VAA04816@keep.lan.Awfulhak.org> From: "Ronald F. Guilmette" Date: Sat, 21 Aug 1999 13:01:31 -0700 Message-ID: <29451.935265691@monkeys.com> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message <199908212022.VAA04816@keep.lan.Awfulhak.org>, you wrote: >Take a look at the ppp(8) code - specifically at >bundle_ReceiveDatalink() and bundle_SendDatalink() in bundle.c. Yep! That's the ticket alrightee! That's exactly what I was looking for. That code is most helpful as an example, and I am now gleefully (and successfully) passing file descriptors! (I found the exact code you mentioned late last night, after I posted my question to freebsd-questions. DUH! I guess I should have gone grepping sources before I bothered everybody here. Sorry.) -- rfg P.S. The capability to pass open file descriptors between processes... even between otherwise unrelated processes... is way cool! I can do some neat things with this! Too bad the little pair of programs I wrote (just to see if I could actually make this fd passing stuff work) doesn't actually work under the Linux 2.2.7 kernel I have installed :-( even though it works just fine on FreeBSD. :-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 14:36:55 1999 Delivered-To: freebsd-questions@freebsd.org Received: from www.keycomp.net (www.keycomp.net [207.44.1.33]) by hub.freebsd.org (Postfix) with ESMTP id B044E14BFF for ; Sat, 21 Aug 1999 14:36:46 -0700 (PDT) (envelope-from billieakay@yahoo.com) Received: from bopper (kc-rmt11.keycomp.net [207.44.1.13]) by www.keycomp.net (8.8.5/SCO5) with SMTP id RAA22968; Sat, 21 Aug 1999 17:42:27 -0400 (EDT) Message-ID: <001b01beec1c$080d95a0$01010101@bopper> From: "Bill A. K." To: "Haegens Nico" , "FreeBSD Questions" References: <000701beec0c$eef440a0$e887fea9@nico> Subject: Re: Need support, system simply doesn't run! Date: Sat, 21 Aug 1999 17:27:52 -0400 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0018_01BEEBFA.7FBD0D00" 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-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0018_01BEEBFA.7FBD0D00 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hello, Can you please define "dosen't run", I might be able to help you. Let me know what happens. Bill billieakay@yahoo.com ----- Original Message -----=20 From: Haegens Nico=20 To: freebsd-questions@FreeBSD.ORG=20 Sent: Saturday, August 21, 1999 3:39 PM Subject: Need support, system simply doesn't run! I have bought FreeBSD 3.0 on a Walnut Creek CDROM. =20 The installation went perfect, but the system itself simply doesn' t = run. How do I solve this? =20 =20 I have a Phoenix BIOS Version 6, Release 4, a hard disk of almost=20 13 GB which I assigned 750 MB to my FreeBSD-partition, a Pentium = II-processor and my computer comes from Dell Corporation. =20 Please send my an e-mail on haegens_nico@hotmail.com ------=_NextPart_000_0018_01BEEBFA.7FBD0D00 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Hello,
     Can you please = define=20 "dosen't run", I might be able to help you.
 
Let me know what happens.
 
Bill
billieakay@yahoo.com
----- Original Message -----
From:=20 Haegens Nico
To: freebsd-questions@FreeBSD.ORG =
Sent: Saturday, August 21, 1999 = 3:39=20 PM
Subject: Need support, system = simply=20 doesn't run!

I have bought FreeBSD 3.0 on a = Walnut Creek=20 CDROM.
 
The installation went perfect, but = the system=20 itself simply doesn' t run.  How do I solve this?  =
 
I have a Phoenix BIOS Version 6, = Release 4, a=20 hard disk of almost
13 GB which I assigned 750 MB to = my=20 FreeBSD-partition, a Pentium II-processor and my computer comes from = Dell=20 Corporation.
 
Please send my an e-mail on haegens_nico@hotmail.com
------=_NextPart_000_0018_01BEEBFA.7FBD0D00-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 15: 2:14 1999 Delivered-To: freebsd-questions@freebsd.org Received: from awfulhak.org (dynamic-31.max1-du-ws.dialnetwork.pavilion.co.uk [212.74.8.31]) by hub.freebsd.org (Postfix) with ESMTP id BBA6E14D33 for ; Sat, 21 Aug 1999 15:02:05 -0700 (PDT) (envelope-from brian@Awfulhak.org) Received: from keep.lan.Awfulhak.org (root@keep.lan.Awfulhak.org [172.16.0.8]) by awfulhak.org (8.9.3/8.9.3) with ESMTP id WAA10334; Sat, 21 Aug 1999 22:47:26 +0100 (BST) (envelope-from brian@lan.awfulhak.org) Received: from keep.lan.Awfulhak.org (brian@localhost.lan.Awfulhak.org [127.0.0.1]) by keep.lan.Awfulhak.org (8.9.3/8.9.3) with ESMTP id WAA06688; Sat, 21 Aug 1999 22:50:22 +0100 (BST) (envelope-from brian@keep.lan.Awfulhak.org) Message-Id: <199908212150.WAA06688@keep.lan.Awfulhak.org> X-Mailer: exmh version 2.0.2 2/24/98 To: "Ronald F. Guilmette" Cc: Brian Somers , freebsd-questions@FreeBSD.ORG Subject: Re: Passing file descriptors via UNIX domain sockets In-reply-to: Your message of "Sat, 21 Aug 1999 13:01:31 PDT." <29451.935265691@monkeys.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sat, 21 Aug 1999 22:50:22 +0100 From: Brian Somers Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG One caveat (I had to learn the hard way!) is that you *must* also pass some data in the oivec. If you don't, the descriptor isn't passed. Also, make sure you get an acknowledgement from the other side before closing the descriptor. If you close it while it's in transit, the other side will receive a closed descriptor as the open count isn't incremented as it's passed (in case the other side never does a recvmsg()). > In message <199908212022.VAA04816@keep.lan.Awfulhak.org>, you wrote: > > >Take a look at the ppp(8) code - specifically at > >bundle_ReceiveDatalink() and bundle_SendDatalink() in bundle.c. > > Yep! That's the ticket alrightee! That's exactly what I was looking > for. That code is most helpful as an example, and I am now gleefully > (and successfully) passing file descriptors! > > (I found the exact code you mentioned late last night, after I posted > my question to freebsd-questions. DUH! I guess I should have gone > grepping sources before I bothered everybody here. Sorry.) > > -- rfg > > P.S. The capability to pass open file descriptors between processes... > even between otherwise unrelated processes... is way cool! I can do some > neat things with this! Too bad the little pair of programs I wrote (just to > see if I could actually make this fd passing stuff work) doesn't actually > work under the Linux 2.2.7 kernel I have installed :-( even though it > works just fine on FreeBSD. :-) > > -- Brian Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 15:14:12 1999 Delivered-To: freebsd-questions@freebsd.org Received: from inet.chip-web.com (c1003518-a.plstn1.sfba.home.com [24.1.82.47]) by hub.freebsd.org (Postfix) with SMTP id 9496815474 for ; Sat, 21 Aug 1999 15:14:05 -0700 (PDT) (envelope-from ludwigp@bigfoot.com) Received: (qmail 3477 invoked from network); 21 Aug 1999 22:12:37 -0000 Received: from furball.chip-web.com (172.16.1.29) by inet.chip-web.com with SMTP; 21 Aug 1999 22:12:37 -0000 Date: Sat, 21 Aug 1999 15:12:20 -0700 (PDT) From: Ludwig Pummer X-Sender: ludwigp@furball.chip-web.com To: Mark Ovens Cc: Alejandro Ramirez , Albert Everett , questions@freebsd.org Subject: Re: maximum file size In-Reply-To: <19990821182544.A451@marder-1> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sat, 21 Aug 1999, Mark Ovens wrote: > On Sat, Aug 21, 1999 at 11:52:48AM -0500, Alejandro Ramirez wrote: > > Hi, > > > > How can I know the size of the blocks I'm using in my system??? (FreeBSD > > 3.2 Release) > > > > The default block-size is 8kB, so if you let sysinstall newfs your > disks then that's what it'll be. > > dumpfs(8) is the only way that I know (but there are probably > several other ways) of finding the block-size of an existing fs. > The disk must be umounted for dumpfs to work which makes checking > the root fs a bit difficult :-) How many people are going to stick multi-gigabyte files on the root fs? But this is how you can check: > disklabel wd0 # /dev/rwd0c: type: ESDI ... drivedata: 0 8 partitions: # size offset fstype [fsize bsize bps/cpg] a: 81920 0 4.2BSD 1024 8192 16 # (Cyl. 0 - 5*) b: 666016 81920 swap # (Cyl. 5*- 49*) c: 12050640 0 unused 0 0 # (Cyl. 0 - 796) e: 40960 747936 4.2BSD 1024 8192 16 # (Cyl. 49*- 52*) f: 11261744 788896 4.2BSD 1024 8192 16 # (Cyl. 52*- 796*) ^^^^ --Ludwig Pummer To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 15:19:24 1999 Delivered-To: freebsd-questions@freebsd.org Received: from IPGATE.sls.co.uk (IPGATE.sls.co.uk [194.201.82.1]) by hub.freebsd.org (Postfix) with ESMTP id E427114D11 for ; Sat, 21 Aug 1999 15:19:20 -0700 (PDT) (envelope-from woodruff_g@sls.co.uk) Received: from SLSNT2.sls.co.uk (SLSNT2.sls.co.uk [194.201.82.110]) by IPGATE.sls.co.uk (8.9.3/8.9.3) with SMTP id XAA11779 for ; Sat, 21 Aug 1999 23:16:29 +0100 Received: from grahamr (194.201.82.196) by SLSNT2.sls.co.uk (EMWAC SMTPRS 0.81) with SMTP id ; Sat, 21 Aug 1999 23:19:02 +0100 Message-ID: <001e01beec16$341e7700$8752c9c2@grahamr> From: "Graham Woodruff" To: "FreeBSD Questions" Subject: Re: 3.2 wont install - ** SOLVED ** Date: Sat, 21 Aug 1999 21:46:10 +0100 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 4.72.2106.4 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.2106.4 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG >Are you behind a firewall, and if so are you choosing the passive ftp? No, what I have done is just downloaded 3.2-RELEASE off the 'net to my Win95 box for time/backup reasons, and am just running a Win95 ftp server (either War/G6/Netftpd) - this gives me backup/resiliance in case my ISP kicks me out !. What I have found is that adding memory has solved the problem viz: On a Dell Netplex 486/25, I installed perfectly OK with just 8Mb, but this install used a minimal driver set, the other installs have been to a Dell 486/100 Dimension, but with a CD player (etc) installed - I swapped out the network card for a PNP NE2000 clone, upped from 8Mb to 12Mb, and while there was still a slight pause after 1024K, the download picked up and ran OK, I would guess that with >12Mb I would not have even noticed the pause. Seems to me that install needs >12Mb for safety, the funny thing is that reverting to 8Mb still runs OK, ftp gives a slight pause, still, with EDO at £20/16Mb I can't really complain. Now off to install the rest of the system. Graham Woodruff graham.woodruff@iii-europe.com grahamr@globalnet.co.uk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 15:20:40 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail.pp.psg.sk (mail.pp.psg.sk [195.80.162.2]) by hub.freebsd.org (Postfix) with ESMTP id 0F4AA154B7 for ; Sat, 21 Aug 1999 15:20:29 -0700 (PDT) (envelope-from xvudpapc@savba.savba.sk) Received: from savba.savba.sk (pcba22.ba.psg.sk [195.80.171.86]) by mail.pp.psg.sk (8.9.3/8.9.3) with ESMTP id AAA22901 for ; Sun, 22 Aug 1999 00:20:18 +0200 Message-ID: <37BFF823.5B7EB80A@savba.savba.sk> Date: Sun, 22 Aug 1999 15:16:19 +0200 From: xvudpapc X-Mailer: Mozilla 4.5 [en] (Win98; I) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: Juraj Sipos Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hello, I've made a software (an .Xmodmap solution) for all Central European keyboard layouts in X Windows in FreeBSD. My solution can be also used for any keyboard using latin letters. The problem is that I don't have it yet on any Internet site and I'd like to port it. It's a little software, only few files. How can I port this software to be included as a package in FreeBSD? Sincerely, Juraj Sipos To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 15:33: 2 1999 Delivered-To: freebsd-questions@freebsd.org Received: from cygnus.rush.net (cygnus.rush.net [209.45.245.133]) by hub.freebsd.org (Postfix) with ESMTP id 442C114D11 for ; Sat, 21 Aug 1999 15:32:50 -0700 (PDT) (envelope-from bright@rush.net) Received: from localhost (bright@localhost) by cygnus.rush.net (8.9.3/8.9.3) with SMTP id SAA09589; Sat, 21 Aug 1999 18:41:05 -0400 (EDT) Date: Sat, 21 Aug 1999 18:41:03 -0400 (EDT) From: Alfred Perlstein To: Roy Bettle Cc: "Questions List FreeBSD.org" Subject: Re: Resolving NT machine names with NAT In-Reply-To: <37BE3E4A.5342BE91@criterion-group.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, 20 Aug 1999, Roy Bettle wrote: > Good evening. We have a Cox Communications cable modem. They use the > @Home Network. We would like to setup NAT so that both our machines can > go out. We have tried to use Linux RedHat 6.0 but have not been able to > get IPMasq to resolve the Windows NT Server host names (we use a static > IP address, but the @Home Network apparently manages itself with Windows > NT Server and NT DHCP). This is apparently a known problem with > IPMasq. Does this problem exists with NAT as well? If so, can we get > around it? If so, how (URL to help us out perhaps?)? > > Thank you for your help! From the natd manpage: (man natd) -dynamic If the -n or -interface option is used, natd will monitor the routing socket for alterations to the interface passed. If the interfaces IP number is changed, natd will dynamically alter its concept of the alias address. good luck, -Alfred To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 15:38:34 1999 Delivered-To: freebsd-questions@freebsd.org Received: from tranq1.tranquility.net (tranq1.tranquility.net [206.156.230.1]) by hub.freebsd.org (Postfix) with ESMTP id 2148D14FEB for ; Sat, 21 Aug 1999 15:38:32 -0700 (PDT) (envelope-from james@tranquility.net) Received: from my.mind.is.a.strobe.org (my.mind.is.a.strobe.org [206.152.117.227]) by tranq1.tranquility.net (8.9.2/8.9.2) with ESMTP id RAA14806 for ; Sat, 21 Aug 1999 17:37:05 -0500 (CDT) Date: Sat, 21 Aug 1999 12:46:07 -0500 (CDT) From: James March To: freebsd-questions@freebsd.org Subject: Aout libs for x3.3.4 Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hey, I installed X3.3.4 from the port. It dosent seem to be installing a few Key apps. XF86Setup and the aout libs. Ive setup X manytimes before from the port. But never had these problems. I need the aout libs to run netscape. Ive installed compat22 many times, but its the aout libs for x that i need. Thanks James To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 16: 3:39 1999 Delivered-To: freebsd-questions@freebsd.org Received: from luke.cpl.net (luke.cpl.net [192.216.136.195]) by hub.freebsd.org (Postfix) with ESMTP id BCE3214E38 for ; Sat, 21 Aug 1999 16:03:37 -0700 (PDT) (envelope-from shawn@luke.cpl.net) Received: (from shawn@localhost) by luke.cpl.net (8.9.3/8.9.3) id XAA28068; Sat, 21 Aug 1999 23:04:30 GMT Date: Sat, 21 Aug 1999 23:04:30 +0000 From: Shawn Ramsey To: Ludwig Pummer Cc: questions@FreeBSD.ORG Subject: Re: /etc Message-ID: <19990821230430.B10092@cpl.net> References: <19990821100023.A10092@cpl.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.6i In-Reply-To: ; from Ludwig Pummer on Sat, Aug 21, 1999 at 04:08:28AM -0700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sat, Aug 21, 1999 at 04:08:28AM -0700, Ludwig Pummer wrote: > On Sat, 21 Aug 1999, Shawn Ramsey wrote: > > > > But how does Apache know that your home directory is /disk6/shawn if > > > there's no [accessible] /etc/passwd to look it up in ? :) > > > > Yup. :) I should have figured that out... But it also needs access to > > pwd.db. Why is that? I wouldn't think the webserver could read or understand > > that file. > > It would make more sense of Apache to use the standard system call > (whatever it is) to get a user's home directory, rather than parsing > /etc/passwd directly. pwd.db is the db version of passwd, and it's what > the system calls use. I'm no longer sure that /etc/passwd is needed, since > pwd.db is what the system uses. Yes, and Apache does not need /etc/passwd. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 16:19:44 1999 Delivered-To: freebsd-questions@freebsd.org Received: from dt011n65.san.rr.com (dt010nb9.san.rr.com [204.210.12.185]) by hub.freebsd.org (Postfix) with ESMTP id 1703B14EF0 for ; Sat, 21 Aug 1999 16:19:41 -0700 (PDT) (envelope-from Doug@gorean.org) Received: from gorean.org (master [10.0.0.2]) by dt011n65.san.rr.com (8.9.3/8.8.8) with ESMTP id QAA82904; Sat, 21 Aug 1999 16:19:26 -0700 (PDT) (envelope-from Doug@gorean.org) Message-ID: <37BF3408.FBC9409E@gorean.org> Date: Sat, 21 Aug 1999 16:19:36 -0700 From: Doug Organization: Triborough Bridge & Tunnel Authority X-Mailer: Mozilla 4.61 [en] (X11; U; FreeBSD 4.0-CURRENT-0815 i386) X-Accept-Language: en MIME-Version: 1.0 To: Ludwig Pummer Cc: Shawn Ramsey , questions@freebsd.org Subject: Re: /etc References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Ludwig Pummer wrote: > > I'm no longer sure that /etc/passwd is needed, since > pwd.db is what the system uses. It's still good to have it around. I've run some software in the past that barfed if it couldn't read directly from /etc/passwd, and it was darn tricky to debug too. Doug To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 16:43:18 1999 Delivered-To: freebsd-questions@freebsd.org Received: from monkeys.com (i180.value.net [206.14.136.180]) by hub.freebsd.org (Postfix) with ESMTP id D1FF914CAC for ; Sat, 21 Aug 1999 16:43:14 -0700 (PDT) (envelope-from rfg@monkeys.com) Received: from monkeys.com (LOCALHOST [127.0.0.1]) by monkeys.com (8.9.3/8.9.3) with ESMTP id QAA01540; Sat, 21 Aug 1999 16:01:09 -0700 To: Brian Somers Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Passing file descriptors via UNIX domain sockets In-reply-to: Your message of Sat, 21 Aug 1999 22:50:22 +0100. <199908212150.WAA06688@keep.lan.Awfulhak.org> From: "Ronald F. Guilmette" Date: Sat, 21 Aug 1999 16:01:09 -0700 Message-ID: <1538.935276469@monkeys.com> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message <199908212150.WAA06688@keep.lan.Awfulhak.org>, you wrote: >One caveat (I had to learn the hard way!) is that you *must* also >pass some data in the oivec. If you don't, the descriptor isn't >passed. I am _not_ passing any data in the iovec now, and yet the file descriptor seems to come across just fine... at least on FreeBSD. I'll try passing some data along with the fd on Linux and see if that helps any. >Also, make sure you get an acknowledgement from the other >side before closing the descriptor. If you close it while it's in >transit, the other side will receive a closed descriptor as the open >count isn't incremented as it's passed (in case the other side never >does a recvmsg()). Yes. I _did_ notice that sort of handshake going on in the BSD ppp code, where it is passing fds. So I implemented that too, going on the assumption that (as you said) if the fd is in transit, and the sender closes it before it makes it to the receiver, that it may just be closed for good, and that the receiver may then just end up receiving a closed (and useless) fd. I was kinda wondering about that possibility while I was looking at the fd passing example in my (first edition) Stevens' book. In the example in the book, the sending process *didn't* seem to wait to make sure that the receiver actually received the fd before the sender exited! That looked damed suspicious to me, so I was already on my guard about the possible need for the sender to wait for some sort of ACK back from the received (as happens in the BSD ppp code) when I started to code up my little fd-passing test programs. I'll bet that *this* (i.e. failure to wait for an ACK from the receiver) bites a lot of people... especially anyone who is just looking at the (first edition) Stevens book when trying to figure out how to do this stuff. But then again, anybody who is *just* looking at that, and who is trying to make this stuff work (as I was) won't be able to get it anywhere near to working with the new coding idiom that you have to use with the new (Free)BSD kernel networking code that supports this (fd passing) stuff anyway. Thank God for source code! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 16:53:12 1999 Delivered-To: freebsd-questions@freebsd.org Received: from oberon.jozsef.kando.hu (oberon.jozsef.kando.hu [193.224.40.6]) by hub.freebsd.org (Postfix) with ESMTP id 3150815457 for ; Sat, 21 Aug 1999 16:53:01 -0700 (PDT) (envelope-from bra@k2.jozsef.kando.hu) Received: from k2.jozsef.kando.hu [193.224.40.3] (mail) by oberon.jozsef.kando.hu with esmtp (Exim 2.05 #1 (Debian)) id 11IKv0-0001WO-00; Sun, 22 Aug 1999 01:51:26 +0200 Received: from bra (helo=localhost) by k2.jozsef.kando.hu with local-esmtp (Exim 3.02 #1 (Debian)) for freebsd-questions@FreeBSD.ORG id 11IKv0-00015A-00; Sun, 22 Aug 1999 01:51:26 +0200 Date: Sun, 22 Aug 1999 01:51:26 +0200 (CEST) From: Nagy Attila To: freebsd-questions@FreeBSD.ORG Subject: FreeBSD ISO images? Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, I've searched all the web and ftp with major searchers for FreeBSD ISOs. I thought that -similar to the Linux distributions- there is a FreeBSD CD-ROM image out there, which ease the installation procedure for people with limited bandwith. Can anyone help me with telling me about the existence of this ISO file? Thanks... ps: please cc for my mail address too To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 17:17:46 1999 Delivered-To: freebsd-questions@freebsd.org Received: from adsl-216-102-203-44.dsl.snfc21.pacbell.net (adsl-216-102-203-44.dsl.snfc21.pacbell.net [216.102.203.44]) by hub.freebsd.org (Postfix) with ESMTP id 41E7E154EA for ; Sat, 21 Aug 1999 17:17:21 -0700 (PDT) (envelope-from bri@sonicboom.org) Received: from localhost (bri@localhost) by adsl-216-102-203-44.dsl.snfc21.pacbell.net (8.9.3/8.9.3) with ESMTP id RAA00674; Sat, 21 Aug 1999 17:16:39 -0700 (PDT) (envelope-from bri@sonicboom.org) Date: Sat, 21 Aug 1999 17:16:38 -0700 (PDT) From: Brian X-Sender: bri@adsl-216-102-203-44.dsl.snfc21.pacbell.net To: Nagy Attila Cc: freebsd-questions@FreeBSD.ORG Subject: Re: FreeBSD ISO images? In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG So, you have limited bw and want the iso??? Get the cd cheapie style from www.cheapbytes.com. Heres the install instruction page http://www.freebsd.org/handbook/install.html you only need to download 2 floppies to start. Bri On Sun, 22 Aug 1999, Nagy Attila wrote: > Hi, > > I've searched all the web and ftp with major searchers for FreeBSD ISOs. > I thought that -similar to the Linux distributions- there is a FreeBSD > CD-ROM image out there, which ease the installation procedure for people > with limited bandwith. > > Can anyone help me with telling me about the existence of this ISO file? > > Thanks... > > ps: please cc for my mail address too > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 17:26: 5 1999 Delivered-To: freebsd-questions@freebsd.org Received: from chippie.cgu.nl (chippie.cgu.nl [145.101.220.7]) by hub.freebsd.org (Postfix) with ESMTP id C36381548B for ; Sat, 21 Aug 1999 17:25:53 -0700 (PDT) (envelope-from psd@cgu.nl) Received: from localhost (psd@localhost) by chippie.cgu.nl (8.9.3/8.9.3/psd) with SMTP id CAA13385 for ; Sun, 22 Aug 1999 02:25:52 +0200 (CEST) Date: Sun, 22 Aug 1999 02:25:52 +0200 (CEST) From: Paul Dekkers X-Sender: psd@chippie.cgu Reply-To: Paul Dekkers To: FreeBSD Mailinglist Subject: 3.2R: netscape 4.51 not oob, kdm doesn't work, as well as x11amp Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi I tried to install the netscape-4.51 package from the 3.2R, but I got the following error: (3.04 works however)... # netscape Couldn't open /usr/libexec/ld.so. I already tried a symlink, but it doesn't work... What should I do? Another problem: kdm[4836]: server XBINDIR/X cannot be executed Server for display :0 terminated unexpectedly: 1 And nothing more from kdm... How do I solve this? It looks like XBINDIR is hardcoded, it didn't help defining it as varaiable... Finally... x11amp 0.8 doesnt work, however it should according to the description in the package... Am I right? (I use the standard FreeBSD drivers, voxw. I assume)... Paul -- Paul Dekkers E-Mail: To err is human, to moo bovine To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 17:53:20 1999 Delivered-To: freebsd-questions@freebsd.org Received: from dt011n65.san.rr.com (dt010nb9.san.rr.com [204.210.12.185]) by hub.freebsd.org (Postfix) with ESMTP id 51D1E15461 for ; Sat, 21 Aug 1999 17:53:16 -0700 (PDT) (envelope-from Doug@gorean.org) Received: from gorean.org (master [10.0.0.2]) by dt011n65.san.rr.com (8.9.3/8.8.8) with ESMTP id RAA94350; Sat, 21 Aug 1999 17:50:47 -0700 (PDT) (envelope-from Doug@gorean.org) Message-ID: <37BF4971.42604439@gorean.org> Date: Sat, 21 Aug 1999 17:50:57 -0700 From: Doug Organization: Triborough Bridge & Tunnel Authority X-Mailer: Mozilla 4.61 [en] (X11; U; FreeBSD 4.0-CURRENT-0815 i386) X-Accept-Language: en MIME-Version: 1.0 To: xvudpapc Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Juraj Sipos References: <37BFF823.5B7EB80A@savba.savba.sk> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG xvudpapc wrote: > > Hello, > I've made a software (an .Xmodmap solution) for all Central European > keyboard layouts > in X Windows in FreeBSD. My solution can be also used for any keyboard > using > latin letters. The problem is that I don't have it yet on any Internet > site and I'd like to > port it. It's a little software, only few files. How can I port this > software to be included > as a package in FreeBSD? Take a look at the ports for portlint and mergemaster for examples of how to make a port that only installs files, but does not need to 'make' anything. Good luck, Doug To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 17:53:40 1999 Delivered-To: freebsd-questions@freebsd.org Received: from dt011n65.san.rr.com (dt010nb9.san.rr.com [204.210.12.185]) by hub.freebsd.org (Postfix) with ESMTP id 16417150EB for ; Sat, 21 Aug 1999 17:53:35 -0700 (PDT) (envelope-from Doug@gorean.org) Received: from gorean.org (master [10.0.0.2]) by dt011n65.san.rr.com (8.9.3/8.8.8) with ESMTP id RAA94664; Sat, 21 Aug 1999 17:52:28 -0700 (PDT) (envelope-from Doug@gorean.org) Message-ID: <37BF49D6.84A6C1C1@gorean.org> Date: Sat, 21 Aug 1999 17:52:38 -0700 From: Doug Organization: Triborough Bridge & Tunnel Authority X-Mailer: Mozilla 4.61 [en] (X11; U; FreeBSD 4.0-CURRENT-0815 i386) X-Accept-Language: en MIME-Version: 1.0 To: James March Cc: freebsd-questions@freebsd.org Subject: Re: Aout libs for x3.3.4 References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG James March wrote: > > Hey, > > I installed X3.3.4 from the port. It dosent seem to be installing > a few Key apps. > > XF86Setup and the aout libs. XF86Setup doesn't get installed if you don't have tcl/tk on your system. When you build the port there is a question about whether you want to build the aout libs or not. If you didn't see that question you need to update your ports tree and try again. Good luck, Doug To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 18:37:34 1999 Delivered-To: freebsd-questions@freebsd.org Received: from sand2.global.net.uk (sand2.global.net.uk [195.147.246.100]) by hub.freebsd.org (Postfix) with ESMTP id 7065E152EE for ; Sat, 21 Aug 1999 18:37:23 -0700 (PDT) (envelope-from mark@globalnet.co.uk) Received: from pf1s11a06.client.global.net.uk ([195.147.219.242] helo=marder-1.) by sand2.global.net.uk with esmtp (Exim 2.05 #1) id 11IMWi-0000Ae-00; Sun, 22 Aug 1999 02:34:29 +0100 Received: (from mark@localhost) by marder-1. (8.9.2/8.8.8) id CAA26414; Sun, 22 Aug 1999 02:27:39 +0100 (BST) (envelope-from mark) Date: Sun, 22 Aug 1999 02:27:38 +0100 From: Mark Ovens To: Ludwig Pummer Cc: Alejandro Ramirez , Albert Everett , questions@freebsd.org Subject: Re: maximum file size Message-ID: <19990822022738.D451@marder-1> References: <19990821182544.A451@marder-1> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.3i In-Reply-To: ; from Ludwig Pummer on Sat, Aug 21, 1999 at 03:12:20PM -0700 Organization: Total lack of Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sat, Aug 21, 1999 at 03:12:20PM -0700, Ludwig Pummer wrote: > On Sat, 21 Aug 1999, Mark Ovens wrote: > > > On Sat, Aug 21, 1999 at 11:52:48AM -0500, Alejandro Ramirez wrote: > > > Hi, > > > > > > How can I know the size of the blocks I'm using in my system??? (FreeBSD > > > 3.2 Release) > > > > > > > The default block-size is 8kB, so if you let sysinstall newfs your > > disks then that's what it'll be. > > > > dumpfs(8) is the only way that I know (but there are probably > > several other ways) of finding the block-size of an existing fs. > > The disk must be umounted for dumpfs to work which makes checking > > the root fs a bit difficult :-) > > How many people are going to stick multi-gigabyte files on the root fs? > Who said anything about multi-GB files on /. I just said that doing dumpfs(8) on / was difficult. > But this is how you can check: > > disklabel wd0 > # /dev/rwd0c: > type: ESDI > ... > drivedata: 0 > > 8 partitions: > # size offset fstype [fsize bsize bps/cpg] > a: 81920 0 4.2BSD 1024 8192 16 # (Cyl. 0 - 5*) > b: 666016 81920 swap # (Cyl. 5*- > 49*) > c: 12050640 0 unused 0 0 # (Cyl. 0 - > 796) > e: 40960 747936 4.2BSD 1024 8192 16 # (Cyl. 49*- > 52*) > f: 11261744 788896 4.2BSD 1024 8192 16 # (Cyl. 52*- > 796*) > ^^^^ Interesting. When I run disklabel (from ``boot -s'') it returns 0 in the fsize, bsize,bps/cpg columns (3.1-R), on all umounted fs. > > --Ludwig Pummer > > -- STATE-OF-THE-ART: Any computer you can't afford. OBSOLETE: Any computer you own. ________________________________________________________________ FreeBSD - The Power To Serve http://www.freebsd.org My Webpage http://ukug.uk.freebsd.org/~mark/ mailto:mark@ukug.uk.freebsd.org http://www.radan.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 18:49:24 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail.rdc2.on.home.com (ha1.rdc2.on.home.com [24.9.0.15]) by hub.freebsd.org (Postfix) with ESMTP id CA60814BD4 for ; Sat, 21 Aug 1999 18:49:16 -0700 (PDT) (envelope-from plopez@sympatico.ca) Received: from vermithrax.house ([24.114.6.80]) by mail.rdc2.on.home.com (InterMail v4.01.01.07 201-229-111-110) with SMTP id <19990822014915.EKFS20473.mail.rdc2.on.home.com@vermithrax.house>; Sat, 21 Aug 1999 18:49:15 -0700 From: Paul A.Lopez Reply-To: plopez@sympatico.ca To: freebsd-questions@FreeBSD.org Subject: Problem w/Kernel Config Date: Sat, 21 Aug 1999 17:08:20 -0400 X-Mailer: KMail [version 1.0.21] Content-Type: text/plain Cc: plopez@sympatico.ca MIME-Version: 1.0 Message-Id: <99082117503700.02620@vermithrax.house> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Here's one for you.. Hoping someone there can help.. I've got an SB16 ISA (real SB, not a knock off, and I'm trying to compile a kernel w/sound support in it.. Windows tells me the settings are IRQ 5, 8bit DMA 1, 16bit DMA 5, at 0x220 and 0x330 (midi) Followed the instructions in the handbook and I'm getting a failure during 'make'.. Here's the error lines: soundcard.o: In function 'sndpoll': soundcard.o(.text+0x2f7): undefined reference to `MIDIbuf_poll' sound_switch.o: In function `sound_read_sw': sound_switch.o(.text+0x52d): undefined reference to `MIDIbuf_read' sound_switch.o: In function `sound_write_sw': sound_switch.o(.text+0x5ad): undefined reference to `MIDIbuf_write' sound_switch.o: In function `sound_open_sw': sound_switch.o(.text+0x68f): undefined reference to `MIDIbuf_open' sound_switch.o: In function `sound_release_sw': sound_switch.o(.text+0x72b): undefined reference to `MIDIbuf_release' sound_switch.o: In function `sound_ioctl_sw': sound_switch.o(.text+0x835): undefined reference to `MIDIbuf_ioctl' *** Error code 1 Stop. I've done everything listed on the handbook pages.. But it keeps giving me this error. the only thing I can possible think of is if the arguments in the kernel config file have to be in a certain location.. I just tacked them on at the end.. That couldn'd make the diff? Could it? Below is include a copy of the configuration file.. The three lines relating to my (attempted) sound configuration are at the very end, the last three lines.. And suggestions or FAQ/help resources you could direct me to would be appreciated... cheers # # GENERIC -- Generic machine with WD/AHx/NCR/BTx family disks # # For more information read the handbook part System Administration -> # Configuring the FreeBSD Kernel -> The Configuration File. # The handbook is available in /usr/share/doc/handbook or online as # latest version from the FreeBSD World Wide Web server # # # An exhaustive list of options and more detailed explanations of the # device lines is present in the ./LINT configuration file. If you are # in doubt as to the purpose or necessity of a line, check first in LINT. # # $Id: GENERIC,v 1.143.2.12 1999/05/14 15:12:26 jkh Exp $ machine "i386" cpu "I386_CPU" cpu "I486_CPU" cpu "I586_CPU" cpu "I686_CPU" ident VERMITHRAX maxusers 32 options MATH_EMULATE #Support for x87 emulation options INET #InterNETworking options FFS #Berkeley Fast Filesystem options FFS_ROOT #FFS usable as root device [keep this!] options MFS #Memory Filesystem options MFS_ROOT #MFS usable as root device, "MFS" req'ed options NFS #Network Filesystem options NFS_ROOT #NFS usable as root device, "NFS" req'ed options MSDOSFS #MSDOS Filesystem options "CD9660" #ISO 9660 Filesystem options "CD9660_ROOT" #CD-ROM usable as root. "CD9660" req'ed options PROCFS #Process filesystem options "COMPAT_43" #Compatible with BSD 4.3 [KEEP THIS!] options SCSI_DELAY=15000 #Be pessimistic about Joe SCSI device options UCONSOLE #Allow users to grab the console options FAILSAFE #Be conservative options USERCONFIG #boot -c editor options VISUAL_USERCONFIG #visual boot -c editor config kernel root on wd0 # To make an SMP kernel, the next two are needed #options SMP # Symmetric MultiProcessor Kernel #options APIC_IO # Symmetric (APIC) I/O # Optionally these may need tweaked, (defaults shown): #options NCPU=2 # number of CPUs #options NBUS=4 # number of busses #options NAPIC=1 # number of IO APICs #options NINTR=24 # number of INTs controller isa0 controller pnp0 controller eisa0 controller pci0 controller fdc0 at isa? port "IO_FD1" bio irq 6 drq 2 disk fd0 at fdc0 drive 0 disk fd1 at fdc0 drive 1 options "CMD640" # work around CMD640 chip deficiency controller wdc0 at isa? port "IO_WD1" bio irq 14 disk wd0 at wdc0 drive 0 disk wd1 at wdc0 drive 1 controller wdc1 at isa? port "IO_WD2" bio irq 15 disk wd2 at wdc1 drive 0 disk wd3 at wdc1 drive 1 options ATAPI #Enable ATAPI support for IDE bus options ATAPI_STATIC #Don't do it as an LKM device acd0 #IDE CD-ROM device wfd0 #IDE Floppy (e.g. LS-120) # A single entry for any of these controllers (ncr, ahb, ahc) is # sufficient for any number of installed devices. controller ncr0 controller ahb0 controller ahc0 controller isp0 # This controller offers a number of configuration options, too many to # document here - see the LINT file in this directory and look up the # dpt0 entry there for much fuller documentation on this. controller dpt0 controller adv0 at isa? port ? cam irq ? controller adw0 controller bt0 at isa? port ? cam irq ? controller aha0 at isa? port ? cam irq ? controller scbus0 device da0 device sa0 device pass0 device cd0 #Only need one of these, the code dynamically grows device wt0 at isa? port 0x300 bio irq 5 drq 1 device mcd0 at isa? port 0x300 bio irq 10 controller matcd0 at isa? port 0x230 bio device scd0 at isa? port 0x230 bio # atkbdc0 controlls both the keyboard and the PS/2 mouse controller atkbdc0 at isa? port IO_KBD tty device atkbd0 at isa? tty irq 1 device psm0 at isa? tty irq 12 device vga0 at isa? port ? conflicts # splash screen/screen saver pseudo-device splash # syscons is the default console driver, resembling an SCO console device sc0 at isa? tty # Enable this and PCVT_FREEBSD for pcvt vt220 compatible console driver #device vt0 at isa? tty #options XSERVER # support for X server #options FAT_CURSOR # start with block cursor # If you have a ThinkPAD, uncomment this along with the rest of the PCVT lines #options PCVT_SCANSET=2 # IBM keyboards are non-std device npx0 at isa? port IO_NPX irq 13 # # Laptop support (see LINT for more options) # device apm0 at isa? disable flags 0x31 # Advanced Power Management # PCCARD (PCMCIA) support #controller card0 #device pcic0 at card? #device pcic1 at card? device sio0 at isa? port "IO_COM1" flags 0x10 tty irq 4 device sio1 at isa? port "IO_COM2" tty irq 3 device sio2 at isa? disable port "IO_COM3" tty irq 5 device sio3 at isa? disable port "IO_COM4" tty irq 9 # Parallel port device ppc0 at isa? port? flags 0x40 net irq 7 controller ppbus0 device lpt0 at ppbus? device plip0 at ppbus? device ppi0 at ppbus? #controller vpo0 at ppbus? # # The following Ethernet NICs are all PCI devices. # device ax0 # ASIX AX88140A device de0 # DEC/Intel DC21x4x (``Tulip'') device fxp0 # Intel EtherExpress PRO/100B (82557, 82558) device mx0 # Macronix 98713/98715/98725 (``PMAC'') device pn0 # Lite-On 82c168/82c169 (``PNIC'') device rl0 # RealTek 8129/8139 device tl0 # Texas Instruments ThunderLAN device tx0 # SMC 9432TX (83c170 ``EPIC'') device vr0 # VIA Rhine, Rhine II device vx0 # 3Com 3c590, 3c595 (``Vortex'') device wb0 # Winbond W89C840F device xl0 # 3Com 3c90x (``Boomerang'', ``Cyclone'') # Order is important here due to intrusive probes, do *not* alphabetize # this list of network interfaces until the probes have been fixed. # Right now it appears that the ie0 must be probed before ep0. See # revision 1.20 of this file. #device ed0 at isa? port 0x280 net irq 10 iomem 0xd8000 #device ie0 at isa? port 0x300 net irq 10 iomem 0xd0000 #device ep0 at isa? port 0x300 net irq 10 #device ex0 at isa? port? net irq? #device fe0 at isa? port 0x300 net irq ? #device le0 at isa? port 0x300 net irq 5 iomem 0xd0000 #device lnc0 at isa? port 0x280 net irq 10 drq 0 #device ze0 at isa? port 0x300 net irq 10 iomem 0xd8000 #device zp0 at isa? port 0x300 net irq 10 iomem 0xd8000 #device cs0 at isa? port 0x300 net irq ? pseudo-device loop pseudo-device ether pseudo-device sl 1 pseudo-device ppp 1 pseudo-device tun 1 pseudo-device pty 16 pseudo-device gzip # Exec gzipped a.out's # KTRACE enables the system-call tracing facility ktrace(2). # This adds 4 KB bloat to your kernel, and slightly increases # the costs of each syscall. options KTRACE #kernel tracing # This provides support for System V shared memory and message queues. # options SYSVSHM options SYSVMSG options SYSVSEM # The `bpfilter' pseudo-device enables the Berkeley Packet Filter. Be # aware of the legal and administrative consequences of enabling this # option. The number of devices determines the maximum number of # simultaneous BPF clients programs runnable. #pseudo-device bpfilter 4 #Berkeley packet filter #Sound Card Configuration controller snd0 device sbxvi0 at isa? drq 5 device sbmidi0 at isa? port 0x330 -- Paul A. Lopez plopez@sympatico.ca plopez@magma.ca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 18:55:30 1999 Delivered-To: freebsd-questions@freebsd.org Received: from dt011n65.san.rr.com (dt010nb9.san.rr.com [204.210.12.185]) by hub.freebsd.org (Postfix) with ESMTP id B962414D91 for ; Sat, 21 Aug 1999 18:55:16 -0700 (PDT) (envelope-from Doug@gorean.org) Received: from gorean.org (master [10.0.0.2]) by dt011n65.san.rr.com (8.9.3/8.8.8) with ESMTP id SAA02396; Sat, 21 Aug 1999 18:53:44 -0700 (PDT) (envelope-from Doug@gorean.org) Message-ID: <37BF5832.4BCD1231@gorean.org> Date: Sat, 21 Aug 1999 18:53:54 -0700 From: Doug Organization: Triborough Bridge & Tunnel Authority X-Mailer: Mozilla 4.61 [en] (X11; U; FreeBSD 4.0-CURRENT-0815 i386) X-Accept-Language: en MIME-Version: 1.0 To: Paul Dekkers Cc: FreeBSD Mailinglist Subject: Re: 3.2R: netscape 4.51 not oob, kdm doesn't work, as well as x11amp References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Paul Dekkers wrote: > > Hi > > I tried to install the netscape-4.51 package from the 3.2R, but I got the > following error: (3.04 works however)... > # netscape > Couldn't open /usr/libexec/ld.so. > I already tried a symlink, but it doesn't work... What should I do? You need to install the compat22 distribution to get the aout compatability libraries. You can use /stand/sysinstall to do this. good luck, Doug To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 19:18:51 1999 Delivered-To: freebsd-questions@freebsd.org Received: from allegro.lemis.com (allegro.lemis.com [192.109.197.134]) by hub.freebsd.org (Postfix) with ESMTP id 6D11B14D35 for ; Sat, 21 Aug 1999 19:18:39 -0700 (PDT) (envelope-from grog@freebie.lemis.com) Received: from freebie.lemis.com (freebie.lemis.com [192.109.197.137]) by allegro.lemis.com (8.9.1/8.9.0) with ESMTP id LAA11219; Sun, 22 Aug 1999 11:47:30 +0930 (CST) Received: (from grog@localhost) by freebie.lemis.com (8.9.3/8.9.0) id LAA78800; Sun, 22 Aug 1999 11:47:29 +0930 (CST) Date: Sun, 22 Aug 1999 11:47:29 +0930 From: Greg Lehey To: Mark Ovens Cc: Alejandro Ramirez , Albert Everett , questions@FreeBSD.ORG Subject: Re: maximum file size Message-ID: <19990822114728.G14964@freebie.lemis.com> References: <37BEB44E.29ED2CD4@webintl.com> <19990821153112.E267@marder-1> <02ce01beebf5$99d2da80$d4630a0a@megared.net.mx> <19990821182544.A451@marder-1> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: <19990821182544.A451@marder-1>; from Mark Ovens on Sat, Aug 21, 1999 at 06:25:45PM +0100 WWW-Home-Page: http://www.lemis.com/~grog X-PGP-Fingerprint: 6B 7B C3 8C 61 CD 54 AF 13 24 52 F8 6D A4 95 EF Organization: LEMIS, PO Box 460, Echunga SA 5153, Australia Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-41-739-7062 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Saturday, 21 August 1999 at 18:25:45 +0100, Mark Ovens wrote: > On Sat, Aug 21, 1999 at 11:52:48AM -0500, Alejandro Ramirez wrote: >> Hi, >> >> How can I know the size of the blocks I'm using in my system??? (FreeBSD >> 3.2 Release) >> > > The default block-size is 8kB, so if you let sysinstall newfs your > disks then that's what it'll be. > > dumpfs(8) is the only way that I know (but there are probably > several other ways) of finding the block-size of an existing fs. > The disk must be umounted for dumpfs to work which makes checking > the root fs a bit difficult :-) You can run dumpfs against the raw device: # dumpfs / dumpfs: /dev/wd0s1a: Device busy # dumpfs /dev/rwd0s1a magic 11954 time Sun Aug 22 11:33:14 1999 id [ 0 0 ] cylgrp dynamic inodes 4.4BSD nbfree 427 ndir 131 nifree 2197 nffree 166 (etc) Greg -- When replying to this message, please copy the original recipients. For more information, see http://www.lemis.com/questions.html See complete headers for address, home page and phone numbers finger grog@lemis.com for PGP public key To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 19:37:45 1999 Delivered-To: freebsd-questions@freebsd.org Received: from templar.fgi.net (templar.fgi.net [206.101.112.9]) by hub.freebsd.org (Postfix) with ESMTP id 81C1B151B0 for ; Sat, 21 Aug 1999 19:37:30 -0700 (PDT) (envelope-from darnold@fgi.net) Received: from darnold.fgi.net (usr4tc76.fgi.net [208.130.70.76]) by templar.fgi.net (Pro-8.9.3/Pro-8.9.3) with SMTP id VAA04097; Sat, 21 Aug 1999 21:37:01 -0500 From: Dick Arnold To: plopez@sympatico.ca, "Paul A.Lopez" , freebsd-questions@FreeBSD.ORG Subject: Re: Problem w/Kernel Config Date: Sat, 21 Aug 1999 21:31:42 -0500 X-Mailer: KMail [version 1.0.21] Content-Type: text/plain Cc: plopez@sympatico.ca References: <99082117503700.02620@vermithrax.house> MIME-Version: 1.0 Message-Id: <99082121371700.00268@darnold.fgi.net> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This works for me: #Added for Soundblaster 16 controller snd0 device sb0 at isa ? port 0x220 irq 5 drq 1 device sbxvi0 at isa ? drq 5 device sbmidi0 at isa ? port 0x330 device opl0 at isa ? port 0x388 On Sat, 21 Aug 1999, Paul A.Lopez wrote: > Here's one for you.. Hoping someone there can help.. I've got an SB16 ISA (real > SB, not a knock off, and I'm trying to compile a kernel w/sound support in it.. > > Windows tells me the settings are IRQ 5, 8bit DMA 1, 16bit DMA 5, at 0x220 and > 0x330 (midi) Followed the instructions in the handbook and I'm getting a failure > during 'make'.. Here's the error lines: > > soundcard.o: In function 'sndpoll': > soundcard.o(.text+0x2f7): undefined reference to `MIDIbuf_poll' > sound_switch.o: In function `sound_read_sw': > sound_switch.o(.text+0x52d): undefined reference to `MIDIbuf_read' > sound_switch.o: In function `sound_write_sw': > sound_switch.o(.text+0x5ad): undefined reference to `MIDIbuf_write' > sound_switch.o: In function `sound_open_sw': > sound_switch.o(.text+0x68f): undefined reference to `MIDIbuf_open' > sound_switch.o: In function `sound_release_sw': > sound_switch.o(.text+0x72b): undefined reference to `MIDIbuf_release' > sound_switch.o: In function `sound_ioctl_sw': > sound_switch.o(.text+0x835): undefined reference to `MIDIbuf_ioctl' > *** Error code 1 > > Stop. > > I've done everything listed on the handbook pages.. But it keeps giving > me this error. > > the only thing I can possible think of is if the arguments in the kernel config > file have to be in a certain location.. I just tacked them on at the end.. That > couldn'd make the diff? Could it? > > Below is include a copy of the configuration file.. The three lines relating to > my (attempted) sound configuration are at the very end, the last three lines.. > > And suggestions or FAQ/help resources you could direct me to would be > appreciated... > > cheers > > # > # GENERIC -- Generic machine with WD/AHx/NCR/BTx family disks > # > # For more information read the handbook part System Administration -> > # Configuring the FreeBSD Kernel -> The Configuration File. > # The handbook is available in /usr/share/doc/handbook or online as > # latest version from the FreeBSD World Wide Web server > # > # > # An exhaustive list of options and more detailed explanations of the > # device lines is present in the ./LINT configuration file. If you are > # in doubt as to the purpose or necessity of a line, check first in LINT. > # > # $Id: GENERIC,v 1.143.2.12 1999/05/14 15:12:26 jkh Exp $ > > machine "i386" > cpu "I386_CPU" > cpu "I486_CPU" > cpu "I586_CPU" > cpu "I686_CPU" > ident VERMITHRAX > maxusers 32 > > options MATH_EMULATE #Support for x87 emulation > options INET #InterNETworking > options FFS #Berkeley Fast Filesystem > options FFS_ROOT #FFS usable as root device [keep this!] > options MFS #Memory Filesystem > options MFS_ROOT #MFS usable as root device, "MFS" req'ed > options NFS #Network Filesystem > options NFS_ROOT #NFS usable as root device, "NFS" req'ed > options MSDOSFS #MSDOS Filesystem > options "CD9660" #ISO 9660 Filesystem > options "CD9660_ROOT" #CD-ROM usable as root. "CD9660" req'ed > options PROCFS #Process filesystem > options "COMPAT_43" #Compatible with BSD 4.3 [KEEP THIS!] > options SCSI_DELAY=15000 #Be pessimistic about Joe SCSI device > options UCONSOLE #Allow users to grab the console > options FAILSAFE #Be conservative > options USERCONFIG #boot -c editor > options VISUAL_USERCONFIG #visual boot -c editor > > config kernel root on wd0 > > # To make an SMP kernel, the next two are needed > #options SMP # Symmetric MultiProcessor Kernel > #options APIC_IO # Symmetric (APIC) I/O > # Optionally these may need tweaked, (defaults shown): > #options NCPU=2 # number of CPUs > #options NBUS=4 # number of busses > #options NAPIC=1 # number of IO APICs > #options NINTR=24 # number of INTs > > controller isa0 > controller pnp0 > controller eisa0 > controller pci0 > > controller fdc0 at isa? port "IO_FD1" bio irq 6 drq 2 > disk fd0 at fdc0 drive 0 > disk fd1 at fdc0 drive 1 > > options "CMD640" # work around CMD640 chip deficiency > controller wdc0 at isa? port "IO_WD1" bio irq 14 > disk wd0 at wdc0 drive 0 > disk wd1 at wdc0 drive 1 > > controller wdc1 at isa? port "IO_WD2" bio irq 15 > disk wd2 at wdc1 drive 0 > disk wd3 at wdc1 drive 1 > > options ATAPI #Enable ATAPI support for IDE bus > options ATAPI_STATIC #Don't do it as an LKM > device acd0 #IDE CD-ROM > device wfd0 #IDE Floppy (e.g. LS-120) > > # A single entry for any of these controllers (ncr, ahb, ahc) is > # sufficient for any number of installed devices. > controller ncr0 > controller ahb0 > controller ahc0 > controller isp0 > > # This controller offers a number of configuration options, too many to > # document here - see the LINT file in this directory and look up the > # dpt0 entry there for much fuller documentation on this. > controller dpt0 > > controller adv0 at isa? port ? cam irq ? > controller adw0 > controller bt0 at isa? port ? cam irq ? > controller aha0 at isa? port ? cam irq ? > > controller scbus0 > > device da0 > > device sa0 > > device pass0 > > device cd0 #Only need one of these, the code dynamically grows > > device wt0 at isa? port 0x300 bio irq 5 drq 1 > device mcd0 at isa? port 0x300 bio irq 10 > > controller matcd0 at isa? port 0x230 bio > > device scd0 at isa? port 0x230 bio > > # atkbdc0 controlls both the keyboard and the PS/2 mouse > controller atkbdc0 at isa? port IO_KBD tty > device atkbd0 at isa? tty irq 1 > device psm0 at isa? tty irq 12 > > device vga0 at isa? port ? conflicts > > # splash screen/screen saver > pseudo-device splash > > # syscons is the default console driver, resembling an SCO console > device sc0 at isa? tty > # Enable this and PCVT_FREEBSD for pcvt vt220 compatible console driver > #device vt0 at isa? tty > #options XSERVER # support for X server > #options FAT_CURSOR # start with block cursor > # If you have a ThinkPAD, uncomment this along with the rest of the PCVT lines > #options PCVT_SCANSET=2 # IBM keyboards are non-std > > device npx0 at isa? port IO_NPX irq 13 > > # > # Laptop support (see LINT for more options) > # > device apm0 at isa? disable flags 0x31 # Advanced Power Management > > # PCCARD (PCMCIA) support > #controller card0 > #device pcic0 at card? > #device pcic1 at card? > > device sio0 at isa? port "IO_COM1" flags 0x10 tty irq 4 > device sio1 at isa? port "IO_COM2" tty irq 3 > device sio2 at isa? disable port "IO_COM3" tty irq 5 > device sio3 at isa? disable port "IO_COM4" tty irq 9 > > # Parallel port > device ppc0 at isa? port? flags 0x40 net irq 7 > controller ppbus0 > device lpt0 at ppbus? > device plip0 at ppbus? > device ppi0 at ppbus? > #controller vpo0 at ppbus? > > # > # The following Ethernet NICs are all PCI devices. > # > device ax0 # ASIX AX88140A > device de0 # DEC/Intel DC21x4x (``Tulip'') > device fxp0 # Intel EtherExpress PRO/100B (82557, 82558) > device mx0 # Macronix 98713/98715/98725 (``PMAC'') > device pn0 # Lite-On 82c168/82c169 (``PNIC'') > device rl0 # RealTek 8129/8139 > device tl0 # Texas Instruments ThunderLAN > device tx0 # SMC 9432TX (83c170 ``EPIC'') > device vr0 # VIA Rhine, Rhine II > device vx0 # 3Com 3c590, 3c595 (``Vortex'') > device wb0 # Winbond W89C840F > device xl0 # 3Com 3c90x (``Boomerang'', ``Cyclone'') > > # Order is important here due to intrusive probes, do *not* alphabetize > # this list of network interfaces until the probes have been fixed. > # Right now it appears that the ie0 must be probed before ep0. See > # revision 1.20 of this file. > > #device ed0 at isa? port 0x280 net irq 10 iomem 0xd8000 > #device ie0 at isa? port 0x300 net irq 10 iomem 0xd0000 > #device ep0 at isa? port 0x300 net irq 10 > #device ex0 at isa? port? net irq? > #device fe0 at isa? port 0x300 net irq ? > #device le0 at isa? port 0x300 net irq 5 iomem 0xd0000 > #device lnc0 at isa? port 0x280 net irq 10 drq 0 > #device ze0 at isa? port 0x300 net irq 10 iomem 0xd8000 > #device zp0 at isa? port 0x300 net irq 10 iomem 0xd8000 > #device cs0 at isa? port 0x300 net irq ? > > pseudo-device loop > pseudo-device ether > pseudo-device sl 1 > pseudo-device ppp 1 > pseudo-device tun 1 > pseudo-device pty 16 > pseudo-device gzip # Exec gzipped a.out's > > # KTRACE enables the system-call tracing facility ktrace(2). > # This adds 4 KB bloat to your kernel, and slightly increases > # the costs of each syscall. > options KTRACE #kernel tracing > > # This provides support for System V shared memory and message queues. > # > options SYSVSHM > options SYSVMSG > options SYSVSEM > > # The `bpfilter' pseudo-device enables the Berkeley Packet Filter. Be > # aware of the legal and administrative consequences of enabling this > # option. The number of devices determines the maximum number of > # simultaneous BPF clients programs runnable. > #pseudo-device bpfilter 4 #Berkeley packet filter > > #Sound Card Configuration > > controller snd0 > > device sbxvi0 at isa? drq 5 > device sbmidi0 at isa? port 0x330 > > -- Paul A. Lopez > plopez@sympatico.ca > plopez@magma.ca > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 19:59: 8 1999 Delivered-To: freebsd-questions@freebsd.org Received: from chickasaw.gate.net (chickasaw.gate.net [198.206.134.26]) by hub.freebsd.org (Postfix) with ESMTP id 2782E150D5 for ; Sat, 21 Aug 1999 19:58:58 -0700 (PDT) (envelope-from wjm@gate.net) Received: from dakota.gate.net (wjm@dakota.gate.net [199.227.0.13]) by chickasaw.gate.net (8.8.6/8.6.12) with ESMTP id WAA519650 for ; Sat, 21 Aug 1999 22:56:52 -0400 Received: from localhost (wjm@localhost) by dakota.gate.net (8.8.6/8.7.3) with ESMTP id WAA18058 for ; Sat, 21 Aug 1999 22:58:50 -0400 X-Authentication-Warning: dakota.gate.net: wjm owned process doing -bs Date: Sat, 21 Aug 1999 22:58:50 -0400 (EDT) From: William Melanson To: questions@FreeBSD.ORG Subject: XPM and /etc/XF86Config Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG When I start xpm it displays at the default 8bpp. I've scoured through almost all documentations (html references, man pages and README's) in /usr/X11R6/lib/X11/ to no avail. Is there some simple prefix in one of the xpm files or does /etc/XF86Config have to be changed as such? This is how it currently looks: (note the Depth variable) ---------------- # The Colour SVGA server Section "Screen" Driver "svga" # Use Device "Generic VGA" for Standard VGA 320x200x256 #Device "Generic VGA" Device "Matrox Mystique G200 4MB" Monitor "SVGA Color Monitor" Subsection "Display" Depth 8 # Omit the Modes line for the "Generic VGA" device Modes "800x600" "640x480" ViewPort 0 0 # Use Virtual 320 200 for Generic VGA EndSubsection Subsection "Display" Depth 16 This is how I believe it should look: (note the Depth variable) ---------- # The Colour SVGA server Section "Screen" Driver "svga" # Use Device "Generic VGA" for Standard VGA 320x200x256 #Device "Generic VGA" Device "Matrox Mystique G200 4MB" Monitor "SVGA Color Monitor" Subsection "Display" Depth 16 # Omit the Modes line for the "Generic VGA" device Modes "800x600" "640x480" ViewPort 0 0 # Use Virtual 320 200 for Generic VGA EndSubsection Subsection "Display" Depth 8 ---- Thanxs in advance..... - Bill To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 20: 2:35 1999 Delivered-To: freebsd-questions@freebsd.org Received: from nisser.com (n2000039.telekabel.chello.nl [212.187.0.39]) by hub.freebsd.org (Postfix) with ESMTP id 928E015129 for ; Sat, 21 Aug 1999 20:02:31 -0700 (PDT) (envelope-from roelof@nisser.com) Received: from nisser.com (roelof [10.0.0.2]) by nisser.com (8.9.2/8.9.2) with ESMTP id FAA05210 for ; Sun, 22 Aug 1999 05:01:06 +0200 (CEST) (envelope-from roelof@nisser.com) Message-ID: <37BF67F5.81917DA7@nisser.com> Date: Sun, 22 Aug 1999 05:01:09 +0200 From: Roelof Osinga Organization: eboa - engineering buro Office Automation X-Mailer: Mozilla 4.6 [en] (WinNT; I) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@FreeBSD.ORG Subject: Problems migrating from 3.1 to 3.2 via CVSup Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Is something else compared to migrating within the 3.1 branche. In fact, in my case it didn't turn out as advertised at all. For starters the rebuild kernel wouldn't load: Booting [kernerl] /kernel text=0x131d0a elf_loadexec: archsw.readin failed can't load 'kernel' is what it complained about. Well, I had seen messages stating that one should start with rebuilding the GENERIC kernel in case of changed options and take it from there, so this didn't come as a total shock. However, other things did. Before reboot I did merge, manually, all changes in /etc, /dev et al. All except for the sendmail.cf which I saved for a rainy day. But when I finally found a kernel that would boot and connect to the 'Net I got my next surprise. It wouldn't load the rc's. I got things like "inetd: illegal option --w" and lots of complaints about "set -T" not being as legal as the script supposed. Finally there was in /etc/defaults/rc.conf an addition stating that natd resides in /sbin whereas in actuallity it resides in /usr/bin on my system. So I was forced to "boot" manually. Which is a problem if one has become used to having scripts doing the diry work. Still, I managed to bring the system up to a more or less operable state. In which process I discovered that several other things went awry as well. Most notably I do not have all man pages. The 3.2 migration did add the TCP wrappers but did not add the accompanying manpages. Bummer. Anyway, at this point I'm wondering how best to proceed. Clearly my system is out of whack, so how to whack it back again? What would be the best strategy to bring it back into shape. What to do and how to do it? If anyone knows, *please* advice. Roelof PS did try searching for clues, got lots and lots of references, none truly helpful alas. The best I could come up with was: http://x21.deja.com/getdoc.xp?AN=502545224&CONTEXT=935290767.1877737511&hitnum=0 which describes it as "not that hard". Well... is, too! Bah. -- Home is where the (@) http://eboa.com/ is. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 20:16:13 1999 Delivered-To: freebsd-questions@freebsd.org Received: from peloton.runet.edu (chempc205.runet.edu [137.45.96.205]) by hub.freebsd.org (Postfix) with ESMTP id A1B54150D5 for ; Sat, 21 Aug 1999 20:16:07 -0700 (PDT) (envelope-from brett@peloton.runet.edu) Received: from localhost (brett@localhost) by peloton.runet.edu (8.9.3/8.9.3) with ESMTP id XAA01494; Sat, 21 Aug 1999 23:16:04 -0400 (EDT) (envelope-from brett@peloton.runet.edu) Date: Sat, 21 Aug 1999 23:16:04 -0400 (EDT) From: Brett Taylor To: William Melanson Cc: questions@FreeBSD.ORG Subject: Re: XPM and /etc/XF86Config In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, On Sat, 21 Aug 1999, William Melanson wrote: > When I start xpm it displays at the default 8bpp. I've scoured through > almost all documentations (html references, man pages and README's) in > /usr/X11R6/lib/X11/ to no avail. Is there some simple prefix in one of > the xpm files or does /etc/XF86Config have to be changed as such? I assume you mean XDM, not xpm (which are pixmaps). :-) In /usr/X11R6/lib/X11/xdm/Xservers change: :0 local /usr/X11R6/bin/X to :0 local /usr/X11R6/bin/X -bpp 32 where you can change the bpp setting to any of 8, 16, 24, 32 (I have 8 MB on my vid card so I use 32). Brett ***************************************************** Brett Taylor brett@peloton.runet.edu * Dept of Chem and Physics * Curie 39A (540) 831-6147 * ***************************************************** To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 20:26:33 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail1.eni.net (mail1.eni.net [205.214.55.15]) by hub.freebsd.org (Postfix) with ESMTP id AEE60150D5 for ; Sat, 21 Aug 1999 20:26:30 -0700 (PDT) (envelope-from bleh@school.com) Received: from superfly (ip227.los-angeles35.ca.pub-ip.psi.net [38.29.127.227]) by mail1.eni.net (8.8.5/8.8.5) with SMTP id UAA30526 for ; Sat, 21 Aug 1999 20:25:02 -0700 (PDT) Message-ID: <001301beec4e$089158e0$0300a8c0@superfly> From: "asdf" To: Subject: ppp + modem dialing problems Date: Sat, 21 Aug 1999 20:25:49 -0700 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2615.200 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2615.200 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG i can't get ppp to connect to my isp, well, actually, i can't get my modem to dial here's the logs, no matter how i try to launch it, i get ' warning: deflink: /dev/cuaa2: device not configured' so how do i configure that? my modem is on com3 in windows, so im pretty sure i should be using /dev/cuaa2. (i've tried /dev/cuaa0,1 and 3 Aug 21 07:50:09 muffin ppp[246]: Phase: Using interface: tun0 Aug 21 07:50:09 muffin ppp[246]: Phase: deflink: Created in closed state Aug 21 07:50:09 muffin ppp[247]: tun0: Phase: PPP Started (background mode). Aug 21 07:50:09 muffin ppp[247]: tun0: Phase: bundle: Establish Aug 21 07:50:09 muffin ppp[247]: tun0: Phase: deflink: closed -> opening Aug 21 07:50:09 muffin ppp[247]: tun0: Warning: deflink: /dev/cuaa2: Device not configured Aug 21 07:50:09 muffin ppp[247]: tun0: Chat: Failed to open device (attempt 1 of 10) Aug 21 07:50:09 muffin ppp[247]: tun0: Phase: deflink: Enter pause (3) for redialing. Aug 21 07:50:12 muffin ppp[247]: tun0: Phase: deflink: Redial timer expired. Aug 21 07:50:13 muffin ppp[247]: tun0: Warning: deflink: /dev/cuaa2: Device not configured Aug 21 07:50:13 muffin ppp[247]: tun0: Chat: Failed to open device (attempt 2 of 10) Aug 21 07:50:13 muffin ppp[247]: tun0: Phase: deflink: Enter pause (3) for redialing. Aug 21 07:50:16 muffin ppp[247]: tun0: Phase: deflink: Redial timer expired. Aug 21 07:50:16 muffin ppp[247]: tun0: Warning: deflink: /dev/cuaa2: Device not configured Aug 21 07:50:16 muffin ppp[247]: tun0: Chat: Failed to open device (attempt 3 of 10) Aug 21 07:50:16 muffin ppp[247]: tun0: Phase: deflink: Enter pause (3) for redialing. Aug 21 07:50:19 muffin ppp[247]: tun0: Phase: deflink: Redial timer expired. Aug 21 07:50:19 muffin ppp[247]: tun0: Warning: deflink: /dev/cuaa2: Device not configured Aug 21 07:50:19 muffin ppp[247]: tun0: Chat: Failed to open device (attempt 4 of 10) Aug 21 07:50:19 muffin ppp[247]: tun0: Phase: deflink: Enter pause (3) for redialing. Aug 21 07:50:22 muffin ppp[247]: tun0: Phase: deflink: Redial timer expired. Aug 21 07:50:22 muffin ppp[247]: tun0: Warning: deflink: /dev/cuaa2: Device not configured Aug 21 07:50:22 muffin ppp[247]: tun0: Chat: Failed to open device (attempt 5 of 10) Aug 21 07:50:22 muffin ppp[247]: tun0: Phase: deflink: Enter pause (3) for redialing. Aug 21 07:50:25 muffin ppp[247]: tun0: Phase: deflink: Redial timer expired. Aug 21 07:50:25 muffin ppp[247]: tun0: Warning: deflink: /dev/cuaa2: Device not configured Aug 21 07:50:25 muffin ppp[247]: tun0: Chat: Failed to open device (attempt 6 of 10) Aug 21 07:50:25 muffin ppp[247]: tun0: Phase: deflink: Enter pause (3) for redialing. Aug 21 07:50:28 muffin ppp[247]: tun0: Phase: deflink: Redial timer expired. Aug 21 07:50:28 muffin ppp[247]: tun0: Warning: deflink: /dev/cuaa2: Device not configured Aug 21 07:50:28 muffin ppp[247]: tun0: Chat: Failed to open device (attempt 7 of 10) Aug 21 07:50:28 muffin ppp[247]: tun0: Phase: deflink: Enter pause (3) for redialing. Aug 21 07:50:31 muffin ppp[247]: tun0: Phase: deflink: Redial timer expired. Aug 21 07:50:31 muffin ppp[247]: tun0: Warning: deflink: /dev/cuaa2: Device not configured Aug 21 07:50:31 muffin ppp[247]: tun0: Chat: Failed to open device (attempt 8 of 10) Aug 21 07:50:31 muffin ppp[247]: tun0: Phase: deflink: Enter pause (3) for redialing. Aug 21 07:50:34 muffin ppp[247]: tun0: Phase: deflink: Redial timer expired. Aug 21 07:50:34 muffin ppp[247]: tun0: Warning: deflink: /dev/cuaa2: Device not configured Aug 21 07:50:34 muffin ppp[247]: tun0: Chat: Failed to open device (attempt 9 of 10) Aug 21 07:50:34 muffin ppp[247]: tun0: Phase: deflink: Enter pause (3) for redialing. Aug 21 07:50:37 muffin ppp[247]: tun0: Phase: deflink: Redial timer expired. Aug 21 07:50:37 muffin ppp[247]: tun0: Warning: deflink: /dev/cuaa2: Device not configured Aug 21 07:50:37 muffin ppp[247]: tun0: Chat: Failed to open device (attempt 10 of 10) Aug 21 07:50:37 muffin ppp[247]: tun0: Phase: deflink: opening -> closed Aug 21 07:50:37 muffin ppp[247]: tun0: Phase: bundle: Dead Aug 21 07:50:40 muffin ppp[247]: tun0: Phase: PPP Terminated (normal). Aug 21 07:50:40 muffin ppp[246]: tun0: Phase: Parent: Child failed (errdead). Aug 21 07:50:40 muffin ppp[247]: tun0: Phase: Parent notified of success. ################################### netstat -rn before i try to dial Routing tables Internet: Destination Gateway Flags Refs Use Netif Expire 127.0.0.1 127.0.0.1 UH 0 0 lo0 192.168 link#1 UC 0 0 pn0 here's my netstat -rn after i try to dial. Routing tables Internet: Destination Gateway Flags Refs Use Netif Expire 127.0.0.1 127.0.0.1 UH 0 0 lo0 192.168 link#1 UC 0 0 pn0 ################################### here's my /etc/ppp/ppp.conf default: set device /dev/cuaa2 set speed 57600 set dial "ABORT BUSY ABORT NO\\sCARRIER TIMOUT 5 \"\" ATE1Q0M0 OK-AT-OK\\dATDT\\T TIMEOUT 40 CONNECT" set redial 3 10 set log Phase Chat LCP IPCP CCP tun command pmdemand: set phone 547-9231 set login "ABORT NO\\sCARRIER TIMEOUT 5 ogin:--ogin: mylogin word: my password" set timeout 120 set ifaddr 10.0.0.1/0 10.0.0.2/0 255.255.255.0 0.0.0.0 add default HISADDR enable dns PAPorCHAPpmdemand: set phone 547-9231 set login set authname my_login set authkey my_password set timeout 120 set ifaddr 10.0.0.1/0 10.0.0.2/0 255.255.255.0 0.0.0.0 add default HISADDR enable dns ################################### also, when i do ifconfig -a i see both ppp0 and tun0 tun0: flags=8010 mtu 1500 ppp0: flags=8010 mtu 1500 thanks, -scott To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 20:55:37 1999 Delivered-To: freebsd-questions@freebsd.org Received: from localhost.primenet.com (206-132-48-223.nas-1.SCF.primenet.com [206.132.48.223]) by hub.freebsd.org (Postfix) with ESMTP id 0B87F1557E for ; Sat, 21 Aug 1999 20:55:32 -0700 (PDT) (envelope-from jreynold@primenet.com) Received: (from jreynold@localhost) by whale.primenet.com (8.9.3/8.9.3) id UAA49632; Sat, 21 Aug 1999 20:49:00 -0700 (MST) (envelope-from jreynold@primenet.com) From: John and Jennifer Reynolds MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14271.29483.680735.22298@whale.primenet.com> Date: Sat, 21 Aug 1999 20:48:59 -0700 (MST) To: freebsd-questions@freebsd.org Subject: 3.2-STABLE and mkdosfs? X-Mailer: VM 6.73 under Emacs 20.3.1 Cc: Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi all, I was grepping through the archives tonight and found from: http://www.freebsd.org/cgi/getmsg.cgi?fetch=1884403+1887301+/usr/local/www/db/text/1999/freebsd-questions/19990614.freebsd-questions that fdformat + mkdosfs would format a floppy and put a DOS filesystem on it. That's what I was looking for! However, I cannot seem to find the binary or the source for mkdosfs (or a port). On my 2.2.8-STABLE machine it is /usr/sbin/mkdosfs and the source is in the appropriate place within the tree. I copied over the binary from this machine to my 3.2-STABLE machine and it seems to work without a hitch. So, the question: where did "mkdosfs" go? Has this been replaced by some other mechanism for formatting (DOS) floppies? Thanks, -Jr -- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= John Reynolds Chandler Capabilities Engineering, CDS, Intel Corporation jreynold@sedona.ch.intel.com My opinions are mine, not Intel's. Running jreynold@primenet.com FreeBSD 3.2-STABLE. FreeBSD: The Power to Serve. http://www.primenet.com/~jreynold/ Come join us!!! @ http://www.FreeBSD.org/ =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 21:25:17 1999 Delivered-To: freebsd-questions@freebsd.org Received: from c705742-a.htfdw1.ct.home.com (c705742-a.htfdw1.ct.home.com [24.2.137.94]) by hub.freebsd.org (Postfix) with ESMTP id BFDCC14D20 for ; Sat, 21 Aug 1999 21:25:15 -0700 (PDT) (envelope-from bugg@c705742-a.htfdw1.ct.home.com) Received: (from bugg@localhost) by c705742-a.htfdw1.ct.home.com (8.9.3/8.9.3) id AAA00296 for questions@FreeBSD.org; Sun, 22 Aug 1999 00:22:13 GMT (envelope-from bugg) Date: Sun, 22 Aug 1999 00:22:13 GMT From: Dan Message-Id: <199908220022.AAA00296@c705742-a.htfdw1.ct.home.com> To: questions@FreeBSD.org Subject: EIDE controller only seen with install disks Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG If i boot my install disks, the kernel finds wdc1 at 0x170 irq 15. Everything is peachy, and acd0 is found. If only life was that easy :) here are the options from my latest kernel regarding wdc1 and acd0: controller wdc1 at isa? port "IO_WD2" bio irq 15 disk wd2 at wdc1 drive 0 options ATAPI options ATAPI_STATIC device acd0 no go. dmesg | grep -i wdc1 yields the following: wdc1 not found at 0x170 I've double checked to make sure that the CD-ROM is set to master. I've even fooled with IDE_TIMEOUT settings wondering if maybe the kernel on the installation disks were out of the norm. (And that my CD-ROM wasn't to spec) Its an 8x Sony drive. Installation disk is able to find wdc1 at 0x170, irq 15. Any ideas or suggestions would be greatly appreciated. -bugg To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 22:27:30 1999 Delivered-To: freebsd-questions@freebsd.org Received: from mail.qcislands.net (mail.qcislands.net [209.53.238.6]) by hub.freebsd.org (Postfix) with ESMTP id 6D1B214CC6 for ; Sat, 21 Aug 1999 22:27:11 -0700 (PDT) (envelope-from ccstore@qcislands.net) Received: from wwwa ([209.53.238.8] helo=wwwa.qcislands.net) by mail.qcislands.net with esmtp (Exim 3.03 #1) id 11IQ9R-0005xz-00 for freebsd-questions@freebsd.org; Sat, 21 Aug 1999 22:26:41 -0700 Received: from ccstore by wwwa.qcislands.net with local (Exim 3.01 #3) id 11IQ9S-0002Bb-00 for freebsd-questions@freebsd.org; Sun, 22 Aug 1999 05:26:42 +0000 From: Jim Pazarena To: freebsd-questions@freebsd.org Subject: setting up SCSI-DDS tape backup X-Mailer: SCO Shell Date: Sat, 21 Aug 1999 21:59:13 -0700 (PDT) Message-ID: <9908212159.aa02592@dick.ccstores.com> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I have a DDS-III drive in my FreeBSD 3.2 box. During boot up, the kernel recognizes the drive, refers to it as sa0, and boots as expected. But I don't have a "/dev/sa0" and don't know how to access my tape unit. What am I missing? -- Jim Pazarena mailto:paz@ccstores.com http://www.qcislands.net/paz To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 23:14:40 1999 Delivered-To: freebsd-questions@freebsd.org Received: from revolution.3-cities.com (revolution.3-cities.com [204.203.224.155]) by hub.freebsd.org (Postfix) with ESMTP id C77C014C15 for ; Sat, 21 Aug 1999 23:14:36 -0700 (PDT) (envelope-from msmith@revolution.3-cities.com) Received: (from msmith@localhost) by revolution.3-cities.com (8.9.3/8.9.3) id XAA27936; Sat, 21 Aug 1999 23:14:28 -0700 (PDT) From: Mark D Smith Message-Id: <199908220614.XAA27936@revolution.3-cities.com> Subject: Re: setting up SCSI-DDS tape backup To: paz@ccstores.com (Jim Pazarena) Date: Sat, 21 Aug 1999 23:14:27 -0700 (PDT) Cc: freebsd-questions@FreeBSD.ORG In-Reply-To: <9908212159.aa02592@dick.ccstores.com> from "Jim Pazarena" at Aug 21, 99 09:59:13 pm X-Mailer: ELM [version 2.4 PL25] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Try talking to /dev/rsa0 for the rewind on close device and /dev/nrsa0 for the no rewind on close device. so, if you tar or dump/resore to/from /dev/rsa0, the tape will be rewound when the operation is completed. Using /dev/nrsa0, the tape will stay at it's last position. /dev/nrsa0 is good for putting multiple archives on the same tape. Mark > > I have a DDS-III drive in my FreeBSD 3.2 box. During boot up, the > kernel recognizes the drive, refers to it as sa0, and boots as expected. > > But I don't have a "/dev/sa0" and don't know how to access my tape > unit. > > What am I missing? > > -- > Jim Pazarena mailto:paz@ccstores.com > http://www.qcislands.net/paz > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > -- ========================================================================= For sale: 1978 VW Van, Champaign Edition, 13,000 miles on new engine with fuel injection. $2500 To see pictures and contact information go to http://www.3-cities.com/~msmith/vw.html UNIX IS user friendly, it's just very choosy about who it calls a friend! ========================================================================= To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 23:15:34 1999 Delivered-To: freebsd-questions@freebsd.org Received: from flitr.nu (linda.pomona.edu [134.173.72.215]) by hub.freebsd.org (Postfix) with ESMTP id E957F14C15 for ; Sat, 21 Aug 1999 23:15:30 -0700 (PDT) (envelope-from disowned@flitr.nu) Received: from localhost (disowned@localhost) by flitr.nu (8.9.3/8.9.2) with ESMTP id XAA16616 for ; Sat, 21 Aug 1999 23:11:20 -0700 (PDT) (envelope-from disowned@flitr.nu) Date: Sat, 21 Aug 1999 23:11:19 -0700 (PDT) From: dissonant To: freebsd-questions@freebsd.org Subject: syslog - omitting a service? Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I know that if I were to add !named *.* /var/log/named.log to my /etc/syslog.conf, it would log everything from named to that file. Now, right now, I have daemon.* logging stuff to a file... um, and I want it to EXCLUDE anything from named. Is this possible? How do I do this in syslog.conf? Forgive me if it's a stupid question...Thanks. ____________________________________________________________________________ ____________________________________________________________________________ michael lieberman disowned@flitr.nu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message From owner-freebsd-questions Sat Aug 21 23:17:13 1999 Delivered-To: freebsd-questions@freebsd.org Received: from flitr.nu (linda.pomona.edu [134.173.72.215]) by hub.freebsd.org (Postfix) with ESMTP id 55E3B14F99 for ; Sat, 21 Aug 1999 23:17:00 -0700 (PDT) (envelope-from disowned@flitr.nu) Received: from localhost (disowned@localhost) by flitr.nu (8.9.3/8.9.2) with ESMTP id XAA16691 for ; Sat, 21 Aug 1999 23:12:11 -0700 (PDT) (envelope-from disowned@flitr.nu) Date: Sat, 21 Aug 1999 23:12:11 -0700 (PDT) From: dissonant To: freebsd-questions@freebsd.org Subject: Re: syslog - omitting a service? Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG oops. um. that should have said "omitting a daemon"... :( ____________________________________________________________________________ ____________________________________________________________________________ michael lieberman disowned@flitr.nu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message