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 ev